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 PointsGoodsDetailsRsp { /// /// 备 注:兑换商品id /// 默认值: /// public long GoodsId { get; set; } /// /// 备 注:商品名称 /// 默认值: /// public string GoodsName { get; set; } /// /// 备 注:所需积分(价格) /// 默认值: /// public int GoodsPointsCount { get; set; } /// /// 备 注:库存 /// 默认值: /// public int GoodsCount { get; set; } /// /// 备 注:文件id /// 默认值: /// public long FileId { get; set; } /// /// 默认收货地址 /// public UserAddressRsp UserAddress { get; set; } /// /// 图片资源 /// public List files { get; set; } } }