|
|
@ -6,6 +6,7 @@ import java.util.List; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
|
|
|
import com.kms.common.utils.BaseEntityUtils; |
|
|
|
|
|
|
|
|
|
|
@ -56,6 +57,24 @@ public class SysXzqhController extends BaseController |
|
|
|
private SysDeptService sysDeptService; |
|
|
|
|
|
|
|
|
|
|
|
@GetMapping("/getGuangDong") |
|
|
|
public AjaxResult getGuangDong() { |
|
|
|
|
|
|
|
List<SysXzqh> list = sysXzqhService.list(Wrappers.lambdaQuery(SysXzqh.class) |
|
|
|
.likeRight(SysXzqh::getXzqhdm, "44") |
|
|
|
.eq(SysXzqh::getLayer, 2)); |
|
|
|
|
|
|
|
SysXzqh sysXzqh = new SysXzqh(); |
|
|
|
sysXzqh.setLayer(2); |
|
|
|
sysXzqh.setXzqhdm("省外"); |
|
|
|
sysXzqh.setName("省外"); |
|
|
|
list.add(sysXzqh); |
|
|
|
return AjaxResult.success(list); |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@GetMapping("/common") |
|
|
|