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