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.

63 lines
1.8 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_apply_service_detail", DisableSyncStructure = true)]
public partial class OpApplyServiceDetail {
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; }
[JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)]
public string BSNO { get; set; }
[JsonProperty, Column(DbType = "varchar(19)")]
public string ENDDATETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string ENDOP { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string HELPOP { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string NEXTPLAN { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string NOFINISHRESON { get; set; }
[JsonProperty, Column(DbType = "varchar(16)", IsNullable = false)]
public string OPField { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string OTADVICE { get; set; }
[JsonProperty, Column(DbType = "varchar(19)")]
public string PLANENDTIME { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string Remark { get; set; }
[JsonProperty, Column(DbType = "numeric(27,0)")]
public decimal SerialNo { get; set; }
[JsonProperty, Column(DbType = "varchar(19)")]
public string STARTDATETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string STATUS { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string WORK { get; set; }
}
}