|
|
|
using BBWY.Client.Models.APIModel;
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Collections.ObjectModel;
|
|
|
|
using System.Text;
|
|
|
|
using System.Windows;
|
|
|
|
|
|
|
|
namespace BBWY.Client.Models.SealBox
|
|
|
|
{
|
|
|
|
public class SealBoxConfiguredModel:NotifyObject
|
|
|
|
{
|
|
|
|
|
|
|
|
private bool isHideSealbox = true;//默认隐藏
|
|
|
|
public bool IsHideSealbox { get => isHideSealbox; set { Set(ref isHideSealbox, value); } }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private string sealBoxRemainTime;
|
|
|
|
public string SealBoxRemainTime { get => sealBoxRemainTime; set { Set(ref sealBoxRemainTime, value); } }
|
|
|
|
|
|
|
|
private bool isSealBoxOverTime;
|
|
|
|
public bool IsSealBoxOverTime { get => isSealBoxOverTime; set { Set(ref isSealBoxOverTime, value); } }
|
|
|
|
/// <summary>
|
|
|
|
/// 过期时间
|
|
|
|
/// </summary>
|
|
|
|
public DateTime? SealBoxPackOverTime { get; set; }
|
|
|
|
/// <summary>
|
|
|
|
/// 封箱id
|
|
|
|
/// </summary>
|
|
|
|
public long SealBoxId { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 箱子总数量
|
|
|
|
/// </summary>
|
|
|
|
public int SealBoxTotalCount { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 仓库名称
|
|
|
|
/// </summary>
|
|
|
|
public string WareName { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 仓库类型
|
|
|
|
/// </summary>
|
|
|
|
public WareType? WareType { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 仓库任务列表
|
|
|
|
/// </summary>
|
|
|
|
public ObservableCollection<SealBoxConfigureTask> SealBoxConfigureTasks { get; set; }
|
|
|
|
}
|
|
|
|
public class SealBoxConfigureTask:NotifyObject
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// skuid
|
|
|
|
/// </summary>
|
|
|
|
public string SkuId { get; set; }
|
|
|
|
/// <summary>
|
|
|
|
/// 任务id
|
|
|
|
/// </summary>
|
|
|
|
public long TaskId { get; set; }
|
|
|
|
/// <summary>
|
|
|
|
/// 仓库sku任务数
|
|
|
|
/// </summary>
|
|
|
|
public int WareHourseCount { get; set; }
|
|
|
|
/// <summary>
|
|
|
|
/// sku名称
|
|
|
|
/// </summary>
|
|
|
|
public string SkuName { get; set; }
|
|
|
|
/// <summary>
|
|
|
|
/// sku图片
|
|
|
|
/// </summary>
|
|
|
|
public string Logo { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 任务状态
|
|
|
|
/// </summary>
|
|
|
|
public TaskState? TaskState { get; set; }
|
|
|
|
|
|
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|