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

68 lines
1.6 KiB
C#

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