parent
32ffe298d5
commit
4db8ade1cc
@ -0,0 +1,139 @@ |
||||
package com.hai.dao; |
||||
|
||||
import com.hai.entity.HighCouponAgentRecord; |
||||
import com.hai.entity.HighCouponAgentRecordExample; |
||||
import java.util.List; |
||||
import org.apache.ibatis.annotations.Delete; |
||||
import org.apache.ibatis.annotations.DeleteProvider; |
||||
import org.apache.ibatis.annotations.Insert; |
||||
import org.apache.ibatis.annotations.InsertProvider; |
||||
import org.apache.ibatis.annotations.Options; |
||||
import org.apache.ibatis.annotations.Param; |
||||
import org.apache.ibatis.annotations.Result; |
||||
import org.apache.ibatis.annotations.Results; |
||||
import org.apache.ibatis.annotations.Select; |
||||
import org.apache.ibatis.annotations.SelectProvider; |
||||
import org.apache.ibatis.annotations.Update; |
||||
import org.apache.ibatis.annotations.UpdateProvider; |
||||
import org.apache.ibatis.type.JdbcType; |
||||
import org.springframework.stereotype.Repository; |
||||
|
||||
/** |
||||
* |
||||
* 代码由工具生成,请勿修改!!! |
||||
* 如果需要扩展请在其父类进行扩展 |
||||
* |
||||
**/ |
||||
@Repository |
||||
public interface HighCouponAgentRecordMapper extends HighCouponAgentRecordMapperExt { |
||||
@SelectProvider(type=HighCouponAgentRecordSqlProvider.class, method="countByExample") |
||||
long countByExample(HighCouponAgentRecordExample example); |
||||
|
||||
@DeleteProvider(type=HighCouponAgentRecordSqlProvider.class, method="deleteByExample") |
||||
int deleteByExample(HighCouponAgentRecordExample example); |
||||
|
||||
@Delete({ |
||||
"delete from high_coupon_agent_record", |
||||
"where id = #{id,jdbcType=BIGINT}" |
||||
}) |
||||
int deleteByPrimaryKey(Long id); |
||||
|
||||
@Insert({ |
||||
"insert into high_coupon_agent_record (coupon_agent_id, coupon_id, ", |
||||
"coupon_name, sales_price, ", |
||||
"agent_id, agent_name, ", |
||||
"stock_count, create_time, ", |
||||
"remark, operator_id, ", |
||||
"operator_name, ext_1, ", |
||||
"ext_2, ext_3)", |
||||
"values (#{couponAgentId,jdbcType=BIGINT}, #{couponId,jdbcType=BIGINT}, ", |
||||
"#{couponName,jdbcType=VARCHAR}, #{salesPrice,jdbcType=DECIMAL}, ", |
||||
"#{agentId,jdbcType=BIGINT}, #{agentName,jdbcType=VARCHAR}, ", |
||||
"#{stockCount,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}, ", |
||||
"#{remark,jdbcType=VARCHAR}, #{operatorId,jdbcType=BIGINT}, ", |
||||
"#{operatorName,jdbcType=VARCHAR}, #{ext1,jdbcType=VARCHAR}, ", |
||||
"#{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})" |
||||
}) |
||||
@Options(useGeneratedKeys=true,keyProperty="id") |
||||
int insert(HighCouponAgentRecord record); |
||||
|
||||
@InsertProvider(type=HighCouponAgentRecordSqlProvider.class, method="insertSelective") |
||||
@Options(useGeneratedKeys=true,keyProperty="id") |
||||
int insertSelective(HighCouponAgentRecord record); |
||||
|
||||
@SelectProvider(type=HighCouponAgentRecordSqlProvider.class, method="selectByExample") |
||||
@Results({ |
||||
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), |
||||
@Result(column="coupon_agent_id", property="couponAgentId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="coupon_id", property="couponId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="coupon_name", property="couponName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="sales_price", property="salesPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="agent_id", property="agentId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="agent_name", property="agentName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="stock_count", property="stockCount", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="remark", property="remark", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="operator_id", property="operatorId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="operator_name", property="operatorName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) |
||||
}) |
||||
List<HighCouponAgentRecord> selectByExample(HighCouponAgentRecordExample example); |
||||
|
||||
@Select({ |
||||
"select", |
||||
"id, coupon_agent_id, coupon_id, coupon_name, sales_price, agent_id, agent_name, ", |
||||
"stock_count, create_time, remark, operator_id, operator_name, ext_1, ext_2, ", |
||||
"ext_3", |
||||
"from high_coupon_agent_record", |
||||
"where id = #{id,jdbcType=BIGINT}" |
||||
}) |
||||
@Results({ |
||||
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), |
||||
@Result(column="coupon_agent_id", property="couponAgentId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="coupon_id", property="couponId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="coupon_name", property="couponName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="sales_price", property="salesPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="agent_id", property="agentId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="agent_name", property="agentName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="stock_count", property="stockCount", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="remark", property="remark", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="operator_id", property="operatorId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="operator_name", property="operatorName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) |
||||
}) |
||||
HighCouponAgentRecord selectByPrimaryKey(Long id); |
||||
|
||||
@UpdateProvider(type=HighCouponAgentRecordSqlProvider.class, method="updateByExampleSelective") |
||||
int updateByExampleSelective(@Param("record") HighCouponAgentRecord record, @Param("example") HighCouponAgentRecordExample example); |
||||
|
||||
@UpdateProvider(type=HighCouponAgentRecordSqlProvider.class, method="updateByExample") |
||||
int updateByExample(@Param("record") HighCouponAgentRecord record, @Param("example") HighCouponAgentRecordExample example); |
||||
|
||||
@UpdateProvider(type=HighCouponAgentRecordSqlProvider.class, method="updateByPrimaryKeySelective") |
||||
int updateByPrimaryKeySelective(HighCouponAgentRecord record); |
||||
|
||||
@Update({ |
||||
"update high_coupon_agent_record", |
||||
"set coupon_agent_id = #{couponAgentId,jdbcType=BIGINT},", |
||||
"coupon_id = #{couponId,jdbcType=BIGINT},", |
||||
"coupon_name = #{couponName,jdbcType=VARCHAR},", |
||||
"sales_price = #{salesPrice,jdbcType=DECIMAL},", |
||||
"agent_id = #{agentId,jdbcType=BIGINT},", |
||||
"agent_name = #{agentName,jdbcType=VARCHAR},", |
||||
"stock_count = #{stockCount,jdbcType=INTEGER},", |
||||
"create_time = #{createTime,jdbcType=TIMESTAMP},", |
||||
"remark = #{remark,jdbcType=VARCHAR},", |
||||
"operator_id = #{operatorId,jdbcType=BIGINT},", |
||||
"operator_name = #{operatorName,jdbcType=VARCHAR},", |
||||
"ext_1 = #{ext1,jdbcType=VARCHAR},", |
||||
"ext_2 = #{ext2,jdbcType=VARCHAR},", |
||||
"ext_3 = #{ext3,jdbcType=VARCHAR}", |
||||
"where id = #{id,jdbcType=BIGINT}" |
||||
}) |
||||
int updateByPrimaryKey(HighCouponAgentRecord record); |
||||
} |
@ -0,0 +1,7 @@ |
||||
package com.hai.dao; |
||||
|
||||
/** |
||||
* mapper扩展类 |
||||
*/ |
||||
public interface HighCouponAgentRecordMapperExt { |
||||
} |
@ -0,0 +1,374 @@ |
||||
package com.hai.dao; |
||||
|
||||
import com.hai.entity.HighCouponAgentRecord; |
||||
import com.hai.entity.HighCouponAgentRecordExample.Criteria; |
||||
import com.hai.entity.HighCouponAgentRecordExample.Criterion; |
||||
import com.hai.entity.HighCouponAgentRecordExample; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
import org.apache.ibatis.jdbc.SQL; |
||||
|
||||
public class HighCouponAgentRecordSqlProvider { |
||||
|
||||
public String countByExample(HighCouponAgentRecordExample example) { |
||||
SQL sql = new SQL(); |
||||
sql.SELECT("count(*)").FROM("high_coupon_agent_record"); |
||||
applyWhere(sql, example, false); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String deleteByExample(HighCouponAgentRecordExample example) { |
||||
SQL sql = new SQL(); |
||||
sql.DELETE_FROM("high_coupon_agent_record"); |
||||
applyWhere(sql, example, false); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String insertSelective(HighCouponAgentRecord record) { |
||||
SQL sql = new SQL(); |
||||
sql.INSERT_INTO("high_coupon_agent_record"); |
||||
|
||||
if (record.getCouponAgentId() != null) { |
||||
sql.VALUES("coupon_agent_id", "#{couponAgentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCouponId() != null) { |
||||
sql.VALUES("coupon_id", "#{couponId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCouponName() != null) { |
||||
sql.VALUES("coupon_name", "#{couponName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getSalesPrice() != null) { |
||||
sql.VALUES("sales_price", "#{salesPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getAgentId() != null) { |
||||
sql.VALUES("agent_id", "#{agentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getAgentName() != null) { |
||||
sql.VALUES("agent_name", "#{agentName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStockCount() != null) { |
||||
sql.VALUES("stock_count", "#{stockCount,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.VALUES("create_time", "#{createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getRemark() != null) { |
||||
sql.VALUES("remark", "#{remark,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getOperatorId() != null) { |
||||
sql.VALUES("operator_id", "#{operatorId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getOperatorName() != null) { |
||||
sql.VALUES("operator_name", "#{operatorName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt1() != null) { |
||||
sql.VALUES("ext_1", "#{ext1,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt2() != null) { |
||||
sql.VALUES("ext_2", "#{ext2,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt3() != null) { |
||||
sql.VALUES("ext_3", "#{ext3,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String selectByExample(HighCouponAgentRecordExample example) { |
||||
SQL sql = new SQL(); |
||||
if (example != null && example.isDistinct()) { |
||||
sql.SELECT_DISTINCT("id"); |
||||
} else { |
||||
sql.SELECT("id"); |
||||
} |
||||
sql.SELECT("coupon_agent_id"); |
||||
sql.SELECT("coupon_id"); |
||||
sql.SELECT("coupon_name"); |
||||
sql.SELECT("sales_price"); |
||||
sql.SELECT("agent_id"); |
||||
sql.SELECT("agent_name"); |
||||
sql.SELECT("stock_count"); |
||||
sql.SELECT("create_time"); |
||||
sql.SELECT("remark"); |
||||
sql.SELECT("operator_id"); |
||||
sql.SELECT("operator_name"); |
||||
sql.SELECT("ext_1"); |
||||
sql.SELECT("ext_2"); |
||||
sql.SELECT("ext_3"); |
||||
sql.FROM("high_coupon_agent_record"); |
||||
applyWhere(sql, example, false); |
||||
|
||||
if (example != null && example.getOrderByClause() != null) { |
||||
sql.ORDER_BY(example.getOrderByClause()); |
||||
} |
||||
|
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String updateByExampleSelective(Map<String, Object> parameter) { |
||||
HighCouponAgentRecord record = (HighCouponAgentRecord) parameter.get("record"); |
||||
HighCouponAgentRecordExample example = (HighCouponAgentRecordExample) parameter.get("example"); |
||||
|
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("high_coupon_agent_record"); |
||||
|
||||
if (record.getId() != null) { |
||||
sql.SET("id = #{record.id,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCouponAgentId() != null) { |
||||
sql.SET("coupon_agent_id = #{record.couponAgentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCouponId() != null) { |
||||
sql.SET("coupon_id = #{record.couponId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCouponName() != null) { |
||||
sql.SET("coupon_name = #{record.couponName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getSalesPrice() != null) { |
||||
sql.SET("sales_price = #{record.salesPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getAgentId() != null) { |
||||
sql.SET("agent_id = #{record.agentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getAgentName() != null) { |
||||
sql.SET("agent_name = #{record.agentName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStockCount() != null) { |
||||
sql.SET("stock_count = #{record.stockCount,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getRemark() != null) { |
||||
sql.SET("remark = #{record.remark,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getOperatorId() != null) { |
||||
sql.SET("operator_id = #{record.operatorId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getOperatorName() != null) { |
||||
sql.SET("operator_name = #{record.operatorName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt1() != null) { |
||||
sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt2() != null) { |
||||
sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt3() != null) { |
||||
sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
applyWhere(sql, example, true); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String updateByExample(Map<String, Object> parameter) { |
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("high_coupon_agent_record"); |
||||
|
||||
sql.SET("id = #{record.id,jdbcType=BIGINT}"); |
||||
sql.SET("coupon_agent_id = #{record.couponAgentId,jdbcType=BIGINT}"); |
||||
sql.SET("coupon_id = #{record.couponId,jdbcType=BIGINT}"); |
||||
sql.SET("coupon_name = #{record.couponName,jdbcType=VARCHAR}"); |
||||
sql.SET("sales_price = #{record.salesPrice,jdbcType=DECIMAL}"); |
||||
sql.SET("agent_id = #{record.agentId,jdbcType=BIGINT}"); |
||||
sql.SET("agent_name = #{record.agentName,jdbcType=VARCHAR}"); |
||||
sql.SET("stock_count = #{record.stockCount,jdbcType=INTEGER}"); |
||||
sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); |
||||
sql.SET("remark = #{record.remark,jdbcType=VARCHAR}"); |
||||
sql.SET("operator_id = #{record.operatorId,jdbcType=BIGINT}"); |
||||
sql.SET("operator_name = #{record.operatorName,jdbcType=VARCHAR}"); |
||||
sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); |
||||
sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); |
||||
sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); |
||||
|
||||
HighCouponAgentRecordExample example = (HighCouponAgentRecordExample) parameter.get("example"); |
||||
applyWhere(sql, example, true); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String updateByPrimaryKeySelective(HighCouponAgentRecord record) { |
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("high_coupon_agent_record"); |
||||
|
||||
if (record.getCouponAgentId() != null) { |
||||
sql.SET("coupon_agent_id = #{couponAgentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCouponId() != null) { |
||||
sql.SET("coupon_id = #{couponId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCouponName() != null) { |
||||
sql.SET("coupon_name = #{couponName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getSalesPrice() != null) { |
||||
sql.SET("sales_price = #{salesPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getAgentId() != null) { |
||||
sql.SET("agent_id = #{agentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getAgentName() != null) { |
||||
sql.SET("agent_name = #{agentName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStockCount() != null) { |
||||
sql.SET("stock_count = #{stockCount,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.SET("create_time = #{createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getRemark() != null) { |
||||
sql.SET("remark = #{remark,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getOperatorId() != null) { |
||||
sql.SET("operator_id = #{operatorId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getOperatorName() != null) { |
||||
sql.SET("operator_name = #{operatorName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt1() != null) { |
||||
sql.SET("ext_1 = #{ext1,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt2() != null) { |
||||
sql.SET("ext_2 = #{ext2,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt3() != null) { |
||||
sql.SET("ext_3 = #{ext3,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
sql.WHERE("id = #{id,jdbcType=BIGINT}"); |
||||
|
||||
return sql.toString(); |
||||
} |
||||
|
||||
protected void applyWhere(SQL sql, HighCouponAgentRecordExample example, boolean includeExamplePhrase) { |
||||
if (example == null) { |
||||
return; |
||||
} |
||||
|
||||
String parmPhrase1; |
||||
String parmPhrase1_th; |
||||
String parmPhrase2; |
||||
String parmPhrase2_th; |
||||
String parmPhrase3; |
||||
String parmPhrase3_th; |
||||
if (includeExamplePhrase) { |
||||
parmPhrase1 = "%s #{example.oredCriteria[%d].allCriteria[%d].value}"; |
||||
parmPhrase1_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; |
||||
parmPhrase2 = "%s #{example.oredCriteria[%d].allCriteria[%d].value} and #{example.oredCriteria[%d].criteria[%d].secondValue}"; |
||||
parmPhrase2_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{example.oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; |
||||
parmPhrase3 = "#{example.oredCriteria[%d].allCriteria[%d].value[%d]}"; |
||||
parmPhrase3_th = "#{example.oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; |
||||
} else { |
||||
parmPhrase1 = "%s #{oredCriteria[%d].allCriteria[%d].value}"; |
||||
parmPhrase1_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; |
||||
parmPhrase2 = "%s #{oredCriteria[%d].allCriteria[%d].value} and #{oredCriteria[%d].criteria[%d].secondValue}"; |
||||
parmPhrase2_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; |
||||
parmPhrase3 = "#{oredCriteria[%d].allCriteria[%d].value[%d]}"; |
||||
parmPhrase3_th = "#{oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; |
||||
} |
||||
|
||||
StringBuilder sb = new StringBuilder(); |
||||
List<Criteria> oredCriteria = example.getOredCriteria(); |
||||
boolean firstCriteria = true; |
||||
for (int i = 0; i < oredCriteria.size(); i++) { |
||||
Criteria criteria = oredCriteria.get(i); |
||||
if (criteria.isValid()) { |
||||
if (firstCriteria) { |
||||
firstCriteria = false; |
||||
} else { |
||||
sb.append(" or "); |
||||
} |
||||
|
||||
sb.append('('); |
||||
List<Criterion> criterions = criteria.getAllCriteria(); |
||||
boolean firstCriterion = true; |
||||
for (int j = 0; j < criterions.size(); j++) { |
||||
Criterion criterion = criterions.get(j); |
||||
if (firstCriterion) { |
||||
firstCriterion = false; |
||||
} else { |
||||
sb.append(" and "); |
||||
} |
||||
|
||||
if (criterion.isNoValue()) { |
||||
sb.append(criterion.getCondition()); |
||||
} else if (criterion.isSingleValue()) { |
||||
if (criterion.getTypeHandler() == null) { |
||||
sb.append(String.format(parmPhrase1, criterion.getCondition(), i, j)); |
||||
} else { |
||||
sb.append(String.format(parmPhrase1_th, criterion.getCondition(), i, j,criterion.getTypeHandler())); |
||||
} |
||||
} else if (criterion.isBetweenValue()) { |
||||
if (criterion.getTypeHandler() == null) { |
||||
sb.append(String.format(parmPhrase2, criterion.getCondition(), i, j, i, j)); |
||||
} else { |
||||
sb.append(String.format(parmPhrase2_th, criterion.getCondition(), i, j, criterion.getTypeHandler(), i, j, criterion.getTypeHandler())); |
||||
} |
||||
} else if (criterion.isListValue()) { |
||||
sb.append(criterion.getCondition()); |
||||
sb.append(" ("); |
||||
List<?> listItems = (List<?>) criterion.getValue(); |
||||
boolean comma = false; |
||||
for (int k = 0; k < listItems.size(); k++) { |
||||
if (comma) { |
||||
sb.append(", "); |
||||
} else { |
||||
comma = true; |
||||
} |
||||
if (criterion.getTypeHandler() == null) { |
||||
sb.append(String.format(parmPhrase3, i, j, k)); |
||||
} else { |
||||
sb.append(String.format(parmPhrase3_th, i, j, k, criterion.getTypeHandler())); |
||||
} |
||||
} |
||||
sb.append(')'); |
||||
} |
||||
} |
||||
sb.append(')'); |
||||
} |
||||
} |
||||
|
||||
if (sb.length() > 0) { |
||||
sql.WHERE(sb.toString()); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,281 @@ |
||||
package com.hai.entity; |
||||
|
||||
import java.io.Serializable; |
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* high_coupon_agent_record |
||||
* @author |
||||
*/ |
||||
/** |
||||
* |
||||
* 代码由工具生成 |
||||
* |
||||
**/ |
||||
public class HighCouponAgentRecord implements Serializable { |
||||
/** |
||||
* 主键 |
||||
*/ |
||||
private Long id; |
||||
|
||||
/** |
||||
* 卡券和代理商的id |
||||
*/ |
||||
private Long couponAgentId; |
||||
|
||||
/** |
||||
* 优惠券id |
||||
*/ |
||||
private Long couponId; |
||||
|
||||
/** |
||||
* 卡券名称 |
||||
*/ |
||||
private String couponName; |
||||
|
||||
/** |
||||
* 卡券销售价格 |
||||
*/ |
||||
private BigDecimal salesPrice; |
||||
|
||||
/** |
||||
* 代理商id |
||||
*/ |
||||
private Long agentId; |
||||
|
||||
/** |
||||
* 代理商名称 |
||||
*/ |
||||
private String agentName; |
||||
|
||||
/** |
||||
* 库存数量 |
||||
*/ |
||||
private Integer stockCount; |
||||
|
||||
/** |
||||
* 创建时间 |
||||
*/ |
||||
private Date createTime; |
||||
|
||||
/** |
||||
* 备注 |
||||
*/ |
||||
private String remark; |
||||
|
||||
/** |
||||
* 操作人 |
||||
*/ |
||||
private Long operatorId; |
||||
|
||||
/** |
||||
* 操作人名称 |
||||
*/ |
||||
private String operatorName; |
||||
|
||||
private String ext1; |
||||
|
||||
private String ext2; |
||||
|
||||
private String ext3; |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
public Long getId() { |
||||
return id; |
||||
} |
||||
|
||||
public void setId(Long id) { |
||||
this.id = id; |
||||
} |
||||
|
||||
public Long getCouponAgentId() { |
||||
return couponAgentId; |
||||
} |
||||
|
||||
public void setCouponAgentId(Long couponAgentId) { |
||||
this.couponAgentId = couponAgentId; |
||||
} |
||||
|
||||
public Long getCouponId() { |
||||
return couponId; |
||||
} |
||||
|
||||
public void setCouponId(Long couponId) { |
||||
this.couponId = couponId; |
||||
} |
||||
|
||||
public String getCouponName() { |
||||
return couponName; |
||||
} |
||||
|
||||
public void setCouponName(String couponName) { |
||||
this.couponName = couponName; |
||||
} |
||||
|
||||
public BigDecimal getSalesPrice() { |
||||
return salesPrice; |
||||
} |
||||
|
||||
public void setSalesPrice(BigDecimal salesPrice) { |
||||
this.salesPrice = salesPrice; |
||||
} |
||||
|
||||
public Long getAgentId() { |
||||
return agentId; |
||||
} |
||||
|
||||
public void setAgentId(Long agentId) { |
||||
this.agentId = agentId; |
||||
} |
||||
|
||||
public String getAgentName() { |
||||
return agentName; |
||||
} |
||||
|
||||
public void setAgentName(String agentName) { |
||||
this.agentName = agentName; |
||||
} |
||||
|
||||
public Integer getStockCount() { |
||||
return stockCount; |
||||
} |
||||
|
||||
public void setStockCount(Integer stockCount) { |
||||
this.stockCount = stockCount; |
||||
} |
||||
|
||||
public Date getCreateTime() { |
||||
return createTime; |
||||
} |
||||
|
||||
public void setCreateTime(Date createTime) { |
||||
this.createTime = createTime; |
||||
} |
||||
|
||||
public String getRemark() { |
||||
return remark; |
||||
} |
||||
|
||||
public void setRemark(String remark) { |
||||
this.remark = remark; |
||||
} |
||||
|
||||
public Long getOperatorId() { |
||||
return operatorId; |
||||
} |
||||
|
||||
public void setOperatorId(Long operatorId) { |
||||
this.operatorId = operatorId; |
||||
} |
||||
|
||||
public String getOperatorName() { |
||||
return operatorName; |
||||
} |
||||
|
||||
public void setOperatorName(String operatorName) { |
||||
this.operatorName = operatorName; |
||||
} |
||||
|
||||
public String getExt1() { |
||||
return ext1; |
||||
} |
||||
|
||||
public void setExt1(String ext1) { |
||||
this.ext1 = ext1; |
||||
} |
||||
|
||||
public String getExt2() { |
||||
return ext2; |
||||
} |
||||
|
||||
public void setExt2(String ext2) { |
||||
this.ext2 = ext2; |
||||
} |
||||
|
||||
public String getExt3() { |
||||
return ext3; |
||||
} |
||||
|
||||
public void setExt3(String ext3) { |
||||
this.ext3 = ext3; |
||||
} |
||||
|
||||
@Override |
||||
public boolean equals(Object that) { |
||||
if (this == that) { |
||||
return true; |
||||
} |
||||
if (that == null) { |
||||
return false; |
||||
} |
||||
if (getClass() != that.getClass()) { |
||||
return false; |
||||
} |
||||
HighCouponAgentRecord other = (HighCouponAgentRecord) that; |
||||
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) |
||||
&& (this.getCouponAgentId() == null ? other.getCouponAgentId() == null : this.getCouponAgentId().equals(other.getCouponAgentId())) |
||||
&& (this.getCouponId() == null ? other.getCouponId() == null : this.getCouponId().equals(other.getCouponId())) |
||||
&& (this.getCouponName() == null ? other.getCouponName() == null : this.getCouponName().equals(other.getCouponName())) |
||||
&& (this.getSalesPrice() == null ? other.getSalesPrice() == null : this.getSalesPrice().equals(other.getSalesPrice())) |
||||
&& (this.getAgentId() == null ? other.getAgentId() == null : this.getAgentId().equals(other.getAgentId())) |
||||
&& (this.getAgentName() == null ? other.getAgentName() == null : this.getAgentName().equals(other.getAgentName())) |
||||
&& (this.getStockCount() == null ? other.getStockCount() == null : this.getStockCount().equals(other.getStockCount())) |
||||
&& (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime())) |
||||
&& (this.getRemark() == null ? other.getRemark() == null : this.getRemark().equals(other.getRemark())) |
||||
&& (this.getOperatorId() == null ? other.getOperatorId() == null : this.getOperatorId().equals(other.getOperatorId())) |
||||
&& (this.getOperatorName() == null ? other.getOperatorName() == null : this.getOperatorName().equals(other.getOperatorName())) |
||||
&& (this.getExt1() == null ? other.getExt1() == null : this.getExt1().equals(other.getExt1())) |
||||
&& (this.getExt2() == null ? other.getExt2() == null : this.getExt2().equals(other.getExt2())) |
||||
&& (this.getExt3() == null ? other.getExt3() == null : this.getExt3().equals(other.getExt3())); |
||||
} |
||||
|
||||
@Override |
||||
public int hashCode() { |
||||
final int prime = 31; |
||||
int result = 1; |
||||
result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); |
||||
result = prime * result + ((getCouponAgentId() == null) ? 0 : getCouponAgentId().hashCode()); |
||||
result = prime * result + ((getCouponId() == null) ? 0 : getCouponId().hashCode()); |
||||
result = prime * result + ((getCouponName() == null) ? 0 : getCouponName().hashCode()); |
||||
result = prime * result + ((getSalesPrice() == null) ? 0 : getSalesPrice().hashCode()); |
||||
result = prime * result + ((getAgentId() == null) ? 0 : getAgentId().hashCode()); |
||||
result = prime * result + ((getAgentName() == null) ? 0 : getAgentName().hashCode()); |
||||
result = prime * result + ((getStockCount() == null) ? 0 : getStockCount().hashCode()); |
||||
result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); |
||||
result = prime * result + ((getRemark() == null) ? 0 : getRemark().hashCode()); |
||||
result = prime * result + ((getOperatorId() == null) ? 0 : getOperatorId().hashCode()); |
||||
result = prime * result + ((getOperatorName() == null) ? 0 : getOperatorName().hashCode()); |
||||
result = prime * result + ((getExt1() == null) ? 0 : getExt1().hashCode()); |
||||
result = prime * result + ((getExt2() == null) ? 0 : getExt2().hashCode()); |
||||
result = prime * result + ((getExt3() == null) ? 0 : getExt3().hashCode()); |
||||
return result; |
||||
} |
||||
|
||||
@Override |
||||
public String toString() { |
||||
StringBuilder sb = new StringBuilder(); |
||||
sb.append(getClass().getSimpleName()); |
||||
sb.append(" ["); |
||||
sb.append("Hash = ").append(hashCode()); |
||||
sb.append(", id=").append(id); |
||||
sb.append(", couponAgentId=").append(couponAgentId); |
||||
sb.append(", couponId=").append(couponId); |
||||
sb.append(", couponName=").append(couponName); |
||||
sb.append(", salesPrice=").append(salesPrice); |
||||
sb.append(", agentId=").append(agentId); |
||||
sb.append(", agentName=").append(agentName); |
||||
sb.append(", stockCount=").append(stockCount); |
||||
sb.append(", createTime=").append(createTime); |
||||
sb.append(", remark=").append(remark); |
||||
sb.append(", operatorId=").append(operatorId); |
||||
sb.append(", operatorName=").append(operatorName); |
||||
sb.append(", ext1=").append(ext1); |
||||
sb.append(", ext2=").append(ext2); |
||||
sb.append(", ext3=").append(ext3); |
||||
sb.append(", serialVersionUID=").append(serialVersionUID); |
||||
sb.append("]"); |
||||
return sb.toString(); |
||||
} |
||||
} |
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue