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.
81 lines
2.2 KiB
C#
81 lines
2.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 = "VW_OWEFEE_CR", DisableSyncStructure = true)]
|
|
public partial class VWOWEFEECR {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(7)")]
|
|
public string ACCDATE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string BSNO { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "bstype", DbType = "varchar(100)")]
|
|
public string Bstype { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string CONTRACTNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string CORPID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string CUSTNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string CUSTOMERNAME { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? ETD { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string HBLNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string MBLNO { 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 = "numeric(38,2)")]
|
|
public decimal? RMBCR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal? RMBCRTTL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal? RMBDIFF { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(150)")]
|
|
public string SALE { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "stlCUSTOMERNAME", DbType = "varchar(50)")]
|
|
public string StlCUSTOMERNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal? USDCR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal? USDCRTTL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string VESSEL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string VOYNO { get; set; }
|
|
|
|
}
|
|
|
|
}
|