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.
40 lines
1.2 KiB
40 lines
1.2 KiB
using BBWY.Client.Models.APIModel;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BBWY.Client.Models.QualityTask
|
|
{
|
|
public class QualityPackTaskModel : QualityPackTaskData
|
|
{
|
|
private string qualityRemainTime;
|
|
/// <summary>
|
|
/// 质检剩余时间
|
|
/// </summary>
|
|
public string QualityRemainTime { get => qualityRemainTime; set { Set(ref qualityRemainTime, value); } }
|
|
|
|
private bool isQualityOverTime;
|
|
public bool IsQualityOverTime { get => isQualityOverTime; set { Set(ref isQualityOverTime, 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); } }
|
|
}
|
|
}
|
|
|