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 = "wms_settlement_list", DisableSyncStructure = true)]
public partial class WmsSettlementList {
///
/// 惟一编号
///
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper();
///
/// 分公司代码
///
[JsonProperty, Column(DbType = "varchar(36)")]
public string CORPID { get; set; } = "";
///
/// 创建时间
///
[JsonProperty, Column(InsertValueSql = "getdate()")]
public DateTime? CREATETIME { get; set; }
///
/// 创建人
///
[JsonProperty, Column(DbType = "varchar(36)")]
public string CREATEUSER { get; set; } = "";
///
/// 对账客户
///
[JsonProperty, Column(DbType = "varchar(20)")]
public string CUSTOMERNAME { get; set; } = "";
///
/// 删除时间
///
[JsonProperty, Column(InsertValueSql = "getdate()")]
public DateTime? DELETETIME { get; set; }
///
/// 删除人
///
[JsonProperty, Column(DbType = "varchar(36)")]
public string DELETEUSER { get; set; } = "";
///
/// 对账编号
///
[JsonProperty, Column(DbType = "varchar(100)")]
public string DUINO { get; set; } = "";
///
/// 结束计费日期
///
[JsonProperty]
public DateTime? ENDBILLINGDATE { get; set; }
///
/// 是否删除
///
[JsonProperty]
public bool? ISDELETE { get; set; } = false;
[JsonProperty]
public bool? ISLOCK { get; set; } = false;
///
/// 是否重新生成过
///
[JsonProperty]
public bool? ISMAKEOUT { get; set; } = false;
[JsonProperty, Column(InsertValueSql = "getdate()")]
public DateTime? LOCKTIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string LOCKUSER { get; set; } = "";
///
/// 重新生成时间
///
[JsonProperty, Column(InsertValueSql = "getdate()")]
public DateTime? MAKEOUTTIME { get; set; }
///
/// 重新生成人
///
[JsonProperty, Column(DbType = "varchar(36)")]
public string MAKEOUTUSER { get; set; } = "";
///
/// 备注
///
[JsonProperty, Column(DbType = "varchar(1024)")]
public string REMARK { get; set; } = "";
///
/// 开始计费日期
///
[JsonProperty]
public DateTime? STARTBILLINGDATE { get; set; }
}
}