Forráskód Böngészése

创建群信息详情表

刘立冬 1 hónapja
szülő
commit
fdc2258d79

+ 96 - 0
risk-control-core/src/main/java/com/tzld/piaoquan/risk/control/dao/mapper/QwRoomDetailInfoMapper.java

@@ -0,0 +1,96 @@
+package com.tzld.piaoquan.risk.control.dao.mapper;
+
+import com.tzld.piaoquan.risk.control.model.po.QwRoomDetailInfo;
+import com.tzld.piaoquan.risk.control.model.po.QwRoomDetailInfoExample;
+import java.util.List;
+import org.apache.ibatis.annotations.Param;
+
+public interface QwRoomDetailInfoMapper {
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    long countByExample(QwRoomDetailInfoExample example);
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    int deleteByExample(QwRoomDetailInfoExample example);
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    int deleteByPrimaryKey(String roomId);
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    int insert(QwRoomDetailInfo record);
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    int insertSelective(QwRoomDetailInfo record);
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    List<QwRoomDetailInfo> selectByExample(QwRoomDetailInfoExample example);
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    QwRoomDetailInfo selectByPrimaryKey(String roomId);
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    int updateByExampleSelective(@Param("record") QwRoomDetailInfo record, @Param("example") QwRoomDetailInfoExample example);
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    int updateByExample(@Param("record") QwRoomDetailInfo record, @Param("example") QwRoomDetailInfoExample example);
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    int updateByPrimaryKeySelective(QwRoomDetailInfo record);
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    int updateByPrimaryKey(QwRoomDetailInfo record);
+}

+ 330 - 0
risk-control-core/src/main/java/com/tzld/piaoquan/risk/control/model/po/QwRoomDetailInfo.java

