laozt 1 year ago
commit a6c55d01cd

@ -83,7 +83,6 @@ public class BPlanEnterpriseController extends BaseController {
} }
/** /**
* *
*/ */
@ -131,7 +130,7 @@ public class BPlanEnterpriseController extends BaseController {
*/ */
@PutMapping @PutMapping
@ApiOperation(value = "修改计划企业表") @ApiOperation(value = "修改计划企业表")
public AjaxResult update(@RequestBody BPlanEnterprise bPlanEnterprise) { public AjaxResult update(@RequestBody BPlanEnterpriseRequest bPlanEnterprise) {
return success(bPlanEnterpriseService.updateById(bPlanEnterprise)); return success(bPlanEnterpriseService.updateById(bPlanEnterprise));
} }

@ -14,7 +14,7 @@ import java.util.List;
* @author wu * @author wu
* @since 2023-09-07 09:43:06 * @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;
* @author wu * @author wu
* @since 2023-09-07 09:43:06 * @since 2023-09-07 09:43:06
*/ */
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 * @since 2023-09-07 09:43:07
*/ */
@Service("bPlanEnterpriseService") @Service("bPlanEnterpriseService")
public class BPlanEnterpriseServiceImpl extends ServiceImpl<BPlanEnterpriseMapper, BPlanEnterprise> implements BPlanEnterpriseService { public class BPlanEnterpriseServiceImpl extends ServiceImpl<BPlanEnterpriseMapper, BPlanEnterpriseRequest> implements BPlanEnterpriseService {
@Resource @Resource
private BPlanEnterpriseMapper bPlanEnterpriseMapper; private BPlanEnterpriseMapper bPlanEnterpriseMapper;

Loading…
Cancel
Save