Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/Points/PointsGoodsInventoryAdminRs...

67 lines
1.6 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 System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.Points
{
public class PointsGoodsInventoryAdminRsp
{
/// <summary>
/// 备 注:商品id
/// 默认值:
///</summary>
public long GoodsId { get; set; }
/// <summary>
/// 备 注:商品名称
/// 默认值:
///</summary>
public string GoodsName { get; set; }
/// <summary>
/// 备 注:库存数量
/// 默认值:
///</summary>
public int GoodsCount { get; set; }
public List<PointsGoodsInventoryList> InventoryList { get; set; }
}
public class PointsGoodsInventoryList
{
/// <summary>
/// 备 注:变化类型默认0用户兑换、1管理添加
/// 默认值:
///</summary>
public int ChangeType { get; set; }
/// <summary>
/// 备 注:变化类型名称
/// 默认值:
///</summary>
public string ChangeTypeName { get; set; }
/// <summary>
/// 备 注:库存变化数量(正负区分出入库)
/// 默认值:
///</summary>
public int ChangeCount { get; set; }
/// <summary>
/// 备 注:商品库存变化后的数目
/// 默认值:
///</summary>
public int GoodsCount { get; set; }
/// <summary>
/// 备 注:时间
/// 默认值:
///</summary>
public DateTime AddTime { get; set; }
}
}