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

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