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.7 KiB
C#
57 lines
1.7 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_StatusDetails", DisableSyncStructure = true)]
|
|
public partial class OpStatusDetails {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)", IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string BaoGuanDanYiTongGuanFangXingTime { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string BSNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string CangDanJieShouShenBaoTime { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string CangDanYiZhuangZaiFangXingTime { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string MBLNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string XiangHao { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string YiFanChangTime { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string YiRuZhaKouTime { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string YiTiXiangTime { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string YiZhuangChuanTime { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string YunDiZhengChangMsg { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(512)")]
|
|
public string YunDiZhengChangTime { get; set; }
|
|
|
|
}
|
|
|
|
}
|