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

23 lines
637 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace dccdc.Models
{
public class ThresholdDeviationMaintainModel
{
public int id { get; set; }
public string threshold_project { get; set; }
public int exam_project_maintain_id { get; set; }
public string sex { get; set; }
public int age_upper { get; set; }
public int age_lower { get; set; }
public int deviation_value { get; set; }
public string status { get; set; }
public string creator { get; set; }
public string create_time { get; set; }
}
}