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.

69 lines
2.0 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_ReceiptStatus", DisableSyncStructure = true)]
public partial class VwReceiptStatus {
[JsonProperty, Column(StringLength = 100)]
public string BSNO { get; set; }
[JsonProperty, Column(Name = "company", DbType = "varchar(150)")]
public string Company { get; set; }
[JsonProperty]
public DateTime? CREATETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string CUSTNO { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string CUSTOMERNAME { get; set; }
[JsonProperty, Column(Name = "etd", DbType = "varchar(30)")]
public string Etd { get; set; }
[JsonProperty, Column(Name = "gid", DbType = "varchar(36)")]
public string Gid { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string HBLNO { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string MBLNO { get; set; }
[JsonProperty, Column(Name = "need")]
public bool Need { get; set; }
[JsonProperty, Column(Name = "needtype", DbType = "varchar(4)", IsNullable = false)]
public string Needtype { get; set; }
[JsonProperty, Column(DbType = "varchar(8)")]
public string OPLBNAME { get; set; }
[JsonProperty, Column(DbType = "varchar(60)")]
public string PORTDISCHARGE { get; set; }
[JsonProperty, Column(DbType = "varchar(60)")]
public string PORTLOAD { get; set; }
[JsonProperty, Column(Name = "R_Date")]
public DateTime? RDate { get; set; }
[JsonProperty, Column(Name = "receiptname", DbType = "varchar(50)", IsNullable = false)]
public string Receiptname { get; set; }
[JsonProperty, Column(Name = "trancno", DbType = "varchar(100)")]
public string Trancno { get; set; }
}
}