com.macro.mall.model.OmsCompanyAddress Java Examples

The following examples show how to use com.macro.mall.model.OmsCompanyAddress. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: OmsCompanyAddressController.java    From mall with Apache License 2.0 5 votes vote down vote up
@ApiOperation("获取所有收货地址")
@RequestMapping(value = "/list", method = RequestMethod.GET)
@ResponseBody
public CommonResult<List<OmsCompanyAddress>> list() {
    List<OmsCompanyAddress> companyAddressList = companyAddressService.list();
    return CommonResult.success(companyAddressList);
}
 
Example #2
Source File: OmsCompanyAddressController.java    From macrozheng with Apache License 2.0 5 votes vote down vote up
@ApiOperation("获取所有收货地址")
@RequestMapping(value = "/list", method = RequestMethod.GET)
@ResponseBody
public CommonResult<List<OmsCompanyAddress>> list() {
    List<OmsCompanyAddress> companyAddressList = companyAddressService.list();
    return CommonResult.success(companyAddressList);
}
 
Example #3
Source File: OmsCompanyAddressController.java    From macrozheng-mall with MIT License 5 votes vote down vote up
@ApiOperation("获取所有收货地址")
@RequestMapping(value = "/list",method = RequestMethod.GET)
@ResponseBody
public Object list() {
    List<OmsCompanyAddress> companyAddressList = companyAddressService.list();
    return new CommonResult().success(companyAddressList);
}
 
Example #4
Source File: OmsCompanyAddressController.java    From mall-swarm with Apache License 2.0 5 votes vote down vote up
@ApiOperation("获取所有收货地址")
@RequestMapping(value = "/list", method = RequestMethod.GET)
@ResponseBody
public CommonResult<List<OmsCompanyAddress>> list() {
    List<OmsCompanyAddress> companyAddressList = companyAddressService.list();
    return CommonResult.success(companyAddressList);
}
 
Example #5
Source File: OmsCompanyAddressServiceImpl.java    From mall with Apache License 2.0 4 votes vote down vote up
@Override
public List<OmsCompanyAddress> list() {
    return companyAddressMapper.selectByExample(new OmsCompanyAddressExample());
}
 
Example #6
Source File: OmsCompanyAddressServiceImpl.java    From macrozheng with Apache License 2.0 4 votes vote down vote up
@Override
public List<OmsCompanyAddress> list() {
    return companyAddressMapper.selectByExample(new OmsCompanyAddressExample());
}
 
Example #7
Source File: OmsCompanyAddressServiceImpl.java    From mall-swarm with Apache License 2.0 4 votes vote down vote up
@Override
public List<OmsCompanyAddress> list() {
    return companyAddressMapper.selectByExample(new OmsCompanyAddressExample());
}
 
Example #8
Source File: OmsCompanyAddressServiceImpl.java    From macrozheng-mall with MIT License 4 votes vote down vote up
@Override
public List<OmsCompanyAddress> list() {
    return companyAddressMapper.selectByExample(new OmsCompanyAddressExample());
}
 
Example #9
Source File: OmsCompanyAddressService.java    From macrozheng with Apache License 2.0 2 votes vote down vote up
/**
 * 获取全部收货地址
 */
List<OmsCompanyAddress> list();
 
Example #10
Source File: OmsCompanyAddressService.java    From mall-swarm with Apache License 2.0 2 votes vote down vote up
/**
 * 获取全部收货地址
 */
List<OmsCompanyAddress> list();
 
Example #11
Source File: OmsCompanyAddressService.java    From macrozheng-mall with MIT License 2 votes vote down vote up
/**
 * 获取全部收货地址
 */
List<OmsCompanyAddress> list();
 
Example #12
Source File: OmsCompanyAddressService.java    From mall with Apache License 2.0 2 votes vote down vote up
/**
 * 获取全部收货地址
 */
List<OmsCompanyAddress> list();
 
Example #13
Source File: OmsCompanyAddressMapper.java    From mall with Apache License 2.0 votes vote down vote up
int updateByPrimaryKeySelective(OmsCompanyAddress record); 
Example #14
Source File: OmsCompanyAddressMapper.java    From mall with Apache License 2.0 votes vote down vote up
int updateByExample(@Param("record") OmsCompanyAddress record, @Param("example") OmsCompanyAddressExample example); 
Example #15
Source File: OmsCompanyAddressMapper.java    From mall with Apache License 2.0 votes vote down vote up
int insert(OmsCompanyAddress record); 
Example #16
Source File: OmsCompanyAddressMapper.java    From mall with Apache License 2.0 votes vote down vote up
int updateByPrimaryKey(OmsCompanyAddress record); 
Example #17
Source File: OmsCompanyAddressMapper.java    From mall with Apache License 2.0 votes vote down vote up
int updateByExampleSelective(@Param("record") OmsCompanyAddress record, @Param("example") OmsCompanyAddressExample example); 
Example #18
Source File: OmsCompanyAddressMapper.java    From macrozheng-mall with MIT License votes vote down vote up
int insert(OmsCompanyAddress record); 
Example #19
Source File: OmsCompanyAddressMapper.java    From macrozheng-mall with MIT License votes vote down vote up
int insertSelective(OmsCompanyAddress record); 
Example #20
Source File: OmsCompanyAddressMapper.java    From macrozheng-mall with MIT License votes vote down vote up
List<OmsCompanyAddress> selectByExample(OmsCompanyAddressExample example); 
Example #21
Source File: OmsCompanyAddressMapper.java    From macrozheng-mall with MIT License votes vote down vote up
OmsCompanyAddress selectByPrimaryKey(Long id); 
Example #22
Source File: OmsCompanyAddressMapper.java    From macrozheng-mall with MIT License votes vote down vote up
int updateByExampleSelective(@Param("record") OmsCompanyAddress record, @Param("example") OmsCompanyAddressExample example); 
Example #23
Source File: OmsCompanyAddressMapper.java    From macrozheng-mall with MIT License votes vote down vote up
int updateByExample(@Param("record") OmsCompanyAddress record, @Param("example") OmsCompanyAddressExample example); 
Example #24
Source File: OmsCompanyAddressMapper.java    From macrozheng-mall with MIT License votes vote down vote up
int updateByPrimaryKeySelective(OmsCompanyAddress record); 
Example #25
Source File: OmsCompanyAddressMapper.java    From macrozheng-mall with MIT License votes vote down vote up
int updateByPrimaryKey(OmsCompanyAddress record); 
Example #26
Source File: OmsCompanyAddressMapper.java    From macrozheng with Apache License 2.0 votes vote down vote up
List<OmsCompanyAddress> selectByExample(OmsCompanyAddressExample example); 
Example #27
Source File: OmsCompanyAddressMapper.java    From mall-swarm with Apache License 2.0 votes vote down vote up
int insertSelective(OmsCompanyAddress record); 
Example #28
Source File: OmsCompanyAddressMapper.java    From mall-swarm with Apache License 2.0 votes vote down vote up
List<OmsCompanyAddress> selectByExample(OmsCompanyAddressExample example); 
Example #29
Source File: OmsCompanyAddressMapper.java    From mall-swarm with Apache License 2.0 votes vote down vote up
OmsCompanyAddress selectByPrimaryKey(Long id); 
Example #30
Source File: OmsCompanyAddressMapper.java    From mall-swarm with Apache License 2.0 votes vote down vote up
int updateByExampleSelective(@Param("record") OmsCompanyAddress record, @Param("example") OmsCompanyAddressExample example);