1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model
- {
- public class TdevDevStoreSearchModel : BaseSearchModel
- {
- public string type { get; set; }
- 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_NumberCode{ get; set; }
- public string C_Status { get; set; }
- public string C_OrgCode { get; set; }
- }
- public class DevStoreStatusGroup
- {
- public string status { get; set; }
- public long? cut { get; set; }
- }
- }
|