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 PointsGoodsListRsp { /// /// 备 注:兑换商品id /// 默认值: /// public long GoodsId { get; set; } /// /// 备 注:商品名称 /// 默认值: /// public string GoodsName { get; set; } /// /// 备 注:所需积分(价格) /// 默认值: /// public int GoodsPointsCount { get; set; } /// /// 图片资源 /// public List files { get; set; } } public class PointsGoodsListFileInfoRsp { /// /// 备 注:兑换商品id /// 默认值: /// public long GoodsId { get; set; } /// /// 文件ID /// public long File_Id { get; set; } /// /// 备 注:原文件名 /// 默认值: /// public string? FileName { get; set; } /// /// 备 注:文件所在路径 /// 默认值: /// public string? FilePath { get; set; } /// /// 备 注:文件类型 /// 默认值: /// public string? FileType { get; set; } } }