mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 17:43:26 +08:00
【优化】优化【我的服务卡】界面效果,调整为'正常', '过期', '作废', '已核销',同时优化查询及核销验证方法。
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user