using MailKit.Search;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace WIDESEA_DTO.Basic
|
{
|
|
public class ResponseModel
|
{
|
public int code { get; set; } = 200;
|
|
public string message { get; set; }
|
|
public object data { get; set; }
|
public DateTime? responseTime { get; set; } = DateTime.Now;
|
}
|
public class MaterielToMesDTO
|
{
|
public string reqCode { get; set; }
|
public string reqTime { get; set; }
|
|
public string oldmaterialCode { get; set; }
|
public string newmaterialCode { get; set; }
|
public string unit { get; set; }
|
public string factoryArea { get; set; }
|
public string qty { get; set; }
|
public string supplyCode { get; set; }
|
public string warehouseCode { get; set; }
|
public string batchNo { get; set; }
|
public string materialCode { get; set; }
|
|
public int operationType { get; set; }
|
}
|
|
public class MaterialExpirationDateDTO
|
{
|
public string reqCode { get; set; }
|
public string reqTime { get; set; }
|
public string materialCode { get; set; }
|
public int validityDays { get; set; }
|
public int oneExtensionDays { get; set; }
|
public int twoExtensionDays { get; set; }
|
public int threeExtensionDays { get; set; }
|
public int enable { get; set; }
|
public int operationType { get; set; }
|
|
}
|
|
public class ReCheckDto
|
{
|
public string reqCode { get; set; }
|
public string reqTime { get; set; }
|
public string orderNo { get; set; }
|
public string materialCode { get; set; }
|
public string factoryArea { get; set; }
|
public int result { get; set; }
|
public string batchNo { get; set; }
|
public int inspectionNumber { get; set; }
|
public decimal qty { get; set; }
|
public string warehouseCode { get; set; }
|
public int signSeq { get; set; }
|
public string unit { get; set; }
|
public int operationType { get; set; }
|
}
|
|
}
|