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

21 lines
580 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace dccdc.Models
{
public class ExamGroupPreposeConditionMaintainModel
{
public int id { get; set; }
public string team_name { get; set; }
public int exam_group_maintain_id { get; set; }
public string prepose_condition { get; set; }
public int exam_prepose_condition_maintain_id { get; set; }
public string status { get; set; }
public string creator { get; set; }
public string create_time { get; set; }
}
}