企业地址
This commit is contained in:
parent
38b4be520a
commit
01a103ab71
|
|
@ -12,22 +12,22 @@ import com.bonus.material.basic.mapper.BmCompanyAddressMapper;
|
|||
import com.bonus.material.basic.domain.BmCompanyAddress;
|
||||
import com.bonus.material.basic.service.IBmCompanyAddressService;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
||||
/**
|
||||
* 企业信息Service业务层处理
|
||||
*
|
||||
* @author xsheng
|
||||
* @date 2024-12-16
|
||||
* 企业地址Service业务层处理
|
||||
*/
|
||||
@Service
|
||||
public class BmCompanyAddressServiceImpl implements IBmCompanyAddressService {
|
||||
@Autowired
|
||||
|
||||
@Resource
|
||||
private BmCompanyAddressMapper bmCompanyAddressMapper;
|
||||
|
||||
/**
|
||||
* 查询企业信息
|
||||
* 查询企业地址
|
||||
*
|
||||
* @param id 企业信息主键
|
||||
* @return 企业信息
|
||||
* @param id 企业地址主键
|
||||
* @return 企业地址
|
||||
*/
|
||||
@Override
|
||||
public BmCompanyAddress selectBmCompanyAddressById(Long id) {
|
||||
|
|
@ -35,10 +35,10 @@ public class BmCompanyAddressServiceImpl implements IBmCompanyAddressService {
|
|||
}
|
||||
|
||||
/**
|
||||
* 查询企业信息列表
|
||||
* 查询企业地址列表
|
||||
*
|
||||
* @param bmCompanyAddress 企业信息
|
||||
* @return 企业信息
|
||||
* @param bmCompanyAddress 企业地址
|
||||
* @return 企业地址
|
||||
*/
|
||||
@Override
|
||||
public List<BmCompanyAddress> selectBmCompanyAddressList(BmCompanyAddress bmCompanyAddress) {
|
||||
|
|
@ -46,9 +46,9 @@ public class BmCompanyAddressServiceImpl implements IBmCompanyAddressService {
|
|||
}
|
||||
|
||||
/**
|
||||
* 新增企业信息
|
||||
* 新增企业地址
|
||||
*
|
||||
* @param bmCompanyAddress 企业信息
|
||||
* @param bmCompanyAddress 企业地址
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
|
|
@ -64,9 +64,9 @@ public class BmCompanyAddressServiceImpl implements IBmCompanyAddressService {
|
|||
}
|
||||
|
||||
/**
|
||||
* 修改企业信息
|
||||
* 修改企业地址
|
||||
*
|
||||
* @param bmCompanyAddress 企业信息
|
||||
* @param bmCompanyAddress 企业地址
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
|
|
@ -80,9 +80,9 @@ public class BmCompanyAddressServiceImpl implements IBmCompanyAddressService {
|
|||
}
|
||||
|
||||
/**
|
||||
* 批量删除企业信息
|
||||
* 批量删除企业地址
|
||||
*
|
||||
* @param ids 需要删除的企业信息主键
|
||||
* @param ids 需要删除的企业地址主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
|
|
@ -91,9 +91,9 @@ public class BmCompanyAddressServiceImpl implements IBmCompanyAddressService {
|
|||
}
|
||||
|
||||
/**
|
||||
* 删除企业信息信息
|
||||
* 删除企业地址信息
|
||||
*
|
||||
* @param id 企业信息主键
|
||||
* @param id 企业地址主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Reference in New Issue