quowingwang 5c099ebca5 首检
2025-11-26 15:15:17 +08:00

31 lines
912 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RIZO.Model.Mes.Dto.WorkOrderInfo
{
public class PartsBasketCard
{
//工单编码
public string WorkOrderCode { get; set; }
//零件框码
public string PartsBasketNo { get; set; }
//工艺特性(自乳化,后乳化四级、后乳化四级)
public string Character { get; set; }
//是否清洗0否1是
public int IfClean { get; set; }
public string LineCode { get; set; }
public string LineName { get; set; }
public string ProcessCode { get; set; }
public string ProcessName { get; set; }
public string UserId { get; set; }
public string UserName { get; set; }
//是否首检0否1是
public int FirstInspection { get; set; }
}
}