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.
BaoGuanSYHT/djy.Model/db/SalesAdvancePayStateDEL.cs

45 lines
1.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 = "SalesAdvancePay_state_DEL", DisableSyncStructure = true)]
public partial class SalesAdvancePayStateDEL {
[JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; }
[JsonProperty, Column(Name = "AD_BILLNO", DbType = "varchar(50)", IsNullable = false)]
public string ADBILLNO { get; set; }
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
public string CREATETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
public string CREATEUSER { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string DELETETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string DELETEUSER { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? DOAMOUNT { get; set; }
[JsonProperty]
public byte? PASSED { get; set; } = 0;
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
public string SALESNO { get; set; }
}
}