Files
YunTongJackYunTask/Reportapi/MyCode.Project.Domain/Message/Response/Lxm/LxmSheetItemResp.cs
2025-07-04 09:50:02 +08:00

84 lines
1.5 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 MyCode.Project.Domain.Message.Response.Lxm
{
public class LxmSheetItemResp
{
/// <summary>
/// 主键id
/// </summary>
public Guid Id
{
get;
set;
}
/// <summary>
/// 数量
/// </summary>
public int Qty
{
get;
set;
}
/// <summary>
/// 没有余额的单价
/// </summary>
public decimal NoBalanceUnitPrice
{
get;
set;
}
/// <summary>
/// 含余额的单价
/// </summary>
public decimal InBlanceUnitPrice
{
get;
set;
}
/// <summary>
/// 商品类型
/// </summary>
public int ItemType
{
get;
set;
}
/// <summary>
/// 明细的内容ID根据ItemType决定内容
/// </summary>
public Guid ItemId
{
get;
set;
}
/// <summary>
/// 商品名
/// </summary>
public string Name
{
get;
set;
}
/// <summary>
/// 1级分类的id
/// </summary>
public Guid? TopId
{
get;
set;
}
}
}