作者 xudada

提前运抵

package com.sy.mapper;
import com.sy.model.LAND_BUSINEESTYPE_LIST_INFO;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface LAND_BUSINEESTYPE_LIST_INFOMapper {
int deleteByPrimaryKey(String id);
int insert(LAND_BUSINEESTYPE_LIST_INFO record);
int insertSelective(LAND_BUSINEESTYPE_LIST_INFO record);
LAND_BUSINEESTYPE_LIST_INFO selectByPrimaryKey(String id);
int updateByPrimaryKeySelective(LAND_BUSINEESTYPE_LIST_INFO record);
int updateByPrimaryKey(LAND_BUSINEESTYPE_LIST_INFO record);
List<LAND_BUSINEESTYPE_LIST_INFO> selectarrive(@Param("applicationformid") String applicationformid);
List<LAND_BUSINEESTYPE_LIST_INFO> selectpartialidentity(@Param("applicationformid") String applicationformid);
}
... ...
package com.sy.mapper;
import com.sy.model.businesstypelistinfo_view;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface businesstypelistinfo_viewMapper {
int insert(businesstypelistinfo_view record);
int insertSelective(businesstypelistinfo_view record);
List<businesstypelistinfo_view> selectawb(@Param("awba") String awba);
}
... ...
package com.sy.model;
public class LAND_BUSINEESTYPE_LIST_INFO {
private String id;
private String licenseplatenumber;
private String awba;
private String partialidentity;
private String arrivedaheadtime;
private String applicationformid;
private String ext1;
private String ext2;
private String ext3;
private String ext4;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id == null ? null : id.trim();
}
public String getLicenseplatenumber() {
return licenseplatenumber;
}
public void setLicenseplatenumber(String licenseplatenumber) {
this.licenseplatenumber = licenseplatenumber == null ? null : licenseplatenumber.trim();
}
public String getAwba() {
return awba;
}
public void setAwba(String awba) {
this.awba = awba == null ? null : awba.trim();
}
public String getPartialidentity() {
return partialidentity;
}
public void setPartialidentity(String partialidentity) {
this.partialidentity = partialidentity == null ? null : partialidentity.trim();
}
public String getArrivedaheadtime() {
return arrivedaheadtime;
}
public void setArrivedaheadtime(String arrivedaheadtime) {
this.arrivedaheadtime = arrivedaheadtime == null ? null : arrivedaheadtime.trim();
}
public String getApplicationformid() {
return applicationformid;
}
public void setApplicationformid(String applicationformid) {
this.applicationformid = applicationformid == null ? null : applicationformid.trim();
}
public String getExt1() {
return ext1;
}
public void setExt1(String ext1) {
this.ext1 = ext1 == null ? null : ext1.trim();
}
public String getExt2() {
return ext2;
}
public void setExt2(String ext2) {
this.ext2 = ext2 == null ? null : ext2.trim();
}
public String getExt3() {
return ext3;
}
public void setExt3(String ext3) {
this.ext3 = ext3 == null ? null : ext3.trim();
}
public String getExt4() {
return ext4;
}
public void setExt4(String ext4) {
this.ext4 = ext4 == null ? null : ext4.trim();
}
}
\ No newline at end of file
... ...
package com.sy.model;
public class businesstypelistinfo_view {
private String id;
private String licenseplatenumber;
private String awba;
private String partialidentity;
private String arrivedaheadtime;
private String applicationformid;
private String ext1;
private String ext2;
private String ext3;
private String ext4;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id == null ? null : id.trim();
}
public String getLicenseplatenumber() {
return licenseplatenumber;
}
public void setLicenseplatenumber(String licenseplatenumber) {
this.licenseplatenumber = licenseplatenumber == null ? null : licenseplatenumber.trim();
}
public String getAwba() {
return awba;
}
public void setAwba(String awba) {
this.awba = awba == null ? null : awba.trim();
}
public String getPartialidentity() {
return partialidentity;
}
public void setPartialidentity(String partialidentity) {
this.partialidentity = partialidentity == null ? null : partialidentity.trim();
}
public String getArrivedaheadtime() {
return arrivedaheadtime;
}
public void setArrivedaheadtime(String arrivedaheadtime) {
this.arrivedaheadtime = arrivedaheadtime == null ? null : arrivedaheadtime.trim();
}
public String getApplicationformid() {
return applicationformid;
}
public void setApplicationformid(String applicationformid) {
this.applicationformid = applicationformid == null ? null : applicationformid.trim();
}
public String getExt1() {
return ext1;
}
public void setExt1(String ext1) {
this.ext1 = ext1 == null ? null : ext1.trim();
}
public String getExt2() {
return ext2;
}
public void setExt2(String ext2) {
this.ext2 = ext2 == null ? null : ext2.trim();
}
public String getExt3() {
return ext3;
}
public void setExt3(String ext3) {
this.ext3 = ext3 == null ? null : ext3.trim();
}
public String getExt4() {
return ext4;
}
public void setExt4(String ext4) {
this.ext4 = ext4 == null ? null : ext4.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.sy.mapper.LAND_BUSINEESTYPE_LIST_INFOMapper">
<resultMap id="BaseResultMap" type="com.sy.model.LAND_BUSINEESTYPE_LIST_INFO">
<id column="id" jdbcType="VARCHAR" property="id" />
<result column="licensePlateNumber" jdbcType="VARCHAR" property="licenseplatenumber" />
<result column="awba" jdbcType="VARCHAR" property="awba" />
<result column="partialIdentity" jdbcType="VARCHAR" property="partialidentity" />
<result column="arrivedAheadTime" jdbcType="VARCHAR" property="arrivedaheadtime" />
<result column="applicationFormId" jdbcType="VARCHAR" property="applicationformid" />
<result column="ext1" jdbcType="VARCHAR" property="ext1" />
<result column="ext2" jdbcType="VARCHAR" property="ext2" />
<result column="ext3" jdbcType="VARCHAR" property="ext3" />
<result column="ext4" jdbcType="VARCHAR" property="ext4" />
</resultMap>
<sql id="Base_Column_List">
id, licensePlateNumber, awba, partialIdentity, arrivedAheadTime, applicationFormId,
ext1, ext2, ext3, ext4
</sql>
<select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from land_busineestype_list_info
where id = #{id,jdbcType=VARCHAR}
</select>
<select id="selectarrive" parameterType="java.lang.String" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from land_busineestype_list_info
where 1=1 and arrivedAheadTime='1'
and applicationFormId = #{applicationformid,jdbcType=VARCHAR}
</select>
<select id="selectpartialidentity" parameterType="java.lang.String" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from land_busineestype_list_info
where 1=1 and partialIdentity='1'
and applicationFormId = #{applicationformid,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
delete from land_busineestype_list_info
where id = #{id,jdbcType=VARCHAR}
</delete>
<insert id="insert" parameterType="com.sy.model.LAND_BUSINEESTYPE_LIST_INFO">
insert into land_busineestype_list_info (id, licensePlateNumber, awba,
partialIdentity, arrivedAheadTime, applicationFormId,
ext1, ext2, ext3, ext4
)
values (#{id,jdbcType=VARCHAR}, #{licenseplatenumber,jdbcType=VARCHAR}, #{awba,jdbcType=VARCHAR},
#{partialidentity,jdbcType=VARCHAR}, #{arrivedaheadtime,jdbcType=VARCHAR}, #{applicationformid,jdbcType=VARCHAR},
#{ext1,jdbcType=VARCHAR}, #{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR}, #{ext4,jdbcType=VARCHAR}
)
</insert>
<insert id="insertSelective" parameterType="com.sy.model.LAND_BUSINEESTYPE_LIST_INFO">
insert into land_busineestype_list_info
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">
id,
</if>
<if test="licenseplatenumber != null">
licensePlateNumber,
</if>
<if test="awba != null">
awba,
</if>
<if test="partialidentity != null">
partialIdentity,
</if>
<if test="arrivedaheadtime != null">
arrivedAheadTime,
</if>
<if test="applicationformid != null">
applicationFormId,
</if>
<if test="ext1 != null">
ext1,
</if>
<if test="ext2 != null">
ext2,
</if>
<if test="ext3 != null">
ext3,
</if>
<if test="ext4 != null">
ext4,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null">
#{id,jdbcType=VARCHAR},
</if>
<if test="licenseplatenumber != null">
#{licenseplatenumber,jdbcType=VARCHAR},
</if>
<if test="awba != null">
#{awba,jdbcType=VARCHAR},
</if>
<if test="partialidentity != null">
#{partialidentity,jdbcType=VARCHAR},
</if>
<if test="arrivedaheadtime != null">
#{arrivedaheadtime,jdbcType=VARCHAR},
</if>
<if test="applicationformid != null">
#{applicationformid,jdbcType=VARCHAR},
</if>
<if test="ext1 != null">
#{ext1,jdbcType=VARCHAR},
</if>
<if test="ext2 != null">
#{ext2,jdbcType=VARCHAR},
</if>
<if test="ext3 != null">
#{ext3,jdbcType=VARCHAR},
</if>
<if test="ext4 != null">
#{ext4,jdbcType=VARCHAR},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.sy.model.LAND_BUSINEESTYPE_LIST_INFO">
update land_busineestype_list_info
<set>
<if test="licenseplatenumber != null">
licensePlateNumber = #{licenseplatenumber,jdbcType=VARCHAR},
</if>
<if test="awba != null">
awba = #{awba,jdbcType=VARCHAR},
</if>
<if test="partialidentity != null">
partialIdentity = #{partialidentity,jdbcType=VARCHAR},
</if>
<if test="arrivedaheadtime != null">
arrivedAheadTime = #{arrivedaheadtime,jdbcType=VARCHAR},
</if>
<if test="applicationformid != null">
applicationFormId = #{applicationformid,jdbcType=VARCHAR},
</if>
<if test="ext1 != null">
ext1 = #{ext1,jdbcType=VARCHAR},
</if>
<if test="ext2 != null">
ext2 = #{ext2,jdbcType=VARCHAR},
</if>
<if test="ext3 != null">
ext3 = #{ext3,jdbcType=VARCHAR},
</if>
<if test="ext4 != null">
ext4 = #{ext4,jdbcType=VARCHAR},
</if>
</set>
where id = #{id,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey" parameterType="com.sy.model.LAND_BUSINEESTYPE_LIST_INFO">
update land_busineestype_list_info
set licensePlateNumber = #{licenseplatenumber,jdbcType=VARCHAR},
awba = #{awba,jdbcType=VARCHAR},
partialIdentity = #{partialidentity,jdbcType=VARCHAR},
arrivedAheadTime = #{arrivedaheadtime,jdbcType=VARCHAR},
applicationFormId = #{applicationformid,jdbcType=VARCHAR},
ext1 = #{ext1,jdbcType=VARCHAR},
ext2 = #{ext2,jdbcType=VARCHAR},
ext3 = #{ext3,jdbcType=VARCHAR},
ext4 = #{ext4,jdbcType=VARCHAR}
where id = #{id,jdbcType=VARCHAR}
</update>
</mapper>
... ...
<?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.sy.mapper.businesstypelistinfo_viewMapper">
<resultMap id="BaseResultMap" type="com.sy.model.businesstypelistinfo_view">
<result column="id" jdbcType="VARCHAR" property="id" />
<result column="licensePlateNumber" jdbcType="VARCHAR" property="licenseplatenumber" />
<result column="awba" jdbcType="VARCHAR" property="awba" />
<result column="partialIdentity" jdbcType="VARCHAR" property="partialidentity" />
<result column="arrivedAheadTime" jdbcType="VARCHAR" property="arrivedaheadtime" />
<result column="applicationFormId" jdbcType="VARCHAR" property="applicationformid" />
<result column="ext1" jdbcType="VARCHAR" property="ext1" />
<result column="ext2" jdbcType="VARCHAR" property="ext2" />
<result column="ext3" jdbcType="VARCHAR" property="ext3" />
<result column="ext4" jdbcType="VARCHAR" property="ext4" />
</resultMap>
<select id="selectawb" parameterType="java.lang.String" resultMap="BaseResultMap">
SELECT * FROM businesstypelistinfo_view where 1=1 and awba=#{awba,jdbcType=VARCHAR}
</select>
<insert id="insert" parameterType="com.sy.model.businesstypelistinfo_view">
insert into businesstypelistinfo_view (id, licensePlateNumber, awba,
partialIdentity, arrivedAheadTime, applicationFormId,
ext1, ext2, ext3, ext4
)
values (#{id,jdbcType=VARCHAR}, #{licenseplatenumber,jdbcType=VARCHAR}, #{awba,jdbcType=VARCHAR},
#{partialidentity,jdbcType=VARCHAR}, #{arrivedaheadtime,jdbcType=VARCHAR}, #{applicationformid,jdbcType=VARCHAR},
#{ext1,jdbcType=VARCHAR}, #{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR}, #{ext4,jdbcType=VARCHAR}
)
</insert>
<insert id="insertSelective" parameterType="com.sy.model.businesstypelistinfo_view">
insert into businesstypelistinfo_view
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">
id,
</if>
<if test="licenseplatenumber != null">
licensePlateNumber,
</if>
<if test="awba != null">
awba,
</if>
<if test="partialidentity != null">
partialIdentity,
</if>
<if test="arrivedaheadtime != null">
arrivedAheadTime,
</if>
<if test="applicationformid != null">
applicationFormId,
</if>
<if test="ext1 != null">
ext1,
</if>
<if test="ext2 != null">
ext2,
</if>
<if test="ext3 != null">
ext3,
</if>
<if test="ext4 != null">
ext4,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null">
#{id,jdbcType=VARCHAR},
</if>
<if test="licenseplatenumber != null">
#{licenseplatenumber,jdbcType=VARCHAR},
</if>
<if test="awba != null">
#{awba,jdbcType=VARCHAR},
</if>
<if test="partialidentity != null">
#{partialidentity,jdbcType=VARCHAR},
</if>
<if test="arrivedaheadtime != null">
#{arrivedaheadtime,jdbcType=VARCHAR},
</if>
<if test="applicationformid != null">
#{applicationformid,jdbcType=VARCHAR},
</if>
<if test="ext1 != null">
#{ext1,jdbcType=VARCHAR},
</if>
<if test="ext2 != null">
#{ext2,jdbcType=VARCHAR},
</if>
<if test="ext3 != null">
#{ext3,jdbcType=VARCHAR},
</if>
<if test="ext4 != null">
#{ext4,jdbcType=VARCHAR},
</if>
</trim>
</insert>
</mapper>
... ...