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.
72 lines
2.0 KiB
C#
72 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 = "vMsWlCheckAcc", DisableSyncStructure = true)]
|
|
public partial class VMsWlCheckAcc {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string BillNo { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,0)")]
|
|
public decimal? Con20Qty { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,0)")]
|
|
public decimal? Con40Qty { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string ContactName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string CustDate { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string CUSTOMERNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(400)")]
|
|
public string DetiNation { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string DstArea { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal? ExSettleMent { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal? ExtrasFee { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? FEETYPE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal? Freight { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(40)", IsNullable = false)]
|
|
public string GId { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string MblNo { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
|
|
public string OrgCode { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string SendYardName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal? SettleMent { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string VoyVeg { get; set; }
|
|
|
|
}
|
|
|
|
}
|