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.

42 lines
976 B
C#

9 months ago
using Newtonsoft.Json;
using System;
using NPoco;
namespace POSV.Service.Entity
{
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
[TableName("pos_config")]
[PrimaryKey(new string[] { "group" , "keys" },AutoIncrement = false)]
public class Config : BaseEntity
{
/**
*
*/
[JsonProperty(PropertyName = "group")]
[Column("group")]
public string Group { get; set; }
/**
* Keys
*/
[JsonProperty(PropertyName = "keys")]
[Column("keys")]
public string Keys { get; set; }
/**
* Keys
*/
[JsonProperty(PropertyName = "values")]
[Column("values")]
public string Values { get; set; }
/// <summary>
/// 参数说明
/// </summary>
[JsonProperty(PropertyName = "name")]
[Column("name")]
public string Name { get; set; } = string.Empty;
}
}