21 lines
639 B
C#
21 lines
639 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class notice_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_group_maintain_id { get; set; }
|
|
public string exam_group { get; set; }
|
|
[Required(ErrorMessage = "不能为空!")]
|
|
public string bussiness_notice { get; set; }
|
|
}
|
|
}
|