using FreeSql.DataAnnotations; namespace BBWYB.Server.Model.Db { [Table(Name = "purchaser_extendedInfo_relation", DisableSyncStructure = true)] public partial class Purchaser_ExtendedInfo_Relation { [Column(DbType = "bigint", IsPrimary = true)] public long Id { get; set; } [Column(DbType = "bigint")] public long? ExtendedInfoId { get; set; } /// /// 关系类型 主营类目=0 标签=1 /// [Column(DbType = "int",MapType = typeof(int?))] public Enums.PurchaserBasicInfoType? ExtendedType { get; set; } [Column(StringLength = 50)] public string PurchaserId { get; set; } } }