bklLiudl
2024-07-23 46cca75880353bbffbd8fef39fe2ea659180ebd7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;
 
namespace Model
{
 
    public class Material
    {
        public string MatNo { get; set; }
        public string MatName { get; set; }
        public string PackFormat { get; set; } //规格
        public string Unit { get; set; }       //单位
        public string UnitNum { get; set; }      // 单位ID
        public string Nweight { get; set; }    //净重
        public string Gweight { get; set; }    //毛重
        public string Price { get; set; }      //价格
        public string Long { get; set; }       //长
        public string Width { get; set; }      //宽
        public string Height { get; set; }     //高
        public string Demo { get; set; }       //备注
        public string CreateUser { get; set; } //创建者
        public DateTime CreateTime { get; set; }//创建时间
        public string UpdateUser { get; set; } //更新者
        public DateTime UpdateTime { get; set; }//更新时间
        public string StoreCondition { get; set; }//存储条件    
        public string Guid { get; set; }    
        public string BrandId { get; set; }
        public string BrandName { get; set; }
        public string MatTypeId { get; set; }
        public string MatType { get; set; }
        public int IsDel { get; set; }
 
 
    }
    public class AjaxMatList : Material
    {
        public int pageIndex { get; set; }
        public int pageSize { get; set; }
       
 
    }
 
    public class AjaxMatInfo : Material
    {
        public string Operation { get; set; }
        public string list { get; set; }
    }
 
 
}