1
huangxiaoqiang
8 天以前 7195016afc472307e4db0b415e45c9d4275bdb02
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
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
    {
        public string 单号 { get; set; }
        public string 项目简称 { get; set; }
        public string 料号 { get; set; }
        public string 品名 { get; set; }
        public string 规格 { get; set; }
        public string 实际单重 { get; set; }
        public string 单位 { get; set; }
        public string 用友材质 { get; set; }
        public string 执行标准号 { get; set; }
        public string 品牌 { get; set; }
        public decimal 可领数量 { get; set; }
        public decimal 已出库数 { get; set; }
        public decimal 领料需求 { get; set; }
        public string PBOM单号 { get; set; }
        public string 行号 { get; set; }
    }
}