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.

117 lines
3.3 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 = "cw_user_ticheng_test", DisableSyncStructure = true)]
public partial class CwUserTichengTest {
[JsonProperty, Column(DbType = "varchar(12)")]
public string ACCDATE { get; set; }
[JsonProperty, Column(StringLength = 100)]
public string BSNO { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string CORPID { get; set; }
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
public string CORPID1 { get; set; }
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
public string CREATEUSER { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string CUSTNO { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string CUSTOMERNAME { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string ETD { get; set; }
[JsonProperty, Column(DbType = "varchar(6)")]
public string FEESTATUSREF { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal GeRenFeiYong { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string ISSALEFEE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal JingLiRun { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string MBLNO { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string OPLBNAME { get; set; }
[JsonProperty, Column(DbType = "varchar(6)")]
public string OPTYPE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal OTCR { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal OTDR { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal RMBCR { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal RMBDR { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string SALE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal ShiFa { get; set; }
[JsonProperty]
public DateTime? ShiJieRiQi { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal ShuiFei { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal TiCheng { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal TiChengBiLi { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal TiChengJiShu { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal TTLCR { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal TTLDR { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal TTLPROFIT { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal USDCR { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal USDDR { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal YeWuFeiYong { get; set; }
[JsonProperty, Column(DbType = "varchar(12)")]
public string YingJieRiQi { get; set; }
}
}