using System;
using Abp.AutoMapper;
using AutoMapper;
namespace ShwasherSys.Inspection.Dto
{
[AutoMapTo(typeof(ProductInspectReport)),AutoMapFrom(typeof(ProductInspectReport))]
public class ProductInspectReportDto
{
///
/// 检验报告编号
///
public string ProductInspectReportNo { get; set; }
///
/// 排产单号
///
public string ProductionOrderNo { get; set; }
///
/// 半成品编号
///
public string SemiProductNo { get; set; }
///
/// 确认状态(1:未确认 2:最终确认)
///
public int ConfirmStatus { get; set; }
///
/// 检验次数
///
public int InspectCount { get; set; }
///
/// 确认时间
///
public DateTime? ConfirmDate { get; set; }
///
/// 确认人员
///
public string ConfirmUser { get; set; }
///
/// 检验详情
///
public string InspectContent { get; set; }
[IgnoreMap]
public string SemiProductName { get; set; }
[IgnoreMap]
public string Material { get; set; }
[IgnoreMap]
public string Model { get; set; }
[IgnoreMap]
public string SurfaceColor { get; set; }
[IgnoreMap]
public string Rigidity { get; set; }
[IgnoreMap]
public string PartNo { get; set; }
///
/// 工序类型(1.车间生产2.热处理3.表面处理)
///
[IgnoreMap]
public string ProcessingType { get; set; }
///
/// 加工阶段 1.第一阶段车间 2.外协
///
[IgnoreMap]
public string ProcessingLevel { get; set; }
[IgnoreMap]
public string ProductionType { get; set; }
}
}