21 lines
441 B
C#
Raw Permalink Normal View History

2024-12-03 09:25:16 +08:00
using DOAN.Model;
using DOAN.Model.System;
2024-11-28 13:36:05 +08:00
2024-12-03 09:25:16 +08:00
namespace DOAN.ServiceCore.Model.Dto
2024-11-28 13:36:05 +08:00
{
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; }
}
}