wangxinhui
2 天以前 011ca316e6ec2ed93e31c45a9ebd9d3c66664871
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 SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core.Attributes;
 
namespace WIDESEA_DTO.ERP
{
    /// <summary>
    /// 生产排程明细
    /// </summary>
    public class BSTWeightUpDTO
    {
        /// <summary>
        /// 原纸唯一编码
        /// </summary>
        public string Paper_code { get; set; }
        /// <summary>
        /// 生管预估重量
        /// </summary>
        public decimal Estimate_weight { get; set; }
        /// <summary>
        /// 称重重量
        /// </summary>
        public decimal Actual_weight { get; set; }
        /// <summary>
        /// 误差重量
        /// </summary>
        public decimal Error_weight { get; set; }
        /// <summary>
        /// 称重时间
        /// </summary>
        public string Weigh_time { get; set; }
        /// <summary>
        /// 测试人员
        /// </summary>
        public string Operator { get; set; }
        /// <summary>
        /// 原纸门幅
        /// </summary>
        public decimal Width { get; set; }
        /// <summary>
        /// 克重
        /// </summary>
        public int Gram_weight { get; set; }
    }
}