1
This commit is contained in:
@ -0,0 +1,26 @@
|
||||
package com.mosty.qwzx.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.mosty.base.model.entity.qwzx.TbQwXfpbMrjl;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author dw
|
||||
* @since 2022/8/10
|
||||
**/
|
||||
@Mapper
|
||||
public interface TbQwXfpbMrjlMapper extends BaseMapper<TbQwXfpbMrjl> {
|
||||
|
||||
@ApiOperation("删除警力报备数据")
|
||||
void deleteByYwid(@Param("pbId") String pbId, @Param("pbzqId") String pbzqId);
|
||||
|
||||
@ApiOperation("根据时间查询每日警力信息")
|
||||
List<TbQwXfpbMrjl> getMrjlByTime(@Param("xfkssj")String xfkssj,
|
||||
@Param("xfjssj")String xfjssj,
|
||||
@Param("pbid")String pbid);
|
||||
}
|
Reference in New Issue
Block a user