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.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 = "VW_SUMDR", DisableSyncStructure = true)]
public partial class VWSUMDR {
[JsonProperty, Column(DbType = "varchar(7)")]
public string ACCDATE { get; set; }
[JsonProperty, Column(Name = "bstype", DbType = "varchar(12)", IsNullable = false)]
public string Bstype { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string CORPID { get; set; }
[JsonProperty, Column(Name = "customername", DbType = "varchar(50)")]
public string Customername { get; set; }
[JsonProperty, Column(Name = "hj", DbType = "numeric(38,2)")]
public decimal? Hj { get; set; }
[JsonProperty, Column(Name = "hjKP", DbType = "numeric(38,2)")]
public decimal? HjKP { get; set; }
[JsonProperty, Column(Name = "hjRMB", DbType = "numeric(38,2)")]
public decimal HjRMB { get; set; }
[JsonProperty, Column(Name = "hjRMBKP", DbType = "numeric(38,2)")]
public decimal HjRMBKP { get; set; }
[JsonProperty, Column(Name = "hjRMBSS", DbType = "numeric(38,2)")]
public decimal HjRMBSS { get; set; }
[JsonProperty, Column(Name = "hjRMBWS", DbType = "numeric(38,2)")]
public decimal HjRMBWS { get; set; }
[JsonProperty, Column(Name = "hjSS", DbType = "numeric(38,2)")]
public decimal? HjSS { get; set; }
[JsonProperty, Column(Name = "hjUSD", DbType = "numeric(38,2)")]
public decimal HjUSD { get; set; }
[JsonProperty, Column(Name = "hjUSDKP", DbType = "numeric(38,2)")]
public decimal HjUSDKP { get; set; }
[JsonProperty, Column(Name = "hjUSDSS", DbType = "numeric(38,2)")]
public decimal HjUSDSS { get; set; }
[JsonProperty, Column(Name = "hjUSDWS", DbType = "numeric(38,2)")]
public decimal HjUSDWS { get; set; }
[JsonProperty, Column(Name = "hjWS", DbType = "numeric(38,2)")]
public decimal? HjWS { get; set; }
[JsonProperty, Column(Name = "nid", DbType = "varchar(62)")]
public string Nid { get; set; }
[JsonProperty, Column(DbType = "varchar(150)")]
public string SALE { get; set; }
}
}