| | |
| | | package com.panzhihua.sangeshenbian.dao; |
| | | |
| | | import com.panzhihua.sangeshenbian.model.dto.ComplaintTimeout; |
| | | import com.panzhihua.sangeshenbian.model.entity.ComplaintAuditRecord; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface ComplaintAuditRecordMapper extends BaseMapper<ComplaintAuditRecord> { |
| | | |
| | | public List<ComplaintTimeout> getComplaintTimeout(@Param("cityDay") Integer cityDay, |
| | | @Param("districtDay") Integer districtDay, |
| | | @Param("streetDay") Integer streetDay, |
| | | @Param("communityDay") Integer communityDay, |
| | | @Param("partyMemberDay") Integer partyMemberDay); |
| | | |
| | | } |