Authored by chenchao

add dao

package com.yohoufo.dal.order;
import com.yohoufo.dal.order.model.MetaConfig;
public interface MetaConfigMapper {
int deleteByPrimaryKey(Integer id);
int insert(MetaConfig record);
int insertSelective(MetaConfig record);
MetaConfig selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(MetaConfig record);
int updateByPrimaryKey(MetaConfig record);
}
\ No newline at end of file
... ...
package com.yohoufo.dal.order.model;
public class MetaConfig {
private Integer id;
private String code;
private String title;
private String value;
private Integer createTime;
private String desc;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code == null ? null : code.trim();
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title == null ? null : title.trim();
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value == null ? null : value.trim();
}
public Integer getCreateTime() {
return createTime;
}
public void setCreateTime(Integer createTime) {
this.createTime = createTime;
}
public String getDesc() {
return desc;
}
public void setDesc(String desc) {
this.desc = desc == null ? null : desc.trim();
}
}
\ No newline at end of file
... ...
<?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.yohoufo.dal.order.MetaConfigMapper">
<resultMap id="BaseResultMap" type="com.yohoufo.dal.order.model.MetaConfig">
<id column="id" jdbcType="INTEGER" property="id" />
<result column="code" jdbcType="VARCHAR" property="code" />
<result column="title" jdbcType="VARCHAR" property="title" />
<result column="value" jdbcType="VARCHAR" property="value" />
<result column="create_time" jdbcType="INTEGER" property="createTime" />
<result column="desc" jdbcType="VARCHAR" property="desc" />
</resultMap>
<sql id="Base_Column_List">
id, code, title, value, create_time, desc
</sql>
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from meta_config
where id = #{id,jdbcType=INTEGER}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
delete from meta_config
where id = #{id,jdbcType=INTEGER}
</delete>
<insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.yohoufo.dal.order.model.MetaConfig" useGeneratedKeys="true">
insert into meta_config (code, title, value,
create_time, desc)
values (#{code,jdbcType=VARCHAR}, #{title,jdbcType=VARCHAR}, #{value,jdbcType=VARCHAR},
#{createTime,jdbcType=INTEGER}, #{desc,jdbcType=VARCHAR})
</insert>
<insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.yohoufo.dal.order.model.MetaConfig" useGeneratedKeys="true">
insert into meta_config
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="code != null">
code,
</if>
<if test="title != null">
title,
</if>
<if test="value != null">
value,
</if>
<if test="createTime != null">
create_time,
</if>
<if test="desc != null">
desc,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="code != null">
#{code,jdbcType=VARCHAR},
</if>
<if test="title != null">
#{title,jdbcType=VARCHAR},
</if>
<if test="value != null">
#{value,jdbcType=VARCHAR},
</if>
<if test="createTime != null">
#{createTime,jdbcType=INTEGER},
</if>
<if test="desc != null">
#{desc,jdbcType=VARCHAR},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.yohoufo.dal.order.model.MetaConfig">
update meta_config
<set>
<if test="code != null">
code = #{code,jdbcType=VARCHAR},
</if>
<if test="title != null">
title = #{title,jdbcType=VARCHAR},
</if>
<if test="value != null">
value = #{value,jdbcType=VARCHAR},
</if>
<if test="createTime != null">
create_time = #{createTime,jdbcType=INTEGER},
</if>
<if test="desc != null">
desc = #{desc,jdbcType=VARCHAR},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
<update id="updateByPrimaryKey" parameterType="com.yohoufo.dal.order.model.MetaConfig">
update meta_config
set code = #{code,jdbcType=VARCHAR},
title = #{title,jdbcType=VARCHAR},
value = #{value,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=INTEGER},
desc = #{desc,jdbcType=VARCHAR}
where id = #{id,jdbcType=INTEGER}
</update>
</mapper>
\ No newline at end of file
... ...
... ... @@ -67,6 +67,7 @@ datasources:
- com.yohoufo.dal.order.SellerTaskMapper
- com.yohoufo.dal.order.SellerTaskDetailMapper
- com.yohoufo.dal.order.OrdersPrePayMapper
- com.yohoufo.dal.order.MetaConfigMapper
ufo_promotion:
servers:
... ...
... ... @@ -67,6 +67,7 @@ datasources:
- com.yohoufo.dal.order.SellerTaskMapper
- com.yohoufo.dal.order.SellerTaskDetailMapper
- com.yohoufo.dal.order.OrdersPrePayMapper
- com.yohoufo.dal.order.MetaConfigMapper
ufo_promotion:
servers:
... ...