SGGL_JT/SUBQHSE/Model/APIItem/HSSE/Check_ProjectLeaderCheckDto.cs

56 lines
1.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.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
/// <summary>
/// 领导带班检查
/// </summary>
public class Check_ProjectLeaderCheckDto
{
/// <summary>
/// 归属项目名称
/// </summary>
[Required(ErrorMessage = "归属项目名称ProjectId is required.")]
public string ProjectId { get; set; }
/// <summary>
/// 编号
/// </summary>
[Required(ErrorMessage = "编号CheckCode is required.")]
public string CheckCode { get; set; }
/// <summary>
/// 检查时间
/// </summary>
public DateTime? CheckDate { get; set; }
/// <summary>
/// 责任单位名称(多个逗号分隔,最后一个不需要逗号)
/// </summary>
[Required(ErrorMessage = "责任单位名称UnitIds is required.")]
public string UnitIds { get; set; }
/// <summary>
/// 带班领导身份证号码(多个逗号分隔,最后一个不需要逗号)
/// </summary>
[Required(ErrorMessage = "带班领导身份证号码LeaderIds is required.")]
public string LeaderIds { get; set; }
/// <summary>
/// 问题描述
/// </summary>
public string QuestionDef { get; set; }
/// <summary>
/// 整改要求
/// </summary>
public string Requirement { get; set; }
}
}