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.
45 lines
1.2 KiB
45 lines
1.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Text;
|
|
|
|
namespace BBWY.Client.Models.PackTask
|
|
{
|
|
public class StoreGetSelfResponse:NotifyObject
|
|
{ /// <summary>
|
|
/// 团队用户列表(取件人)
|
|
/// </summary>
|
|
private ObservableCollection<DepartmentUser> departmentUsers;
|
|
|
|
/// <summary>
|
|
/// 团队用户列表(取件人)
|
|
/// </summary>
|
|
public ObservableCollection<DepartmentUser> DepartmentUsers { get=> departmentUsers; set { Set(ref departmentUsers, value); } }
|
|
|
|
/// <summary>
|
|
/// 可取的最大数
|
|
/// </summary>
|
|
public int PickMaxCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 提示消息
|
|
/// </summary>
|
|
public string ShowMessage { get; set; }
|
|
}
|
|
public class DepartmentUser:NotifyObject
|
|
{
|
|
/// <summary>
|
|
/// 用户id
|
|
/// </summary>
|
|
public string UserId { get; set; }
|
|
|
|
|
|
|
|
|
|
private string userName;
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string UserName { get => userName; set { Set(ref userName, value); } } //
|
|
}
|
|
}
|
|
|