30 lines
938 B
C#
30 lines
938 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace cn.sancainet.Resident.health.register.Entity.XiTong
|
|
{
|
|
public class sys_user
|
|
{
|
|
public string ID{ get; set; }
|
|
public string UserName { get; set; }
|
|
public string Name { get; set; }
|
|
public string SNCode { get; set; }
|
|
public string Telephone { get; set; }
|
|
public string OrganID { get; set; }
|
|
public string AreaID { get; set; }
|
|
public int State { get; set; }
|
|
public string PassWord { get; set; }
|
|
public string CardType { get; set; }
|
|
public string CardID { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
public string Creator { get; set; }
|
|
public DateTime UpdateTime { get; set; }
|
|
public string Updator { get; set; }
|
|
public byte IsDel { get; set; }
|
|
public string SignPath { get; set; }
|
|
|
|
}
|
|
}
|