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.

66 lines
1.8 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_dui", DisableSyncStructure = true)]
public partial class ChDui {
[JsonProperty, Column(DbType = "varchar(20)", IsPrimary = true, IsNullable = false)]
public string DUINO { get; set; }
[JsonProperty]
public int? BILLSTATUS { get; set; }
[JsonProperty, Column(DbType = "varchar(20)", IsNullable = false)]
public string CUSTNAME { get; set; }
[JsonProperty, Column(DbType = "varchar(1)")]
public string DC { get; set; }
[JsonProperty, Column(Name = "DM_ID", DbType = "varchar(36)")]
public string DMID { get; set; }
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
public string DUIDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string DUINAME { get; set; }
[JsonProperty, Column(Name = "duiType")]
public int DuiType { get; set; } = 0;
[JsonProperty, Column(DbType = "varchar(1)")]
public string ISNOSTL { get; set; }
[JsonProperty, Column(DbType = "varchar(1)")]
public string ISNOTAX { get; set; }
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
public string OP { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string REMARKS { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? RMBCR { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? RMBDR { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? USDCR { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? USDDR { get; set; }
}
}