1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace WMS.Info
- {
- public class EmptyTrayRequest
- {
- public string LocationNo { get; set; }
- public bool IsBonded { get; set; }
-
- }
- public class EmptyTrayRequestDto : EmptyTrayRequest
- {
- public bool IsGroup { get; set; }
- }
- public class WcsEmptyTrayRequest
- {
- public string LocationNo { get; set; }
- public bool IsBonded { get; set; }
- public int OutOrIn { get; set; }
- public List<int> Layer { get; set; }
- }
- }
|