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

64 lines
1.6 KiB

using BBWY.Client.Models.APIModel;
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Input;
namespace BBWY.Client.Models.PackUser
{
public class PackerTaskModel: PackerTaskData
{
private string packRemainTime;
/// <summary>
/// 打包剩余时间
/// </summary>
public string PackRemainTime { get => packRemainTime; set { Set(ref packRemainTime, value); } }
private bool isPackOverTime;
public bool IsPackOverTime { get => isPackOverTime; set { Set(ref isPackOverTime, value); } }
private bool showSendMsg = false;
/// <summary>
/// 展示留言信息
/// </summary>
public bool ShowSendMsg { get => showSendMsg; set { Set(ref showSendMsg, value); } }
private string taskMarkMsg;
/// <summary>
/// 展示留言信息
/// </summary>
public string TaskMarkMsg { get => taskMarkMsg; set { Set(ref taskMarkMsg, value); } }
private bool showMoreMsg = true;
/// <summary>
/// 展示留言信息
/// </summary>
public bool ShowMoreMsg { get => showMoreMsg; set { Set(ref showMoreMsg, value); } }
private decimal actualIncome ;
/// <summary>
/// 实际收益
/// </summary>
public decimal ActualIncome { get => actualIncome; set { Set(ref actualIncome, value); } }
private string compensationFee;
/// <summary>
/// 赔付金额
/// </summary>
public string CompensationFee { get => compensationFee; set { Set(ref compensationFee, value); } }
}
}