大屏接口修改
This commit is contained in:
parent
6a2141a7e4
commit
bd902fd6aa
|
|
@ -15,9 +15,9 @@ public class TestVo {
|
|||
private static Set<String> set = new TreeSet<>();
|
||||
|
||||
static {
|
||||
set.add("自有");
|
||||
set.add("待租");
|
||||
set.add("在租");
|
||||
set.add("16");
|
||||
set.add("17");
|
||||
set.add("43");
|
||||
}
|
||||
|
||||
public TestVo(){
|
||||
|
|
|
|||
|
|
@ -46,13 +46,8 @@ public class BmCompanyInfoServiceImpl implements BmCompanyInfoService {
|
|||
@Override
|
||||
public List<ColtdTypeVo> selectColtdList() {
|
||||
List<ColtdTypeVo> list = bmCompanyInfoMapper.selectColtdList();
|
||||
ArrayList<ColtdTypeVo> coltdTypeVos = new ArrayList<>();
|
||||
for (ColtdTypeVo coltdTypeVo : list) {
|
||||
coltdTypeVo.setMaStatus(MaStatusEnum.getNameByCode(Integer.parseInt(coltdTypeVo.getMaStatus())));
|
||||
coltdTypeVo.setCompanyType(CompanyTypeEnum.getNameByCode(Integer.parseInt(coltdTypeVo.getCompanyType())));
|
||||
coltdTypeVos.add(coltdTypeVo);
|
||||
}
|
||||
return coltdTypeVos;
|
||||
|
||||
return list;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue