提报获取重量

This commit is contained in:
2024-05-22 16:37:56 +08:00
parent a53623823c
commit 90b567f653
6 changed files with 130 additions and 61 deletions

View File

@@ -4,5 +4,6 @@ namespace Tnb.PerMgr.Entities.Dto
{
public string? id { get; set; }
public string? label_name { get; set; }
public string? label_point { get; set; }
}
}

View File

@@ -49,6 +49,7 @@ namespace Tnb.PerMgr
{
id = a.id,
label_name = a.label_name,
label_point = a.label_point,
}),
children = SqlFunc.Subqueryable<PerProcessParam>()
.LeftJoin<PerToleranceCategory>((y, z) => y.tolerance_category_id == z.id)