You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
640 B

using System;
using System.Collections.Generic;
using System.Text;
namespace Shentun.Peis.PriceItems
{
public class UpdatePriceItemDto
{
/// <summary>
/// 发票项目类别ID
/// </summary>
public Guid InvoiceItemTypeId { get; set; }
/// <summary>
/// 价表编码
/// </summary>
public string? PriceItemCode { get; set; }
/// <summary>
/// 名称
/// </summary>
public string DisplayName { get; set; } = null!;
/// <summary>
/// 价格
/// </summary>
public decimal Price { get; set; }
}
}