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.
17 lines
340 B
C#
17 lines
340 B
C#
10 months ago
|
namespace DS.WMS.Core.System.Dtos;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 用户字段设置请求实体
|
||
|
/// </summary>
|
||
|
public class UserFieldSetUpdateReq
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 权限Id
|
||
|
/// </summary>
|
||
|
public long? PermissionId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 字段设置
|
||
|
/// </summary>
|
||
|
public string Content { get; set; }
|
||
|
}
|