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; } } }