| | |
| | | public string EntityType { get; set; } |
| | | } |
| | | |
| | | public class BarcodeCreateByAssignQtyInput: BarcodeCreateInput |
| | | { |
| | | public int CreateBarCodeItemQty { get; set; } |
| | | public int LabelQty { get; set; } |
| | | } |
| | | |
| | | public class BarcodeCreateByAssignQtyParam |
| | | { |
| | | public string BarCodeRuleID { get; set; } |
| | | public List<CreateBarCodeEntitys> CreateBarCodeEntitys { get; set; } |
| | | public int CreateBarCodeItemQty { get; set; } |
| | | public int LabelQty { get; set; } |
| | | } |
| | | |
| | | public class CreateBarCodeEntitys |
| | | { |
| | | public string EntityID { get; set; } |
| | | public string EntityType { get; set; } = "UFIDA.U9.Complete.RCVRpt.RcvRptDocLine"; |
| | | } |
| | | |
| | | public class BarcodeCreateByAssignQtyResult : U9CBaseResult |
| | | { |
| | | public BarcodeCreateByAssignQtyData Data { get; set; } |
| | | } |
| | | |
| | | public class BarcodeCreateByAssignQtyData { |
| | | public string ErrorMessage { get; set; } |
| | | public string OtherID { get; set; } |
| | | public string CreatedBarCodes { get; set; } |
| | | public bool IsSuccess { get; set; } |
| | | public List<string> Data { get; set; } |
| | | } |
| | | |
| | | public class MOKey |
| | | { |
| | | public string DocNo { get; set; } |