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.
21 lines
448 B
21 lines
448 B
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; }
|
|
|
|
}
|
|
|
|
}
|
|
|