9 changed files with 345 additions and 40 deletions
@ -0,0 +1,103 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.ComponentModel.DataAnnotations; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace Win_in.Sfs.Wms.Store.Jobs.IssueJobs.proxy; |
|||
/// <summary>
|
|||
/// 喷涂主表
|
|||
/// </summary>
|
|||
public class IssueRequestFromRestoDTO |
|||
{ |
|||
public string RequestNumber { set; get; } |
|||
public List<IssueJobFromRestoDTO> Jobs { set; get; } |
|||
} |
|||
/// <summary>
|
|||
/// 立体库发给WMS明细
|
|||
/// </summary>
|
|||
public class IssueJobFromRestoDetailDTO |
|||
{ |
|||
[Display(Name = "零件编号")] |
|||
public string ItemCode { set; get; } |
|||
[Display(Name = "目标库位")] |
|||
public string ToLocationCode { set; get; } |
|||
[Display(Name = "来源库位")] |
|||
public string FromLocationCode { set; get; } |
|||
[Display(Name = "数量")] |
|||
public decimal Qty { set; get; } |
|||
} |
|||
/// <summary>
|
|||
/// 立体库发给立体库任务单号
|
|||
/// </summary>
|
|||
public class IssueJobFromRestoDTO |
|||
{ |
|||
[Display(Name = "任务单号")] |
|||
public string JobNumber { set; get; } |
|||
[Display(Name = "明细")] |
|||
public List<IssueJobFromRestoDetailDTO> Details { set; get; } |
|||
} |
|||
/// <summary>
|
|||
/// 发给立体库主表
|
|||
/// </summary>
|
|||
/// <summary>
|
|||
/// 发给立体库子表
|
|||
/// </summary>
|
|||
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.0.7.0 (NJsonSchema v11.0.0.0 (Newtonsoft.Json v13.0.0.0))")] |
|||
public partial class IssueJobToRestoDTO |
|||
{ |
|||
|
|||
[System.Text.Json.Serialization.JsonPropertyName("uuid")] |
|||
public System.Guid Uuid { get; set; } |
|||
|
|||
[System.Text.Json.Serialization.JsonPropertyName("operatorName")] |
|||
public string OperatorName { get; set; } |
|||
|
|||
[System.Text.Json.Serialization.JsonPropertyName("details")] |
|||
public System.Collections.Generic.ICollection<IssueJobToRestoDetailDTO> Details { get; set; } |
|||
|
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 发给立体库主表
|
|||
/// </summary>
|
|||
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.0.7.0 (NJsonSchema v11.0.0.0 (Newtonsoft.Json v13.0.0.0))")] |
|||
public partial class IssueJobToRestoDetailDTO |
|||
{ |
|||
|
|||
[System.Text.Json.Serialization.JsonPropertyName("workNo")] |
|||
public string WorkNo { get; set; } |
|||
|
|||
[System.Text.Json.Serialization.JsonPropertyName("taskNo")] |
|||
public string TaskNo { get; set; } |
|||
|
|||
[System.Text.Json.Serialization.JsonPropertyName("needSite")] |
|||
public string NeedSite { get; set; } |
|||
|
|||
[System.Text.Json.Serialization.JsonPropertyName("productNo")] |
|||
public string ProductNo { get; set; } |
|||
|
|||
[System.Text.Json.Serialization.JsonPropertyName("count")] |
|||
public decimal Count { get; set; } |
|||
|
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 返回结果
|
|||
/// </summary>
|
|||
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.0.7.0 (NJsonSchema v11.0.0.0 (Newtonsoft.Json v13.0.0.0))")] |
|||
public partial class ReusltObject |
|||
{ |
|||
|
|||
[System.Text.Json.Serialization.JsonPropertyName("code")] |
|||
public string Code { get; set; } |
|||
|
|||
[System.Text.Json.Serialization.JsonPropertyName("message")] |
|||
public string Message { get; set; } |
|||
|
|||
[System.Text.Json.Serialization.JsonPropertyName("operateTime")] |
|||
public string OperateTime { get; set; } |
|||
|
|||
} |
|||
|
Loading…
Reference in new issue