You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
400 B
C#
22 lines
400 B
C#
6 months ago
|
namespace DS.WMS.Core.Sys.Dtos;
|
||
8 months ago
|
|
||
|
/// <summary>
|
||
|
/// 用户下拉选择
|
||
|
/// </summary>
|
||
|
public class UserSelectRes
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 主键Id
|
||
|
/// </summary>
|
||
|
public long Id { get; set; }
|
||
|
/// <summary>
|
||
|
/// 登陆账号
|
||
|
/// </summary>
|
||
|
public string UserCode { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
///姓名
|
||
|
/// </summary>
|
||
|
public string UserName { get; set; }
|
||
|
}
|