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.

51 lines
1.5 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_Mbody", DisableSyncStructure = true)]
public partial class ChFeeMbody {
[JsonProperty, Column(Name = "gid", DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
public string Gid { get; set; }
[JsonProperty, Column(DbType = "numeric(13,2)")]
public decimal? AMOUNT { 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, Column(DbType = "varchar(50)")]
public string DEPTGID { 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, 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 = "varchar(20)")]
public string SALE { get; set; }
}
}