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 { /// /// 生产排程明细 /// public class BSTWeightUpDTO { /// /// 原纸唯一编码 /// public string Paper_code { get; set; } /// /// 生管预估重量 /// public decimal Estimate_weight { get; set; } /// /// 称重重量 /// public decimal Actual_weight { get; set; } /// /// 误差重量 /// public decimal Error_weight { get; set; } /// /// 称重时间 /// public string Weigh_time { get; set; } /// /// 测试人员 /// public string Operator { get; set; } /// /// 原纸门幅 /// public decimal Width { get; set; } /// /// 克重 /// public int Gram_weight { get; set; } } }