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.
SRuml/AddressMapper.java

39 lines
608 B

3 months ago
package com.example.mapper;
import com.example.entity.Address;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import java.util.List;
/**
* address
*/
public interface AddressMapper {
/**
*
*/
int insert(Address address);
/**
*
*/
int deleteById(Integer id);
/**
*
*/
int updateById(Address address);
/**
* ID
*/
Address selectById(Integer id);
/**
*
*/
List<Address> selectAll(Address address);
}