Files
sy_hx_pbl_backend/DOAN.Model/System/Model/Dto/SysPostDto.cs

21 lines
441 B
C#
Raw Normal View History

2024-09-23 09:14:22 +08:00
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; }
}
}