31 lines
634 B
31 lines
634 B
namespace QYMessageCenter.Client.Models
|
|
{
|
|
public class User
|
|
{
|
|
//private string name;
|
|
|
|
private Shop shop;
|
|
|
|
public long Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string TeamId { get; set; }
|
|
|
|
public string TeamName { get; set; }
|
|
|
|
public string SonDepartmentNames { get; set; }
|
|
|
|
public Shop Shop { get; set; }
|
|
|
|
public IList<Department> DepartmentList { get; set; }
|
|
|
|
/// <summary>
|
|
/// 店铺列表
|
|
/// </summary>
|
|
public IList<Shop> ShopList { get; set; }
|
|
|
|
public string Token { get; set; }
|
|
|
|
}
|
|
}
|
|
|