1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model
- {
- public class TdevBoxTemplateUpdateModel
- {
- public string C_Name { get; set; }
- public string C_QRCode { get; set; }
- public string C_Marker { get; set; }
- public string C_ProdArea { get; set; }
- public string C_Manufacturer { get; set; }
- public string C_ImagePath { get; set; }
- public string C_IconPath { get; set; }
- public string C_ThreeDPath { get; set; }
- public string C_Parameter { get; set; }
- public string C_Contacts { get; set; }
- public string C_ContactPhone { get; set; }
- public string C_OfficialWebsiteUrl { get; set; }
- public int? I_ValiDays { get; set; }
- public int I_ProtocolType { get; set; }
- public int? I_Sort { get; set; }
- public string C_Remark { get; set; }
- public string C_Status { get; set; }
- }
- }
|