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.

36 lines
1.2 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(Name = "Proc_EIP_CopyDeliver", DisableSyncStructure = true)]
public partial class ProcEIPCopyDeliver {
[JsonProperty, Column(Name = "@CORPID", DbType = "varchar(100)", IsNullable = false)]
public string CORPID { get; set; }
[JsonProperty, Column(Name = "@NEWBSNO", DbType = "varchar(100)", IsNullable = false)]
public string NEWBSNO { get; set; }
[JsonProperty, Column(Name = "@NEWDELIVERNO", DbType = "varchar(100)", IsNullable = false)]
public string NEWDELIVERNO { get; set; }
[JsonProperty, Column(Name = "@OLDBSNO", DbType = "varchar(100)", IsNullable = false)]
public string OLDBSNO { get; set; }
[JsonProperty, Column(Name = "@OLDDELIVERNO", DbType = "varchar(100)", IsNullable = false)]
public string OLDDELIVERNO { get; set; }
[JsonProperty, Column(Name = "@USER", DbType = "varchar(100)", IsNullable = false)]
public string USER { get; set; }
}
}