| | |
| | | 锘縰sing System; |
| | | 锘縰sing Newtonsoft.Json; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | |
| | | |
| | | public int operationType { get; set; } |
| | | |
| | | [JsonProperty("operator")] |
| | | public string Operator { get; set; } |
| | | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | |
| | | public string unit { get; set; } |
| | | |
| | | public string warehouseCode { get; set; } |
| | | |
| | | public List<FeedbackBarcodesModel> barcodes { get; set; } |
| | | } |
| | | |
| | | public class FeedbackBarcodesModel |
| | | { |
| | | public string barcode { get; set; } |
| | | |
| | | public decimal qty { get; set; } |
| | | |
| | | } |
| | | } |