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.

39 lines
1.3 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 SMSRPTWLTYREQRY {
[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_PCNO", DbType = "varchar(20)", IsNullable = false)]
public string PSPCNO { get; set; }
[JsonProperty, Column(Name = "@PS_SCRAPDATEBGN", DbType = "varchar(20)", IsNullable = false)]
public string PSSCRAPDATEBGN { get; set; }
[JsonProperty, Column(Name = "@PS_SCRAPDATEEND", DbType = "varchar(20)", IsNullable = false)]
public string PSSCRAPDATEEND { get; set; }
[JsonProperty, Column(Name = "@PS_TRUCKNO", DbType = "varchar(100)", IsNullable = false)]
public string PSTRUCKNO { get; set; }
}
}