using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Model { public class TdevDevStoreUpdateModel { public string C_Name { get; set; } public string C_DevTempCode { get; set; } public string C_StoreCode { get; set; } public string C_NumberCode{ get; set; } public string C_Remark { get; set; } public string C_Status { get; set; } /// /// 维保模板代码 /// public string C_OpsTempCode { get; set; } /// /// 运维模板代码 /// public string C_RepairTempCode { get; set; } /// /// 运行模板代码 /// public string C_RunTempCode { get; set; } public string C_PlanTempCode { get; set; } public string C_ContractNumber { get; set; } public DateTime? D_DevOpsStart { get; set; } public DateTime? D_DevOpsEnd { get; set; } public string C_DevQRUrl { get; set; } public string C_Url { get; set; } public string C_StaticUrl { get; set; } public string C_GPS { get; set; } public int I_Sort { get; set; } } }