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.
78 lines
2.1 KiB
C#
78 lines
2.1 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 = "Op_CtnRepair", DisableSyncStructure = true)]
|
|
public partial class OpCtnRepair {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)", IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string BiBie { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string CeLiangDanWei { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string ChangZhan { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string ChangZhanSub { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string ChuanMing { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int DelFlag { get; set; } = 0;
|
|
|
|
[JsonProperty, Column(DbType = "numeric(10,2)")]
|
|
public decimal? GongShiFei { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? IsLock { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? IsSendMail { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string JinChangRiQi { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string MBLNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(10,2)")]
|
|
public decimal? ShuiLv { get; set; }
|
|
|
|
[JsonProperty, Column(InsertValueSql = "getdate()")]
|
|
public DateTime? UpdateTime { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string XiangHao { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string XiangXing { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string XiangZhu { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string XiuXiangDanHao { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string XiuXiangRiQi { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string ZaoXiangRiQi { get; set; }
|
|
|
|
}
|
|
|
|
}
|