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

101 lines
2.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 PointsOrdersListRsp
{
/// <summary>
/// 备 注:兑换商品id
/// 默认值:
///</summary>
public long GoodsId { get; set; }
/// <summary>
/// 备 注:商品名称
/// 默认值:
///</summary>
public string GoodsName { get; set; } = null!;
/// <summary>
/// 备 注:兑换数量
/// 默认值:
///</summary>
public int GoodsCount { get; set; }
/// <summary>
/// 备 注:共计花费积分数
/// 默认值:
///</summary>
public int ChangePoints { get; set; }
/// <summary>
/// 备 注:兑换时间
/// 默认值:
///</summary>
public DateTime AddTime { get; set; }
/// <summary>
/// 备 注:发货状态0待发货、1已发货
/// 默认值:
///</summary>
public int Status { get; set; }
/// <summary>
/// 备 注:快递单号(发货后)
/// 默认值:
///</summary>
public string? TrackingNumber { get; set; }
/// <summary>
/// 备 注:图片信息
/// 默认值:
///</summary>
public List<PointsOrdersListtFileInfoRsp>? files { get; set; }
/// <summary>
/// 备 注:图片地址
/// 默认值:
///</summary>
public string? FilePath { get; set; }
}
public class PointsOrdersListtFileInfoRsp
{
/// <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; }
}
}