消防站文档解析
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.1 KiB

2 years ago
using Domain.Shared;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace Domain.Models.FireMen
{
[Table("unit_firemen")]
public class FireMen
{
public int Id { get; set; }
public int Uniacid { get; set; }
[Column("unit_id")]
public int UnitId { get; set; }
public short Sort { get; set; }
public string Name { get; set; }
public GenderType Gender { get; set; }
public string BirthDay { get; set; }
public string Job { get; set; }
[Column("phone_num")]
public string PhoneNumber { get; set; }
[Column("train_exp")]
public string TrainExp { get; set; }
[Column("licence_code")]
public string LicenceCode { get; set; }
[Column("licence_valid_date")]
public string LicenceValidDate { get; set; }
public string Imgs { get; set; }
public string Remark { get; set; }
[Column("operator_id")]
public int OperatorId { get; set; }
[Column("upt_time")]
public DateTime UpdateTime { get; set; }
}
}