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.
114 lines
3.2 KiB
C#
114 lines
3.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 = "v_dui_allfee_sum", DisableSyncStructure = true)]
|
|
public partial class VDuiAllfeeSum {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string BSNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string DEBITNO { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int ISDEBIT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal NOINVOICE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal NOTAXOTCR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal NOTAXOTDR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal NOTAXRMBCR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal NOTAXRMBDR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,7)")]
|
|
public decimal NOTAXTTLCR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,7)")]
|
|
public decimal NOTAXTTLDR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal NOTAXUSDCR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal NOTAXUSDDR { 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, Column(DbType = "numeric(38,2)")]
|
|
public decimal RMBCR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal RMBDR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal RMBORDERAMOUNTCR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal RMBORDERINVOICEDR { 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; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal USDORDERAMOUNTCR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal USDORDERINVOICEDR { get; set; }
|
|
|
|
}
|
|
|
|
}
|