| | |
| | | // ); |
| | | |
| | | public String getSplrName() { |
| | | if (null == this.splrId) { return null; } |
| | | CompanysService companysService = SpringUtils.getBean(CompanysService.class); |
| | | Companys companys = companysService.getById(this.splrId); |
| | | if (Objects.isNull(companys)) { |
| | | return null; |
| | | } else { |
| | | return companys.getName(); |
| | | } |
| | | return this.splrName; |
| | | } |
| | | |
| | | public String getSplrCode() { |
| | | if (null == this.splrId) { return null; } |
| | | CompanysService companysService = SpringUtils.getBean(CompanysService.class); |
| | | Companys companys = companysService.getById(this.splrId); |
| | | if (Objects.isNull(companys)) { |
| | | return null; |
| | | } else { |
| | | return companys.getCode(); |
| | | } |
| | | return this.splrCode; |
| | | } |
| | | |
| | | public String getStatus$(){ |