You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
518 B
25 lines
518 B
using System;
|
|
|
|
namespace BBWY.Server.Model.Dto
|
|
{
|
|
public class PurchaseOrderMessageResponse
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
public string CreatorId { get; set; }
|
|
|
|
public string CreatorName { get; set; }
|
|
|
|
public string Message { get; set; }
|
|
|
|
public string OrderId { get; set; }
|
|
|
|
public string OrderSn { get; set; }
|
|
|
|
//public long? ShopId { get; set; }
|
|
|
|
public string From { get; set; }
|
|
}
|
|
}
|
|
|