You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1007 B
C#

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()
{
}
/// <summary>
/// 租户编码
/// </summary>
[JsonProperty(PropertyName = "tenantId")]
[Column("tenantId")]
public string TenantId { get; set; }// 租户ID
/// <summary>
/// 字幕名称
/// </summary>
[JsonProperty(PropertyName = "name")]
[Column("name")]
public string Name { get; set; }
/// <summary>
/// 字幕内容
/// </summary>
[JsonProperty(PropertyName = "content")]
[Column("content")]
public string Content { get; set; }
}
}