37 lines
787 B
C#
37 lines
787 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DOAN.Model.Mobile.Dto
|
|
{
|
|
/// <summary>
|
|
/// 校验物料是否在指定线和日期内
|
|
/// </summary>
|
|
public class CheckMaterialDto
|
|
{
|
|
/// <summary>
|
|
/// 物料清单
|
|
/// </summary>
|
|
public string[] MatetialCodeArray { get; set; }
|
|
/// <summary>
|
|
/// 线别
|
|
/// </summary>
|
|
public string LineCode { get; set; }
|
|
/// <summary>
|
|
/// 指定日期
|
|
/// </summary>
|
|
public DateTime HandelDate { get; set; }
|
|
|
|
}
|
|
public class CheckMaterialResult
|
|
{
|
|
public string MatetialCode { get; set; }
|
|
|
|
public bool result { get; set; }
|
|
|
|
}
|
|
|
|
}
|