kongdeqiang
2023-06-08 d0c8bb3267a8a666b9a7ad1ae406c88b2fceff58
1
2
3
4
5
6
7
8
9
10
package com.boying.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.boying.entity.ViolationType;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
@Mapper
public interface ViolationTypeMapper extends BaseMapper<ViolationType> {
}