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
{
///
/// 备 注:商品id
/// 默认值:
///
public long GoodsId { get; set; }
///
/// 备 注:商品名称
/// 默认值:
///
public string GoodsName { get; set; }
///
/// 备 注:库存数量
/// 默认值:
///
public int GoodsCount { get; set; }
public List InventoryList { get; set; }
}
public class PointsGoodsInventoryList
{
///
/// 备 注:变化类型(默认0用户兑换、1管理添加)
/// 默认值:
///
public int ChangeType { get; set; }
///
/// 备 注:变化类型名称
/// 默认值:
///
public string ChangeTypeName { get; set; }
///
/// 备 注:库存变化数量(正负区分出入库)
/// 默认值:
///
public int ChangeCount { get; set; }
///
/// 备 注:商品库存变化后的数目
/// 默认值:
///
public int GoodsCount { get; set; }
///
/// 备 注:时间
/// 默认值:
///
public DateTime AddTime { get; set; }
}
}