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.
75 lines
2.3 KiB
C#
75 lines
2.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 = "VW_CustomerBalance", DisableSyncStructure = true)]
|
|
public partial class VWCustomerBalance {
|
|
|
|
[JsonProperty, Column(Name = "Balance_1", DbType = "numeric(18,2)")]
|
|
public decimal? Balance1 { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "Balance_2", DbType = "numeric(18,2)")]
|
|
public decimal? Balance2 { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "Balance_3", DbType = "numeric(18,2)")]
|
|
public decimal? Balance3 { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "Balance_4", DbType = "numeric(18,2)")]
|
|
public decimal? Balance4 { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "Balance_5", DbType = "numeric(18,2)")]
|
|
public decimal? Balance5 { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "codename", DbType = "varchar(20)")]
|
|
public string Codename { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "custGID", DbType = "varchar(50)")]
|
|
public string CustGID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string CustomerGID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string Customername { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "deptgid", DbType = "varchar(50)")]
|
|
public string Deptgid { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "deptname", DbType = "varchar(100)", IsNullable = false)]
|
|
public string Deptname { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "gid", DbType = "varchar(50)")]
|
|
public string Gid { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "inserted")]
|
|
public byte? Inserted { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "starttime")]
|
|
public DateTime? Starttime { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "wkp", DbType = "numeric(38,3)")]
|
|
public decimal? Wkp { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "wkys", DbType = "numeric(38,3)")]
|
|
public decimal? Wkys { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "ykwf", DbType = "numeric(38,2)")]
|
|
public decimal? Ykwf { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "ykws", DbType = "numeric(38,3)")]
|
|
public decimal? Ykws { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "ykys", DbType = "numeric(38,3)")]
|
|
public decimal? Ykys { get; set; }
|
|
|
|
}
|
|
|
|
}
|