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 PointsGoodsAdminListRsp { public long Id { get; set; } /// /// 备 注:商品名称 /// 默认值: /// public string GoodsName { get; set; } = null!; /// /// 备 注:添加时间 /// 默认值: /// public DateTime AddTime { get; set; } /// /// 备 注:所需积分(价格) /// 默认值: /// public int GoodsPointsCount { get; set; } /// /// 备 注:状态(默认0下架、1上架) /// 默认值: /// public int GoodsStatus { get; set; } /// /// 备 注:状态(默认0下架、1上架) /// 默认值: /// public string GoodsStatusName { get; set; } /// /// 备 注:库存 /// 默认值: /// public int GoodsCount { get; set; } /// /// 备 注:市场价值 /// 默认值: /// public decimal GoodsMoney { get; set; } /// /// 备 注:最后一次修改时间 /// 默认值: /// public DateTime UpdateTime { get; set; } /// /// 文件id /// public long? FileId { get; set; } public string? FileName { get; set; } public string? FileUrl { get; set; } } }