using Newtonsoft.Json; using NPoco; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Entity { [Serializable] [JsonObject(MemberSerialization.OptIn)] [TableName("pos_advert_caption")] [PrimaryKey(new string[] { "Id" }, AutoIncrement = false)] public class AdvertCaption : BaseEntity { public AdvertCaption() { } /// /// 租户编码 /// [JsonProperty(PropertyName = "tenantId")] [Column("tenantId")] public string TenantId { get; set; }// 租户ID /// /// 字幕名称 /// [JsonProperty(PropertyName = "name")] [Column("name")] public string Name { get; set; } /// /// 字幕内容 /// [JsonProperty(PropertyName = "content")] [Column("content")] public string Content { get; set; } } }