12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model.SearchModel.LGS
- {
- public class LargeScreenSearch : BaseSearchModel
- {
- public string C_ID { get; set; }
- public string C_Name { get; set; }
- public string C_LargeScreenTemplateCode { get; set; }
- public string C_StoreCode { get; set; }
- public string C_Status { get; set; }
- }
- public class LargeScreenInterfaceDataSearch
- {
- public string DevCode { get; set; }
- public int Days { get; set; } = 30;
- //total=所以、normal=4、abnormal=3
- //【approval=1;confirm=2;repairOn=3;complete=4;cancel=5;repairRework=6;repairCompleted=7】
- public string DataType { get; set; } = "total";
- public bool LableIsShow { get; set; } = true;
- public int MonthNum { get; set; } = 6;
- public List<int> StatusArray { get; set; }
- public List<LargeScreenInterfaceListColumns> Columns { get; set; }
- }
- public class LargeScreenInterfaceListColumns
- {
- public string title { get; set; }
- public string key { get; set; }
- public int width { get; set; } = 100;
- public string align { get; set; } = "center";
- public bool sortable { get; set; } = true;
- }
- }
|