1.
luofl
2025-02-28 ac8935ad12f67f78a74a3bd2bfaf810546a7461f
springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/dao/ComplaintAuditRecordMapper.java
@@ -1,7 +1,11 @@
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>
@@ -13,4 +17,10 @@
 */
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);
}