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.
56 lines
1.5 KiB
56 lines
1.5 KiB
2 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
using System.Windows;
|
||
|
|
||
|
namespace BBWY.Client.Models.APIModel.Response.PackTask
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 服务数据展示
|
||
|
/// </summary>
|
||
|
public class FeesItemResponse : NotifyObject
|
||
|
{
|
||
|
private List<ServiceItemResponse> serviceList = new List<ServiceItemResponse>();
|
||
|
|
||
|
public List<ServiceItemResponse> ServiceList { get => serviceList; set { Set(ref serviceList, value); } }
|
||
|
|
||
|
public decimal AllFees { get=> allFees; set { Set(ref allFees, value); } }
|
||
|
private decimal allFees;
|
||
|
|
||
|
public decimal SingleFees { get => singleFees; set { Set(ref singleFees, value); } }
|
||
|
private decimal singleFees;
|
||
|
|
||
|
|
||
|
public decimal TaskId { get => taskId; set { Set(ref taskId, value); } }
|
||
|
private decimal taskId;
|
||
|
}
|
||
|
|
||
|
public enum ServiceType
|
||
|
{
|
||
|
增值服务 = 0,
|
||
|
打包服务 = 1,
|
||
|
耗材服务 = 2
|
||
|
}
|
||
|
|
||
|
public class ServiceItemResponse
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 0增值服务 1打包服务 2耗材服务
|
||
|
/// </summary>
|
||
|
public ServiceType ServiceType { get; set; }
|
||
|
/// <summary>
|
||
|
/// 服务项目
|
||
|
/// </summary>
|
||
|
public string ItemName { get; set; }
|
||
|
/// <summary>
|
||
|
/// 价格
|
||
|
/// </summary>
|
||
|
public decimal? ItemPrice { get; set; }
|
||
|
/// <summary>
|
||
|
/// 数量
|
||
|
/// </summary>
|
||
|
public int? ItemCount { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|