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.5 KiB
C#
57 lines
1.5 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_CtnRepairDetails", DisableSyncStructure = true)]
|
|
public partial class OpCtnRepairDetails {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)", IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string CaiLiaoFei { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int DelFlag { get; set; } = 0;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string GongShiFei { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? IsRepair { get; set; } = 0;
|
|
|
|
[JsonProperty]
|
|
public int? IsShouFei { get; set; } = 0;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string RepairID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string ShuLiang { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string WeiXiuGongShi { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string WeiXiuMiaoShu { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string XiuXiangDanHao { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string XuHao { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string ZeRenRen { get; set; }
|
|
|
|
}
|
|
|
|
}
|