Ver código fonte

新增技淘百问处理

anderx 2 anos atrás
pai
commit
04e077bcd2

+ 1 - 1
src/main/java/com/goafanti/common/controller/WebpageController.java

@@ -1615,7 +1615,7 @@ public class WebpageController extends BaseController {
 	@RequestMapping("/portal/answers")
 	public ModelAndView answers(ModelAndView modelAndView){
 		modelAndView.setViewName("/portal/answers");
-		List<ErnieBotCommon> list = ernieBotCommonDao.selectAll(10);
+		List<ErnieBotCommon> list = ernieBotCommonDao.selectAll(6);
 		modelAndView.addObject("list",list);
 		return modelAndView;
 	}

+ 21 - 0
src/main/java/com/goafanti/common/dao/ErnieBotCommonDao.java

@@ -0,0 +1,21 @@
+package com.goafanti.common.dao;
+
+import com.goafanti.common.model.ErnieBotCommon;
+
+import java.util.List;
+
+public interface ErnieBotCommonDao {
+    int deleteByPrimaryKey(Integer id);
+
+    int insert(ErnieBotCommon record);
+
+    int insertSelective(ErnieBotCommon record);
+
+    ErnieBotCommon selectByPrimaryKey(Integer id);
+
+    int updateByPrimaryKeySelective(ErnieBotCommon record);
+
+    int updateByPrimaryKey(ErnieBotCommon record);
+
+    List<ErnieBotCommon> selectAll(Integer count);
+}

+ 72 - 0
src/main/java/com/goafanti/common/mapper/ErnieBotCommonDao.xml

@@ -0,0 +1,72 @@
+<?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.goafanti.common.dao.ErnieBotCommonDao">
+  <resultMap id="BaseResultMap" type="com.goafanti.common.model.ErnieBotCommon">
+    <id column="id" jdbcType="INTEGER" property="id" />
+    <result column="content" jdbcType="VARCHAR" property="content" />
+    <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
+  </resultMap>
+  <sql id="Base_Column_List">
+    id, content, create_time
+  </sql>
+  <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
+    select
+    <include refid="Base_Column_List" />
+    from ernie_bot_common
+    where id = #{id,jdbcType=INTEGER}
+  </select>
+
+    <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
+    delete from ernie_bot_common
+    where id = #{id,jdbcType=INTEGER}
+  </delete>
+  <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.goafanti.common.model.ErnieBotCommon" useGeneratedKeys="true">
+    insert into ernie_bot_common (content, create_time)
+    values (#{content,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP})
+  </insert>
+  <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.goafanti.common.model.ErnieBotCommon" useGeneratedKeys="true">
+    insert into ernie_bot_common
+    <trim prefix="(" suffix=")" suffixOverrides=",">
+      <if test="content != null">
+        content,
+      </if>
+      <if test="createTime != null">
+        create_time,
+      </if>
+    </trim>
+    <trim prefix="values (" suffix=")" suffixOverrides=",">
+      <if test="content != null">
+        #{content,jdbcType=VARCHAR},
+      </if>
+      <if test="createTime != null">
+        #{createTime,jdbcType=TIMESTAMP},
+      </if>
+    </trim>
+  </insert>
+  <update id="updateByPrimaryKeySelective" parameterType="com.goafanti.common.model.ErnieBotCommon">
+    update ernie_bot_common
+    <set>
+      <if test="content != null">
+        content = #{content,jdbcType=VARCHAR},
+      </if>
+      <if test="createTime != null">
+        create_time = #{createTime,jdbcType=TIMESTAMP},
+      </if>
+    </set>
+    where id = #{id,jdbcType=INTEGER}
+  </update>
+  <update id="updateByPrimaryKey" parameterType="com.goafanti.common.model.ErnieBotCommon">
+    update ernie_bot_common
+    set content = #{content,jdbcType=VARCHAR},
+      create_time = #{createTime,jdbcType=TIMESTAMP}
+    where id = #{id,jdbcType=INTEGER}
+  </update>
+
+
+  <select id="selectAll"  resultMap="BaseResultMap">
+    select
+    <include refid="Base_Column_List" />
+    from ernie_bot_common
+    limit #{count}
+  </select>
+</mapper>

+ 48 - 0
src/main/java/com/goafanti/common/model/ErnieBotCommon.java

@@ -0,0 +1,48 @@
+package com.goafanti.common.model;
+
+import java.io.Serializable;
+import java.util.Date;
+
+/**
+ * ernie_bot_common
+ * @author 
+ */
+public class ErnieBotCommon implements Serializable {
+    private Integer id;
+
+    /**
+     * 帐号名称
+     */
+    private String content;
+
+    /**
+     * 创建时间
+     */
+    private Date createTime;
+
+    private static final long serialVersionUID = 1L;
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    public String getContent() {
+        return content;
+    }
+
+    public void setContent(String content) {
+        this.content = content;
+    }
+
+    public Date getCreateTime() {
+        return createTime;
+    }
+
+    public void setCreateTime(Date createTime) {
+        this.createTime = createTime;
+    }
+}