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.
38 lines
883 B
38 lines
883 B
using FreeSql.DataAnnotations;
|
|
|
|
namespace BBWYB.Server.Model.Db
|
|
{
|
|
|
|
[Table(Name = "ordermessage", DisableSyncStructure = true)]
|
|
public partial class OrderMessage
|
|
{
|
|
|
|
[Column(IsPrimary = true)]
|
|
public long Id { get; set; }
|
|
|
|
[Column(DbType = "datetime")]
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
[Column(StringLength = 50)]
|
|
public string CreatorId { get; set; }
|
|
|
|
[Column(StringLength = 50)]
|
|
public string CreatorName { get; set; }
|
|
|
|
[Column(StringLength = 500)]
|
|
public string Message { get; set; }
|
|
|
|
[Column(StringLength = 50)]
|
|
public string OrderId { get; set; }
|
|
|
|
[Column(StringLength = 50)]
|
|
public string OrderSn { get; set; }
|
|
|
|
public long? ShopId { get; set; }
|
|
|
|
[Column(StringLength = 50)]
|
|
public string From { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|