Administrator
2 天以前 d386d8d2ca5fd242b99c9cedf670e6d680eca0ed
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 SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
 
namespace WMS.Entity.BllSoEntity
{
    /// <summary>
    /// MES生产叫料任务表
    /// </summary>
    [SugarTable("BllProductionCallTask")]
    public class BllProductionCallTask:BaseEntity
    {
        /// <summary>
        /// 投料位置
        /// </summary>
        public string PutInLocation { get; set; }
        /// <summary>
        /// 生产工单
        /// </summary>
        public string OrderCode { get; set; }
        /// <summary>
        /// 物料号
        /// </summary>
        public string SkuNo { get; set; }
    }
}