using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using AMESCoreStudio.WebApi.Models.AMES; using AMESCoreStudio.WebApi.Models.BAS; using AMESCoreStudio.WebApi.DTO.AMES; using System.ComponentModel.DataAnnotations; namespace AMESCoreStudio.Web.ViewModels.PCS { public class PCS032ViewModel { /// <summary> /// 工單號碼 /// </summary> public string WipNo { get; set; } /// <summary> /// 工單ID /// </summary> public int WipID { get; set; } /// <summary> /// 經過作業站 /// </summary> public int GoByStation { get; set; } /// <summary> /// 退回目的地作業站 /// </summary> public int RetrueStation { get; set; } [Display(Name = "備註")] [Required(ErrorMessage = "{0},不能空白")] /// <summary> /// 備註 /// </summary> public string Memo { get; set; } /// <summary> /// 退站類型 /// </summary> public string Type { get; set; } /// <summary> /// 指定起訖條碼 /// </summary> public string BarCodeNoStr { get; set; } /// <summary> /// 指定起訖條碼 /// </summary> public string BarCodeNoEnd { get; set; } } }