tijian_tieying/web/dccdc.Models/PersonalCheckModel.cs

23 lines
585 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 PersonalCheckModel
{
public int id { get; set; }
public String name { get; set; }
public String phone { get; set; }
public String ident { get; set; }
public int type { get; set; }
public String nickname { get; set; }
public String passTime { get; set; }
public String unit { get; set; }
public int user_id { get; set; }
public String create_time { get; set; }
}
}