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

20 lines
589 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
namespace dccdc.Models
{
public class summaryreport_factor_importantModel
{
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 string history_code { get; set; }
[Required(ErrorMessage = "不能为空!")]
public string history_name { get; set; }
}
}