using System; using Abp.AutoMapper; using Abp.Application.Services.Dto; using AutoMapper; namespace ShwasherSys.Inspection.Dto { /// /// 技术检验信息 /// [AutoMapTo(typeof(ProductInspectInfo)),AutoMapFrom(typeof(ProductInspectInfo))] public class ProductInspectDto: EntityDto { /// /// 检验编号 /// public string ProductInspectNo { get; set; } /// /// 排产单号 /// public string ProductionOrderNo { get; set; } /// /// 半成品编号 /// public string SemiProductNo { get; set; } /// /// 检验项目 /// public string InspectSubject { get; set; } /// /// 检验结果 /// public int InspectResult { get; set; } /// /// 检验时间 /// public DateTime? InspectDate { get; set; } /// /// 检验人员 /// public string InspectMember { get; set; } /// /// 是否删除 /// public string IsLock { get; set; } /// /// 检验详情 /// public string InspectContent { get; set; } /// /// 创建时间 /// public DateTime? TimeCreated { get; set; } /// /// 修改时间 /// public DateTime? TimeLastMod { get; set; } public string CreatorUserId { get; set; } public string UserIDLastMod { get; set; } public string SemiProductName { get; set; } public string Material { get; set; } public string Model { get; set; } public string SurfaceColor { get; set; } public string Rigidity { get; set; } [IgnoreMap] public string ProductionType { get; set; } [IgnoreMap] public string ProcessingLevel { get; set; } } }