1
huangxiaoqiang
9 小时以前 a296223898d61a9838bbd35ed75c87575e308a36
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
50
51
52
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_Model.Models.ERP
{
    public class WMS_采购及成品入库清单_ST
    {
        [SugarColumn(ColumnName = "单号", Length = 255)]
        public string 单号 { get; set; }
        [SugarColumn(ColumnName = "需求分类", Length = 255)]
        public string 需求分类 { get; set; }
        [SugarColumn(ColumnName = "单据类型", Length = 255)]
        public string 单据类型 { get; set; }
        [SugarColumn(ColumnName = "入库仓库编码", Length = 255)]
        public string 入库仓库编码 { get; set; }
        [SugarColumn(ColumnName = "入库仓库名称", Length = 255)]
        public string 入库仓库名称 { get; set; }
        [SugarColumn(ColumnName = "日期", Length = 255)]
        public string 日期 { get; set; }
        [SugarColumn(ColumnName = "行号", Length = 255)]
        public int 行号 { get; set; }
        [SugarColumn(ColumnName = "产品图号", Length = 255)]
        public string 产品图号 { get; set; }
        [SugarColumn(ColumnName = "料号", Length = 255)]
        public string 料号 { get; set; }
        [SugarColumn(ColumnName = "品名", Length = 255)]
        public string 品名 { get; set; }
        public decimal 单重 { get; set; }
        [SugarColumn(ColumnName = "规格", Length = 255)]
        public string 规格 { get; set; }
        [SugarColumn(ColumnName = "单位", Length = 255)]
        public string 单位 { get; set; }
        [SugarColumn(ColumnName = "用友材质", Length = 255)]
        public string 用友材质 { get; set; }
        [SugarColumn(ColumnName = "入库数量", Length = 255)]
        public decimal 入库数量 { get; set; }
        [SugarColumn(ColumnName = "单据状态", Length = 255)]
        public string 单据状态 { get; set; }
        [SugarColumn(ColumnName = "执行标准号", Length = 255)]
        public string 执行标准号 { get; set; }
        [SugarColumn(ColumnName = "品牌", Length = 255)]
        public string 品牌 { get; set; }
        [SugarColumn(ColumnName = "唯一ID", Length = 255)]
        public string 唯一ID { get; set; }
        [SugarColumn(ColumnName = "料号ID", Length = 255)]
        public string 料号ID { get; set; }
    }
}