【更新】

This commit is contained in:
nmy 2023-12-05 21:32:58 +08:00
parent 68a8915d36
commit 7eb5c67db7
2 changed files with 3 additions and 1 deletions

View File

@ -5,6 +5,7 @@ import com.bonus.zlpt.common.security.annotation.EnableRyFeignClients;
import com.bonus.zlpt.common.swagger.annotation.EnableCustomSwagger2; import com.bonus.zlpt.common.swagger.annotation.EnableCustomSwagger2;
import org.springframework.boot.SpringApplication; import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Import;
/** /**
* Description: 企业模块启动类 * Description: 企业模块启动类
@ -17,6 +18,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
@EnableCustomSwagger2 @EnableCustomSwagger2
@EnableRyFeignClients @EnableRyFeignClients
@SpringBootApplication @SpringBootApplication
@Import({com.bonus.zlpt.home.service.impl.MaTypeInfoServiceImpl.class})
public class ZlptCompanyApplication { public class ZlptCompanyApplication {
public static void main(String[] args) { public static void main(String[] args) {
SpringApplication.run(ZlptCompanyApplication.class, args); SpringApplication.run(ZlptCompanyApplication.class, args);

View File

@ -37,7 +37,7 @@ public class MaUpOffController extends BaseController {
@Resource @Resource
private MaUpOffMapper maUpOffMapper; private MaUpOffMapper maUpOffMapper;
@Autowired(required = false) @Autowired
private MaTypeInfoSevice maTypeInfoSevice; private MaTypeInfoSevice maTypeInfoSevice;
/** /**