步步为盈
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.

25 lines
517 B

namespace BBWY.Client.Models
{
/// <summary>
///收费项
/// </summary>
public class FeesItemModel : NotifyObject
{
public long Id { get; set; }
/// <summary>
/// 分类id
/// </summary>
public int TypeId { get; set; }
/// <summary>
/// 项目id
/// </summary>
public int ItemId { get; set; }
/// <summary>
/// 收费价格
/// </summary>
public decimal FeesPrice { get; set; }
}
}