| 1234567891011121314151617181920212223242526 |
- package platform.modules.government.service;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.context.annotation.Lazy;
- import org.springframework.stereotype.Component;
- import platform.modules.build.service.CompanyService;
- /**
- * @author kevin
- * @since 2019/7/31 6:02 PM
- */
- public abstract class Unit {
- protected CompanyService companyService;
- @Autowired
- public final void setCompanyService(CompanyService companyService) {
- this.companyService = companyService;
- }
- // public Unit(CompanyService companyService) {
- // this.companyService = companyService;
- // }
- abstract String departmentName(Integer id);
- }
|