@@ -0,0 +1,330 @@
+package com.tzld.piaoquan.risk.control.model.po;
+
+/**
+ *
+ * This class was generated by MyBatis Generator.
+ * This class corresponds to the database table all_room_list
+ */
+public class QwRoomDetailInfo {
+    /**
+     *
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column all_room_list.room_id
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    private String roomId;
+
+    /**
+     *
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column all_room_list.create_user_id
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    private Long createUserId;
+
+    /**
+     *
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column all_room_list.infoticket
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    private String infoticket;
+
+    /**
+     *
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column all_room_list.update_time
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    private Long updateTime;
+
+    /**
+     *
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column all_room_list.total
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    private Integer total;
+
+    /**
+     *
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column all_room_list.flag
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    private Byte flag;
+
+    /**
+     *
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column all_room_list.create_time
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    private Long createTime;
+
+    /**
+     *
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column all_room_list.nickname
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    private String nickname;
+
+    /**
+     *
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database column all_room_list.roomurl
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    private String roomurl;
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column all_room_list.room_id
+     *
+     * @return the value of all_room_list.room_id
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public String getRoomId() {
+        return roomId;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column all_room_list.room_id
+     *
+     * @param roomId the value for all_room_list.room_id
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public void setRoomId(String roomId) {
+        this.roomId = roomId;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column all_room_list.create_user_id
+     *
+     * @return the value of all_room_list.create_user_id
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public Long getCreateUserId() {
+        return createUserId;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column all_room_list.create_user_id
+     *
+     * @param createUserId the value for all_room_list.create_user_id
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public void setCreateUserId(Long createUserId) {
+        this.createUserId = createUserId;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column all_room_list.infoticket
+     *
+     * @return the value of all_room_list.infoticket
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public String getInfoticket() {
+        return infoticket;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column all_room_list.infoticket
+     *
+     * @param infoticket the value for all_room_list.infoticket
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public void setInfoticket(String infoticket) {
+        this.infoticket = infoticket;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column all_room_list.update_time
+     *
+     * @return the value of all_room_list.update_time
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public Long getUpdateTime() {
+        return updateTime;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column all_room_list.update_time
+     *
+     * @param updateTime the value for all_room_list.update_time
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public void setUpdateTime(Long updateTime) {
+        this.updateTime = updateTime;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column all_room_list.total
+     *
+     * @return the value of all_room_list.total
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public Integer getTotal() {
+        return total;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column all_room_list.total
+     *
+     * @param total the value for all_room_list.total
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public void setTotal(Integer total) {
+        this.total = total;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column all_room_list.flag
+     *
+     * @return the value of all_room_list.flag
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public Byte getFlag() {
+        return flag;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column all_room_list.flag
+     *
+     * @param flag the value for all_room_list.flag
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public void setFlag(Byte flag) {
+        this.flag = flag;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column all_room_list.create_time
+     *
+     * @return the value of all_room_list.create_time
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public Long getCreateTime() {
+        return createTime;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column all_room_list.create_time
+     *
+     * @param createTime the value for all_room_list.create_time
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public void setCreateTime(Long createTime) {
+        this.createTime = createTime;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column all_room_list.nickname
+     *
+     * @return the value of all_room_list.nickname
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public String getNickname() {
+        return nickname;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column all_room_list.nickname
+     *
+     * @param nickname the value for all_room_list.nickname
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public void setNickname(String nickname) {
+        this.nickname = nickname;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method returns the value of the database column all_room_list.roomurl
+     *
+     * @return the value of all_room_list.roomurl
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public String getRoomurl() {
+        return roomurl;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method sets the value of the database column all_room_list.roomurl
+     *
+     * @param roomurl the value for all_room_list.roomurl
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public void setRoomurl(String roomurl) {
+        this.roomurl = roomurl;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    @Override
+    public String toString() {
+        StringBuilder sb = new StringBuilder();
+        sb.append(getClass().getSimpleName());
+        sb.append(" [");
+        sb.append("Hash = ").append(hashCode());
+        sb.append(", roomId=").append(roomId);
+        sb.append(", createUserId=").append(createUserId);
+        sb.append(", infoticket=").append(infoticket);
+        sb.append(", updateTime=").append(updateTime);
+        sb.append(", total=").append(total);
+        sb.append(", flag=").append(flag);
+        sb.append(", createTime=").append(createTime);
+        sb.append(", nickname=").append(nickname);
+        sb.append(", roomurl=").append(roomurl);
+        sb.append("]");
+        return sb.toString();
+    }
+}

+ 911 - 0
risk-control-core/src/main/java/com/tzld/piaoquan/risk/control/model/po/QwRoomDetailInfoExample.java

@@ -0,0 +1,911 @@
+package com.tzld.piaoquan.risk.control.model.po;
+
+import com.tzld.piaoquan.risk.control.model.dto.Page;
+import java.util.ArrayList;
+import java.util.List;
+
+public class QwRoomDetailInfoExample {
+    /**
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    protected String orderByClause;
+
+    /**
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    protected boolean distinct;
+
+    /**
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    protected List<Criteria> oredCriteria;
+
+    /**
+     * This field was generated by MyBatis Generator.
+     * This field corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    protected Page page;
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public QwRoomDetailInfoExample() {
+        oredCriteria = new ArrayList<Criteria>();
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public void setOrderByClause(String orderByClause) {
+        this.orderByClause = orderByClause;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public String getOrderByClause() {
+        return orderByClause;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public void setDistinct(boolean distinct) {
+        this.distinct = distinct;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public boolean isDistinct() {
+        return distinct;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public List<Criteria> getOredCriteria() {
+        return oredCriteria;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public void or(Criteria criteria) {
+        oredCriteria.add(criteria);
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public Criteria or() {
+        Criteria criteria = createCriteriaInternal();
+        oredCriteria.add(criteria);
+        return criteria;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public Criteria createCriteria() {
+        Criteria criteria = createCriteriaInternal();
+        if (oredCriteria.size() == 0) {
+            oredCriteria.add(criteria);
+        }
+        return criteria;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    protected Criteria createCriteriaInternal() {
+        Criteria criteria = new Criteria();
+        return criteria;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public void clear() {
+        oredCriteria.clear();
+        orderByClause = null;
+        distinct = false;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public void setPage(Page page) {
+        this.page=page;
+    }
+
+    /**
+     * This method was generated by MyBatis Generator.
+     * This method corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public Page getPage() {
+        return page;
+    }
+
+    /**
+     * This class was generated by MyBatis Generator.
+     * This class corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    protected abstract static class GeneratedCriteria {
+        protected List<Criterion> criteria;
+
+        protected GeneratedCriteria() {
+            super();
+            criteria = new ArrayList<Criterion>();
+        }
+
+        public boolean isValid() {
+            return criteria.size() > 0;
+        }
+
+        public List<Criterion> getAllCriteria() {
+            return criteria;
+        }
+
+        public List<Criterion> getCriteria() {
+            return criteria;
+        }
+
+        protected void addCriterion(String condition) {
+            if (condition == null) {
+                throw new RuntimeException("Value for condition cannot be null");
+            }
+            criteria.add(new Criterion(condition));
+        }
+
+        protected void addCriterion(String condition, Object value, String property) {
+            if (value == null) {
+                throw new RuntimeException("Value for " + property + " cannot be null");
+            }
+            criteria.add(new Criterion(condition, value));
+        }
+
+        protected void addCriterion(String condition, Object value1, Object value2, String property) {
+            if (value1 == null || value2 == null) {
+                throw new RuntimeException("Between values for " + property + " cannot be null");
+            }
+            criteria.add(new Criterion(condition, value1, value2));
+        }
+
+        public Criteria andRoomIdIsNull() {
+            addCriterion("room_id is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomIdIsNotNull() {
+            addCriterion("room_id is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomIdEqualTo(String value) {
+            addCriterion("room_id =", value, "roomId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomIdNotEqualTo(String value) {
+            addCriterion("room_id <>", value, "roomId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomIdGreaterThan(String value) {
+            addCriterion("room_id >", value, "roomId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomIdGreaterThanOrEqualTo(String value) {
+            addCriterion("room_id >=", value, "roomId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomIdLessThan(String value) {
+            addCriterion("room_id <", value, "roomId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomIdLessThanOrEqualTo(String value) {
+            addCriterion("room_id <=", value, "roomId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomIdLike(String value) {
+            addCriterion("room_id like", value, "roomId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomIdNotLike(String value) {
+            addCriterion("room_id not like", value, "roomId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomIdIn(List<String> values) {
+            addCriterion("room_id in", values, "roomId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomIdNotIn(List<String> values) {
+            addCriterion("room_id not in", values, "roomId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomIdBetween(String value1, String value2) {
+            addCriterion("room_id between", value1, value2, "roomId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomIdNotBetween(String value1, String value2) {
+            addCriterion("room_id not between", value1, value2, "roomId");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateUserIdIsNull() {
+            addCriterion("create_user_id is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateUserIdIsNotNull() {
+            addCriterion("create_user_id is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateUserIdEqualTo(Long value) {
+            addCriterion("create_user_id =", value, "createUserId");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateUserIdNotEqualTo(Long value) {
+            addCriterion("create_user_id <>", value, "createUserId");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateUserIdGreaterThan(Long value) {
+            addCriterion("create_user_id >", value, "createUserId");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateUserIdGreaterThanOrEqualTo(Long value) {
+            addCriterion("create_user_id >=", value, "createUserId");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateUserIdLessThan(Long value) {
+            addCriterion("create_user_id <", value, "createUserId");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateUserIdLessThanOrEqualTo(Long value) {
+            addCriterion("create_user_id <=", value, "createUserId");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateUserIdIn(List<Long> values) {
+            addCriterion("create_user_id in", values, "createUserId");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateUserIdNotIn(List<Long> values) {
+            addCriterion("create_user_id not in", values, "createUserId");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateUserIdBetween(Long value1, Long value2) {
+            addCriterion("create_user_id between", value1, value2, "createUserId");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateUserIdNotBetween(Long value1, Long value2) {
+            addCriterion("create_user_id not between", value1, value2, "createUserId");
+            return (Criteria) this;
+        }
+
+        public Criteria andInfoticketIsNull() {
+            addCriterion("infoticket is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andInfoticketIsNotNull() {
+            addCriterion("infoticket is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andInfoticketEqualTo(String value) {
+            addCriterion("infoticket =", value, "infoticket");
+            return (Criteria) this;
+        }
+
+        public Criteria andInfoticketNotEqualTo(String value) {
+            addCriterion("infoticket <>", value, "infoticket");
+            return (Criteria) this;
+        }
+
+        public Criteria andInfoticketGreaterThan(String value) {
+            addCriterion("infoticket >", value, "infoticket");
+            return (Criteria) this;
+        }
+
+        public Criteria andInfoticketGreaterThanOrEqualTo(String value) {
+            addCriterion("infoticket >=", value, "infoticket");
+            return (Criteria) this;
+        }
+
+        public Criteria andInfoticketLessThan(String value) {
+            addCriterion("infoticket <", value, "infoticket");
+            return (Criteria) this;
+        }
+
+        public Criteria andInfoticketLessThanOrEqualTo(String value) {
+            addCriterion("infoticket <=", value, "infoticket");
+            return (Criteria) this;
+        }
+
+        public Criteria andInfoticketLike(String value) {
+            addCriterion("infoticket like", value, "infoticket");
+            return (Criteria) this;
+        }
+
+        public Criteria andInfoticketNotLike(String value) {
+            addCriterion("infoticket not like", value, "infoticket");
+            return (Criteria) this;
+        }
+
+        public Criteria andInfoticketIn(List<String> values) {
+            addCriterion("infoticket in", values, "infoticket");
+            return (Criteria) this;
+        }
+
+        public Criteria andInfoticketNotIn(List<String> values) {
+            addCriterion("infoticket not in", values, "infoticket");
+            return (Criteria) this;
+        }
+
+        public Criteria andInfoticketBetween(String value1, String value2) {
+            addCriterion("infoticket between", value1, value2, "infoticket");
+            return (Criteria) this;
+        }
+
+        public Criteria andInfoticketNotBetween(String value1, String value2) {
+            addCriterion("infoticket not between", value1, value2, "infoticket");
+            return (Criteria) this;
+        }
+
+        public Criteria andUpdateTimeIsNull() {
+            addCriterion("update_time is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andUpdateTimeIsNotNull() {
+            addCriterion("update_time is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andUpdateTimeEqualTo(Long value) {
+            addCriterion("update_time =", value, "updateTime");
+            return (Criteria) this;
+        }
+
+        public Criteria andUpdateTimeNotEqualTo(Long value) {
+            addCriterion("update_time <>", value, "updateTime");
+            return (Criteria) this;
+        }
+
+        public Criteria andUpdateTimeGreaterThan(Long value) {
+            addCriterion("update_time >", value, "updateTime");
+            return (Criteria) this;
+        }
+
+        public Criteria andUpdateTimeGreaterThanOrEqualTo(Long value) {
+            addCriterion("update_time >=", value, "updateTime");
+            return (Criteria) this;
+        }
+
+        public Criteria andUpdateTimeLessThan(Long value) {
+            addCriterion("update_time <", value, "updateTime");
+            return (Criteria) this;
+        }
+
+        public Criteria andUpdateTimeLessThanOrEqualTo(Long value) {
+            addCriterion("update_time <=", value, "updateTime");
+            return (Criteria) this;
+        }
+
+        public Criteria andUpdateTimeIn(List<Long> values) {
+            addCriterion("update_time in", values, "updateTime");
+            return (Criteria) this;
+        }
+
+        public Criteria andUpdateTimeNotIn(List<Long> values) {
+            addCriterion("update_time not in", values, "updateTime");
+            return (Criteria) this;
+        }
+
+        public Criteria andUpdateTimeBetween(Long value1, Long value2) {
+            addCriterion("update_time between", value1, value2, "updateTime");
+            return (Criteria) this;
+        }
+
+        public Criteria andUpdateTimeNotBetween(Long value1, Long value2) {
+            addCriterion("update_time not between", value1, value2, "updateTime");
+            return (Criteria) this;
+        }
+
+        public Criteria andTotalIsNull() {
+            addCriterion("total is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andTotalIsNotNull() {
+            addCriterion("total is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andTotalEqualTo(Integer value) {
+            addCriterion("total =", value, "total");
+            return (Criteria) this;
+        }
+
+        public Criteria andTotalNotEqualTo(Integer value) {
+            addCriterion("total <>", value, "total");
+            return (Criteria) this;
+        }
+
+        public Criteria andTotalGreaterThan(Integer value) {
+            addCriterion("total >", value, "total");
+            return (Criteria) this;
+        }
+
+        public Criteria andTotalGreaterThanOrEqualTo(Integer value) {
+            addCriterion("total >=", value, "total");
+            return (Criteria) this;
+        }
+
+        public Criteria andTotalLessThan(Integer value) {
+            addCriterion("total <", value, "total");
+            return (Criteria) this;
+        }
+
+        public Criteria andTotalLessThanOrEqualTo(Integer value) {
+            addCriterion("total <=", value, "total");
+            return (Criteria) this;
+        }
+
+        public Criteria andTotalIn(List<Integer> values) {
+            addCriterion("total in", values, "total");
+            return (Criteria) this;
+        }
+
+        public Criteria andTotalNotIn(List<Integer> values) {
+            addCriterion("total not in", values, "total");
+            return (Criteria) this;
+        }
+
+        public Criteria andTotalBetween(Integer value1, Integer value2) {
+            addCriterion("total between", value1, value2, "total");
+            return (Criteria) this;
+        }
+
+        public Criteria andTotalNotBetween(Integer value1, Integer value2) {
+            addCriterion("total not between", value1, value2, "total");
+            return (Criteria) this;
+        }
+
+        public Criteria andFlagIsNull() {
+            addCriterion("flag is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andFlagIsNotNull() {
+            addCriterion("flag is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andFlagEqualTo(Byte value) {
+            addCriterion("flag =", value, "flag");
+            return (Criteria) this;
+        }
+
+        public Criteria andFlagNotEqualTo(Byte value) {
+            addCriterion("flag <>", value, "flag");
+            return (Criteria) this;
+        }
+
+        public Criteria andFlagGreaterThan(Byte value) {
+            addCriterion("flag >", value, "flag");
+            return (Criteria) this;
+        }
+
+        public Criteria andFlagGreaterThanOrEqualTo(Byte value) {
+            addCriterion("flag >=", value, "flag");
+            return (Criteria) this;
+        }
+
+        public Criteria andFlagLessThan(Byte value) {
+            addCriterion("flag <", value, "flag");
+            return (Criteria) this;
+        }
+
+        public Criteria andFlagLessThanOrEqualTo(Byte value) {
+            addCriterion("flag <=", value, "flag");
+            return (Criteria) this;
+        }
+
+        public Criteria andFlagIn(List<Byte> values) {
+            addCriterion("flag in", values, "flag");
+            return (Criteria) this;
+        }
+
+        public Criteria andFlagNotIn(List<Byte> values) {
+            addCriterion("flag not in", values, "flag");
+            return (Criteria) this;
+        }
+
+        public Criteria andFlagBetween(Byte value1, Byte value2) {
+            addCriterion("flag between", value1, value2, "flag");
+            return (Criteria) this;
+        }
+
+        public Criteria andFlagNotBetween(Byte value1, Byte value2) {
+            addCriterion("flag not between", value1, value2, "flag");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateTimeIsNull() {
+            addCriterion("create_time is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateTimeIsNotNull() {
+            addCriterion("create_time is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateTimeEqualTo(Long value) {
+            addCriterion("create_time =", value, "createTime");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateTimeNotEqualTo(Long value) {
+            addCriterion("create_time <>", value, "createTime");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateTimeGreaterThan(Long value) {
+            addCriterion("create_time >", value, "createTime");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateTimeGreaterThanOrEqualTo(Long value) {
+            addCriterion("create_time >=", value, "createTime");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateTimeLessThan(Long value) {
+            addCriterion("create_time <", value, "createTime");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateTimeLessThanOrEqualTo(Long value) {
+            addCriterion("create_time <=", value, "createTime");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateTimeIn(List<Long> values) {
+            addCriterion("create_time in", values, "createTime");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateTimeNotIn(List<Long> values) {
+            addCriterion("create_time not in", values, "createTime");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateTimeBetween(Long value1, Long value2) {
+            addCriterion("create_time between", value1, value2, "createTime");
+            return (Criteria) this;
+        }
+
+        public Criteria andCreateTimeNotBetween(Long value1, Long value2) {
+            addCriterion("create_time not between", value1, value2, "createTime");
+            return (Criteria) this;
+        }
+
+        public Criteria andNicknameIsNull() {
+            addCriterion("nickname is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andNicknameIsNotNull() {
+            addCriterion("nickname is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andNicknameEqualTo(String value) {
+            addCriterion("nickname =", value, "nickname");
+            return (Criteria) this;
+        }
+
+        public Criteria andNicknameNotEqualTo(String value) {
+            addCriterion("nickname <>", value, "nickname");
+            return (Criteria) this;
+        }
+
+        public Criteria andNicknameGreaterThan(String value) {
+            addCriterion("nickname >", value, "nickname");
+            return (Criteria) this;
+        }
+
+        public Criteria andNicknameGreaterThanOrEqualTo(String value) {
+            addCriterion("nickname >=", value, "nickname");
+            return (Criteria) this;
+        }
+
+        public Criteria andNicknameLessThan(String value) {
+            addCriterion("nickname <", value, "nickname");
+            return (Criteria) this;
+        }
+
+        public Criteria andNicknameLessThanOrEqualTo(String value) {
+            addCriterion("nickname <=", value, "nickname");
+            return (Criteria) this;
+        }
+
+        public Criteria andNicknameLike(String value) {
+            addCriterion("nickname like", value, "nickname");
+            return (Criteria) this;
+        }
+
+        public Criteria andNicknameNotLike(String value) {
+            addCriterion("nickname not like", value, "nickname");
+            return (Criteria) this;
+        }
+
+        public Criteria andNicknameIn(List<String> values) {
+            addCriterion("nickname in", values, "nickname");
+            return (Criteria) this;
+        }
+
+        public Criteria andNicknameNotIn(List<String> values) {
+            addCriterion("nickname not in", values, "nickname");
+            return (Criteria) this;
+        }
+
+        public Criteria andNicknameBetween(String value1, String value2) {
+            addCriterion("nickname between", value1, value2, "nickname");
+            return (Criteria) this;
+        }
+
+        public Criteria andNicknameNotBetween(String value1, String value2) {
+            addCriterion("nickname not between", value1, value2, "nickname");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomurlIsNull() {
+            addCriterion("roomurl is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomurlIsNotNull() {
+            addCriterion("roomurl is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomurlEqualTo(String value) {
+            addCriterion("roomurl =", value, "roomurl");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomurlNotEqualTo(String value) {
+            addCriterion("roomurl <>", value, "roomurl");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomurlGreaterThan(String value) {
+            addCriterion("roomurl >", value, "roomurl");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomurlGreaterThanOrEqualTo(String value) {
+            addCriterion("roomurl >=", value, "roomurl");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomurlLessThan(String value) {
+            addCriterion("roomurl <", value, "roomurl");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomurlLessThanOrEqualTo(String value) {
+            addCriterion("roomurl <=", value, "roomurl");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomurlLike(String value) {
+            addCriterion("roomurl like", value, "roomurl");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomurlNotLike(String value) {
+            addCriterion("roomurl not like", value, "roomurl");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomurlIn(List<String> values) {
+            addCriterion("roomurl in", values, "roomurl");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomurlNotIn(List<String> values) {
+            addCriterion("roomurl not in", values, "roomurl");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomurlBetween(String value1, String value2) {
+            addCriterion("roomurl between", value1, value2, "roomurl");
+            return (Criteria) this;
+        }
+
+        public Criteria andRoomurlNotBetween(String value1, String value2) {
+            addCriterion("roomurl not between", value1, value2, "roomurl");
+            return (Criteria) this;
+        }
+    }
+
+    /**
+     * This class was generated by MyBatis Generator.
+     * This class corresponds to the database table all_room_list
+     *
+     * @mbg.generated do_not_delete_during_merge Sat May 24 01:31:56 CST 2025
+     */
+    public static class Criteria extends GeneratedCriteria {
+
+        protected Criteria() {
+            super();
+        }
+    }
+
+    /**
+     * This class was generated by MyBatis Generator.
+     * This class corresponds to the database table all_room_list
+     *
+     * @mbg.generated Sat May 24 01:31:56 CST 2025
+     */
+    public static class Criterion {
+        private String condition;
+
+        private Object value;
+
+        private Object secondValue;
+
+        private boolean noValue;
+
+        private boolean singleValue;
+
+        private boolean betweenValue;
+
+        private boolean listValue;
+
+        private String typeHandler;
+
+        public String getCondition() {
+            return condition;
+        }
+
+        public Object getValue() {
+            return value;
+        }
+
+        public Object getSecondValue() {
+            return secondValue;
+        }
+
+        public boolean isNoValue() {
+            return noValue;
+        }
+
+        public boolean isSingleValue() {
+            return singleValue;
+        }
+
+        public boolean isBetweenValue() {
+            return betweenValue;
+        }
+
+        public boolean isListValue() {
+            return listValue;
+        }
+
+        public String getTypeHandler() {
+            return typeHandler;
+        }
+
+        protected Criterion(String condition) {
+            super();
+            this.condition = condition;
+            this.typeHandler = null;
+            this.noValue = true;
+        }
+
+        protected Criterion(String condition, Object value, String typeHandler) {
+            super();
+            this.condition = condition;
+            this.value = value;
+            this.typeHandler = typeHandler;
+            if (value instanceof List<?>) {
+                this.listValue = true;
+            } else {
+                this.singleValue = true;
+            }
+        }
+
+        protected Criterion(String condition, Object value) {
+            this(condition, value, null);
+        }
+
+        protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
+            super();
+            this.condition = condition;
+            this.value = value;
+            this.secondValue = secondValue;
+            this.typeHandler = typeHandler;
+            this.betweenValue = true;
+        }
+
+        protected Criterion(String condition, Object value, Object secondValue) {
+            this(condition, value, secondValue, null);
+        }
+    }
+}

