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.
50 lines
1.2 KiB
50 lines
1.2 KiB
using FreeSql.DataAnnotations;
|
|
|
|
namespace BBWYB.Server.Model.Db
|
|
{
|
|
|
|
/// <summary>
|
|
/// 采购方案分组表
|
|
/// </summary>
|
|
[Table(Name = "purchaseschemegroup", DisableSyncStructure = true)]
|
|
public partial class PurchaseSchemeGroup
|
|
{
|
|
|
|
/// <summary>
|
|
/// 分组Id
|
|
/// </summary>
|
|
[Column(DbType = "bigint", IsPrimary = true)]
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[Column(DbType = "datetime")]
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 组名
|
|
/// </summary>
|
|
[Column(StringLength = 100)]
|
|
public string GroupName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 店铺spu,店铺商品Id
|
|
/// </summary>
|
|
[Column(StringLength = 50)]
|
|
public string ProductId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 店铺Id
|
|
/// </summary>
|
|
[Column(DbType = "bigint")]
|
|
public long? ShopId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 归属议价组
|
|
/// </summary>
|
|
[Column(StringLength = 50)]
|
|
public string BelongBargainTeamId { get; set; }
|
|
}
|
|
|
|
}
|
|
|