You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
540 B
C#
23 lines
540 B
C#
namespace Common.DJYModel
|
|
{
|
|
/// <summary>
|
|
/// 计费规则 <see cref="CustPrice"/> 类型的Dto类
|
|
/// </summary>
|
|
public class CustPriceDto
|
|
{
|
|
public string GID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务类型
|
|
/// </summary>
|
|
public int? BSTYPE { get; set; }
|
|
public string COMID { get; set; }
|
|
public string COMNAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 单价(主单)
|
|
/// </summary>
|
|
public decimal? PRICE { get; set; }
|
|
}
|
|
}
|