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.
84 lines
2.2 KiB
C#
84 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 = "ch_fee_management", DisableSyncStructure = true)]
|
|
public partial class ChFeeManagement {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
|
|
public string Feeid { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(7)")]
|
|
public string ACCDATE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? AMOUNT { get; set; } = 0M;
|
|
|
|
[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]
|
|
public DateTime? DELETETIME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string DELETEUSER { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,4)")]
|
|
public decimal? EXCHANGERATE { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? FEEDATE { get; set; }
|
|
|
|
[JsonProperty]
|
|
public byte FEESTATUS { get; set; } = 1;
|
|
|
|
[JsonProperty]
|
|
public byte FEETYPE { get; set; }
|
|
|
|
[JsonProperty]
|
|
public byte? ISDELETE { get; set; } = 0;
|
|
|
|
[JsonProperty]
|
|
public bool? ISVOU { get; set; } = false;
|
|
|
|
[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(DbType = "timestamp")]
|
|
public byte[] TimeMark { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string VOUCHERNO { get; set; }
|
|
|
|
}
|
|
|
|
}
|