@ -83,7 +83,6 @@ public class BPlanEnterpriseController extends BaseController {
}
/**
* 首页导出
*/
@ -131,7 +130,7 @@ public class BPlanEnterpriseController extends BaseController {
@PutMapping
@ApiOperation(value = "修改计划企业表")
public AjaxResult update(@RequestBody BPlanEnterprise bPlanEnterprise) {
public AjaxResult update(@RequestBody BPlanEnterpriseRequest bPlanEnterprise) {
return success(bPlanEnterpriseService.updateById(bPlanEnterprise));
@ -14,7 +14,7 @@ import java.util.List;
* @author wu
* @since 2023-09-07 09:43:06
public interface BPlanEnterpriseMapper extends BaseMapper<BPlanEnterprise> {
public interface BPlanEnterpriseMapper extends BaseMapper<BPlanEnterpriseRequest> {
@ -17,7 +17,7 @@ import java.util.Map;
public interface BPlanEnterpriseService extends IService<BPlanEnterprise> {
public interface BPlanEnterpriseService extends IService<BPlanEnterpriseRequest> {
@ -23,7 +23,7 @@ import java.util.Map;
* @since 2023-09-07 09:43:07
@Service("bPlanEnterpriseService")
public class BPlanEnterpriseServiceImpl extends ServiceImpl<BPlanEnterpriseMapper, BPlanEnterprise> implements BPlanEnterpriseService {
public class BPlanEnterpriseServiceImpl extends ServiceImpl<BPlanEnterpriseMapper, BPlanEnterpriseRequest> implements BPlanEnterpriseService {
@Resource
private BPlanEnterpriseMapper bPlanEnterpriseMapper;