duhe
2023-10-07 dd2eb88c5a33f16b12ba968741d0022896cd6eb2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace Model
{
    public class ClsGy_SupMaterial_Model : DBUtility.ClsGy_Base_Model
    {
        public long HInterID;
        public long HPackTypeID;
        public long HSupID;
        public decimal HMinQty;
        public decimal HBagQty;
        public long HMaterID;
        public bool HUsed;         //当前正在启用
        public DateTime HBeginDate;
        public DateTime HEndDate;
        public string HMaker;
        public string HMakeDate;
        public string HChecker;
        public string HCheckDate;
    }
}