49 lines
1.2 KiB
C#
49 lines
1.2 KiB
C#
using MyCode.Project.Infrastructure.Enumeration;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCode.Project.Domain.Message.Request.ShopInventoryAmount
|
|
{
|
|
public class ShopInventoryAmount
|
|
{
|
|
/// <summary>
|
|
/// 店铺主键
|
|
/// </summary>
|
|
public Guid ShopId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作订单主键
|
|
/// </summary>
|
|
public Guid SheetId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作类型 0=销售 10=导入 20=补货
|
|
/// </summary>
|
|
public int OperateType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 变动品类 0=发饰品 10=首饰品 20=彩妆 30=护肤品
|
|
/// </summary>
|
|
public int? DeptType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作金额
|
|
/// </summary>
|
|
public decimal Amount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发生操作方向
|
|
/// </summary>
|
|
public DirectFlag DirectFlag { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作人
|
|
/// </summary>
|
|
public string Creater { get; set; }
|
|
|
|
}
|
|
}
|