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.

27 lines
713 B

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; }
/// <summary>
/// 关系类型 主营类目=0 标签=1
/// </summary>
[Column(DbType = "int",MapType = typeof(int?))]
public Enums.PurchaserBasicInfoType? ExtendedType { get; set; }
[Column(StringLength = 50)]
public string PurchaserId { get; set; }
}
}