xwt
14 小时以前 91512ffa0b977624ef127658e6aadf484ccfa6e2
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 SqlSugar;
 
namespace MES.Service.Modes
{
    [SugarTable("DBCKB")]
    public class Dbckb
    {
        [SugarColumn(IsPrimaryKey = true)]
        public decimal? Id { get; set; }
        public decimal? Pid { get; set; }
        public string Itemid { get; set; }
        public string Unit { get; set; }
        public decimal? Quantity { get; set; }
        public string DcOrg { get; set; }
        public string DcDepot { get; set; }
        public string DrOrg { get; set; }
        public string DrDepot { get; set; }
        public string DcHz { get; set; }
        public string DrHz { get; set; }
        public string Bz { get; set; }
        public string Erpid { get; set; }
        public string Eid { get; set; }
    }
}