parent
54daa77725
commit
d7a45a9b5e
@ -0,0 +1,17 @@
|
||||
package com.example.flower.service.impl;
|
||||
|
||||
import com.example.flower.entity.Address;
|
||||
import com.github.pagehelper.PageInfo;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
@Mapper
|
||||
@Repository
|
||||
public interface AddressServiceImpl {
|
||||
PageInfo<Address> addressList(int page, int page_size,int user_id);
|
||||
void addressAdd(Address address);
|
||||
int addressDeletePer(int address_id);
|
||||
int addressDeleteMul(int[] address_ids);
|
||||
Address addressInfo(int address_id);
|
||||
int addressModify(Address address);
|
||||
}
|
||||
Loading…
Reference in new issue