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.
57 lines
1.6 KiB
C#
57 lines
1.6 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_main", DisableSyncStructure = true)]
|
|
public partial class ChDuiMain {
|
|
|
|
[JsonProperty, Column(Name = "dMainId", DbType = "varchar(40)", IsPrimary = true, IsNullable = false)]
|
|
public string DMainId { get; set; } = Guid.NewGuid().ToString().ToUpper();
|
|
|
|
[JsonProperty, Column(Name = "createDate", InsertValueSql = "getdate()")]
|
|
public DateTime? CreateDate { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "description", DbType = "varchar(500)")]
|
|
public string Description { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "duiDate")]
|
|
public DateTime? DuiDate { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "duiOp", DbType = "varchar(40)")]
|
|
public string DuiOp { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string DuiZhangKeHu { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string JieFeiLeiXing { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? KaiChuanRiFrom { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? KaiChuanRiTo { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "mainDuiName", DbType = "varchar(40)")]
|
|
public string MainDuiName { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "mainDuiNo", DbType = "varchar(40)")]
|
|
public string MainDuiNo { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? ShiFouYiKaiPiao { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? ShouFuFangXiang { get; set; }
|
|
|
|
}
|
|
|
|
}
|