涂装抛光流程变更
This commit is contained in:
@@ -13,6 +13,8 @@ namespace ZR.Model.MES.wms.Dto
|
||||
|
||||
public string Team { get; set; }
|
||||
|
||||
public int Type { get; set; } = -1;
|
||||
|
||||
public string CreatedBy { get; set; }
|
||||
|
||||
public DateTime? StartTime { get; set; }
|
||||
@@ -59,6 +61,8 @@ namespace ZR.Model.MES.wms.Dto
|
||||
|
||||
public bool IsReturnWorkpiece { get; set; }
|
||||
|
||||
public bool IsPolish { get; set; }
|
||||
|
||||
public int? Type { get; set; }
|
||||
|
||||
public string Remark { get; set; }
|
||||
|
||||
@@ -14,6 +14,8 @@ namespace ZR.Model.MES.wms.Dto
|
||||
|
||||
public string Team { get; set; }
|
||||
|
||||
public int Type { get; set; } = -1;
|
||||
|
||||
public string CreatedBy { get; set; }
|
||||
|
||||
public DateTime? StartTime { get; set; }
|
||||
@@ -131,6 +133,10 @@ namespace ZR.Model.MES.wms.Dto
|
||||
|
||||
// 是否是返工件
|
||||
public bool IsReturnWorkpiece { get; set; } = false;
|
||||
/// <summary>
|
||||
/// 是否跳过GP12计算抛光合格数
|
||||
/// </summary>
|
||||
public bool IsOver { get; set; } = false;
|
||||
|
||||
}
|
||||
}
|
||||
@@ -13,6 +13,7 @@ namespace ZR.Model.MES.wms.Dto
|
||||
public string Partnumber { get; set; }
|
||||
|
||||
public string Team { get; set; }
|
||||
public int Type { get; set; } = -1;
|
||||
|
||||
public string CreatedBy { get; set; }
|
||||
|
||||
@@ -130,5 +131,10 @@ namespace ZR.Model.MES.wms.Dto
|
||||
// 是否是返工件
|
||||
public bool IsReturnWorkpiece { get; set; } = false;
|
||||
|
||||
/// <summary>
|
||||
/// 是否跳过后道抛光直接出库
|
||||
/// </summary>
|
||||
public bool IsOutbound { get; set; } = false;
|
||||
|
||||
}
|
||||
}
|
||||
@@ -84,7 +84,13 @@ namespace ZR.Model.MES.wms
|
||||
public bool IsReturnWorkpiece { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 类别(0-默认 1-抛光 2-打磨 3-报废 4-合计)
|
||||
/// 是否是抛光品
|
||||
/// </summary>
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public bool IsPolish { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 类别(0-默认 1-抛光品)
|
||||
/// </summary>
|
||||
public int? Type { get; set; }
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
namespace ZR.Model.MES.wms
|
||||
{
|
||||
/// <summary>
|
||||
/// 抛光管理-质量统计
|
||||
/// 抛光管理-质量统计(后道)
|
||||
/// </summary>
|
||||
[SugarTable("wm_polish_quality_statistics")]
|
||||
public class WmPolishQualityStatistics
|
||||
@@ -78,7 +78,7 @@ namespace ZR.Model.MES.wms
|
||||
public DateTime? EndTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 类别(0-默认 1-抛光 2-打磨 3-报废 4-合计)
|
||||
/// 类别(0-默认 1-跳过GP12直接计算抛光合格)
|
||||
/// </summary>
|
||||
public int? Type { get; set; }
|
||||
|
||||
@@ -297,5 +297,11 @@ namespace ZR.Model.MES.wms
|
||||
[SugarColumn(ColumnName = "is_return_workpiece")]
|
||||
public bool IsReturnWorkpiece { get; set; } = false;
|
||||
|
||||
/// <summary>
|
||||
/// 是否计算抛光合格数
|
||||
/// </summary>
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public bool IsOver { get; set; } = false;
|
||||
|
||||
}
|
||||
}
|
||||
@@ -291,5 +291,11 @@ namespace ZR.Model.MES.wms
|
||||
[SugarColumn(ColumnName = "is_return_workpiece")]
|
||||
public bool IsReturnWorkpiece { get; set; } = false;
|
||||
|
||||
/// <summary>
|
||||
/// 是否抛光直接出库
|
||||
/// </summary>
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public bool IsOutbound { get; set; } = false;
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user