bklLiudl
2024-07-23 6a22198db966e3e836e14a0d4187529fe05afbd9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
namespace Model
{
    public class OrdType
    {
        public string OrdTypeNo { get; set; }
        public string OrdTypeName { get; set; }
        public string Demo { get; set; }
        public string Demo1 { get; set; }
        public string Demo2 { get; set; }
    }
 
    public class AjaxOrdTypeList : OrdType
    {
        public int pageIndex { get; set; }
        public int pageSize { get; set; }
    }
 
    public class AjaxOrdTypeInfo : Area
    {
        public string Operation { get; set; }
    }
}