22 lines
448 B
22 lines
448 B
2 years ago
|
using FreeSql.DataAnnotations;
|
||
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace BBWYB.Server.Model.Db
|
||
|
{
|
||
|
|
||
|
[Table(Name = "purchaseschemegroupindex", DisableSyncStructure = true)]
|
||
|
public partial class PurchaseSchemeGroupIndex
|
||
|
{
|
||
|
[Column(IsPrimary = true)]
|
||
|
public string ProductId { get; set; }
|
||
|
|
||
|
public DateTime? CreateTime { get; set; }
|
||
|
|
||
|
public int? Index { get; set; }
|
||
|
|
||
|
public long? ShopId { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|