Commit c6d1116d323c9253dcd98f51454287026d4434d2
1 parent
3744e85e
修复了查询接口报错的问题
Showing
5 changed files
with
15 additions
and
2 deletions
antis-ncc-admin/.env.development
netcore/src/Modularity/Extend/NCC.Extend.Entitys/Dto/LqKhxx/LqKhxxInfoOutput.cs
netcore/src/Modularity/Extend/NCC.Extend.Entitys/Dto/LqKhxx/LqKhxxListOutput.cs
netcore/src/Modularity/Extend/NCC.Extend.Entitys/Entity/lq_khxx/LqKhxxEntity.cs
netcore/src/Modularity/Extend/NCC.Extend/LqKhxxService.cs
| ... | ... | @@ -130,6 +130,7 @@ namespace NCC.Extend.LqKhxx |
| 130 | 130 | yanglsr = it.Yanglsr, |
| 131 | 131 | yinlsr = it.Yinlsr, |
| 132 | 132 | ml = it.Ml, |
| 133 | + createTime = it.CreateTime, | |
| 133 | 134 | }) |
| 134 | 135 | .MergeTable() |
| 135 | 136 | .OrderBy(sidx + " " + input.sort) |
| ... | ... | @@ -241,6 +242,7 @@ namespace NCC.Extend.LqKhxx |
| 241 | 242 | yanglsr = it.Yanglsr, |
| 242 | 243 | yinlsr = it.Yinlsr, |
| 243 | 244 | ml = it.Ml, |
| 245 | + createTime = it.CreateTime, | |
| 244 | 246 | }) |
| 245 | 247 | .MergeTable() |
| 246 | 248 | .OrderBy(sidx + " " + input.sort) |
| ... | ... | @@ -328,6 +330,7 @@ namespace NCC.Extend.LqKhxx |
| 328 | 330 | yanglsr = it.Yanglsr, |
| 329 | 331 | yinlsr = it.Yinlsr, |
| 330 | 332 | ml = it.Ml, |
| 333 | + createTime = it.CreateTime, | |
| 331 | 334 | }) |
| 332 | 335 | .MergeTable() |
| 333 | 336 | .OrderBy(sidx + " " + input.sort) | ... | ... |