tijian_tieying/web/dccdc.Models/ExamGroupDoctorMatintainModel.cs

24 lines
674 B
C#
Raw Normal View History

2025-02-20 12:14:39 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace dccdc.Models
{
public class ExamGroupDoctorMatintainModel
{
public int id { get; set; }
public String exam_group { get; set; }
public int exam_group_maintain_id { get; set; }
public String check_doctor { get; set; }
public String user_name { get; set; }
public String collect { get; set; }
public String entry { get; set; }
public String review { get; set; }
public String status { get; set; }
public String creator { get; set; }
public String create_time { get; set; }
}
}