| | |
| | | |
| | | namespace Tiger.Model.Entitys.MES.U9C |
| | | { |
| | | public class U9CResult |
| | | public class U9CBaseResult |
| | | { |
| | | public int ResCode { get; set; } |
| | | public bool Success { get; set; } |
| | | public string ResMsg { get; set; } |
| | | } |
| | | public class U9CResult : U9CBaseResult |
| | | { |
| | | public List<U9CReturnData> Data { get; set; } |
| | | public int Status { get; set; } |
| | | public int RouteStatus { get; set; } |
| | | } |
| | | |
| | | public class U9CLoginResult : U9CBaseResult |
| | | { |
| | | public string Data { get; set; } |
| | | } |
| | | |
| | | public class U9CReturnData |
| | |
| | | /// <summary> |
| | | /// 入库单接口传入参数 |
| | | /// </summary> |
| | | public class RcvRptDocCreateInput { |
| | | public class RcvRptDocCreateInput |
| | | { |
| | | public string WorkOrder { get; set; } |
| | | public string ItemCode { get; set; } |
| | | public string WhCode { get; set; } = "10105"; |
| | |
| | | public int DocState { get; set; } = 1; |
| | | } |
| | | |
| | | public class RcvRptDocCreateParam |
| | | { |
| | | public List<CompleteList> CompleteList { get; set; } |
| | | } |
| | | |
| | | public class CompleteList |
| | | { |
| | | public MOKey MOKey { get; set; } |
| | | public Wh Wh { get; set; } |
| | | public Item Item { get; set; } |
| | | public DescFlexField DescFlexField { get; set; } |
| | | public int CompleteQty { get; set; } |
| | | public int OutputType { get; set; } = 0; |
| | | public int StorageType { get; set; } = 4; |
| | | public int DocState { get; set; } = 1; |
| | | } |
| | | |
| | | public class MOKey |
| | | { |
| | | public string DocNo { get; set; } |
| | | } |
| | | public class Wh |
| | | { |
| | | public string Code { get; set; } |
| | | } |
| | | public class Item |
| | | { |
| | | public string Code { get; set; } |
| | | } |
| | | public class DescFlexField |
| | | { |
| | | public string PrivateDescSeg1 { get; set; } |
| | | } |
| | | } |