tijian_tieying/web/dccdc.Models/project_factor_maintainModel.cs
2025-02-20 12:14:39 +08:00

26 lines
827 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
namespace dccdc.Models
{
public class project_factor_maintainModel
{
public int id { get; set; }
public int jobs_state_maintain_id { get; set; }
public int harmful_factors_type_maintain_id { get; set; }
[Required(ErrorMessage = "不能为空!")]
public int exam_project_maintain_id { get; set; }
public string project_code { get; set; }
public string project_name { get; set; }
public string is_check { get; set; }
public string is_goal { get; set; }
public string exam_group { get; set; }
public int exam_group_maintain_id { get; set; }
public string factor_code { get; set; }
}
}