You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace XGL.Models
|
|
|
|
|
|
{
|
|
|
|
|
|
public class report
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 班次编号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string team { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 主键
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 上一任务不良品是否处理并放置在不合格品区域
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string unqualified { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 涉及内容物转换,上一任务内容物是否清理干净
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string clear { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 上一任务剩余包材/内容物是否做好防护、标识并放在指定位置
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string residue { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 流水线是否清理干净,无与当班次生产无关的东西存处
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string lineClear { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 作业员是否清楚当班次操作
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string UserKnow { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 该班次内容物、包材是否符合
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string qualified { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 班次现场使用的设备是否可以正常工作
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string equipStatus { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 该班次生产批号是否正确
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string StampCorrect { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 不良品是否处理干净并放置在不合格品区域
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string isClear { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 剩余包材/内容物是否做好防护并放在指定位置
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string positionCorrect { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 流水线是否清理干净
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string isLineClear { get; set; }
|
|
|
|
|
|
public string ReplaceLineCheckBox { get; set; }
|
|
|
|
|
|
public string OpenLineCheckBox { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|