diff --git a/src/main/java/com/pxene/dsp/archer/dao/AdGroupAppTargetFilterDao.java b/src/main/java/com/pxene/dsp/archer/dao/AdGroupAppTargetFilterDao.java new file mode 100644 index 0000000..0104e84 --- /dev/null +++ b/src/main/java/com/pxene/dsp/archer/dao/AdGroupAppTargetFilterDao.java @@ -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 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> selectAdxByAppParentCode(String parentcode); +} \ No newline at end of file diff --git a/src/main/java/com/pxene/dsp/archer/dao/AdGroupAppTargetFilterDao.xml b/src/main/java/com/pxene/dsp/archer/dao/AdGroupAppTargetFilterDao.xml new file mode 100644 index 0000000..9c4a144 --- /dev/null +++ b/src/main/java/com/pxene/dsp/archer/dao/AdGroupAppTargetFilterDao.xml @@ -0,0 +1,254 @@ + + + + + + + + + + + + + + + + + + + + + and ${criterion.condition} + + + and ${criterion.condition} #{criterion.value} + + + and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} + + + and ${criterion.condition} + + #{listItem} + + + + + + + + + + + + + + + + + + and ${criterion.condition} + + + and ${criterion.condition} #{criterion.value} + + + and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} + + + and ${criterion.condition} + + #{listItem} + + + + + + + + + + + id, groupid, appcategory, keyword, filterValLi, searchValLi, adxid + + + + + delete from dsp_t_ad_group_apptarget_filter + where id = #{id,jdbcType=VARCHAR} + + + delete from dsp_t_ad_group_apptarget_filter + + + + + + 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 into dsp_t_ad_group_apptarget_filter + + + id, + + + groupid, + + + appcategory, + + + keyword, + + + filterValLi, + + + searchValLi, + + + adxid, + + + + + #{id,jdbcType=VARCHAR}, + + + #{groupid,jdbcType=VARCHAR}, + + + #{appcategory,jdbcType=VARCHAR}, + + + #{keyword,jdbcType=VARCHAR}, + + + #{filtervalli,jdbcType=VARCHAR}, + + + #{searchvalli,jdbcType=VARCHAR}, + + + #{adxid,jdbcType=VARCHAR}, + + + + + + update dsp_t_ad_group_apptarget_filter + + + 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}, + + + + + + + + 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} + + + + + + update dsp_t_ad_group_apptarget_filter + + + 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 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} + + + \ No newline at end of file diff --git a/src/main/java/com/pxene/dsp/archer/dao/OperateLogsDao.java b/src/main/java/com/pxene/dsp/archer/dao/OperateLogsDao.java deleted file mode 100644 index 56c0251..0000000 --- a/src/main/java/com/pxene/dsp/archer/dao/OperateLogsDao.java +++ /dev/null @@ -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 selectByExampleWithBLOBs(OperateLogsModelExample example); - - List 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); -} \ No newline at end of file diff --git a/src/main/java/com/pxene/dsp/archer/dao/OperateLogsDao.xml b/src/main/java/com/pxene/dsp/archer/dao/OperateLogsDao.xml deleted file mode 100644 index 98749f7..0000000 --- a/src/main/java/com/pxene/dsp/archer/dao/OperateLogsDao.xml +++ /dev/null @@ -1,342 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - and ${criterion.condition} - - - and ${criterion.condition} #{criterion.value} - - - and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} - - - and ${criterion.condition} - - #{listItem} - - - - - - - - - - - - - - - - - - and ${criterion.condition} - - - and ${criterion.condition} #{criterion.value} - - - and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} - - - and ${criterion.condition} - - #{listItem} - - - - - - - - - - - id, userid, usertype, ip, operate, plangroup, remark, createtime, status - - - details - - - - - - delete from dsp_t_operate_logs - where id = #{id,jdbcType=VARCHAR} - - - delete from dsp_t_operate_logs - - - - - - 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 into dsp_t_operate_logs - - - id, - - - userid, - - - usertype, - - - ip, - - - operate, - - - plangroup, - - - remark, - - - createtime, - - - status, - - - details, - - - - - #{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}, - - - - - - update dsp_t_operate_logs - - - 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}, - - - - - - - - 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} - - - - - - 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} - - - - - - update dsp_t_operate_logs - - - 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 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 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} - - \ No newline at end of file diff --git a/src/main/java/com/pxene/dsp/archer/model/OperateLogsModel.java b/src/main/java/com/pxene/dsp/archer/model/OperateLogsModel.java deleted file mode 100644 index bda8d18..0000000 --- a/src/main/java/com/pxene/dsp/archer/model/OperateLogsModel.java +++ /dev/null @@ -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(); - } -} \ No newline at end of file diff --git a/src/main/java/com/pxene/dsp/archer/model/OperateLogsModelExample.java b/src/main/java/com/pxene/dsp/archer/model/OperateLogsModelExample.java deleted file mode 100644 index 9a79f27..0000000 --- a/src/main/java/com/pxene/dsp/archer/model/OperateLogsModelExample.java +++ /dev/null @@ -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 oredCriteria; - - public OperateLogsModelExample() { - oredCriteria = new ArrayList(); - } - - 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 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 criteria; - - protected GeneratedCriteria() { - super(); - criteria = new ArrayList(); - } - - public boolean isValid() { - return criteria.size() > 0; - } - - public List getAllCriteria() { - return criteria; - } - - public List 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 values) { - addCriterion("id in", values, "id"); - return (Criteria) this; - } - - public Criteria andIdNotIn(List 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 values) { - addCriterion("userid in", values, "userid"); - return (Criteria) this; - } - - public Criteria andUseridNotIn(List 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 values) { - addCriterion("usertype in", values, "usertype"); - return (Criteria) this; - } - - public Criteria andUsertypeNotIn(List 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 values) { - addCriterion("ip in", values, "ip"); - return (Criteria) this; - } - - public Criteria andIpNotIn(List 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 values) { - addCriterion("operate in", values, "operate"); - return (Criteria) this; - } - - public Criteria andOperateNotIn(List 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 values) { - addCriterion("plangroup in", values, "plangroup"); - return (Criteria) this; - } - - public Criteria andPlangroupNotIn(List 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 values) { - addCriterion("remark in", values, "remark"); - return (Criteria) this; - } - - public Criteria andRemarkNotIn(List 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 values) { - addCriterion("createtime in", values, "createtime"); - return (Criteria) this; - } - - public Criteria andCreatetimeNotIn(List 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 values) { - addCriterion("status in", values, "status"); - return (Criteria) this; - } - - public Criteria andStatusNotIn(List 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); - } - } -} \ No newline at end of file diff --git a/src/main/java/osc/git/eh3/test/TestCode.java b/src/main/java/osc/git/eh3/test/TestCode.java index 98f9e5a..ed39f13 100644 --- a/src/main/java/osc/git/eh3/test/TestCode.java +++ b/src/main/java/osc/git/eh3/test/TestCode.java @@ -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) { diff --git a/src/main/resources/generatorConfig.xml b/src/main/resources/generatorConfig.xml index 509456a..0b8baa4 100644 --- a/src/main/resources/generatorConfig.xml +++ b/src/main/resources/generatorConfig.xml @@ -23,7 +23,7 @@ - +