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.

75 lines
1.9 KiB
C#

using SqlSugar;
namespace ZJ_BYD.ViewModel
{
public class QueryStationVM
{
public int Id { get; set; }
public string IpcId { get; set; }
public string LineCode { get; set; }
/// <summary>
/// 分类,用于区分线路
/// </summary>
public string Category { get; set; }
public string StationCode { get; set; }
public string StationName { get; set; }
/// <summary>
/// 是否显示工单绑定按钮
/// </summary>
public string StrIsShowOrderBtn { get; set; }
/// <summary>
/// 是否显示手动打印按钮
/// </summary>
public string StrIsShowPrintBtn { get; set; }
/// <summary>
/// 是否查询离散装配绑定结果
/// </summary>
public string StrIsSearchAssemble { get; set; }
/// <summary>
/// 是否支线工位
/// </summary>
public bool IsBranch { get; set; }
/// <summary>
/// 是否支线工位
/// </summary>
public string StrIsBranch { get; set; }
/// <summary>
/// 是否允许主条码重复生产NG的产品可以重复做
/// </summary>
public bool IsSfcCodeRepeat { get; set; }
/// <summary>
/// 是否允许重复生产NG的产品可以重复做
/// </summary>
public string StrIsSfcCodeRepeat { get; set; }
/// <summary>
/// 是否启用离散装配条码绑定
/// </summary>
public string StrIsBindAssembleCode { get; set; }
/// <summary>
/// 是否查询上工位数据
/// </summary>
public string StrIsSearchLastStation { get; set; }
/// <summary>
/// 上工位数据库IP地址
/// </summary>
public string DatabaseIp { get; set; }
public int SortIndex { get; set; }
}
}