17 lines
364 B
Java
17 lines
364 B
Java
|
|
package com.gunshi.project.xyt.mapper;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
import com.gunshi.project.xyt.model.SzRuleByLaw;
|
||
|
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Description:
|
||
|
|
* Created by XuSan on 2024/9/24.
|
||
|
|
*
|
||
|
|
* @author XuSan
|
||
|
|
* @version 1.0
|
||
|
|
*/
|
||
|
|
@Mapper
|
||
|
|
public interface SzRuleByLawMapper extends BaseMapper<SzRuleByLaw> {
|
||
|
|
}
|