| | |
| | | using System; |
| | | using Microsoft.EntityFrameworkCore; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | |
| | | /// </summary> |
| | | public class AddAccessInterfaceLogInput |
| | | { |
| | | |
| | | /// <summary> |
| | | /// 工件号 |
| | | /// </summary> |
| | | [Comment("工件号")] |
| | | |
| | | public string WorkPieceID { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 当前工序;进入下一工序前,此工序不变化 |
| | | /// </summary> |
| | | [Comment("当前工序")] |
| | | |
| | | public string WorkingProcedureCurrent { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 质量状态 |
| | | /// </summary> |
| | | public int? QualityState { get; set; } |
| | | |
| | | public long Id { get; set; } |
| | | /// <summary> |
| | | /// 请求参数Json字符串 |