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 = "sMsRptPcHeadQry", DisableSyncStructure = true)] public partial class SMsRptPcHeadQry { [JsonProperty, Column(Name = "@pi_Result", IsIdentity = true)] public int PiResult { get; set; } [JsonProperty, Column(Name = "@ps_BillNo", DbType = "varchar(20)", IsNullable = false)] public string PsBillNo { get; set; } [JsonProperty, Column(Name = "@ps_DrvName", DbType = "varchar(100)", IsNullable = false)] public string PsDrvName { get; set; } [JsonProperty, Column(Name = "@ps_ExpDateBgn", DbType = "varchar(20)", IsNullable = false)] public string PsExpDateBgn { get; set; } [JsonProperty, Column(Name = "@ps_ExpDateEnd", DbType = "varchar(20)", IsNullable = false)] public string PsExpDateEnd { get; set; } [JsonProperty, Column(Name = "@ps_MblNo", DbType = "varchar(100)", IsNullable = false)] public string PsMblNo { get; set; } [JsonProperty, Column(Name = "@ps_Message", DbType = "varchar(2000)", IsIdentity = true, IsNullable = false)] public string PsMessage { get; set; } [JsonProperty, Column(Name = "@ps_RefBillNo", DbType = "varchar(20)", IsNullable = false)] public string PsRefBillNo { get; set; } [JsonProperty, Column(Name = "@ps_TruckNo", DbType = "varchar(100)", IsNullable = false)] public string PsTruckNo { get; set; } } }