@@ -24,6 +24,7 @@ import java.util.List;
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = true)
public class CheckJobDTO extends BaseDTO implements Serializable {
+ private String typeId;
/**
* 实际执行人姓名
*/
@@ -189,6 +189,9 @@
<if test="actualUser != null and actualUser != ''">
and checkjob.actual_user like concat('%',#{actualUser},'%')
</if>
+ <if test="typeId!=null and typeId!=''">
+ and sbinfo.type_id=#{typeId}
+ </if>
</sql>
<select id="selectList" parameterType="com.platform.dao.dto.check.CheckJobDTO"