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.

159 lines
4.9 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 = "VW_OP_RECEIPT_SEA", DisableSyncStructure = true)]
public partial class VWOPRECEIPTSEA {
[JsonProperty, Column(DbType = "varchar(7)")]
public string ACCDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string BSNO { get; set; }
[JsonProperty, Column(DbType = "varchar(4)", IsNullable = false)]
public string BSSTATUS { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string CORPID { get; set; }
[JsonProperty, Column(Name = "CORPID_NAME", DbType = "varchar(150)")]
public string CORPIDNAME { get; set; }
[JsonProperty]
public DateTime? CREATETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string CREATEUSER { get; set; }
[JsonProperty, Column(Name = "CREATEUSER_NAME", DbType = "varchar(150)")]
public string CREATEUSERNAME { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string CUSTNO { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string CUSTOMERNAME { get; set; }
[JsonProperty, Column(DbType = "varchar(1024)", IsNullable = false)]
public string CUSTOMNO { get; set; }
[JsonProperty, Column(DbType = "varchar(20)", IsNullable = false)]
public string CUSTOMNO2 { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string CUSTSERVICE { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string DOC { get; set; }
[JsonProperty, Column(DbType = "char(10)")]
public string ETD { get; set; }
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
public string GID { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string HBLNO { get; set; }
[JsonProperty, Column(DbType = "varchar(150)")]
public string INPUTBY { get; set; }
[JsonProperty, Column(DbType = "varchar(2)", IsNullable = false)]
public string ISRECEIVE { get; set; }
[JsonProperty, Column(DbType = "varchar(2)", IsNullable = false)]
public string ISREPEAT { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string MBLNO { get; set; }
[JsonProperty]
public DateTime? MODIFIEDTIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string MODIFIEDUSER { get; set; }
[JsonProperty, Column(Name = "MODIFIEDUSER_NAME", DbType = "varchar(150)")]
public string MODIFIEDUSERNAME { get; set; }
[JsonProperty, Column(DbType = "varchar(150)")]
public string OP { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string OPLB { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string OPLBNAME { get; set; }
[JsonProperty, Column(DbType = "varchar(400)")]
public string PORTDISCHARGE { get; set; }
[JsonProperty, Column(DbType = "varchar(400)")]
public string PORTLOAD { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string RECEIPTNO { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string RECEIPTTYPE { get; set; }
[JsonProperty, Column(Name = "RECEIVE_DATE", DbType = "char(10)")]
public string RECEIVEDATE { get; set; }
[JsonProperty, Column(Name = "RECEIVE_MAN", DbType = "varchar(100)")]
public string RECEIVEMAN { get; set; }
[JsonProperty, Column(DbType = "varchar(1024)")]
public string REMARK { get; set; }
[JsonProperty, Column(Name = "REPEAT_DATE", DbType = "char(10)")]
public string REPEATDATE { get; set; }
[JsonProperty, Column(Name = "REPEAT_MAN", DbType = "varchar(100)")]
public string REPEATMAN { get; set; }
[JsonProperty, Column(Name = "RETURN_DATE", DbType = "char(10)")]
public string RETURNDATE { get; set; }
[JsonProperty, Column(Name = "RETURN_MAN", DbType = "varchar(100)")]
public string RETURNMAN { get; set; }
[JsonProperty, Column(Name = "RETURN_TRANCER", DbType = "varchar(100)")]
public string RETURNTRANCER { get; set; }
[JsonProperty, Column(Name = "RETURN_TRANCNO", DbType = "varchar(100)")]
public string RETURNTRANCNO { get; set; }
[JsonProperty, Column(DbType = "varchar(150)")]
public string SALE { get; set; }
[JsonProperty, Column(Name = "SEND_DATE", DbType = "char(10)")]
public string SENDDATE { get; set; }
[JsonProperty, Column(Name = "SEND_MAN", DbType = "varchar(100)")]
public string SENDMAN { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string TRANCER { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string TRANCNO { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string VESSEL { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string VOYNO { get; set; }
}
}