25 lines
616 B
C#
25 lines
616 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace RuleEngine.Models
|
|||
|
{
|
|||
|
public partial class Treasurer
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string Avatar { get; set; }
|
|||
|
public string EmployeeCode { get; set; }
|
|||
|
public string Name { get; set; }
|
|||
|
public string Sex { get; set; }
|
|||
|
public string Phone { get; set; }
|
|||
|
public string Email { get; set; }
|
|||
|
public bool? Status { get; set; }
|
|||
|
public int? UnitId { get; set; }
|
|||
|
public int? Rfidid { get; set; }
|
|||
|
|
|||
|
public virtual Rfid Rfid { get; set; }
|
|||
|
}
|
|||
|
}
|