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.
25 lines
627 B
25 lines
627 B
package com.ccic.safeliab.dao; |
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
|
import com.ccic.safeliab.entity.ReForm; |
|
import com.ccic.safeliab.entity.Service; |
|
import com.ccic.safeliab.entity.SettlementRelation; |
|
import org.apache.ibatis.annotations.Mapper; |
|
import org.apache.ibatis.annotations.Param; |
|
|
|
import java.util.List; |
|
import java.util.Map; |
|
|
|
/** |
|
* <p> |
|
* 结算单服务关联表 Mapper 接口 |
|
* </p> |
|
* |
|
* @author testjava |
|
* @since 2022-09-26 |
|
*/ |
|
@Mapper |
|
public interface SettlementRelationMapper extends BaseMapper<SettlementRelation> { |
|
|
|
}
|
|
|