1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model
- {
- public class TdevMaintenanceTemplateSearchModel : BaseSearchModel
- {
- public string C_ID { get; set; }
- public string C_Name { get; set; }
- public string C_DevTempCode { get; set; }
- public string C_StoreCode { get; set; }
- public string C_Type { get; set; }
- public bool IsPublic { get; set; } = false;
- public string C_Status { get; set; }
- }
- public class TdevDeviceTempOpsContentSearchModel : BaseSearchModel
- {
- public string C_ID { get; set; }
- public string C_Name { get; set; }
- public string C_DevTempCode { get; set; }
- public string C_Type { get; set; }
- public string C_Status { get; set; }
- }
- }
|