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.
105 lines
2.9 KiB
C#
105 lines
2.9 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_sum_INV", DisableSyncStructure = true)]
|
|
public partial class VOpGainSumINV {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string BSNO { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISADVANCEDPAY { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISINVOICE { 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(20,2)")]
|
|
public decimal? NOTAXTTLCR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(20,2)")]
|
|
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 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(20,2)")]
|
|
public decimal? STLTTLCR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(20,2)")]
|
|
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(20,2)")]
|
|
public decimal? TTLCR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(20,2)")]
|
|
public decimal? TTLDR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(20,2)")]
|
|
public decimal? TTLTAXCR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(20,2)")]
|
|
public decimal? TTLTAXDR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal USDCR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(38,2)")]
|
|
public decimal USDDR { get; set; }
|
|
|
|
}
|
|
|
|
}
|