feat: 绑定零部件选择标准新增返回值
This commit is contained in:
+12
-1
@@ -86,7 +86,18 @@
|
||||
standard.standard_name as standardName,
|
||||
standard.release_date as releaseDate,
|
||||
standard.standard_state as standardState,
|
||||
standard.standard_state as esStandardState
|
||||
standard.standard_state as esStandardState,
|
||||
<choose>
|
||||
<when test="param.standardType == '1' or param.standardType == '' or param.standardType == null">
|
||||
1 AS standardType
|
||||
</when>
|
||||
<when test="param.standardType == '2'">
|
||||
2 AS standardType
|
||||
</when>
|
||||
<when test="param.standardType == '3'">
|
||||
3 AS standardType
|
||||
</when>
|
||||
</choose>
|
||||
FROM
|
||||
<choose>
|
||||
<when test="param.standardType == '1' or param.standardType == '' or param.standardType == null">
|
||||
|
||||
Reference in New Issue
Block a user