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

50 lines
1.2 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 PointsGoodsDetailsRsp
{
/// <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 int GoodsCount { get; set; }
/// <summary>
/// 备 注:文件id
/// 默认值:
///</summary>
public long FileId { get; set; }
/// <summary>
/// 默认收货地址
/// </summary>
public UserAddressRsp UserAddress { get; set; }
/// <summary>
/// 图片资源
/// </summary>
public List<PointsGoodsListFileInfoRsp> files { get; set; }
}
}