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.

96 lines
2.7 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 = "v_op_gain_billcustomer", DisableSyncStructure = true)]
public partial class VOpGainBillcustomer {
[JsonProperty, Column(DbType = "varchar(100)")]
public string BSNO { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? CBM { get; set; }
[JsonProperty, Column(Name = "customername", DbType = "varchar(50)")]
public string Customername { get; set; }
[JsonProperty, Column(Name = "CUSTOMERNAME_DR", DbType = "varchar(50)")]
public string CUSTOMERNAMEDR { get; set; }
[JsonProperty]
public DateTime? ETD { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? KGS { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string MBLNO { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal OTCR { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal OTDR { get; set; }
[JsonProperty]
public int? PKGS { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal RMBCR { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal RMBDR { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string SALE { get; set; }
[JsonProperty, Column(DbType = "varchar(12)")]
public string STLDATE { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal STLOTCR { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal STLOTDR { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal STLRMBCR { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal STLRMBDR { get; set; }
[JsonProperty, Column(DbType = "numeric(38,7)")]
public decimal STLTTLCR { get; set; }
[JsonProperty, Column(DbType = "numeric(38,7)")]
public decimal STLTTLDR { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal STLUSDCR { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal STLUSDDR { get; set; }
[JsonProperty, Column(DbType = "numeric(38,7)")]
public decimal TTLCR { get; set; }
[JsonProperty, Column(DbType = "numeric(38,7)")]
public decimal TTLDR { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal USDCR { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal USDDR { get; set; }
}
}