This commit is contained in:
2023-11-14 15:03:36 +08:00
commit 2f3d218368
187 changed files with 27459 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
/**
* @author Feri
*/
package ah.com.service;
import java.util.List;
import ah.com.domain.UserAddress;
public interface UserAddressService {
// 新增
public boolean insert(UserAddress ua);
// 修改
public boolean update(UserAddress ua);
// 查询地址
public List<UserAddress> queryByUid(int uid);
//删除地址
public int deleteAddress(int id);
//修改状态
public int updateDea(int id, int uid);
}