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 { /// /// 备 注:商品名称 /// 默认值: /// public string? GoodsName { get; set; } /// /// 积分区间起 /// public int? PointsStart { get; set; } /// /// 积分区间止 /// public int? PointsEnd { get; set; } } }