系统建模
This commit is contained in:
parent
0e7a332c3d
commit
dd1e78119e
@ -8,8 +8,8 @@ namespace MDM.Model.Material.Dto
|
||||
/// </summary>
|
||||
public class MaterialBomQueryDto : PagerInfo
|
||||
{
|
||||
public string InvCode { get; set; }
|
||||
public string SubInvCode { get; set; }
|
||||
public string? InvCode { get; set; }
|
||||
public string? SubInvCode { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
@ -7,11 +7,11 @@ namespace MDM.Model.Material.Dto
|
||||
/// </summary>
|
||||
public class MaterialTypeQueryDto : PagerInfo
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string? Name { get; set; }
|
||||
|
||||
public string Code { get; set; }
|
||||
public string? Code { get; set; }
|
||||
|
||||
public string ParentCode { get; set; }
|
||||
public string? ParentCode { get; set; }
|
||||
|
||||
public int? Status { get; set; }
|
||||
}
|
||||
|
||||
@ -7,11 +7,11 @@ namespace MDM.Model.Plant.Dto
|
||||
/// </summary>
|
||||
public class PlantFactorySiteQueryDto : PagerInfo
|
||||
{
|
||||
public string SiteCode { get; set; }
|
||||
public string? SiteCode { get; set; }
|
||||
|
||||
public string SiteName { get; set; }
|
||||
public string? SiteName { get; set; }
|
||||
|
||||
public string SiteType { get; set; }
|
||||
public string? SiteType { get; set; }
|
||||
public int? Status { get; set; }
|
||||
}
|
||||
|
||||
|
||||
@ -7,14 +7,14 @@ namespace MDM.Model.Plant.Dto
|
||||
/// </summary>
|
||||
public class PlantProductlinebodyQueryDto : PagerInfo
|
||||
{
|
||||
public string FkFactorySiteCode { get; set; }
|
||||
public string? FkFactorySiteCode { get; set; }
|
||||
|
||||
public string FkWorkshopCode { get; set; }
|
||||
public string? FkWorkshopCode { get; set; }
|
||||
|
||||
|
||||
public string LineCode { get; set; }
|
||||
public string? LineCode { get; set; }
|
||||
|
||||
public string LineName { get; set; }
|
||||
public string? LineName { get; set; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -7,11 +7,11 @@ namespace MDM.Model.Plant.Dto
|
||||
/// </summary>
|
||||
public class PlantWorkshopQueryDto : PagerInfo
|
||||
{
|
||||
public string FkSiteCode { get; set; }
|
||||
public string? FkSiteCode { get; set; }
|
||||
|
||||
public string WorkshopCode { get; set; }
|
||||
public string? WorkshopCode { get; set; }
|
||||
|
||||
public string WorkshopName { get; set; }
|
||||
public string? WorkshopName { get; set; }
|
||||
|
||||
public int? Status { get; set; }
|
||||
}
|
||||
|
||||
@ -7,20 +7,20 @@ namespace MDM.Model.Plant.Dto
|
||||
/// </summary>
|
||||
public class PlantWorkstationQueryDto : PagerInfo
|
||||
{
|
||||
public string FkFactorySiteCode { get; set; }
|
||||
public string? FkFactorySiteCode { get; set; }
|
||||
|
||||
public string FkWorkshopCode { get; set; }
|
||||
public string? FkWorkshopCode { get; set; }
|
||||
|
||||
public string FkProductlinebody { get; set; }
|
||||
public string? FkProductlinebody { get; set; }
|
||||
|
||||
|
||||
public string WorkstationCode { get; set; }
|
||||
public string? WorkstationCode { get; set; }
|
||||
|
||||
public string WorkstationName { get; set; }
|
||||
public string? WorkstationName { get; set; }
|
||||
|
||||
public string FunctionGroupCode { get; set; }
|
||||
public string? FunctionGroupCode { get; set; }
|
||||
|
||||
public string FunctionGroupName { get; set; }
|
||||
public string? FunctionGroupName { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
@ -7,9 +7,9 @@ namespace MDM.Model.Process.Dto
|
||||
/// </summary>
|
||||
public class ProcessControlStrategyDictQueryDto : PagerInfo
|
||||
{
|
||||
public string StrategyCode { get; set; }
|
||||
public string? StrategyCode { get; set; }
|
||||
|
||||
public string StrategyName { get; set; }
|
||||
public string? StrategyName { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
@ -7,12 +7,12 @@ namespace MDM.Model.Process.Dto
|
||||
/// </summary>
|
||||
public class ProcessOperationQueryDto : PagerInfo
|
||||
{
|
||||
public string FkRoutingCode { get; set; }
|
||||
public string OperationCode { get; set; }
|
||||
public string? FkRoutingCode { get; set; }
|
||||
public string? OperationCode { get; set; }
|
||||
|
||||
public string OperationName { get; set; }
|
||||
public string? OperationName { get; set; }
|
||||
|
||||
public string ParallelGroupCode { get; set; }
|
||||
public string? ParallelGroupCode { get; set; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -7,9 +7,9 @@ namespace MDM.Model.Process.Dto
|
||||
/// </summary>
|
||||
public class ProcessOperationReworkRuleQueryDto : PagerInfo
|
||||
{
|
||||
public string FkRoutingCode { get; set; }
|
||||
public string? FkRoutingCode { get; set; }
|
||||
|
||||
public string FkOperationCode { get; set; }
|
||||
public string? FkOperationCode { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
@ -7,11 +7,11 @@ namespace MDM.Model.Process.Dto
|
||||
/// </summary>
|
||||
public class ProcessOperationTransitionQueryDto : PagerInfo
|
||||
{
|
||||
public string FkRoutingCode { get; set; }
|
||||
public string? FkRoutingCode { get; set; }
|
||||
|
||||
public string FromOperationCode { get; set; }
|
||||
public string? FromOperationCode { get; set; }
|
||||
|
||||
public string ToOperationCode { get; set; }
|
||||
public string? ToOperationCode { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
@ -7,9 +7,9 @@ namespace MDM.Model.Process.Dto
|
||||
/// </summary>
|
||||
public class ProcessOprerationTransitionDictQueryDto : PagerInfo
|
||||
{
|
||||
public string TransitionCode { get; set; }
|
||||
public string? TransitionCode { get; set; }
|
||||
|
||||
public string TranstionName { get; set; }
|
||||
public string? TranstionName { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
@ -7,10 +7,10 @@ namespace MDM.Model.Process.Dto
|
||||
/// </summary>
|
||||
public class ProcessRoutingQueryDto : PagerInfo
|
||||
{
|
||||
public string FkProductMaterialCode { get; set; }
|
||||
public string RoutingCode { get; set; }
|
||||
public string? FkProductMaterialCode { get; set; }
|
||||
public string? RoutingCode { get; set; }
|
||||
|
||||
public string RoutingName { get; set; }
|
||||
public string? RoutingName { get; set; }
|
||||
|
||||
public int? Version { get; set; }
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user