Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/Points/PointsGoodsAdminSearchReq.cs

30 lines
684 B
C#

using LearningOfficer.OA.Common.Request;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.Points
{
public class PointsGoodsAdminSearchReq : PageRequest
{
/// <summary>
/// 备 注:商品名称
/// 默认值:
///</summary>
public string? GoodsName { get; set; }
/// <summary>
/// 积分区间起
/// </summary>
public int? PointsStart { get; set; }
/// <summary>
/// 积分区间止
/// </summary>
public int? PointsEnd { get; set; }
}
}