ZHJA_HJGL/HJGL_ZH/Model/APIItem/UserItem.cs

19 lines
360 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
public class UserItem
{
public string ID { get; set; }
public string Code { get; set; }
public string Name { get; set; }
public string IdentityCard { get; set; }
public string Type { get; set; }
public string PassWord { get; set; }
}
}