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.

111 lines
3.0 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_ch_fee_management_mbody", DisableSyncStructure = true)]
public partial class VWChFeeManagementMbody {
[JsonProperty, Column(DbType = "varchar(7)")]
public string ACCDATE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? AMOUNT { get; set; }
[JsonProperty, Column(Name = "AMOUNT_F", DbType = "numeric(13,2)")]
public decimal? AMOUNTF { get; set; }
[JsonProperty]
public DateTime? AUDITDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string AUDITOR { get; set; }
[JsonProperty]
public DateTime? BILLINGDATE { get; set; }
[JsonProperty]
public DateTime CREATEDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
public string CREATOR { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string CURRENCY { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string CUSTACCOUNT { get; set; }
[JsonProperty, Column(DbType = "varchar(60)")]
public string CUSTBANK { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string CUSTOMERSIDE { get; set; }
[JsonProperty]
public DateTime? DELETETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string DELETEUSER { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string DEPTGID { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? EXCHANGERATE { get; set; }
[JsonProperty]
public DateTime? FEEDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
public string Feeid { get; set; }
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
public string FEENAME { get; set; }
[JsonProperty]
public byte FEESTATUS { get; set; }
[JsonProperty]
public byte FEETYPE { get; set; }
[JsonProperty, Column(Name = "gid", DbType = "varchar(50)", IsNullable = false)]
public string Gid { get; set; }
[JsonProperty]
public byte? ISDELETE { get; set; }
[JsonProperty]
public bool? ISVOU { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string OPERATORSIDE { get; set; }
[JsonProperty, Column(Name = "OPERATORSIDE_gl", DbType = "varchar(16)")]
public string OPERATORSIDEGl { get; set; }
[JsonProperty, Column(DbType = "varchar(150)")]
public string REMARK { get; set; }
[JsonProperty, Column(Name = "REMARK_F", DbType = "varchar(150)")]
public string REMARKF { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string SALE { get; set; }
[JsonProperty, Column(DbType = "timestamp")]
public byte[] TimeMark { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string VOUCHERNO { get; set; }
}
}