优化项目命名空间

This commit is contained in:
izory
2021-09-16 19:07:49 +08:00
parent ced13d7b10
commit 086ccbfb6d
37 changed files with 50 additions and 92 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Text;
using ZR.Model.System;
namespace ZR.Model.System.Dto
{
public class SysUserDto
{
public long UserId { get; set; }
public string UserName { get; set; }
public string NickName { get; set; }
public string Email { get; set; }
public string Remark { get; set; }
public string Phonenumber { get; set; }
/// <summary>
/// '用户性别0男 1女 2未知',
/// </summary>
public int Sex { get; set; }
}
}