3 changed files with 41 additions and 3 deletions
@ -0,0 +1,24 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Linq; |
||||
|
using System.Threading.Tasks; |
||||
|
|
||||
|
namespace AMESCoreStudio.WebApi.Models.AMES |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 自動裝箱
|
||||
|
/// </summary>
|
||||
|
public class WipBoxDto |
||||
|
{ |
||||
|
public string WipNo { get; set; } |
||||
|
/// <summary>
|
||||
|
/// 裝箱出貨序號
|
||||
|
/// </summary>
|
||||
|
public string ExtraNo { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 是否關箱
|
||||
|
/// </summary>
|
||||
|
public string CloseBox { get; set; } = "N"; |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue