【优化】优化【我的服务卡】界面效果,调整为'正常', '过期', '作废', '已核销',同时优化查询及核销验证方法。

This commit is contained in:
大灰灰
2022-10-16 21:23:14 +08:00
parent 66b78954cf
commit d8d564e5dd
7 changed files with 168 additions and 35 deletions

View File

@@ -98,4 +98,30 @@ namespace CoreCms.Net.Model.FromBody
/// </summary>
public string where { get; set; }
}
/// <summary>
/// 根据String类型id加where查询条件和order排序获取列表(一般用于直接id分页)
/// </summary>
public class FMPageByStringIdWhitStatus
{
public string id { get; set; }
/// <summary>
/// 当前页码
/// </summary>
public int page { get; set; } = 1;
/// <summary>
/// 每页数据量
/// </summary>
public int limit { get; set; } = 10;
/// <summary>
/// 状态
/// </summary>
public int status { get; set; } = 0;
}
}