You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
3.0 KiB
XML
63 lines
3.0 KiB
XML
<?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.glxp.udidl.admin.dao.udplat.UdplatManufactureMapper">
|
|
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.udplat.UdplatManufacture">
|
|
<id column="id" jdbcType="INTEGER" property="id" />
|
|
<result column="manufactureId" jdbcType="INTEGER" property="manufactureId" />
|
|
<result column="manufactureCode" jdbcType="VARCHAR" property="manufactureCode" />
|
|
<result column="manufactureName" jdbcType="VARCHAR" property="manufactureName" />
|
|
<result column="createTime" jdbcType="TIMESTAMP" property="createTime" />
|
|
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
|
|
</resultMap>
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
|
delete from udplat_manufacture
|
|
where id = #{id,jdbcType=INTEGER}
|
|
</delete>
|
|
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatManufacture">
|
|
insert into udplat_manufacture (manufactureId, manufactureCode,
|
|
manufactureName, createTime
|
|
)
|
|
values (#{manufactureId,jdbcType=INTEGER}, #{manufactureCode,jdbcType=VARCHAR},
|
|
#{manufactureName,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}
|
|
)
|
|
</insert>
|
|
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatManufacture">
|
|
update udplat_manufacture
|
|
set manufactureId = #{manufactureId,jdbcType=INTEGER},
|
|
manufactureCode = #{manufactureCode,jdbcType=VARCHAR},
|
|
manufactureName = #{manufactureName,jdbcType=VARCHAR},
|
|
updateTime = #{updateTime,jdbcType=TIMESTAMP}
|
|
where id = #{id,jdbcType=INTEGER}
|
|
</update>
|
|
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
|
select id, manufactureId, manufactureCode, manufactureName, createTime, updateTime
|
|
from udplat_manufacture
|
|
where id = #{id,jdbcType=INTEGER}
|
|
</select>
|
|
<select id="selectAll" resultMap="BaseResultMap">
|
|
select id, manufactureId, manufactureCode, manufactureName, createTime, updateTime
|
|
from udplat_manufacture
|
|
</select>
|
|
<select id="list" resultMap="BaseResultMap" parameterType="com.glxp.udidl.admin.dto.udplat.BaseParam">
|
|
select id, manufactureId, manufactureCode, manufactureName, createTime, updateTime
|
|
from udplat_manufacture
|
|
<where>
|
|
<if test="name != '' and name != null">
|
|
and manufactureName like concat('%',#{name},'%')
|
|
</if>
|
|
|
|
<if test="startDate != '' and startDate != null">
|
|
and createTime >= #{startDate}
|
|
</if>
|
|
<if test="endDate != '' and endDate != null">
|
|
and createTime <= #{endDate}
|
|
</if>
|
|
</where>
|
|
order by if(ISNULL(updateTime),createTime,updateTime) DESC
|
|
</select>
|
|
<select id="selectByManufactureId" parameterType="java.lang.String" resultMap="BaseResultMap">
|
|
select id, manufactureId, manufactureCode, manufactureName, createTime, updateTime
|
|
from udplat_manufacture
|
|
where manufactureId = #{manufactureId}
|
|
</select>
|
|
</mapper> |