fix issue #I3QBZI

add swagger example value
This commit is contained in:
yubaolee
2021-05-08 12:05:51 +08:00
parent 2834a62fc7
commit a681549bd8
3 changed files with 15 additions and 6 deletions

View File

@@ -2,7 +2,15 @@
{
public class PageReq
{
/// <summary>
/// 页码
/// </summary>
/// <example>1</example>
public int page { get; set; }
/// <summary>
/// 每页条数
/// </summary>
/// <example>10</example>
public int limit { get; set; }
public string key { get; set; }