This commit is contained in:
qianhao.xu
2024-12-03 09:25:16 +08:00
parent 96e44cfc4e
commit 586d2e60dc
661 changed files with 996 additions and 28248 deletions

View File

@@ -0,0 +1,20 @@
using DOAN.Model;
using DOAN.Model.System;
namespace DOAN.ServiceCore.Model.Dto
{
public class SysPostDto : SysPost
{
/// <summary>
/// 用户个数
/// </summary>
public long UserNum { get; set; }
}
public class SysPostQueryDto : PagerInfo
{
public string PostName { get; set; }
public string Status { get; set; }
public string PostCode { get; set; }
}
}