123456789101112131415161718192021222324252627282930313233343536373839 |
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WCS_Client.Models
- {
- public class WCS_PalletizingCode
- {
- /// <summary>
- /// 码垛编号(码垛机器人使用)
- /// </summary>
- [SugarColumn(IsPrimaryKey = true)]
- public int PalletizingNo { get; set; }
- /// <summary>
- /// 子托盘编号(码垛机器人使用)
- /// </summary>
- public int PalletizingSonTrayNo { get; set; }
- /// <summary>
- /// 子托盘编码(WMS中的编码)
- /// </summary>
- public string PalletizingSonTrayCode { get; set; }
- /// <summary>
- /// 子托盘尺寸
- /// </summary>
- public string PalletizingSonTraySize { get; set; }
- /// <summary>
- /// 箱子编号(码垛机器人使用)
- /// </summary>
- public int PalletizingBoxNo { get; set; }
- /// <summary>
- /// 箱子尺寸
- /// </summary>
- public string PalletizingBoxSize { get; set; }
- public string Notes { get; set; }
- }
- }
|