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.
30 lines
633 B
30 lines
633 B
using FreeSql.DataAnnotations;
|
|
using System;
|
|
|
|
namespace BBWY.Server.Model.Db
|
|
{
|
|
|
|
[Table(Name = "gifttemplate", DisableSyncStructure = true)]
|
|
public partial class GiftTemplate {
|
|
|
|
[Column(IsPrimary = true)]
|
|
public long Id { get; set; }
|
|
|
|
[Column(DbType = "datetime")]
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
public int GiftCount { get; set; }
|
|
|
|
[Column(StringLength = 100)]
|
|
public string TemplateName { get; set; }
|
|
|
|
[Column(MapType = typeof(int))]
|
|
public Enums.Platform Platform { get; set; }
|
|
|
|
public long ShopId { get; set; }
|
|
|
|
[Column(StringLength = 50)]
|
|
public string TemplateSpu { get; set; }
|
|
}
|
|
|
|
}
|
|
|