You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Aucma.Core.Palletiz.Models
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 分垛首页数据刷新实体
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class IndexInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 序号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int No { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// //公司条码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ProductSNCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// //扫描时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime ProductScanTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// //产品型号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ProductModel { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订单编号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ProductOrderNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订单计划数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string OrderQty { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订单实际数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ActQty { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 刷新标志,定时器检测true刷新
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool ProductRefreshFlag { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 界面提示信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string MsgInfo { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否报警信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool MsgAlarmFlag { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|