lidongdong
2023-09-19 34e20241e4f7f96783702f85c2ac5bded7788f5e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.panzhihua.service_equipment.service;
 
import com.panzhihua.common.model.dtos.equipment.UnionShippingAddressDto;
import com.panzhihua.common.model.vos.R;
 
public interface UnionShippingAddressService
{
    R getList(int pageNum,int pageSize, String communityId,String userId);
 
    R getData(String id);
 
    R insert(UnionShippingAddressDto item);
 
 
    R update(UnionShippingAddressDto item);
 
    /**
     * 删除接口
     * @param id
     * @return
     */
    R delete(String id);
}