using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XGL.Models
{
public class report
{
///
/// 班次编号
///
public string team { get; set; }
///
/// 主键
///
public string Id { get; set; }
///
/// 时间
///
public DateTime? CreateTime { get; set; }
///
/// 上一任务不良品是否处理并放置在不合格品区域
///
public string unqualified { get; set; }
///
/// 涉及内容物转换,上一任务内容物是否清理干净
///
public string clear { get; set; }
///
/// 上一任务剩余包材/内容物是否做好防护、标识并放在指定位置
///
public string residue { get; set; }
///
/// 流水线是否清理干净,无与当班次生产无关的东西存处
///
public string lineClear { get; set; }
///
/// 作业员是否清楚当班次操作
///
public string UserKnow { get; set; }
///
/// 该班次内容物、包材是否符合
///
public string qualified { get; set; }
///
/// 班次现场使用的设备是否可以正常工作
///
public string equipStatus { get; set; }
///
/// 该班次生产批号是否正确
///
public string StampCorrect { get; set; }
///
/// 不良品是否处理干净并放置在不合格品区域
///
public string isClear { get; set; }
///
/// 剩余包材/内容物是否做好防护并放在指定位置
///
public string positionCorrect { get; set; }
///
/// 流水线是否清理干净
///
public string isLineClear { get; set; }
public string NickName { get; set; }
public string ReplaceLineCheckBox { get; set; }
public string OpenLineCheckBox { get; set; }
}
public class SelfInspectionModel
{
public string deviceCode { get; set; }
public string workDate { get; set; }
public string workOrderId { get; set; }
public string Id { get; set; }
//检查时间
public string InspectionTime { get; set; }
//搭片漏片
public string MissingTie { get; set; }
//包材检查
public string Package { get; set; }
//日期码
public string DateCode { get; set; }
//包膜良好
public string PackageGood { get; set; }
//漏放产品
public string LeakProduct { get; set; }
//正常开启剔除装置
public string NormalOpen { get; set; }
//装箱数量准确
public string BoxQuantity { get; set; }
//其他
public string Other { get; set; }
//检查人
public string Inspector { get; set; }
//异常原因
public string Reason { get; set; }
//创建
public DateTime CreateTime { get; set; }
}
public class FirstInspectionReportModel
{
public string Id { get; set; }
public string InspectionTime { get; set; }
public string CheckTimeLeft { get; set; }
public string CheckTimeRight { get; set; }
public string MaterialLeft { get; set; }
public string MaterialRight { get; set; }
public string AppearanceLeft { get; set; }
public string AppearanceRight { get; set; }
public string StampLeft { get; set; }
public string StampRight { get; set; }
public string SprayLeft { get; set; }
public string SprayRight { get; set; }
public string PackageLeft { get; set; }
public string PackageRight { get; set; }
public string GenerateLeft { get; set; }
public string GenerateRight { get; set; }
public string DeviceLeft { get; set; }
public string DeviceRight { get; set; }
public string WorkLeft { get; set; }
public string WorkRight { get; set; }
public string OtherLeft { get; set; }
public string OtherRight { get; set; }
public string OverLeft { get; set; }
public string OverRight { get; set; }
public DateTime CreateTime { get; set; }
public string UserName { get; set; }
public string WorkDateLeft { get; set; }
public string WorkDateRight { get; set; }
}
public class BaseDictData
{
public string remark { get; set; }
public string dict_code { get; set; }
public string dict_sort { get; set; }
public string dict_label { get; set; }
public string dict_value { get; set; }
public string dict_type { get; set; }
}
public class MesTableSelf
{
public string report_name;
public string id { get; set; }
public string line_code { get; set; }
public string product_date { get; set; }
public string product_code { get; set; }
public string product_name { get; set; }
public string check_date { get; set; }
public string remark { get; set; }
public string bz { get; set; }
public string create_by { get; set; }
public string create_time { get; set; }
public string update_by { get; set; }
public string update_time { get; set; }
public string factory_code { get; set; }
public string del_flag { get; set; }
public bool IsFinal { get; set; }
}
}