zhuangpei-mesbackend/DOAN.Model/DwProductionTrace/ODS/Dto/AssemblyLine01Workstation09BusinessDto.cs

57 lines
1.3 KiB
C#

using System.ComponentModel.DataAnnotations;
namespace DOAN.Model.Dto
{
/// <summary>
/// **车间_**产线_**工位_**业务查询对象
/// </summary>
public class AssemblyLine01Workstation09BusinessQueryDto : PagerInfo
{
}
/// <summary>
/// **车间_**产线_**工位_**业务输入输出对象
/// </summary>
public class AssemblyLine01Workstation09BusinessDto
{
public string Paramter { get; set; }
public decimal Datavalue { get; set; }
public decimal UpLimit { get; set; }
public decimal LowLimit { get; set; }
public string Unit { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
[Required(ErrorMessage = "自增长ID主键不能为空")]
public int Id { get; set; }
public string Company { get; set; }
public string Workshop { get; set; }
public string Linecode { get; set; }
public string Workstation { get; set; }
public DateTime? Operationtime { get; set; }
public string Operationuserid { get; set; }
public string Deviceid { get; set; }
public string MesFlag { get; set; }
}
}