@Service(value="shippingService") public class ShippingServiceImpl extends Object implements ShippingService
| Constructor and Description |
|---|
ShippingServiceImpl() |
| Modifier and Type | Method and Description |
|---|---|
int |
delete(Integer id)
根据主键删除
|
int |
deleteBatch(Integer[] ids)
根据主键批量删除
|
List<ShippingEntity> |
queryList(Map<String,Object> map)
分页查询
|
ShippingEntity |
queryObject(Integer id)
根据主键查询实体
|
int |
queryTotal(Map<String,Object> map)
分页统计总数
|
int |
save(ShippingEntity shipping)
保存实体
|
int |
update(ShippingEntity shipping)
根据主键更新实体
|
public ShippingEntity queryObject(Integer id)
ShippingServicequeryObject in interface ShippingServiceid - 主键public List<ShippingEntity> queryList(Map<String,Object> map)
ShippingServicequeryList in interface ShippingServicemap - 参数public int queryTotal(Map<String,Object> map)
ShippingServicequeryTotal in interface ShippingServicemap - 参数public int save(ShippingEntity shipping)
ShippingServicesave in interface ShippingServiceshipping - 实体public int update(ShippingEntity shipping)
ShippingServiceupdate in interface ShippingServiceshipping - 实体public int delete(Integer id)
ShippingServicedelete in interface ShippingServicepublic int deleteBatch(Integer[] ids)
ShippingServicedeleteBatch in interface ShippingServiceCopyright © 2021. All rights reserved.