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_feeitem")] [PrimaryKey(new string[] { "Id" }, AutoIncrement = false)] public class Feeitem : BaseEntity { public Feeitem() { } /// /// 租户编码 /// [JsonProperty(PropertyName = "tenantId")] [Column("tenantId")] public string TenantId { get; set; }// 租户ID /// /// 项目名称 /// [JsonProperty(PropertyName = "name")] [Column("name")] public string Name { get; set; } /// /// 类型(0-收入;1-支出;) /// [JsonProperty(PropertyName = "type")] [Column("type")] public int Type { get; set; } /// /// 是否启用(0-不启用;1-启用;) /// [JsonProperty(PropertyName = "enabled")] [Column("enabled")] public int Enabled { get; set; } /// /// 显示序号 /// [JsonProperty(PropertyName = "orderNo")] [Column("orderNo")] public int OrderNo { get; set; } } }