1
This commit is contained in:
@ -0,0 +1,15 @@
|
||||
package com.mosty.bkzx.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.mosty.base.model.entity.bkzx.TbBkCl;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* @author dw
|
||||
* @since 2022/7/14
|
||||
* 布控车辆Mapper
|
||||
**/
|
||||
@Mapper
|
||||
public interface TbBkClMapper extends BaseMapper<TbBkCl> {
|
||||
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package com.mosty.bkzx.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.mosty.base.model.entity.bkzx.TbBkDb;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface TbBkDbMapper extends BaseMapper<TbBkDb> {
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package com.mosty.bkzx.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.mosty.base.model.entity.bkzx.TbBkRy;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* @author dw
|
||||
* @since 2022/7/13
|
||||
* 人员布控Mapper
|
||||
**/
|
||||
@Mapper
|
||||
public interface TbBkRyMapper extends BaseMapper<TbBkRy> {
|
||||
|
||||
}
|
@ -0,0 +1,35 @@
|
||||
package com.mosty.bkzx.mapper;
|
||||
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@Mapper
|
||||
public interface XdxxMapper {
|
||||
|
||||
@ApiOperation("根据身份证号查询行动信息数量")
|
||||
int queryXdxxBYSzfhCount(Map<String, Object> map);
|
||||
|
||||
@ApiOperation("根据身份证号查询行动信息列表")
|
||||
List<Map<String, Object>> queryXdxxBYSzfh(Map<String, Object> map);
|
||||
|
||||
@ApiOperation("行动人员数量")
|
||||
int xdrylbCount(Map<String, Object> map);
|
||||
|
||||
@ApiOperation("行动人员列表")
|
||||
List<Map<String, Object>> xdrylb(Map<String, Object> map);
|
||||
|
||||
@ApiOperation("行动人员统计")
|
||||
List<Map<String, Object>> xdrytj(Map<String, Object> map);
|
||||
|
||||
@ApiOperation("行动信息数量")
|
||||
int xdxxlbCount(Map<String, Object> map);
|
||||
|
||||
@ApiOperation("行动信息列表")
|
||||
List<Map<String, Object>> xdxxlb(Map<String, Object> map);
|
||||
|
||||
@ApiOperation("行动信息统计")
|
||||
List<Map<String, Object>> xdxxtj(Map<String, Object> map);
|
||||
}
|
Reference in New Issue
Block a user