lxr
Signed-off-by: lixiangrong <lixiangrong@pxene.com>
This commit is contained in:
parent
5740327cd5
commit
b0cb91ea75
@ -0,0 +1,34 @@
|
||||
package com.pxene.dsp.archer.dao;
|
||||
|
||||
import com.pxene.dsp.archer.model.AdGroupAppTargetFilterModel;
|
||||
import com.pxene.dsp.archer.model.AdGroupAppTargetFilterModelExample;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
public interface AdGroupAppTargetFilterDao {
|
||||
int countByExample(AdGroupAppTargetFilterModelExample example);
|
||||
|
||||
int deleteByExample(AdGroupAppTargetFilterModelExample example);
|
||||
|
||||
int deleteByPrimaryKey(String id);
|
||||
|
||||
int insert(AdGroupAppTargetFilterModel record);
|
||||
|
||||
int insertSelective(AdGroupAppTargetFilterModel record);
|
||||
|
||||
List<AdGroupAppTargetFilterModel> selectByExample(AdGroupAppTargetFilterModelExample example);
|
||||
|
||||
AdGroupAppTargetFilterModel selectByPrimaryKey(String id);
|
||||
|
||||
int updateByExampleSelective(@Param("record") AdGroupAppTargetFilterModel record, @Param("example") AdGroupAppTargetFilterModelExample example);
|
||||
|
||||
int updateByExample(@Param("record") AdGroupAppTargetFilterModel record, @Param("example") AdGroupAppTargetFilterModelExample example);
|
||||
|
||||
int updateByPrimaryKeySelective(AdGroupAppTargetFilterModel record);
|
||||
|
||||
int updateByPrimaryKey(AdGroupAppTargetFilterModel record);
|
||||
|
||||
public List<Map<String,String>> selectAdxByAppParentCode(String parentcode);
|
||||
}
|
@ -0,0 +1,254 @@
|
||||
<?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.pxene.dsp.archer.dao.AdGroupAppTargetFilterDao" >
|
||||
<resultMap id="BaseResultMap" type="com.pxene.dsp.archer.model.AdGroupAppTargetFilterModel" >
|
||||
<id column="id" property="id" jdbcType="VARCHAR" />
|
||||
<result column="groupid" property="groupid" jdbcType="VARCHAR" />
|
||||
<result column="appcategory" property="appcategory" jdbcType="VARCHAR" />
|
||||
<result column="keyword" property="keyword" jdbcType="VARCHAR" />
|
||||
<result column="filterValLi" property="filtervalli" jdbcType="VARCHAR" />
|
||||
<result column="searchValLi" property="searchvalli" jdbcType="VARCHAR" />
|
||||
<result column="adxid" property="adxid" jdbcType="VARCHAR" />
|
||||
</resultMap>
|
||||
<sql id="Example_Where_Clause" >
|
||||
<where >
|
||||
<foreach collection="oredCriteria" item="criteria" separator="or" >
|
||||
<if test="criteria.valid" >
|
||||
<trim prefix="(" suffix=")" prefixOverrides="and" >
|
||||
<foreach collection="criteria.criteria" item="criterion" >
|
||||
<choose >
|
||||
<when test="criterion.noValue" >
|
||||
and ${criterion.condition}
|
||||
</when>
|
||||
<when test="criterion.singleValue" >
|
||||
and ${criterion.condition} #{criterion.value}
|
||||
</when>
|
||||
<when test="criterion.betweenValue" >
|
||||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
||||
</when>
|
||||
<when test="criterion.listValue" >
|
||||
and ${criterion.condition}
|
||||
<foreach collection="criterion.value" item="listItem" open="(" close=")" separator="," >
|
||||
#{listItem}
|
||||
</foreach>
|
||||
</when>
|
||||
</choose>
|
||||
</foreach>
|
||||
</trim>
|
||||
</if>
|
||||
</foreach>
|
||||
</where>
|
||||
</sql>
|
||||
<sql id="Update_By_Example_Where_Clause" >
|
||||
<where >
|
||||
<foreach collection="example.oredCriteria" item="criteria" separator="or" >
|
||||
<if test="criteria.valid" >
|
||||
<trim prefix="(" suffix=")" prefixOverrides="and" >
|
||||
<foreach collection="criteria.criteria" item="criterion" >
|
||||
<choose >
|
||||
<when test="criterion.noValue" >
|
||||
and ${criterion.condition}
|
||||
</when>
|
||||
<when test="criterion.singleValue" >
|
||||
and ${criterion.condition} #{criterion.value}
|
||||
</when>
|
||||
<when test="criterion.betweenValue" >
|
||||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
||||
</when>
|
||||
<when test="criterion.listValue" >
|
||||
and ${criterion.condition}
|
||||
<foreach collection="criterion.value" item="listItem" open="(" close=")" separator="," >
|
||||
#{listItem}
|
||||
</foreach>
|
||||
</when>
|
||||
</choose>
|
||||
</foreach>
|
||||
</trim>
|
||||
</if>
|
||||
</foreach>
|
||||
</where>
|
||||
</sql>
|
||||
<sql id="Base_Column_List" >
|
||||
id, groupid, appcategory, keyword, filterValLi, searchValLi, adxid
|
||||
</sql>
|
||||
<select id="selectByExample" resultMap="BaseResultMap" parameterType="com.pxene.dsp.archer.model.AdGroupAppTargetFilterModelExample" >
|
||||
select
|
||||
<if test="distinct" >
|
||||
distinct
|
||||
</if>
|
||||
'true' as QUERYID,
|
||||
<include refid="Base_Column_List" />
|
||||
from dsp_t_ad_group_apptarget_filter
|
||||
<if test="_parameter != null" >
|
||||
<include refid="Example_Where_Clause" />
|
||||
</if>
|
||||
<if test="orderByClause != null" >
|
||||
order by ${orderByClause}
|
||||
</if>
|
||||
</select>
|
||||
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
|
||||
select
|
||||
<include refid="Base_Column_List" />
|
||||
from dsp_t_ad_group_apptarget_filter
|
||||
where id = #{id,jdbcType=VARCHAR}
|
||||
</select>
|
||||
<delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
|
||||
delete from dsp_t_ad_group_apptarget_filter
|
||||
where id = #{id,jdbcType=VARCHAR}
|
||||
</delete>
|
||||
<delete id="deleteByExample" parameterType="com.pxene.dsp.archer.model.AdGroupAppTargetFilterModelExample" >
|
||||
delete from dsp_t_ad_group_apptarget_filter
|
||||
<if test="_parameter != null" >
|
||||
<include refid="Example_Where_Clause" />
|
||||
</if>
|
||||
</delete>
|
||||
<insert id="insert" parameterType="com.pxene.dsp.archer.model.AdGroupAppTargetFilterModel" >
|
||||
insert into dsp_t_ad_group_apptarget_filter (id, groupid, appcategory,
|
||||
keyword, filterValLi, searchValLi,
|
||||
adxid)
|
||||
values (#{id,jdbcType=VARCHAR}, #{groupid,jdbcType=VARCHAR}, #{appcategory,jdbcType=VARCHAR},
|
||||
#{keyword,jdbcType=VARCHAR}, #{filtervalli,jdbcType=VARCHAR}, #{searchvalli,jdbcType=VARCHAR},
|
||||
#{adxid,jdbcType=VARCHAR})
|
||||
</insert>
|
||||
<insert id="insertSelective" parameterType="com.pxene.dsp.archer.model.AdGroupAppTargetFilterModel" >
|
||||
insert into dsp_t_ad_group_apptarget_filter
|
||||
<trim prefix="(" suffix=")" suffixOverrides="," >
|
||||
<if test="id != null" >
|
||||
id,
|
||||
</if>
|
||||
<if test="groupid != null" >
|
||||
groupid,
|
||||
</if>
|
||||
<if test="appcategory != null" >
|
||||
appcategory,
|
||||
</if>
|
||||
<if test="keyword != null" >
|
||||
keyword,
|
||||
</if>
|
||||
<if test="filtervalli != null" >
|
||||
filterValLi,
|
||||
</if>
|
||||
<if test="searchvalli != null" >
|
||||
searchValLi,
|
||||
</if>
|
||||
<if test="adxid != null" >
|
||||
adxid,
|
||||
</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides="," >
|
||||
<if test="id != null" >
|
||||
#{id,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="groupid != null" >
|
||||
#{groupid,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="appcategory != null" >
|
||||
#{appcategory,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="keyword != null" >
|
||||
#{keyword,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="filtervalli != null" >
|
||||
#{filtervalli,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="searchvalli != null" >
|
||||
#{searchvalli,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="adxid != null" >
|
||||
#{adxid,jdbcType=VARCHAR},
|
||||
</if>
|
||||
</trim>
|
||||
</insert>
|
||||
<select id="countByExample" parameterType="com.pxene.dsp.archer.model.AdGroupAppTargetFilterModelExample" resultType="java.lang.Integer" >
|
||||
select count(*) from dsp_t_ad_group_apptarget_filter
|
||||
<if test="_parameter != null" >
|
||||
<include refid="Example_Where_Clause" />
|
||||
</if>
|
||||
</select>
|
||||
<update id="updateByExampleSelective" parameterType="map" >
|
||||
update dsp_t_ad_group_apptarget_filter
|
||||
<set >
|
||||
<if test="record.id != null" >
|
||||
id = #{record.id,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.groupid != null" >
|
||||
groupid = #{record.groupid,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.appcategory != null" >
|
||||
appcategory = #{record.appcategory,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.keyword != null" >
|
||||
keyword = #{record.keyword,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.filtervalli != null" >
|
||||
filterValLi = #{record.filtervalli,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.searchvalli != null" >
|
||||
searchValLi = #{record.searchvalli,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.adxid != null" >
|
||||
adxid = #{record.adxid,jdbcType=VARCHAR},
|
||||
</if>
|
||||
</set>
|
||||
<if test="_parameter != null" >
|
||||
<include refid="Update_By_Example_Where_Clause" />
|
||||
</if>
|
||||
</update>
|
||||
<update id="updateByExample" parameterType="map" >
|
||||
update dsp_t_ad_group_apptarget_filter
|
||||
set id = #{record.id,jdbcType=VARCHAR},
|
||||
groupid = #{record.groupid,jdbcType=VARCHAR},
|
||||
appcategory = #{record.appcategory,jdbcType=VARCHAR},
|
||||
keyword = #{record.keyword,jdbcType=VARCHAR},
|
||||
filterValLi = #{record.filtervalli,jdbcType=VARCHAR},
|
||||
searchValLi = #{record.searchvalli,jdbcType=VARCHAR},
|
||||
adxid = #{record.adxid,jdbcType=VARCHAR}
|
||||
<if test="_parameter != null" >
|
||||
<include refid="Update_By_Example_Where_Clause" />
|
||||
</if>
|
||||
</update>
|
||||
<update id="updateByPrimaryKeySelective" parameterType="com.pxene.dsp.archer.model.AdGroupAppTargetFilterModel" >
|
||||
update dsp_t_ad_group_apptarget_filter
|
||||
<set >
|
||||
<if test="groupid != null" >
|
||||
groupid = #{groupid,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="appcategory != null" >
|
||||
appcategory = #{appcategory,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="keyword != null" >
|
||||
keyword = #{keyword,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="filtervalli != null" >
|
||||
filterValLi = #{filtervalli,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="searchvalli != null" >
|
||||
searchValLi = #{searchvalli,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="adxid != null" >
|
||||
adxid = #{adxid,jdbcType=VARCHAR},
|
||||
</if>
|
||||
</set>
|
||||
where id = #{id,jdbcType=VARCHAR}
|
||||
</update>
|
||||
<update id="updateByPrimaryKey" parameterType="com.pxene.dsp.archer.model.AdGroupAppTargetFilterModel" >
|
||||
update dsp_t_ad_group_apptarget_filter
|
||||
set groupid = #{groupid,jdbcType=VARCHAR},
|
||||
appcategory = #{appcategory,jdbcType=VARCHAR},
|
||||
keyword = #{keyword,jdbcType=VARCHAR},
|
||||
filterValLi = #{filtervalli,jdbcType=VARCHAR},
|
||||
searchValLi = #{searchvalli,jdbcType=VARCHAR},
|
||||
adxid = #{adxid,jdbcType=VARCHAR}
|
||||
where id = #{id,jdbcType=VARCHAR}
|
||||
</update>
|
||||
<select id="selectAdxByAppParentCode" parameterType="java.lang.String" resultType="java.util.Map">
|
||||
SELECT DISTINCT
|
||||
t0.adxtype,
|
||||
t1.id adxid
|
||||
FROM
|
||||
dsp_t_syn_app_adx t0
|
||||
LEFT JOIN dsp_t_adx t1 ON t0.adxtype = t1.`value`
|
||||
WHERE
|
||||
t0.parentcode = #{parentcode,jdbcType=VARCHAR}
|
||||
</select>
|
||||
</mapper>
|
@ -1,36 +0,0 @@
|
||||
package com.pxene.dsp.archer.dao;
|
||||
|
||||
import com.pxene.dsp.archer.model.OperateLogsModel;
|
||||
import com.pxene.dsp.archer.model.OperateLogsModelExample;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface OperateLogsDao {
|
||||
int countByExample(OperateLogsModelExample example);
|
||||
|
||||
int deleteByExample(OperateLogsModelExample example);
|
||||
|
||||
int deleteByPrimaryKey(String id);
|
||||
|
||||
int insert(OperateLogsModel record);
|
||||
|
||||
int insertSelective(OperateLogsModel record);
|
||||
|
||||
List<OperateLogsModel> selectByExampleWithBLOBs(OperateLogsModelExample example);
|
||||
|
||||
List<OperateLogsModel> selectByExample(OperateLogsModelExample example);
|
||||
|
||||
OperateLogsModel selectByPrimaryKey(String id);
|
||||
|
||||
int updateByExampleSelective(@Param("record") OperateLogsModel record, @Param("example") OperateLogsModelExample example);
|
||||
|
||||
int updateByExampleWithBLOBs(@Param("record") OperateLogsModel record, @Param("example") OperateLogsModelExample example);
|
||||
|
||||
int updateByExample(@Param("record") OperateLogsModel record, @Param("example") OperateLogsModelExample example);
|
||||
|
||||
int updateByPrimaryKeySelective(OperateLogsModel record);
|
||||
|
||||
int updateByPrimaryKeyWithBLOBs(OperateLogsModel record);
|
||||
|
||||
int updateByPrimaryKey(OperateLogsModel record);
|
||||
}
|
@ -1,342 +0,0 @@
|
||||
<?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.pxene.dsp.archer.dao.OperateLogsDao" >
|
||||
<resultMap id="BaseResultMap" type="com.pxene.dsp.archer.model.OperateLogsModel" >
|
||||
<id column="id" property="id" jdbcType="VARCHAR" />
|
||||
<result column="userid" property="userid" jdbcType="VARCHAR" />
|
||||
<result column="usertype" property="usertype" jdbcType="VARCHAR" />
|
||||
<result column="ip" property="ip" jdbcType="VARCHAR" />
|
||||
<result column="operate" property="operate" jdbcType="VARCHAR" />
|
||||
<result column="plangroup" property="plangroup" jdbcType="VARCHAR" />
|
||||
<result column="remark" property="remark" jdbcType="VARCHAR" />
|
||||
<result column="createtime" property="createtime" jdbcType="TIMESTAMP" />
|
||||
<result column="status" property="status" jdbcType="INTEGER" />
|
||||
</resultMap>
|
||||
<resultMap id="ResultMapWithBLOBs" type="com.pxene.dsp.archer.model.OperateLogsModel" extends="BaseResultMap" >
|
||||
<result column="details" property="details" jdbcType="LONGVARCHAR" />
|
||||
</resultMap>
|
||||
<sql id="Example_Where_Clause" >
|
||||
<where >
|
||||
<foreach collection="oredCriteria" item="criteria" separator="or" >
|
||||
<if test="criteria.valid" >
|
||||
<trim prefix="(" suffix=")" prefixOverrides="and" >
|
||||
<foreach collection="criteria.criteria" item="criterion" >
|
||||
<choose >
|
||||
<when test="criterion.noValue" >
|
||||
and ${criterion.condition}
|
||||
</when>
|
||||
<when test="criterion.singleValue" >
|
||||
and ${criterion.condition} #{criterion.value}
|
||||
</when>
|
||||
<when test="criterion.betweenValue" >
|
||||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
||||
</when>
|
||||
<when test="criterion.listValue" >
|
||||
and ${criterion.condition}
|
||||
<foreach collection="criterion.value" item="listItem" open="(" close=")" separator="," >
|
||||
#{listItem}
|
||||
</foreach>
|
||||
</when>
|
||||
</choose>
|
||||
</foreach>
|
||||
</trim>
|
||||
</if>
|
||||
</foreach>
|
||||
</where>
|
||||
</sql>
|
||||
<sql id="Update_By_Example_Where_Clause" >
|
||||
<where >
|
||||
<foreach collection="example.oredCriteria" item="criteria" separator="or" >
|
||||
<if test="criteria.valid" >
|
||||
<trim prefix="(" suffix=")" prefixOverrides="and" >
|
||||
<foreach collection="criteria.criteria" item="criterion" >
|
||||
<choose >
|
||||
<when test="criterion.noValue" >
|
||||
and ${criterion.condition}
|
||||
</when>
|
||||
<when test="criterion.singleValue" >
|
||||
and ${criterion.condition} #{criterion.value}
|
||||
</when>
|
||||
<when test="criterion.betweenValue" >
|
||||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
||||
</when>
|
||||
<when test="criterion.listValue" >
|
||||
and ${criterion.condition}
|
||||
<foreach collection="criterion.value" item="listItem" open="(" close=")" separator="," >
|
||||
#{listItem}
|
||||
</foreach>
|
||||
</when>
|
||||
</choose>
|
||||
</foreach>
|
||||
</trim>
|
||||
</if>
|
||||
</foreach>
|
||||
</where>
|
||||
</sql>
|
||||
<sql id="Base_Column_List" >
|
||||
id, userid, usertype, ip, operate, plangroup, remark, createtime, status
|
||||
</sql>
|
||||
<sql id="Blob_Column_List" >
|
||||
details
|
||||
</sql>
|
||||
<select id="selectByExampleWithBLOBs" resultMap="ResultMapWithBLOBs" parameterType="com.pxene.dsp.archer.model.OperateLogsModelExample" >
|
||||
select
|
||||
<if test="distinct" >
|
||||
distinct
|
||||
</if>
|
||||
'true' as QUERYID,
|
||||
<include refid="Base_Column_List" />
|
||||
,
|
||||
<include refid="Blob_Column_List" />
|
||||
from dsp_t_operate_logs
|
||||
<if test="_parameter != null" >
|
||||
<include refid="Example_Where_Clause" />
|
||||
</if>
|
||||
<if test="orderByClause != null" >
|
||||
order by ${orderByClause}
|
||||
</if>
|
||||
</select>
|
||||
<select id="selectByExample" resultMap="BaseResultMap" parameterType="com.pxene.dsp.archer.model.OperateLogsModelExample" >
|
||||
select
|
||||
<if test="distinct" >
|
||||
distinct
|
||||
</if>
|
||||
'true' as QUERYID,
|
||||
<include refid="Base_Column_List" />
|
||||
from dsp_t_operate_logs
|
||||
<if test="_parameter != null" >
|
||||
<include refid="Example_Where_Clause" />
|
||||
</if>
|
||||
<if test="orderByClause != null" >
|
||||
order by ${orderByClause}
|
||||
</if>
|
||||
</select>
|
||||
<select id="selectByPrimaryKey" resultMap="ResultMapWithBLOBs" parameterType="java.lang.String" >
|
||||
select
|
||||
<include refid="Base_Column_List" />
|
||||
,
|
||||
<include refid="Blob_Column_List" />
|
||||
from dsp_t_operate_logs
|
||||
where id = #{id,jdbcType=VARCHAR}
|
||||
</select>
|
||||
<delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
|
||||
delete from dsp_t_operate_logs
|
||||
where id = #{id,jdbcType=VARCHAR}
|
||||
</delete>
|
||||
<delete id="deleteByExample" parameterType="com.pxene.dsp.archer.model.OperateLogsModelExample" >
|
||||
delete from dsp_t_operate_logs
|
||||
<if test="_parameter != null" >
|
||||
<include refid="Example_Where_Clause" />
|
||||
</if>
|
||||
</delete>
|
||||
<insert id="insert" parameterType="com.pxene.dsp.archer.model.OperateLogsModel" >
|
||||
insert into dsp_t_operate_logs (id, userid, usertype,
|
||||
ip, operate, plangroup,
|
||||
remark, createtime, status,
|
||||
details)
|
||||
values (#{id,jdbcType=VARCHAR}, #{userid,jdbcType=VARCHAR}, #{usertype,jdbcType=VARCHAR},
|
||||
#{ip,jdbcType=VARCHAR}, #{operate,jdbcType=VARCHAR}, #{plangroup,jdbcType=VARCHAR},
|
||||
#{remark,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{status,jdbcType=INTEGER},
|
||||
#{details,jdbcType=LONGVARCHAR})
|
||||
</insert>
|
||||
<insert id="insertSelective" parameterType="com.pxene.dsp.archer.model.OperateLogsModel" >
|
||||
insert into dsp_t_operate_logs
|
||||
<trim prefix="(" suffix=")" suffixOverrides="," >
|
||||
<if test="id != null" >
|
||||
id,
|
||||
</if>
|
||||
<if test="userid != null" >
|
||||
userid,
|
||||
</if>
|
||||
<if test="usertype != null" >
|
||||
usertype,
|
||||
</if>
|
||||
<if test="ip != null" >
|
||||
ip,
|
||||
</if>
|
||||
<if test="operate != null" >
|
||||
operate,
|
||||
</if>
|
||||
<if test="plangroup != null" >
|
||||
plangroup,
|
||||
</if>
|
||||
<if test="remark != null" >
|
||||
remark,
|
||||
</if>
|
||||
<if test="createtime != null" >
|
||||
createtime,
|
||||
</if>
|
||||
<if test="status != null" >
|
||||
status,
|
||||
</if>
|
||||
<if test="details != null" >
|
||||
details,
|
||||
</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides="," >
|
||||
<if test="id != null" >
|
||||
#{id,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="userid != null" >
|
||||
#{userid,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="usertype != null" >
|
||||
#{usertype,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="ip != null" >
|
||||
#{ip,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="operate != null" >
|
||||
#{operate,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="plangroup != null" >
|
||||
#{plangroup,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="remark != null" >
|
||||
#{remark,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="createtime != null" >
|
||||
#{createtime,jdbcType=TIMESTAMP},
|
||||
</if>
|
||||
<if test="status != null" >
|
||||
#{status,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="details != null" >
|
||||
#{details,jdbcType=LONGVARCHAR},
|
||||
</if>
|
||||
</trim>
|
||||
</insert>
|
||||
<select id="countByExample" parameterType="com.pxene.dsp.archer.model.OperateLogsModelExample" resultType="java.lang.Integer" >
|
||||
select count(*) from dsp_t_operate_logs
|
||||
<if test="_parameter != null" >
|
||||
<include refid="Example_Where_Clause" />
|
||||
</if>
|
||||
</select>
|
||||
<update id="updateByExampleSelective" parameterType="map" >
|
||||
update dsp_t_operate_logs
|
||||
<set >
|
||||
<if test="record.id != null" >
|
||||
id = #{record.id,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.userid != null" >
|
||||
userid = #{record.userid,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.usertype != null" >
|
||||
usertype = #{record.usertype,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.ip != null" >
|
||||
ip = #{record.ip,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.operate != null" >
|
||||
operate = #{record.operate,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.plangroup != null" >
|
||||
plangroup = #{record.plangroup,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.remark != null" >
|
||||
remark = #{record.remark,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.createtime != null" >
|
||||
createtime = #{record.createtime,jdbcType=TIMESTAMP},
|
||||
</if>
|
||||
<if test="record.status != null" >
|
||||
status = #{record.status,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="record.details != null" >
|
||||
details = #{record.details,jdbcType=LONGVARCHAR},
|
||||
</if>
|
||||
</set>
|
||||
<if test="_parameter != null" >
|
||||
<include refid="Update_By_Example_Where_Clause" />
|
||||
</if>
|
||||
</update>
|
||||
<update id="updateByExampleWithBLOBs" parameterType="map" >
|
||||
update dsp_t_operate_logs
|
||||
set id = #{record.id,jdbcType=VARCHAR},
|
||||
userid = #{record.userid,jdbcType=VARCHAR},
|
||||
usertype = #{record.usertype,jdbcType=VARCHAR},
|
||||
ip = #{record.ip,jdbcType=VARCHAR},
|
||||
operate = #{record.operate,jdbcType=VARCHAR},
|
||||
plangroup = #{record.plangroup,jdbcType=VARCHAR},
|
||||
remark = #{record.remark,jdbcType=VARCHAR},
|
||||
createtime = #{record.createtime,jdbcType=TIMESTAMP},
|
||||
status = #{record.status,jdbcType=INTEGER},
|
||||
details = #{record.details,jdbcType=LONGVARCHAR}
|
||||
<if test="_parameter != null" >
|
||||
<include refid="Update_By_Example_Where_Clause" />
|
||||
</if>
|
||||
</update>
|
||||
<update id="updateByExample" parameterType="map" >
|
||||
update dsp_t_operate_logs
|
||||
set id = #{record.id,jdbcType=VARCHAR},
|
||||
userid = #{record.userid,jdbcType=VARCHAR},
|
||||
usertype = #{record.usertype,jdbcType=VARCHAR},
|
||||
ip = #{record.ip,jdbcType=VARCHAR},
|
||||
operate = #{record.operate,jdbcType=VARCHAR},
|
||||
plangroup = #{record.plangroup,jdbcType=VARCHAR},
|
||||
remark = #{record.remark,jdbcType=VARCHAR},
|
||||
createtime = #{record.createtime,jdbcType=TIMESTAMP},
|
||||
status = #{record.status,jdbcType=INTEGER}
|
||||
<if test="_parameter != null" >
|
||||
<include refid="Update_By_Example_Where_Clause" />
|
||||
</if>
|
||||
</update>
|
||||
<update id="updateByPrimaryKeySelective" parameterType="com.pxene.dsp.archer.model.OperateLogsModel" >
|
||||
update dsp_t_operate_logs
|
||||
<set >
|
||||
<if test="userid != null" >
|
||||
userid = #{userid,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="usertype != null" >
|
||||
usertype = #{usertype,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="ip != null" >
|
||||
ip = #{ip,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="operate != null" >
|
||||
operate = #{operate,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="plangroup != null" >
|
||||
plangroup = #{plangroup,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="remark != null" >
|
||||
remark = #{remark,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="createtime != null" >
|
||||
createtime = #{createtime,jdbcType=TIMESTAMP},
|
||||
</if>
|
||||
<if test="status != null" >
|
||||
status = #{status,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="details != null" >
|
||||
details = #{details,jdbcType=LONGVARCHAR},
|
||||
</if>
|
||||
</set>
|
||||
where id = #{id,jdbcType=VARCHAR}
|
||||
</update>
|
||||
<update id="updateByPrimaryKeyWithBLOBs" parameterType="com.pxene.dsp.archer.model.OperateLogsModel" >
|
||||
update dsp_t_operate_logs
|
||||
set userid = #{userid,jdbcType=VARCHAR},
|
||||
usertype = #{usertype,jdbcType=VARCHAR},
|
||||
ip = #{ip,jdbcType=VARCHAR},
|
||||
operate = #{operate,jdbcType=VARCHAR},
|
||||
plangroup = #{plangroup,jdbcType=VARCHAR},
|
||||
remark = #{remark,jdbcType=VARCHAR},
|
||||
createtime = #{createtime,jdbcType=TIMESTAMP},
|
||||
status = #{status,jdbcType=INTEGER},
|
||||
details = #{details,jdbcType=LONGVARCHAR}
|
||||
where id = #{id,jdbcType=VARCHAR}
|
||||
</update>
|
||||
<update id="updateByPrimaryKey" parameterType="com.pxene.dsp.archer.model.OperateLogsModel" >
|
||||
update dsp_t_operate_logs
|
||||
set userid = #{userid,jdbcType=VARCHAR},
|
||||
usertype = #{usertype,jdbcType=VARCHAR},
|
||||
ip = #{ip,jdbcType=VARCHAR},
|
||||
operate = #{operate,jdbcType=VARCHAR},
|
||||
plangroup = #{plangroup,jdbcType=VARCHAR},
|
||||
remark = #{remark,jdbcType=VARCHAR},
|
||||
createtime = #{createtime,jdbcType=TIMESTAMP},
|
||||
status = #{status,jdbcType=INTEGER}
|
||||
where id = #{id,jdbcType=VARCHAR}
|
||||
</update>
|
||||
</mapper>
|
@ -1,105 +0,0 @@
|
||||
package com.pxene.dsp.archer.model;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
public class OperateLogsModel {
|
||||
private String id;
|
||||
|
||||
private String userid;
|
||||
|
||||
private String usertype;
|
||||
|
||||
private String ip;
|
||||
|
||||
private String operate;
|
||||
|
||||
private String plangroup;
|
||||
|
||||
private String remark;
|
||||
|
||||
private Date createtime;
|
||||
|
||||
private Integer status;
|
||||
|
||||
private String details;
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id == null ? null : id.trim();
|
||||
}
|
||||
|
||||
public String getUserid() {
|
||||
return userid;
|
||||
}
|
||||
|
||||
public void setUserid(String userid) {
|
||||
this.userid = userid == null ? null : userid.trim();
|
||||
}
|
||||
|
||||
public String getUsertype() {
|
||||
return usertype;
|
||||
}
|
||||
|
||||
public void setUsertype(String usertype) {
|
||||
this.usertype = usertype == null ? null : usertype.trim();
|
||||
}
|
||||
|
||||
public String getIp() {
|
||||
return ip;
|
||||
}
|
||||
|
||||
public void setIp(String ip) {
|
||||
this.ip = ip == null ? null : ip.trim();
|
||||
}
|
||||
|
||||
public String getOperate() {
|
||||
return operate;
|
||||
}
|
||||
|
||||
public void setOperate(String operate) {
|
||||
this.operate = operate == null ? null : operate.trim();
|
||||
}
|
||||
|
||||
public String getPlangroup() {
|
||||
return plangroup;
|
||||
}
|
||||
|
||||
public void setPlangroup(String plangroup) {
|
||||
this.plangroup = plangroup == null ? null : plangroup.trim();
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark == null ? null : remark.trim();
|
||||
}
|
||||
|
||||
public Date getCreatetime() {
|
||||
return createtime;
|
||||
}
|
||||
|
||||
public void setCreatetime(Date createtime) {
|
||||
this.createtime = createtime;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getDetails() {
|
||||
return details;
|
||||
}
|
||||
|
||||
public void setDetails(String details) {
|
||||
this.details = details == null ? null : details.trim();
|
||||
}
|
||||
}
|
@ -1,811 +0,0 @@
|
||||
package com.pxene.dsp.archer.model;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
public class OperateLogsModelExample {
|
||||
protected String orderByClause;
|
||||
|
||||
protected boolean distinct;
|
||||
|
||||
protected List<Criteria> oredCriteria;
|
||||
|
||||
public OperateLogsModelExample() {
|
||||
oredCriteria = new ArrayList<Criteria>();
|
||||
}
|
||||
|
||||
public void setOrderByClause(String orderByClause) {
|
||||
this.orderByClause = orderByClause;
|
||||
}
|
||||
|
||||
public String getOrderByClause() {
|
||||
return orderByClause;
|
||||
}
|
||||
|
||||
public void setDistinct(boolean distinct) {
|
||||
this.distinct = distinct;
|
||||
}
|
||||
|
||||
public boolean isDistinct() {
|
||||
return distinct;
|
||||
}
|
||||
|
||||
public List<Criteria> getOredCriteria() {
|
||||
return oredCriteria;
|
||||
}
|
||||
|
||||
public void or(Criteria criteria) {
|
||||
oredCriteria.add(criteria);
|
||||
}
|
||||
|
||||
public Criteria or() {
|
||||
Criteria criteria = createCriteriaInternal();
|
||||
oredCriteria.add(criteria);
|
||||
return criteria;
|
||||
}
|
||||
|
||||
public Criteria createCriteria() {
|
||||
Criteria criteria = createCriteriaInternal();
|
||||
if (oredCriteria.size() == 0) {
|
||||
oredCriteria.add(criteria);
|
||||
}
|
||||
return criteria;
|
||||
}
|
||||
|
||||
protected Criteria createCriteriaInternal() {
|
||||
Criteria criteria = new Criteria();
|
||||
return criteria;
|
||||
}
|
||||
|
||||
public void clear() {
|
||||
oredCriteria.clear();
|
||||
orderByClause = null;
|
||||
distinct = false;
|
||||
}
|
||||
|
||||
protected abstract static class GeneratedCriteria {
|
||||
protected List<Criterion> criteria;
|
||||
|
||||
protected GeneratedCriteria() {
|
||||
super();
|
||||
criteria = new ArrayList<Criterion>();
|
||||
}
|
||||
|
||||
public boolean isValid() {
|
||||
return criteria.size() > 0;
|
||||
}
|
||||
|
||||
public List<Criterion> getAllCriteria() {
|
||||
return criteria;
|
||||
}
|
||||
|
||||
public List<Criterion> getCriteria() {
|
||||
return criteria;
|
||||
}
|
||||
|
||||
protected void addCriterion(String condition) {
|
||||
if (condition == null) {
|
||||
throw new RuntimeException("Value for condition cannot be null");
|
||||
}
|
||||
criteria.add(new Criterion(condition));
|
||||
}
|
||||
|
||||
protected void addCriterion(String condition, Object value, String property) {
|
||||
if (value == null) {
|
||||
throw new RuntimeException("Value for " + property + " cannot be null");
|
||||
}
|
||||
criteria.add(new Criterion(condition, value));
|
||||
}
|
||||
|
||||
protected void addCriterion(String condition, Object value1, Object value2, String property) {
|
||||
if (value1 == null || value2 == null) {
|
||||
throw new RuntimeException("Between values for " + property + " cannot be null");
|
||||
}
|
||||
criteria.add(new Criterion(condition, value1, value2));
|
||||
}
|
||||
|
||||
public Criteria andIdIsNull() {
|
||||
addCriterion("id is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdIsNotNull() {
|
||||
addCriterion("id is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdEqualTo(String value) {
|
||||
addCriterion("id =", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdNotEqualTo(String value) {
|
||||
addCriterion("id <>", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdGreaterThan(String value) {
|
||||
addCriterion("id >", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("id >=", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdLessThan(String value) {
|
||||
addCriterion("id <", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdLessThanOrEqualTo(String value) {
|
||||
addCriterion("id <=", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdLike(String value) {
|
||||
addCriterion("id like", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdNotLike(String value) {
|
||||
addCriterion("id not like", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdIn(List<String> values) {
|
||||
addCriterion("id in", values, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdNotIn(List<String> values) {
|
||||
addCriterion("id not in", values, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdBetween(String value1, String value2) {
|
||||
addCriterion("id between", value1, value2, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdNotBetween(String value1, String value2) {
|
||||
addCriterion("id not between", value1, value2, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUseridIsNull() {
|
||||
addCriterion("userid is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUseridIsNotNull() {
|
||||
addCriterion("userid is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUseridEqualTo(String value) {
|
||||
addCriterion("userid =", value, "userid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUseridNotEqualTo(String value) {
|
||||
addCriterion("userid <>", value, "userid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUseridGreaterThan(String value) {
|
||||
addCriterion("userid >", value, "userid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUseridGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("userid >=", value, "userid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUseridLessThan(String value) {
|
||||
addCriterion("userid <", value, "userid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUseridLessThanOrEqualTo(String value) {
|
||||
addCriterion("userid <=", value, "userid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUseridLike(String value) {
|
||||
addCriterion("userid like", value, "userid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUseridNotLike(String value) {
|
||||
addCriterion("userid not like", value, "userid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUseridIn(List<String> values) {
|
||||
addCriterion("userid in", values, "userid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUseridNotIn(List<String> values) {
|
||||
addCriterion("userid not in", values, "userid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUseridBetween(String value1, String value2) {
|
||||
addCriterion("userid between", value1, value2, "userid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUseridNotBetween(String value1, String value2) {
|
||||
addCriterion("userid not between", value1, value2, "userid");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUsertypeIsNull() {
|
||||
addCriterion("usertype is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUsertypeIsNotNull() {
|
||||
addCriterion("usertype is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUsertypeEqualTo(String value) {
|
||||
addCriterion("usertype =", value, "usertype");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUsertypeNotEqualTo(String value) {
|
||||
addCriterion("usertype <>", value, "usertype");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUsertypeGreaterThan(String value) {
|
||||
addCriterion("usertype >", value, "usertype");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUsertypeGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("usertype >=", value, "usertype");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUsertypeLessThan(String value) {
|
||||
addCriterion("usertype <", value, "usertype");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUsertypeLessThanOrEqualTo(String value) {
|
||||
addCriterion("usertype <=", value, "usertype");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUsertypeLike(String value) {
|
||||
addCriterion("usertype like", value, "usertype");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUsertypeNotLike(String value) {
|
||||
addCriterion("usertype not like", value, "usertype");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUsertypeIn(List<String> values) {
|
||||
addCriterion("usertype in", values, "usertype");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUsertypeNotIn(List<String> values) {
|
||||
addCriterion("usertype not in", values, "usertype");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUsertypeBetween(String value1, String value2) {
|
||||
addCriterion("usertype between", value1, value2, "usertype");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUsertypeNotBetween(String value1, String value2) {
|
||||
addCriterion("usertype not between", value1, value2, "usertype");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIpIsNull() {
|
||||
addCriterion("ip is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIpIsNotNull() {
|
||||
addCriterion("ip is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIpEqualTo(String value) {
|
||||
addCriterion("ip =", value, "ip");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIpNotEqualTo(String value) {
|
||||
addCriterion("ip <>", value, "ip");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIpGreaterThan(String value) {
|
||||
addCriterion("ip >", value, "ip");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIpGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("ip >=", value, "ip");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIpLessThan(String value) {
|
||||
addCriterion("ip <", value, "ip");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIpLessThanOrEqualTo(String value) {
|
||||
addCriterion("ip <=", value, "ip");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIpLike(String value) {
|
||||
addCriterion("ip like", value, "ip");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIpNotLike(String value) {
|
||||
addCriterion("ip not like", value, "ip");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIpIn(List<String> values) {
|
||||
addCriterion("ip in", values, "ip");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIpNotIn(List<String> values) {
|
||||
addCriterion("ip not in", values, "ip");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIpBetween(String value1, String value2) {
|
||||
addCriterion("ip between", value1, value2, "ip");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIpNotBetween(String value1, String value2) {
|
||||
addCriterion("ip not between", value1, value2, "ip");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOperateIsNull() {
|
||||
addCriterion("operate is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOperateIsNotNull() {
|
||||
addCriterion("operate is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOperateEqualTo(String value) {
|
||||
addCriterion("operate =", value, "operate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOperateNotEqualTo(String value) {
|
||||
addCriterion("operate <>", value, "operate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOperateGreaterThan(String value) {
|
||||
addCriterion("operate >", value, "operate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOperateGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("operate >=", value, "operate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOperateLessThan(String value) {
|
||||
addCriterion("operate <", value, "operate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOperateLessThanOrEqualTo(String value) {
|
||||
addCriterion("operate <=", value, "operate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOperateLike(String value) {
|
||||
addCriterion("operate like", value, "operate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOperateNotLike(String value) {
|
||||
addCriterion("operate not like", value, "operate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOperateIn(List<String> values) {
|
||||
addCriterion("operate in", values, "operate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOperateNotIn(List<String> values) {
|
||||
addCriterion("operate not in", values, "operate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOperateBetween(String value1, String value2) {
|
||||
addCriterion("operate between", value1, value2, "operate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andOperateNotBetween(String value1, String value2) {
|
||||
addCriterion("operate not between", value1, value2, "operate");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPlangroupIsNull() {
|
||||
addCriterion("plangroup is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPlangroupIsNotNull() {
|
||||
addCriterion("plangroup is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPlangroupEqualTo(String value) {
|
||||
addCriterion("plangroup =", value, "plangroup");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPlangroupNotEqualTo(String value) {
|
||||
addCriterion("plangroup <>", value, "plangroup");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPlangroupGreaterThan(String value) {
|
||||
addCriterion("plangroup >", value, "plangroup");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPlangroupGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("plangroup >=", value, "plangroup");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPlangroupLessThan(String value) {
|
||||
addCriterion("plangroup <", value, "plangroup");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPlangroupLessThanOrEqualTo(String value) {
|
||||
addCriterion("plangroup <=", value, "plangroup");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPlangroupLike(String value) {
|
||||
addCriterion("plangroup like", value, "plangroup");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPlangroupNotLike(String value) {
|
||||
addCriterion("plangroup not like", value, "plangroup");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPlangroupIn(List<String> values) {
|
||||
addCriterion("plangroup in", values, "plangroup");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPlangroupNotIn(List<String> values) {
|
||||
addCriterion("plangroup not in", values, "plangroup");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPlangroupBetween(String value1, String value2) {
|
||||
addCriterion("plangroup between", value1, value2, "plangroup");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPlangroupNotBetween(String value1, String value2) {
|
||||
addCriterion("plangroup not between", value1, value2, "plangroup");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkIsNull() {
|
||||
addCriterion("remark is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkIsNotNull() {
|
||||
addCriterion("remark is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkEqualTo(String value) {
|
||||
addCriterion("remark =", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkNotEqualTo(String value) {
|
||||
addCriterion("remark <>", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkGreaterThan(String value) {
|
||||
addCriterion("remark >", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("remark >=", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkLessThan(String value) {
|
||||
addCriterion("remark <", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkLessThanOrEqualTo(String value) {
|
||||
addCriterion("remark <=", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkLike(String value) {
|
||||
addCriterion("remark like", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkNotLike(String value) {
|
||||
addCriterion("remark not like", value, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkIn(List<String> values) {
|
||||
addCriterion("remark in", values, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkNotIn(List<String> values) {
|
||||
addCriterion("remark not in", values, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkBetween(String value1, String value2) {
|
||||
addCriterion("remark between", value1, value2, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andRemarkNotBetween(String value1, String value2) {
|
||||
addCriterion("remark not between", value1, value2, "remark");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreatetimeIsNull() {
|
||||
addCriterion("createtime is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreatetimeIsNotNull() {
|
||||
addCriterion("createtime is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreatetimeEqualTo(Date value) {
|
||||
addCriterion("createtime =", value, "createtime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreatetimeNotEqualTo(Date value) {
|
||||
addCriterion("createtime <>", value, "createtime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreatetimeGreaterThan(Date value) {
|
||||
addCriterion("createtime >", value, "createtime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreatetimeGreaterThanOrEqualTo(Date value) {
|
||||
addCriterion("createtime >=", value, "createtime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreatetimeLessThan(Date value) {
|
||||
addCriterion("createtime <", value, "createtime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreatetimeLessThanOrEqualTo(Date value) {
|
||||
addCriterion("createtime <=", value, "createtime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreatetimeIn(List<Date> values) {
|
||||
addCriterion("createtime in", values, "createtime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreatetimeNotIn(List<Date> values) {
|
||||
addCriterion("createtime not in", values, "createtime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreatetimeBetween(Date value1, Date value2) {
|
||||
addCriterion("createtime between", value1, value2, "createtime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andCreatetimeNotBetween(Date value1, Date value2) {
|
||||
addCriterion("createtime not between", value1, value2, "createtime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusIsNull() {
|
||||
addCriterion("status is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusIsNotNull() {
|
||||
addCriterion("status is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusEqualTo(Integer value) {
|
||||
addCriterion("status =", value, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusNotEqualTo(Integer value) {
|
||||
addCriterion("status <>", value, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusGreaterThan(Integer value) {
|
||||
addCriterion("status >", value, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusGreaterThanOrEqualTo(Integer value) {
|
||||
addCriterion("status >=", value, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusLessThan(Integer value) {
|
||||
addCriterion("status <", value, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusLessThanOrEqualTo(Integer value) {
|
||||
addCriterion("status <=", value, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusIn(List<Integer> values) {
|
||||
addCriterion("status in", values, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusNotIn(List<Integer> values) {
|
||||
addCriterion("status not in", values, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusBetween(Integer value1, Integer value2) {
|
||||
addCriterion("status between", value1, value2, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusNotBetween(Integer value1, Integer value2) {
|
||||
addCriterion("status not between", value1, value2, "status");
|
||||
return (Criteria) this;
|
||||
}
|
||||
}
|
||||
|
||||
public static class Criteria extends GeneratedCriteria {
|
||||
|
||||
protected Criteria() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
||||
public static class Criterion {
|
||||
private String condition;
|
||||
|
||||
private Object value;
|
||||
|
||||
private Object secondValue;
|
||||
|
||||
private boolean noValue;
|
||||
|
||||
private boolean singleValue;
|
||||
|
||||
private boolean betweenValue;
|
||||
|
||||
private boolean listValue;
|
||||
|
||||
private String typeHandler;
|
||||
|
||||
public String getCondition() {
|
||||
return condition;
|
||||
}
|
||||
|
||||
public Object getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public Object getSecondValue() {
|
||||
return secondValue;
|
||||
}
|
||||
|
||||
public boolean isNoValue() {
|
||||
return noValue;
|
||||
}
|
||||
|
||||
public boolean isSingleValue() {
|
||||
return singleValue;
|
||||
}
|
||||
|
||||
public boolean isBetweenValue() {
|
||||
return betweenValue;
|
||||
}
|
||||
|
||||
public boolean isListValue() {
|
||||
return listValue;
|
||||
}
|
||||
|
||||
public String getTypeHandler() {
|
||||
return typeHandler;
|
||||
}
|
||||
|
||||
protected Criterion(String condition) {
|
||||
super();
|
||||
this.condition = condition;
|
||||
this.typeHandler = null;
|
||||
this.noValue = true;
|
||||
}
|
||||
|
||||
protected Criterion(String condition, Object value, String typeHandler) {
|
||||
super();
|
||||
this.condition = condition;
|
||||
this.value = value;
|
||||
this.typeHandler = typeHandler;
|
||||
if (value instanceof List<?>) {
|
||||
this.listValue = true;
|
||||
} else {
|
||||
this.singleValue = true;
|
||||
}
|
||||
}
|
||||
|
||||
protected Criterion(String condition, Object value) {
|
||||
this(condition, value, null);
|
||||
}
|
||||
|
||||
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
|
||||
super();
|
||||
this.condition = condition;
|
||||
this.value = value;
|
||||
this.secondValue = secondValue;
|
||||
this.typeHandler = typeHandler;
|
||||
this.betweenValue = true;
|
||||
}
|
||||
|
||||
protected Criterion(String condition, Object value, Object secondValue) {
|
||||
this(condition, value, secondValue, null);
|
||||
}
|
||||
}
|
||||
}
|
@ -1,23 +1,12 @@
|
||||
package osc.git.eh3.test;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.net.URLDecoder;
|
||||
import java.net.URLEncoder;
|
||||
import java.text.ParseException;
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.util.Arrays;
|
||||
import java.util.Calendar;
|
||||
import java.util.Date;
|
||||
import java.util.HashSet;
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import java.util.UUID;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
import net.sf.json.JSONArray;
|
||||
import net.sf.json.JSONObject;
|
||||
import osc.git.eh3.utils.AESTool;
|
||||
import osc.git.eh3.utils.Base64;
|
||||
|
||||
public class TestCode {
|
||||
|
||||
@ -338,22 +327,43 @@ public class TestCode {
|
||||
// System.out.println(String.valueOf(str) == String.valueOf("null"));
|
||||
|
||||
|
||||
String sr = "2016-05-25 00:39:33,285 zanadu INFO \"39.159.247.16\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4\" \"http://site.pxene.com/Audi2016Q2Wap/?bid=7ef9ab83e32c4f9c80312b92fba261b1&mapid=0055cb29-dee1-4e77-81bb-0991d2d644c8\" \"load success:Audi load success:bid=7ef9ab83e32c4f9c80312b92fba261b1&mapid=0055cb29-dee1-4e77-81bb-0991d2d644c8\"";
|
||||
String[] split = sr.split("\"");
|
||||
for (String s1 : split) {
|
||||
System.out.println(s1);
|
||||
}
|
||||
//String sr = "2016-05-25 00:39:33,285 zanadu INFO \"39.159.247.16\" \"Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4\" \"http://site.pxene.com/Audi2016Q2Wap/?bid=7ef9ab83e32c4f9c80312b92fba261b1&mapid=0055cb29-dee1-4e77-81bb-0991d2d644c8\" \"load success:Audi load success:bid=7ef9ab83e32c4f9c80312b92fba261b1&mapid=0055cb29-dee1-4e77-81bb-0991d2d644c8\"";
|
||||
//String[] split = sr.split("\"");
|
||||
//for (String s1 : split) {
|
||||
// System.out.println(s1);
|
||||
//}
|
||||
//
|
||||
//
|
||||
//String date = "Mon May 30 14:42:42 GMT+08:00 2016";
|
||||
//System.out.println(date);
|
||||
//
|
||||
//SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
||||
//SimpleDateFormat sdf1 = new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy", java.util.Locale.US);
|
||||
//
|
||||
//System.out.println(sdf.format(sdf1.parse(date)));
|
||||
//
|
||||
//System.out.println("可吉可吉");
|
||||
|
||||
//JSONObject json = new JSONObject();
|
||||
//String ss = "233";
|
||||
//json.put("d","["+ss+"]");
|
||||
//System.out.println(json);
|
||||
//System.out.println(Integer.parseInt("110000"));
|
||||
|
||||
String date = "Mon May 30 14:42:42 GMT+08:00 2016";
|
||||
System.out.println(date);
|
||||
//SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
||||
//Calendar cl = Calendar.getInstance();
|
||||
//cl.setTime(new Date());
|
||||
//cl.add(Calendar.DAY_OF_MONTH,-1);
|
||||
//String nowStr = sdf.format(cl.getTime());
|
||||
//System.out.println(nowStr);
|
||||
|
||||
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
||||
SimpleDateFormat sdf1 = new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy", java.util.Locale.US);
|
||||
Calendar calendar = Calendar.getInstance();
|
||||
calendar.set(Calendar.HOUR_OF_DAY, 0); // 控制时
|
||||
calendar.set(Calendar.MINUTE, 0); // 控制分
|
||||
calendar.set(Calendar.SECOND, 1); // 控制秒
|
||||
|
||||
System.out.println(sdf.format(sdf1.parse(date)));
|
||||
|
||||
System.out.println("可吉可吉");
|
||||
Date time = calendar.getTime(); // 得出执行任务的时间,此处为今天的00:00:01
|
||||
System.out.println(time);
|
||||
}
|
||||
|
||||
public static Long parseDate(String s) {
|
||||
|
@ -23,7 +23,7 @@
|
||||
<javaClientGenerator type="XMLMAPPER" targetPackage="com.pxene.dsp.archer.dao" targetProject="src/main/java">
|
||||
<property name="enableSubPackages" value="true"/>
|
||||
</javaClientGenerator>
|
||||
<table tableName="dsp_t_operate_logs" domainObjectName="OperateLogsModel" enableCountByExample="true" enableUpdateByExample="true" enableDeleteByExample="true" enableSelectByExample="true" selectByExampleQueryId="true" />
|
||||
<table tableName="dsp_t_ad_group_apptarget_filter" domainObjectName="AdGroupAppTargetFilterModel" enableCountByExample="true" enableUpdateByExample="true" enableDeleteByExample="true" enableSelectByExample="true" selectByExampleQueryId="true" />
|
||||
<!--
|
||||
<table tableName="dsp_t_advertiser" domainObjectName="AdvertiserModel" enableCountByExample="true" enableUpdateByExample="true" enableDeleteByExample="true" enableSelectByExample="true" selectByExampleQueryId="true" />
|
||||
<table tableName="dsp_t_open_request_data" domainObjectName="OpenRequestDataModel" enableCountByExample="true" enableUpdateByExample="true" enableDeleteByExample="true" enableSelectByExample="true" selectByExampleQueryId="true"></table>
|
||||
|
Loading…
Reference in New Issue
Block a user