using FreeSql.DatabaseModel;using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Threading.Tasks; using Newtonsoft.Json; using FreeSql.DataAnnotations; namespace djy.Model { [JsonObject(MemberSerialization.OptIn), Table(Name = "sSysGetBillNo_new", DisableSyncStructure = true)] public partial class SSysGetBillNoNew { [JsonProperty, Column(Name = "@ps_BillNo", DbType = "varchar(20)", IsIdentity = true, IsNullable = false)] public string PsBillNo { get; set; } [JsonProperty, Column(Name = "@ps_BillType", DbType = "varchar(4)", IsNullable = false)] public string PsBillType { get; set; } [JsonProperty, Column(Name = "@ps_Date", DbType = "varchar(10)", IsNullable = false)] public string PsDate { get; set; } [JsonProperty, Column(Name = "@ps_EmpCode", DbType = "varchar(100)", IsNullable = false)] public string PsEmpCode { get; set; } [JsonProperty, Column(Name = "@ps_OrgCode", DbType = "varchar(100)", IsNullable = false)] public string PsOrgCode { get; set; } [JsonProperty, Column(Name = "@ps_RefBillNo", DbType = "varchar(20)", IsNullable = false)] public string PsRefBillNo { get; set; } } }