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.
22 lines
434 B
22 lines
434 B
2 years ago
|
using FreeSql.DataAnnotations;
|
||
|
using System;
|
||
|
|
||
|
namespace SBF.Model.Db
|
||
|
{
|
||
|
|
||
|
[Table(Name = "jdpublishorder", DisableSyncStructure = true)]
|
||
|
public partial class JdPublishOrder {
|
||
|
|
||
|
[Column(StringLength = 100, IsPrimary = true, IsNullable = false)]
|
||
|
public string Id { get; set; }
|
||
|
|
||
|
[Column(DbType = "datetime")]
|
||
|
public DateTime? CreateTime { get; set; }
|
||
|
|
||
|
[Column(DbType = "bigint")]
|
||
|
public long? ShopId { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|