+ 354 - 0
risk-control-core/src/main/resources/mapper/QwRoomDetailInfoMapper.xml

@@ -0,0 +1,354 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.tzld.piaoquan.risk.control.dao.mapper.QwRoomDetailInfoMapper">
+  <resultMap id="BaseResultMap" type="com.tzld.piaoquan.risk.control.model.po.QwRoomDetailInfo">
+    <!--
+      WARNING - @mbg.generated
+      This element is automatically generated by MyBatis Generator, do not modify.
+      This element was generated on Sat May 24 01:31:56 CST 2025.
+    -->
+    <id column="room_id" jdbcType="VARCHAR" property="roomId" />
+    <result column="create_user_id" jdbcType="BIGINT" property="createUserId" />
+    <result column="infoticket" jdbcType="VARCHAR" property="infoticket" />
+    <result column="update_time" jdbcType="BIGINT" property="updateTime" />
+    <result column="total" jdbcType="INTEGER" property="total" />
+    <result column="flag" jdbcType="TINYINT" property="flag" />
+    <result column="create_time" jdbcType="BIGINT" property="createTime" />
+    <result column="nickname" jdbcType="VARCHAR" property="nickname" />
+    <result column="roomurl" jdbcType="VARCHAR" property="roomurl" />
+  </resultMap>
+  <sql id="Example_Where_Clause">
+    <!--
+      WARNING - @mbg.generated
+      This element is automatically generated by MyBatis Generator, do not modify.
+      This element was generated on Sat May 24 01:31:56 CST 2025.
+    -->
+    <where>
+      <foreach collection="oredCriteria" item="criteria" separator="or">
+        <if test="criteria.valid">
+          <trim prefix="(" prefixOverrides="and" suffix=")">
+            <foreach collection="criteria.criteria" item="criterion">
+              <choose>
+                <when test="criterion.noValue">
+                  and ${criterion.condition}
+                </when>
+                <when test="criterion.singleValue">
+                  and ${criterion.condition} #{criterion.value}
+                </when>
+                <when test="criterion.betweenValue">
+                  and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
+                </when>
+                <when test="criterion.listValue">
+                  and ${criterion.condition}
+                  <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
+                    #{listItem}
+                  </foreach>
+                </when>
+              </choose>
+            </foreach>
+          </trim>
+        </if>
+      </foreach>
+    </where>
+  </sql>
+  <sql id="Update_By_Example_Where_Clause">
+    <!--
+      WARNING - @mbg.generated
+      This element is automatically generated by MyBatis Generator, do not modify.
+      This element was generated on Sat May 24 01:31:56 CST 2025.
+    -->
+    <where>
+      <foreach collection="example.oredCriteria" item="criteria" separator="or">
+        <if test="criteria.valid">
+          <trim prefix="(" prefixOverrides="and" suffix=")">
+            <foreach collection="criteria.criteria" item="criterion">
+              <choose>
+                <when test="criterion.noValue">
+                  and ${criterion.condition}
+                </when>
+                <when test="criterion.singleValue">
+                  and ${criterion.condition} #{criterion.value}
+                </when>
+                <when test="criterion.betweenValue">
+                  and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
+                </when>
+                <when test="criterion.listValue">
+                  and ${criterion.condition}
+                  <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
+                    #{listItem}
+                  </foreach>
+                </when>
+              </choose>
+            </foreach>
+          </trim>
+        </if>
+      </foreach>
+    </where>
+  </sql>
+  <sql id="Base_Column_List">
+    <!--
+      WARNING - @mbg.generated
+      This element is automatically generated by MyBatis Generator, do not modify.
+      This element was generated on Sat May 24 01:31:56 CST 2025.
+    -->
+    room_id, create_user_id, infoticket, update_time, total, flag, create_time, nickname, 
+    roomurl
+  </sql>
+  <select id="selectByExample" parameterType="com.tzld.piaoquan.risk.control.model.po.QwRoomDetailInfoExample" resultMap="BaseResultMap">
+    <!--
+      WARNING - @mbg.generated
+      This element is automatically generated by MyBatis Generator, do not modify.
+      This element was generated on Sat May 24 01:31:56 CST 2025.
+    -->
+    select
+    <if test="distinct">
+      distinct
+    </if>
+    <include refid="Base_Column_List" />
+    from all_room_list
+    <if test="_parameter != null">
+      <include refid="Example_Where_Clause" />
+    </if>
+    <if test="orderByClause != null">
+      order by ${orderByClause}
+    </if>
+    <if test="page != null">
+      limit #{page.offset} , #{page.pageSize}
+    </if>
+  </select>
+  <select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
+    <!--
+      WARNING - @mbg.generated
+      This element is automatically generated by MyBatis Generator, do not modify.
+      This element was generated on Sat May 24 01:31:56 CST 2025.
+    -->
+    select 
+    <include refid="Base_Column_List" />
+    from all_room_list
+    where room_id = #{roomId,jdbcType=VARCHAR}
+  </select>
+  <delete id="deleteByPrimaryKey" parameterType="java.lang.String">
+    <!--
+      WARNING - @mbg.generated
+      This element is automatically generated by MyBatis Generator, do not modify.
+      This element was generated on Sat May 24 01:31:56 CST 2025.
+    -->
+    delete from all_room_list
+    where room_id = #{roomId,jdbcType=VARCHAR}
+  </delete>
+  <delete id="deleteByExample" parameterType="com.tzld.piaoquan.risk.control.model.po.QwRoomDetailInfoExample">
+    <!--
+      WARNING - @mbg.generated
+      This element is automatically generated by MyBatis Generator, do not modify.
+      This element was generated on Sat May 24 01:31:56 CST 2025.
+    -->
+    delete from all_room_list
+    <if test="_parameter != null">
+      <include refid="Example_Where_Clause" />
+    </if>
+  </delete>
+  <insert id="insert" parameterType="com.tzld.piaoquan.risk.control.model.po.QwRoomDetailInfo">
+    <!--
+      WARNING - @mbg.generated
+      This element is automatically generated by MyBatis Generator, do not modify.
+      This element was generated on Sat May 24 01:31:56 CST 2025.
+    -->
+    insert into all_room_list (room_id, create_user_id, infoticket, 
+      update_time, total, flag, 
+      create_time, nickname, roomurl
+      )
+    values (#{roomId,jdbcType=VARCHAR}, #{createUserId,jdbcType=BIGINT}, #{infoticket,jdbcType=VARCHAR}, 
+      #{updateTime,jdbcType=BIGINT}, #{total,jdbcType=INTEGER}, #{flag,jdbcType=TINYINT}, 
+      #{createTime,jdbcType=BIGINT}, #{nickname,jdbcType=VARCHAR}, #{roomurl,jdbcType=VARCHAR}
+      )
+  </insert>
+  <insert id="insertSelective" parameterType="com.tzld.piaoquan.risk.control.model.po.QwRoomDetailInfo">
+    <!--
+      WARNING - @mbg.generated
+      This element is automatically generated by MyBatis Generator, do not modify.
+      This element was generated on Sat May 24 01:31:56 CST 2025.
+    -->
+    insert into all_room_list
+    <trim prefix="(" suffix=")" suffixOverrides=",">
+      <if test="roomId != null">
+        room_id,
+      </if>
+      <if test="createUserId != null">
+        create_user_id,
+      </if>
+      <if test="infoticket != null">
+        infoticket,
+      </if>
+      <if test="updateTime != null">
+        update_time,
+      </if>
+      <if test="total != null">
+        total,
+      </if>
+      <if test="flag != null">
+        flag,
+      </if>
+      <if test="createTime != null">
+        create_time,
+      </if>
+      <if test="nickname != null">
+        nickname,
+      </if>
+      <if test="roomurl != null">
+        roomurl,
+      </if>
+    </trim>
+    <trim prefix="values (" suffix=")" suffixOverrides=",">
+      <if test="roomId != null">
+        #{roomId,jdbcType=VARCHAR},
+      </if>
+      <if test="createUserId != null">
+        #{createUserId,jdbcType=BIGINT},
+      </if>
+      <if test="infoticket != null">
+        #{infoticket,jdbcType=VARCHAR},
+      </if>
+      <if test="updateTime != null">
+        #{updateTime,jdbcType=BIGINT},
+      </if>
+      <if test="total != null">
+        #{total,jdbcType=INTEGER},
+      </if>
+      <if test="flag != null">
+        #{flag,jdbcType=TINYINT},
+      </if>
+      <if test="createTime != null">
+        #{createTime,jdbcType=BIGINT},
+      </if>
+      <if test="nickname != null">
+        #{nickname,jdbcType=VARCHAR},
+      </if>
+      <if test="roomurl != null">
+        #{roomurl,jdbcType=VARCHAR},
+      </if>
+    </trim>
+  </insert>
+  <select id="countByExample" parameterType="com.tzld.piaoquan.risk.control.model.po.QwRoomDetailInfoExample" resultType="java.lang.Long">
+    <!--
+      WARNING - @mbg.generated
+      This element is automatically generated by MyBatis Generator, do not modify.
+      This element was generated on Sat May 24 01:31:56 CST 2025.
+    -->
+    select count(*) from all_room_list
+    <if test="_parameter != null">
+      <include refid="Example_Where_Clause" />
+    </if>
+  </select>
+  <update id="updateByExampleSelective" parameterType="map">
+    <!--
+      WARNING - @mbg.generated
+      This element is automatically generated by MyBatis Generator, do not modify.
+      This element was generated on Sat May 24 01:31:56 CST 2025.
+    -->
+    update all_room_list
+    <set>
+      <if test="record.roomId != null">
+        room_id = #{record.roomId,jdbcType=VARCHAR},
+      </if>
+      <if test="record.createUserId != null">
+        create_user_id = #{record.createUserId,jdbcType=BIGINT},
+      </if>
+      <if test="record.infoticket != null">
+        infoticket = #{record.infoticket,jdbcType=VARCHAR},
+      </if>
+      <if test="record.updateTime != null">
+        update_time = #{record.updateTime,jdbcType=BIGINT},
+      </if>
+      <if test="record.total != null">
+        total = #{record.total,jdbcType=INTEGER},
+      </if>
+      <if test="record.flag != null">
+        flag = #{record.flag,jdbcType=TINYINT},
+      </if>
+      <if test="record.createTime != null">
+        create_time = #{record.createTime,jdbcType=BIGINT},
+      </if>
+      <if test="record.nickname != null">
+        nickname = #{record.nickname,jdbcType=VARCHAR},
+      </if>
+      <if test="record.roomurl != null">
+        roomurl = #{record.roomurl,jdbcType=VARCHAR},
+      </if>
+    </set>
+    <if test="_parameter != null">
+      <include refid="Update_By_Example_Where_Clause" />
+    </if>
+  </update>
+  <update id="updateByExample" parameterType="map">
+    <!--
+      WARNING - @mbg.generated
+      This element is automatically generated by MyBatis Generator, do not modify.
+      This element was generated on Sat May 24 01:31:56 CST 2025.
+    -->
+    update all_room_list
+    set room_id = #{record.roomId,jdbcType=VARCHAR},
+      create_user_id = #{record.createUserId,jdbcType=BIGINT},
+      infoticket = #{record.infoticket,jdbcType=VARCHAR},
+      update_time = #{record.updateTime,jdbcType=BIGINT},
+      total = #{record.total,jdbcType=INTEGER},
+      flag = #{record.flag,jdbcType=TINYINT},
+      create_time = #{record.createTime,jdbcType=BIGINT},
+      nickname = #{record.nickname,jdbcType=VARCHAR},
+      roomurl = #{record.roomurl,jdbcType=VARCHAR}
+    <if test="_parameter != null">
+      <include refid="Update_By_Example_Where_Clause" />
+    </if>
+  </update>
+  <update id="updateByPrimaryKeySelective" parameterType="com.tzld.piaoquan.risk.control.model.po.QwRoomDetailInfo">
+    <!--
+      WARNING - @mbg.generated
+      This element is automatically generated by MyBatis Generator, do not modify.
+      This element was generated on Sat May 24 01:31:56 CST 2025.
+    -->
+    update all_room_list
+    <set>
+      <if test="createUserId != null">
+        create_user_id = #{createUserId,jdbcType=BIGINT},
+      </if>
+      <if test="infoticket != null">
+        infoticket = #{infoticket,jdbcType=VARCHAR},
+      </if>
+      <if test="updateTime != null">
+        update_time = #{updateTime,jdbcType=BIGINT},
+      </if>
+      <if test="total != null">
+        total = #{total,jdbcType=INTEGER},
+      </if>
+      <if test="flag != null">
+        flag = #{flag,jdbcType=TINYINT},
+      </if>
+      <if test="createTime != null">
+        create_time = #{createTime,jdbcType=BIGINT},
+      </if>
+      <if test="nickname != null">
+        nickname = #{nickname,jdbcType=VARCHAR},
+      </if>
+      <if test="roomurl != null">
+        roomurl = #{roomurl,jdbcType=VARCHAR},
+      </if>
+    </set>
+    where room_id = #{roomId,jdbcType=VARCHAR}
+  </update>
+  <update id="updateByPrimaryKey" parameterType="com.tzld.piaoquan.risk.control.model.po.QwRoomDetailInfo">
+    <!--
+      WARNING - @mbg.generated
+      This element is automatically generated by MyBatis Generator, do not modify.
+      This element was generated on Sat May 24 01:31:56 CST 2025.
+    -->
+    update all_room_list
+    set create_user_id = #{createUserId,jdbcType=BIGINT},
+      infoticket = #{infoticket,jdbcType=VARCHAR},
+      update_time = #{updateTime,jdbcType=BIGINT},
+      total = #{total,jdbcType=INTEGER},
+      flag = #{flag,jdbcType=TINYINT},
+      create_time = #{createTime,jdbcType=BIGINT},
+      nickname = #{nickname,jdbcType=VARCHAR},
+      roomurl = #{roomurl,jdbcType=VARCHAR}
+    where room_id = #{roomId,jdbcType=VARCHAR}
+  </update>
+</mapper>

+ 3 - 1
risk-control-core/src/main/resources/mybatis-generator-config.xml

@@ -58,6 +58,8 @@
         <!-- 表配置 -->
         <!-- <table tableName="user" domainObjectName="User"/> -->
         <!-- <table tableName="qywx_user_base" domainObjectName="UserBase"/> -->
-        <table tableName="work_wechat_room_info" domainObjectName="WorkWechatRoomInfo"/>
+<!--        <table tableName="work_wechat_room_info" domainObjectName="WorkWechatRoomInfo"/>-->
+        <table tableName="all_room_list" domainObjectName="QwRoomDetailInfo"/>
+
     </context>
 </generatorConfiguration>