| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338 |
- <?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.AchievementOrderMapper" >
- <resultMap id="BaseResultMap" type="com.goafanti.common.model.AchievementOrder" >
- <id column="id" property="id" jdbcType="VARCHAR" />
- <result column="serial_number" property="serialNumber" jdbcType="INTEGER" />
- <result column="achievement_id" property="achievementId" jdbcType="VARCHAR" />
- <result column="uid" property="uid" jdbcType="VARCHAR" />
- <result column="create_time" property="createTime" jdbcType="TIMESTAMP" />
- <result column="status" property="status" jdbcType="INTEGER" />
- <result column="intention_money" property="intentionMoney" jdbcType="INTEGER" />
- <result column="contract_money" property="contractMoney" jdbcType="INTEGER" />
- <result column="commission" property="commission" jdbcType="INTEGER" />
- <result column="service_money" property="serviceMoney" jdbcType="INTEGER" />
- <result column="refund" property="refund" jdbcType="INTEGER" />
- <result column="deleted_sign" property="deletedSign" jdbcType="INTEGER" />
- </resultMap>
- <sql id="Base_Column_List" >
- id, serial_number, achievement_id, uid, create_time, status, intention_money, contract_money,
- commission, service_money, refund, deleted_sign
- </sql>
- <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
- select
- <include refid="Base_Column_List" />
- from achievement_order
- where id = #{id,jdbcType=VARCHAR}
- </select>
- <delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
- delete from achievement_order
- where id = #{id,jdbcType=VARCHAR}
- </delete>
- <insert id="insert" parameterType="com.goafanti.common.model.AchievementOrder" >
- insert into achievement_order (id, serial_number, achievement_id,
- uid, create_time, status,
- intention_money, contract_money, commission,
- service_money, refund, deleted_sign
- )
- values (#{id,jdbcType=VARCHAR}, #{serialNumber,jdbcType=INTEGER}, #{achievementId,jdbcType=VARCHAR},
- #{uid,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{status,jdbcType=INTEGER},
- #{intentionMoney,jdbcType=INTEGER}, #{contractMoney,jdbcType=INTEGER}, #{commission,jdbcType=INTEGER},
- #{serviceMoney,jdbcType=INTEGER}, #{refund,jdbcType=INTEGER}, #{deletedSign,jdbcType=INTEGER}
- )
- </insert>
- <insert id="insertSelective" parameterType="com.goafanti.common.model.AchievementOrder" >
- insert into achievement_order
- <trim prefix="(" suffix=")" suffixOverrides="," >
- <if test="id != null" >
- id,
- </if>
- <if test="serialNumber != null" >
- serial_number,
- </if>
- <if test="achievementId != null" >
- achievement_id,
- </if>
- <if test="uid != null" >
- uid,
- </if>
- <if test="createTime != null" >
- create_time,
- </if>
- <if test="status != null" >
- status,
- </if>
- <if test="intentionMoney != null" >
- intention_money,
- </if>
- <if test="contractMoney != null" >
- contract_money,
- </if>
- <if test="commission != null" >
- commission,
- </if>
- <if test="serviceMoney != null" >
- service_money,
- </if>
- <if test="refund != null" >
- refund,
- </if>
- <if test="deletedSign != null" >
- deleted_sign,
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides="," >
- <if test="id != null" >
- #{id,jdbcType=VARCHAR},
- </if>
- <if test="serialNumber != null" >
- #{serialNumber,jdbcType=INTEGER},
- </if>
- <if test="achievementId != null" >
- #{achievementId,jdbcType=VARCHAR},
- </if>
- <if test="uid != null" >
- #{uid,jdbcType=VARCHAR},
- </if>
- <if test="createTime != null" >
- #{createTime,jdbcType=TIMESTAMP},
- </if>
- <if test="status != null" >
- #{status,jdbcType=INTEGER},
- </if>
- <if test="intentionMoney != null" >
- #{intentionMoney,jdbcType=INTEGER},
- </if>
- <if test="contractMoney != null" >
- #{contractMoney,jdbcType=INTEGER},
- </if>
- <if test="commission != null" >
- #{commission,jdbcType=INTEGER},
- </if>
- <if test="serviceMoney != null" >
- #{serviceMoney,jdbcType=INTEGER},
- </if>
- <if test="refund != null" >
- #{refund,jdbcType=INTEGER},
- </if>
- <if test="deletedSign != null" >
- #{deletedSign,jdbcType=INTEGER},
- </if>
- </trim>
- </insert>
- <update id="updateByPrimaryKeySelective" parameterType="com.goafanti.common.model.AchievementOrder" >
- update achievement_order
- <set >
- <if test="serialNumber != null" >
- serial_number = #{serialNumber,jdbcType=INTEGER},
- </if>
- <if test="achievementId != null" >
- achievement_id = #{achievementId,jdbcType=VARCHAR},
- </if>
- <if test="uid != null" >
- uid = #{uid,jdbcType=VARCHAR},
- </if>
- <if test="createTime != null" >
- create_time = #{createTime,jdbcType=TIMESTAMP},
- </if>
- <if test="status != null" >
- status = #{status,jdbcType=INTEGER},
- </if>
- <if test="intentionMoney != null" >
- intention_money = #{intentionMoney,jdbcType=INTEGER},
- </if>
- <if test="contractMoney != null" >
- contract_money = #{contractMoney,jdbcType=INTEGER},
- </if>
- <if test="commission != null" >
- commission = #{commission,jdbcType=INTEGER},
- </if>
- <if test="serviceMoney != null" >
- service_money = #{serviceMoney,jdbcType=INTEGER},
- </if>
- <if test="refund != null" >
- refund = #{refund,jdbcType=INTEGER},
- </if>
- <if test="deletedSign != null" >
- deleted_sign = #{deletedSign,jdbcType=INTEGER},
- </if>
- </set>
- where id = #{id,jdbcType=VARCHAR}
- </update>
- <update id="updateByPrimaryKey" parameterType="com.goafanti.common.model.AchievementOrder" >
- update achievement_order
- set serial_number = #{serialNumber,jdbcType=INTEGER},
- achievement_id = #{achievementId,jdbcType=VARCHAR},
- uid = #{uid,jdbcType=VARCHAR},
- create_time = #{createTime,jdbcType=TIMESTAMP},
- status = #{status,jdbcType=INTEGER},
- intention_money = #{intentionMoney,jdbcType=INTEGER},
- contract_money = #{contractMoney,jdbcType=INTEGER},
- commission = #{commission,jdbcType=INTEGER},
- service_money = #{serviceMoney,jdbcType=INTEGER},
- refund = #{refund,jdbcType=INTEGER},
- deleted_sign = #{deletedSign,jdbcType=INTEGER}
- where id = #{id,jdbcType=VARCHAR}
- </update>
-
- <select id="selectAchievementOrderByUidAndAchievementId" resultMap="BaseResultMap" >
- select
- <include refid="Base_Column_List" />
- from achievement_order
- where
- uid = #{0} and achievement_id = #{1} and deleted_sign = 0
- </select>
-
- <select id="findAchievementOrderListByPage" parameterType="String" resultType="com.goafanti.achievement.bo.AchievementOrderListBo">
- select
- ao.id, ao.serial_number as serialNumber, ao.achievement_id as achievementId,
- ao.create_time as createTime,ao.status,
- ao.intention_money as intentionMoney, ao.contract_money as contractMoney, ao.commission,
- ao.service_money as serviceMoney, a.name, a.serial_number as achievementSerialNumber,
- a.deleted_sign as deletedSign, a.audit_status as auditStatus
- from achievement_order ao
- left join achievement a on a.id = ao.achievement_id
- where ao.deleted_sign = 0
- and a.deleted_sign = 0
- and ao.uid = #{uid,jdbcType=VARCHAR}
- <if test="status != null">
- and ao.status = #{status,jdbcType=INTEGER}
- </if>
- order by ao.serial_number desc
- <if test="page_sql!=null">
- ${page_sql}
- </if>
- </select>
-
- <select id="findAchievementOrderCount" parameterType="String" resultType="java.lang.Integer">
- select
- count(1)
- from achievement_order ao
- left join achievement a on a.id = ao.achievement_id
- where ao.deleted_sign = 0
- and a.deleted_sign
- and ao.uid = #{uid,jdbcType=VARCHAR}
- <if test="status != null">
- and ao.status = #{status,jdbcType=INTEGER}
- </if>
- </select>
-
- <select id="selectAchievementOrderByAchievementId" parameterType="java.lang.String" resultMap="BaseResultMap">
- select
- <include refid="Base_Column_List" />
- from achievement_order
- where achievement_id = #{achievementId,jdbcType=VARCHAR}
- </select>
-
-
- <select id="findUserAchievementOrderListByPage" parameterType="String" resultType="com.goafanti.achievement.bo.UserAchievementOrderListBo">
- select
- ao.id, ao.serial_number as serialNumber, ao.achievement_id as achievementId,
- ao.create_time as createTime,ao.status,
- ao.intention_money as intentionMoney, ao.contract_money as contractMoney, ao.commission,
- ao.service_money as serviceMoney, a.name, a.serial_number as achievementSerialNumber,
- a.deleted_sign as deletedSign, a.audit_status as auditStatus, ui.username,
- ao.uid
- from achievement_order ao
- left join achievement a on a.id = ao.achievement_id
- left join user_identity ui on ui.uid = ao.uid
- where ao.deleted_sign = 0
- and a.deleted_sign = 0
- and a.owner_type= 0
- <if test="techBrokerId != null">
- and a.tech_broker_id = #{techBrokerId,jdbcType=VARCHAR}
- </if>
- <if test="status != null">
- and ao.status = #{status,jdbcType=INTEGER}
- </if>
- <if test="uid != null">
- and ao.uid = #{uid,jdbcType=VARCHAR}
- </if>
- <if test="username != null">
- and ui.username = #{username,jdbcType=VARCHAR}
- </if>
- order by ao.serial_number desc
- <if test="page_sql!=null">
- ${page_sql}
- </if>
- </select>
-
- <select id="findUserAchievementOrderCount" parameterType="String" resultType="java.lang.Integer">
- select
- count(1)
- from achievement_order ao
- left join achievement a on a.id = ao.achievement_id
- left join user_identity ui on ui.uid = ao.uid
- where ao.deleted_sign = 0
- and a.deleted_sign = 0
- and a.owner_type= 0
- <if test="techBrokerId != null">
- and a.tech_broker_id = #{techBrokerId,jdbcType=VARCHAR}
- </if>
- <if test="status != null">
- and ao.status = #{status,jdbcType=INTEGER}
- </if>
- <if test="uid != null">
- and ao.uid = #{uid,jdbcType=VARCHAR}
- </if>
- <if test="username != null">
- and ui.username = #{username,jdbcType=VARCHAR}
- </if>
- </select>
-
-
- <select id="findOrgAchievementOrderListByPage" parameterType="String" resultType="com.goafanti.achievement.bo.OrgAchievementOrderListBo">
- select
- ao.id, ao.serial_number as serialNumber, ao.achievement_id as achievementId,
- ao.create_time as createTime,ao.status,
- ao.intention_money as intentionMoney, ao.contract_money as contractMoney, ao.commission,
- ao.service_money as serviceMoney, a.name, a.serial_number as achievementSerialNumber,
- a.deleted_sign as deletedSign, a.audit_status as auditStatus, ao.uid,
- oi.unit_name as unitName
- from achievement_order ao
- left join achievement a on a.id = ao.achievement_id
- left join organization_identity oi on oi.uid = ao.uid
- where ao.deleted_sign = 0
- and a.deleted_sign = 0
- and a.owner_type= 1
- <if test="techBrokerId != null">
- and a.tech_broker_id = #{techBrokerId,jdbcType=VARCHAR}
- </if>
- <if test="status != null">
- and ao.status = #{status,jdbcType=INTEGER}
- </if>
- <if test="uid != null">
- and ao.uid = #{uid,jdbcType=VARCHAR}
- </if>
- <if test="unitName != null">
- and oi.unit_name = #{unitName,jdbcType=VARCHAR}
- </if>
- order by ao.serial_number desc
- <if test="page_sql!=null">
- ${page_sql}
- </if>
- </select>
-
- <select id="findOrgAchievementOrderCount" parameterType="String" resultType="java.lang.Integer">
- select
- count(1)
- from achievement_order ao
- left join achievement a on a.id = ao.achievement_id
- left join organization_identity oi on oi.uid = ao.uid
- where ao.deleted_sign = 0
- and a.deleted_sign = 0
- and a.owner_type= 1
- <if test="techBrokerId != null">
- and a.tech_broker_id = #{techBrokerId,jdbcType=VARCHAR}
- </if>
- <if test="status != null">
- and ao.status = #{status,jdbcType=INTEGER}
- </if>
- <if test="uid != null">
- and ao.uid = #{uid,jdbcType=VARCHAR}
- </if>
- <if test="unitName != null">
- and oi.unit_name = #{unitName,jdbcType=VARCHAR}
- </if>
- </select>
- </mapper>
|