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.

23 lines
494 B
C#

using FreeSql.DataAnnotations;
using Newtonsoft.Json;
namespace djy.Model.Ams
{
[JsonObject(MemberSerialization.OptIn), Table(Name = "AMS_SysCTNALL", DisableSyncStructure = true)]
public class AMS_SysCTNALL
{
/// <summary>
/// 主键
/// </summary>
[JsonProperty, Column(IsPrimary = true, IsNullable = false)]
public string GID { get; set; }
public string Code { get; set; }
public string Value { get; set; }
}
}