Basf_TCC11/HJGL/Model/APIItem/CheckItem.cs

147 lines
2.6 KiB
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 Model
{
public class CheckItem
{
/// <summary>
/// 主键
/// </summary>
public string CheckId
{
get;
set;
}
/// <summary>
/// 项目区域1-烟台万华2-宁波万华3-福建万华)
/// </summary>
public string ProjectArea
{
get;
set;
}
/// <summary>
/// 检查部位
/// </summary>
public string CheckArea
{
get;
set;
}
/// <summary>
/// 检查人ID
/// </summary>
public string Checker
{
get;
set;
}
/// <summary>
/// 检查人姓名
/// </summary>
public string CheckName
{
get;
set;
}
/// <summary>
/// 检查日期
/// </summary>
public DateTime? CheckDate
{
get;
set;
}
/// <summary>
/// 检查问题描述
/// </summary>
public string CheckDef
{
get;
set;
}
/// <summary>
/// 是否合格
/// </summary>
public bool? IsPass
{
get;
set;
}
/// <summary>
/// 检查拍照路径
/// </summary>
public string CheckUrl
{
get;
set;
}
/// <summary>
/// 复查人ID
/// </summary>
public string ReChecker
{
get;
set;
}
/// <summary>
/// 复查人姓名
/// </summary>
public string ReCheckName
{
get;
set;
}
/// <summary>
/// 复查日期
/// </summary>
public DateTime? ReCheckDate
{
get;
set;
}
/// <summary>
/// 复查结果(合格,不合格)
/// </summary>
public bool? ReCheckResult
{
get;
set;
}
/// <summary>
/// 复查拍照路径
/// </summary>
public string ReCheckUrl
{
get;
set;
}
/// <summary>
/// 标识1-外观检查2-质量巡检)
/// </summary>
public string Flag
{
get;
set;
}
}
}