You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
926 B
41 lines
926 B
2 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.Linq;
|
||
|
using System.Web;
|
||
|
|
||
|
namespace Warehouse.WebApi.Model
|
||
|
{
|
||
|
public class ConsolidationSearchModel
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 柜号
|
||
|
/// </summary>
|
||
|
[Required]
|
||
|
public String ContainerNum { get; set; }
|
||
|
/// <summary>
|
||
|
/// 托盘号
|
||
|
/// </summary>
|
||
|
[Required]
|
||
|
public String PalletNum { get; set; }
|
||
|
/// <summary>
|
||
|
/// 满柜数
|
||
|
/// </summary>
|
||
|
[Required]
|
||
|
public Int32 FullNum { get; set; } = 0;
|
||
|
/// <summary>
|
||
|
/// 卡关
|
||
|
/// </summary>
|
||
|
[Required]
|
||
|
public String[] SelectKg { get; set; }
|
||
|
}
|
||
|
|
||
|
public class UpdateKgModel
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 卡关
|
||
|
/// </summary>
|
||
|
[Required]
|
||
|
public String[] SelectKg { get; set; }
|
||
|
}
|
||
|
}
|