20 lines
588 B
C#
20 lines
588 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class target_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 target_disease_maintain_id { get; set; }
|
|
public string disease_code { get; set; }
|
|
public string disease_name { get; set; }
|
|
}
|
|
}
|