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
1.4 KiB
C#

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(DisableSyncStructure = true)]
public partial class SMSRPTKFWXQRY {
[JsonProperty, Column(Name = "@PI_RESULT", IsIdentity = true)]
public int PIRESULT { get; set; }
[JsonProperty, Column(Name = "@PS_MESSAGE", DbType = "varchar(2000)", IsIdentity = true, IsNullable = false)]
public string PSMESSAGE { get; set; }
[JsonProperty, Column(Name = "@PS_ORGCODE", DbType = "varchar(100)", IsNullable = false)]
public string PSORGCODE { get; set; }
[JsonProperty, Column(Name = "@PS_PGDATEBGN", DbType = "varchar(20)", IsNullable = false)]
public string PSPGDATEBGN { get; set; }
[JsonProperty, Column(Name = "@PS_PGDATEEND", DbType = "varchar(20)", IsNullable = false)]
public string PSPGDATEEND { get; set; }
[JsonProperty, Column(Name = "@PS_TRUCKNO", DbType = "varchar(100)", IsNullable = false)]
public string PSTRUCKNO { get; set; }
[JsonProperty, Column(Name = "@PS_WXITEM", DbType = "varchar(100)", IsNullable = false)]
public string PSWXITEM { get; set; }
[JsonProperty, Column(Name = "@PS_WXLXCODE", DbType = "varchar(20)", IsNullable = false)]
public string PSWXLXCODE { get; set; }
}
}