You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
457 B
12 lines
457 B
package jty.expressdistributionsystem.service.impl;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import jty.expressdistributionsystem.entity.Address;
|
|
import jty.expressdistributionsystem.mapper.AddressMapper;
|
|
import jty.expressdistributionsystem.service.AddressService;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@Service
|
|
public class AddressServiceImpl extends ServiceImpl<AddressMapper, Address> implements AddressService {
|
|
}
|