123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model
- {
- public class TdevDevStoreCreateModel
- {
- 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_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 class DevOperateCreateModel
- {
- public string C_DevStoreCode { get; set; }
- public string C_LogMsg { get; set; }
- public string C_Remark { get; set; }
- public string C_Type { get; set; }
- }
- }
|