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
635 B
27 lines
635 B
using FreeSql.DataAnnotations;
|
|
|
|
namespace BBWYB.Server.Model.Db
|
|
{
|
|
|
|
[Table(Name = "purchaserextendedinfo", DisableSyncStructure = true)]
|
|
public partial class PurchaserExtendedInfo
|
|
{
|
|
|
|
[Column(DbType = "bigint", IsPrimary = true)]
|
|
public long Id { get; set; }
|
|
|
|
[Column(DbType = "datetime")]
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
[Column(StringLength = 50)]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 类型 主营类目=0 标签=1
|
|
/// </summary>
|
|
[Column(MapType = typeof(int?))]
|
|
public Enums.PurchaserBasicInfoType? Type { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|