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.
28 lines
713 B
28 lines
713 B
2 years ago
|
using FreeSql.DataAnnotations;
|
||
|
|
||
|
namespace BBWYB.Server.Model.Db
|
||
|
{
|
||
|
|
||
2 years ago
|
[Table(Name = "purchaser_extendedInfo_relation", DisableSyncStructure = true)]
|
||
|
public partial class Purchaser_ExtendedInfo_Relation
|
||
2 years ago
|
{
|
||
|
|
||
|
[Column(DbType = "bigint", IsPrimary = true)]
|
||
|
public long Id { get; set; }
|
||
|
|
||
|
[Column(DbType = "bigint")]
|
||
2 years ago
|
public long? ExtendedInfoId { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// 关系类型 主营类目=0 标签=1
|
||
|
/// </summary>
|
||
2 years ago
|
[Column(DbType = "int",MapType = typeof(int?))]
|
||
|
public Enums.PurchaserBasicInfoType? ExtendedType { get; set; }
|
||
2 years ago
|
|
||
|
[Column(StringLength = 50)]
|
||
|
public string PurchaserId { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|