龚焕茏
2024-03-21 e17e3b7f70fa5abc8341e64f1ffce5813bae4bc3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.dromara.demo.mapper;
 
import org.dromara.demo.domain.RsTrafficAccident;
import org.dromara.demo.domain.vo.RsTrafficAccidentVo;
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus;
 
import java.util.List;
 
/**
 * 交通事故Mapper接口
 *
 * @author gonghl
 * @date 2024-03-11
 */
public interface RsTrafficAccidentMapper extends BaseMapperPlus<RsTrafficAccident, RsTrafficAccidentVo> {
 
    List<RsTrafficAccidentVo> getTrafficAccident();
}