| | |
| | | * @return 实体集合 |
| | | */ |
| | | List<VoCamera> selectSome(Map<?, ?> params) ; |
| | | /** |
| | | * 查询总数 |
| | | * @param params 查询条件 |
| | | * @return 总数 |
| | | */ |
| | | Long selectTotal4Monitor(Map<?, ?> params) ; |
| | | |
| | | /** |
| | | * 分页查询一些 |
| | | * @param params 查询条件 |
| | | * @return 实体集合 |
| | | */ |
| | | List<VoCamera> selectSome4Monitor(Map<?, ?> params) ; |
| | | |
| | | // Update the record in the ViCamera table based on the primary key, but only update the fields that are not null |
| | | int updateByPrimaryKeySelective(ViCamera record); |
| | |
| | | </if> |
| | | </trim> |
| | | </select> |
| | | |
| | | <select id="selectTotal4Monitor" parameterType="java.util.Map" resultType="java.lang.Long"> |
| | | select |
| | | count(*) |
| | | from vi_camera tb |
| | | where tb.deleted != 1 and tb.on_screen = 1 |
| | | <trim prefix="and" suffixOverrides="and"> |
| | | <if test="name != null and name != ''"> |
| | | tb.`name` like concat('%', #{name}, '%') and |
| | | </if> |
| | | </trim> |
| | | </select> |
| | | <select id="selectSome4Monitor" parameterType="java.util.Map" resultType="com.dy.pipIrrGlobal.voVi.VoCamera"> |
| | | <!--@mbg.generated--> |
| | | select |
| | | <include refid="part_Column_List" > |
| | | <property name="alias" value="tb"/> |
| | | </include> |
| | | from vi_camera tb |
| | | where tb.deleted != 1 and tb.on_screen = 1 |
| | | <trim prefix="and" suffixOverrides="and"> |
| | | <if test="name != null"> |
| | | tb.`name` like concat('%', #{name}, '%') and |
| | | </if> |
| | | </trim> |
| | | order by tb.on_sort ASC, tb.id DESC |
| | | <trim prefix="limit " > |
| | | <if test="start != null and count != null"> |
| | | #{start,javaType=Integer,jdbcType=INTEGER}, #{count,javaType=Integer,jdbcType=INTEGER} |
| | | </if> |
| | | </trim> |
| | | </select> |
| | | <delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> |
| | | <!--@mbg.generated--> |
| | | delete from vi_camera |
| | |
| | | */ |
| | | public QueryResultVo<List<VoCamera>> some(VideoQo queryQo, int pageSize) { |
| | | Map<String, Object> params = (Map<String, Object>) PojoUtils.generalize(queryQo); |
| | | Long itemTotal = dao.selectTotal(params); |
| | | Long itemTotal = dao.selectTotal4Monitor(params); |
| | | |
| | | QueryResultVo<List<VoCamera>> rsVo = new QueryResultVo<>(); |
| | | rsVo.pageSize = pageSize; |
| | | rsVo.pageCurr = queryQo.pageCurr; |
| | | rsVo.calculateAndSet(itemTotal, params); |
| | | rsVo.obj = dao.selectSome(params); |
| | | rsVo.obj = dao.selectSome4Monitor((params)) ; |
| | | return rsVo; |
| | | } |
| | | |