|
|
|
@ -56,7 +56,7 @@ public class BasicCorpServiceImpl extends ServiceImpl<BasicCorpDao, BasicCorpEnt
|
|
|
|
|
@Override
|
|
|
|
|
public boolean updateById(BasicCorpEntity basicUnitMaintainSaveRequest) {
|
|
|
|
|
basicUnitMaintainSaveRequest.setUpdateTime(new Date());
|
|
|
|
|
return basicCorpDao.updateById(basicUnitMaintainSaveRequest) == 0 ? false : true;
|
|
|
|
|
return basicCorpDao.updateEntityById(basicUnitMaintainSaveRequest) == 0 ? false : true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@ -117,7 +117,7 @@ public class BasicCorpServiceImpl extends ServiceImpl<BasicCorpDao, BasicCorpEnt
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public BasicCorpEntity selectById(String id) {
|
|
|
|
|
return basicCorpDao.selectById(id);
|
|
|
|
|
return basicCorpDao.selectEntityById(id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|