new-dev
parent
83a6d1561f
commit
2f5493af1d
File diff suppressed because one or more lines are too long
@ -1,89 +0,0 @@ |
||||
package com.hai.dao; |
||||
|
||||
import com.hai.entity.TbRechargePayOrder; |
||||
import com.hai.entity.TbRechargePayOrderExample; |
||||
import java.util.List; |
||||
import org.apache.ibatis.annotations.DeleteProvider; |
||||
import org.apache.ibatis.annotations.Insert; |
||||
import org.apache.ibatis.annotations.InsertProvider; |
||||
import org.apache.ibatis.annotations.Param; |
||||
import org.apache.ibatis.annotations.Result; |
||||
import org.apache.ibatis.annotations.Results; |
||||
import org.apache.ibatis.annotations.SelectProvider; |
||||
import org.apache.ibatis.annotations.UpdateProvider; |
||||
import org.apache.ibatis.type.JdbcType; |
||||
import org.springframework.stereotype.Repository; |
||||
|
||||
/** |
||||
* |
||||
* 代码由工具生成,请勿修改!!! |
||||
* 如果需要扩展请在其父类进行扩展 |
||||
* |
||||
**/ |
||||
@Repository |
||||
public interface TbRechargePayOrderMapper extends TbRechargePayOrderMapperExt { |
||||
@SelectProvider(type=TbRechargePayOrderSqlProvider.class, method="countByExample") |
||||
long countByExample(TbRechargePayOrderExample example); |
||||
|
||||
@DeleteProvider(type=TbRechargePayOrderSqlProvider.class, method="deleteByExample") |
||||
int deleteByExample(TbRechargePayOrderExample example); |
||||
|
||||
@Insert({ |
||||
"insert into tb_recharge_pay_order (rechargeId, phone, ", |
||||
"couNo, `status`, distributorId, ", |
||||
"validStartDate, validEndDate, ", |
||||
"distCouCount, couTypeCode, ", |
||||
"createtime, `createuser`, ", |
||||
"modifytime, modifyuser, ", |
||||
"preBalance, postBalance, ", |
||||
"billVersion, reconVersion, ", |
||||
"promoterId, access_type, ", |
||||
"staticCheckCode, use_shop)", |
||||
"values (#{rechargeid,jdbcType=VARCHAR}, #{phone,jdbcType=VARCHAR}, ", |
||||
"#{couno,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, #{distributorid,jdbcType=VARCHAR}, ", |
||||
"#{validstartdate,jdbcType=TIMESTAMP}, #{validenddate,jdbcType=TIMESTAMP}, ", |
||||
"#{distcoucount,jdbcType=VARCHAR}, #{coutypecode,jdbcType=VARCHAR}, ", |
||||
"#{createtime,jdbcType=TIMESTAMP}, #{createuser,jdbcType=VARCHAR}, ", |
||||
"#{modifytime,jdbcType=TIMESTAMP}, #{modifyuser,jdbcType=VARCHAR}, ", |
||||
"#{prebalance,jdbcType=DECIMAL}, #{postbalance,jdbcType=DECIMAL}, ", |
||||
"#{billversion,jdbcType=VARCHAR}, #{reconversion,jdbcType=VARCHAR}, ", |
||||
"#{promoterid,jdbcType=VARCHAR}, #{accessType,jdbcType=VARCHAR}, ", |
||||
"#{staticcheckcode,jdbcType=VARCHAR}, #{useShop,jdbcType=VARCHAR})" |
||||
}) |
||||
int insert(TbRechargePayOrder record); |
||||
|
||||
@InsertProvider(type=TbRechargePayOrderSqlProvider.class, method="insertSelective") |
||||
int insertSelective(TbRechargePayOrder record); |
||||
|
||||
@SelectProvider(type=TbRechargePayOrderSqlProvider.class, method="selectByExample") |
||||
@Results({ |
||||
@Result(column="rechargeId", property="rechargeid", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="phone", property="phone", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="couNo", property="couno", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="status", property="status", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="distributorId", property="distributorid", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="validStartDate", property="validstartdate", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="validEndDate", property="validenddate", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="distCouCount", property="distcoucount", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="couTypeCode", property="coutypecode", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="createtime", property="createtime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="createuser", property="createuser", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="modifytime", property="modifytime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="modifyuser", property="modifyuser", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="preBalance", property="prebalance", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="postBalance", property="postbalance", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="billVersion", property="billversion", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="reconVersion", property="reconversion", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="promoterId", property="promoterid", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="access_type", property="accessType", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="staticCheckCode", property="staticcheckcode", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="use_shop", property="useShop", jdbcType=JdbcType.VARCHAR) |
||||
}) |
||||
List<TbRechargePayOrder> selectByExample(TbRechargePayOrderExample example); |
||||
|
||||
@UpdateProvider(type=TbRechargePayOrderSqlProvider.class, method="updateByExampleSelective") |
||||
int updateByExampleSelective(@Param("record") TbRechargePayOrder record, @Param("example") TbRechargePayOrderExample example); |
||||
|
||||
@UpdateProvider(type=TbRechargePayOrderSqlProvider.class, method="updateByExample") |
||||
int updateByExample(@Param("record") TbRechargePayOrder record, @Param("example") TbRechargePayOrderExample example); |
||||
} |
@ -1,7 +0,0 @@ |
||||
package com.hai.dao; |
||||
|
||||
/** |
||||
* mapper扩展类 |
||||
*/ |
||||
public interface TbRechargePayOrderMapperExt { |
||||
} |
@ -1,373 +0,0 @@ |
||||
package com.hai.dao; |
||||
|
||||
import com.hai.entity.TbRechargePayOrder; |
||||
import com.hai.entity.TbRechargePayOrderExample.Criteria; |
||||
import com.hai.entity.TbRechargePayOrderExample.Criterion; |
||||
import com.hai.entity.TbRechargePayOrderExample; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
import org.apache.ibatis.jdbc.SQL; |
||||
|
||||
public class TbRechargePayOrderSqlProvider { |
||||
|
||||
public String countByExample(TbRechargePayOrderExample example) { |
||||
SQL sql = new SQL(); |
||||
sql.SELECT("count(*)").FROM("tb_recharge_pay_order"); |
||||
applyWhere(sql, example, false); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String deleteByExample(TbRechargePayOrderExample example) { |
||||
SQL sql = new SQL(); |
||||
sql.DELETE_FROM("tb_recharge_pay_order"); |
||||
applyWhere(sql, example, false); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String insertSelective(TbRechargePayOrder record) { |
||||
SQL sql = new SQL(); |
||||
sql.INSERT_INTO("tb_recharge_pay_order"); |
||||
|
||||
if (record.getRechargeid() != null) { |
||||
sql.VALUES("rechargeId", "#{rechargeid,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getPhone() != null) { |
||||
sql.VALUES("phone", "#{phone,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getCouno() != null) { |
||||
sql.VALUES("couNo", "#{couno,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.VALUES("`status`", "#{status,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getDistributorid() != null) { |
||||
sql.VALUES("distributorId", "#{distributorid,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getValidstartdate() != null) { |
||||
sql.VALUES("validStartDate", "#{validstartdate,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getValidenddate() != null) { |
||||
sql.VALUES("validEndDate", "#{validenddate,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getDistcoucount() != null) { |
||||
sql.VALUES("distCouCount", "#{distcoucount,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getCoutypecode() != null) { |
||||
sql.VALUES("couTypeCode", "#{coutypecode,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getCreatetime() != null) { |
||||
sql.VALUES("createtime", "#{createtime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getCreateuser() != null) { |
||||
sql.VALUES("`createuser`", "#{createuser,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getModifytime() != null) { |
||||
sql.VALUES("modifytime", "#{modifytime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getModifyuser() != null) { |
||||
sql.VALUES("modifyuser", "#{modifyuser,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getPrebalance() != null) { |
||||
sql.VALUES("preBalance", "#{prebalance,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getPostbalance() != null) { |
||||
sql.VALUES("postBalance", "#{postbalance,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getBillversion() != null) { |
||||
sql.VALUES("billVersion", "#{billversion,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getReconversion() != null) { |
||||
sql.VALUES("reconVersion", "#{reconversion,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getPromoterid() != null) { |
||||
sql.VALUES("promoterId", "#{promoterid,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getAccessType() != null) { |
||||
sql.VALUES("access_type", "#{accessType,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStaticcheckcode() != null) { |
||||
sql.VALUES("staticCheckCode", "#{staticcheckcode,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getUseShop() != null) { |
||||
sql.VALUES("use_shop", "#{useShop,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String selectByExample(TbRechargePayOrderExample example) { |
||||
SQL sql = new SQL(); |
||||
if (example != null && example.isDistinct()) { |
||||
sql.SELECT_DISTINCT("rechargeId"); |
||||
} else { |
||||
sql.SELECT("rechargeId"); |
||||
} |
||||
sql.SELECT("phone"); |
||||
sql.SELECT("couNo"); |
||||
sql.SELECT("`status`"); |
||||
sql.SELECT("distributorId"); |
||||
sql.SELECT("validStartDate"); |
||||
sql.SELECT("validEndDate"); |
||||
sql.SELECT("distCouCount"); |
||||
sql.SELECT("couTypeCode"); |
||||
sql.SELECT("createtime"); |
||||
sql.SELECT("`createuser`"); |
||||
sql.SELECT("modifytime"); |
||||
sql.SELECT("modifyuser"); |
||||
sql.SELECT("preBalance"); |
||||
sql.SELECT("postBalance"); |
||||
sql.SELECT("billVersion"); |
||||
sql.SELECT("reconVersion"); |
||||
sql.SELECT("promoterId"); |
||||
sql.SELECT("access_type"); |
||||
sql.SELECT("staticCheckCode"); |
||||
sql.SELECT("use_shop"); |
||||
sql.FROM("tb_recharge_pay_order"); |
||||
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) { |
||||
TbRechargePayOrder record = (TbRechargePayOrder) parameter.get("record"); |
||||
TbRechargePayOrderExample example = (TbRechargePayOrderExample) parameter.get("example"); |
||||
|
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("tb_recharge_pay_order"); |
||||
|
||||
if (record.getRechargeid() != null) { |
||||
sql.SET("rechargeId = #{record.rechargeid,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getPhone() != null) { |
||||
sql.SET("phone = #{record.phone,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getCouno() != null) { |
||||
sql.SET("couNo = #{record.couno,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.SET("`status` = #{record.status,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getDistributorid() != null) { |
||||
sql.SET("distributorId = #{record.distributorid,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getValidstartdate() != null) { |
||||
sql.SET("validStartDate = #{record.validstartdate,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getValidenddate() != null) { |
||||
sql.SET("validEndDate = #{record.validenddate,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getDistcoucount() != null) { |
||||
sql.SET("distCouCount = #{record.distcoucount,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getCoutypecode() != null) { |
||||
sql.SET("couTypeCode = #{record.coutypecode,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getCreatetime() != null) { |
||||
sql.SET("createtime = #{record.createtime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getCreateuser() != null) { |
||||
sql.SET("`createuser` = #{record.createuser,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getModifytime() != null) { |
||||
sql.SET("modifytime = #{record.modifytime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getModifyuser() != null) { |
||||
sql.SET("modifyuser = #{record.modifyuser,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getPrebalance() != null) { |
||||
sql.SET("preBalance = #{record.prebalance,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getPostbalance() != null) { |
||||
sql.SET("postBalance = #{record.postbalance,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getBillversion() != null) { |
||||
sql.SET("billVersion = #{record.billversion,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getReconversion() != null) { |
||||
sql.SET("reconVersion = #{record.reconversion,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getPromoterid() != null) { |
||||
sql.SET("promoterId = #{record.promoterid,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getAccessType() != null) { |
||||
sql.SET("access_type = #{record.accessType,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStaticcheckcode() != null) { |
||||
sql.SET("staticCheckCode = #{record.staticcheckcode,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getUseShop() != null) { |
||||
sql.SET("use_shop = #{record.useShop,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
applyWhere(sql, example, true); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String updateByExample(Map<String, Object> parameter) { |
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("tb_recharge_pay_order"); |
||||
|
||||
sql.SET("rechargeId = #{record.rechargeid,jdbcType=VARCHAR}"); |
||||
sql.SET("phone = #{record.phone,jdbcType=VARCHAR}"); |
||||
sql.SET("couNo = #{record.couno,jdbcType=VARCHAR}"); |
||||
sql.SET("`status` = #{record.status,jdbcType=VARCHAR}"); |
||||
sql.SET("distributorId = #{record.distributorid,jdbcType=VARCHAR}"); |
||||
sql.SET("validStartDate = #{record.validstartdate,jdbcType=TIMESTAMP}"); |
||||
sql.SET("validEndDate = #{record.validenddate,jdbcType=TIMESTAMP}"); |
||||
sql.SET("distCouCount = #{record.distcoucount,jdbcType=VARCHAR}"); |
||||
sql.SET("couTypeCode = #{record.coutypecode,jdbcType=VARCHAR}"); |
||||
sql.SET("createtime = #{record.createtime,jdbcType=TIMESTAMP}"); |
||||
sql.SET("`createuser` = #{record.createuser,jdbcType=VARCHAR}"); |
||||
sql.SET("modifytime = #{record.modifytime,jdbcType=TIMESTAMP}"); |
||||
sql.SET("modifyuser = #{record.modifyuser,jdbcType=VARCHAR}"); |
||||
sql.SET("preBalance = #{record.prebalance,jdbcType=DECIMAL}"); |
||||
sql.SET("postBalance = #{record.postbalance,jdbcType=DECIMAL}"); |
||||
sql.SET("billVersion = #{record.billversion,jdbcType=VARCHAR}"); |
||||
sql.SET("reconVersion = #{record.reconversion,jdbcType=VARCHAR}"); |
||||
sql.SET("promoterId = #{record.promoterid,jdbcType=VARCHAR}"); |
||||
sql.SET("access_type = #{record.accessType,jdbcType=VARCHAR}"); |
||||
sql.SET("staticCheckCode = #{record.staticcheckcode,jdbcType=VARCHAR}"); |
||||
sql.SET("use_shop = #{record.useShop,jdbcType=VARCHAR}"); |
||||
|
||||
TbRechargePayOrderExample example = (TbRechargePayOrderExample) parameter.get("example"); |
||||
applyWhere(sql, example, true); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
protected void applyWhere(SQL sql, TbRechargePayOrderExample 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()); |
||||
} |
||||
} |
||||
} |
@ -1,323 +0,0 @@ |
||||
package com.hai.entity; |
||||
|
||||
import java.io.Serializable; |
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* tb_recharge_pay_order |
||||
* @author |
||||
*/ |
||||
/** |
||||
* |
||||
* 代码由工具生成 |
||||
* |
||||
**/ |
||||
public class TbRechargePayOrder implements Serializable { |
||||
private String rechargeid; |
||||
|
||||
private String phone; |
||||
|
||||
private String couno; |
||||
|
||||
private String status; |
||||
|
||||
private String distributorid; |
||||
|
||||
private Date validstartdate; |
||||
|
||||
private Date validenddate; |
||||
|
||||
private String distcoucount; |
||||
|
||||
private String coutypecode; |
||||
|
||||
private Date createtime; |
||||
|
||||
private String createuser; |
||||
|
||||
private Date modifytime; |
||||
|
||||
private String modifyuser; |
||||
|
||||
private BigDecimal prebalance; |
||||
|
||||
private BigDecimal postbalance; |
||||
|
||||
private String billversion; |
||||
|
||||
private String reconversion; |
||||
|
||||
private String promoterid; |
||||
|
||||
private String accessType; |
||||
|
||||
private String staticcheckcode; |
||||
|
||||
private String useShop; |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
public String getRechargeid() { |
||||
return rechargeid; |
||||
} |
||||
|
||||
public void setRechargeid(String rechargeid) { |
||||
this.rechargeid = rechargeid; |
||||
} |
||||
|
||||
public String getPhone() { |
||||
return phone; |
||||
} |
||||
|
||||
public void setPhone(String phone) { |
||||
this.phone = phone; |
||||
} |
||||
|
||||
public String getCouno() { |
||||
return couno; |
||||
} |
||||
|
||||
public void setCouno(String couno) { |
||||
this.couno = couno; |
||||
} |
||||
|
||||
public String getStatus() { |
||||
return status; |
||||
} |
||||
|
||||
public void setStatus(String status) { |
||||
this.status = status; |
||||
} |
||||
|
||||
public String getDistributorid() { |
||||
return distributorid; |
||||
} |
||||
|
||||
public void setDistributorid(String distributorid) { |
||||
this.distributorid = distributorid; |
||||
} |
||||
|
||||
public Date getValidstartdate() { |
||||
return validstartdate; |
||||
} |
||||
|
||||
public void setValidstartdate(Date validstartdate) { |
||||
this.validstartdate = validstartdate; |
||||
} |
||||
|
||||
public Date getValidenddate() { |
||||
return validenddate; |
||||
} |
||||
|
||||
public void setValidenddate(Date validenddate) { |
||||
this.validenddate = validenddate; |
||||
} |
||||
|
||||
public String getDistcoucount() { |
||||
return distcoucount; |
||||
} |
||||
|
||||
public void setDistcoucount(String distcoucount) { |
||||
this.distcoucount = distcoucount; |
||||
} |
||||
|
||||
public String getCoutypecode() { |
||||
return coutypecode; |
||||
} |
||||
|
||||
public void setCoutypecode(String coutypecode) { |
||||
this.coutypecode = coutypecode; |
||||
} |
||||
|
||||
public Date getCreatetime() { |
||||
return createtime; |
||||
} |
||||
|
||||
public void setCreatetime(Date createtime) { |
||||
this.createtime = createtime; |
||||
} |
||||
|
||||
public String getCreateuser() { |
||||
return createuser; |
||||
} |
||||
|
||||
public void setCreateuser(String createuser) { |
||||
this.createuser = createuser; |
||||
} |
||||
|
||||
public Date getModifytime() { |
||||
return modifytime; |
||||
} |
||||
|
||||
public void setModifytime(Date modifytime) { |
||||
this.modifytime = modifytime; |
||||
} |
||||
|
||||
public String getModifyuser() { |
||||
return modifyuser; |
||||
} |
||||
|
||||
public void setModifyuser(String modifyuser) { |
||||
this.modifyuser = modifyuser; |
||||
} |
||||
|
||||
public BigDecimal getPrebalance() { |
||||
return prebalance; |
||||
} |
||||
|
||||
public void setPrebalance(BigDecimal prebalance) { |
||||
this.prebalance = prebalance; |
||||
} |
||||
|
||||
public BigDecimal getPostbalance() { |
||||
return postbalance; |
||||
} |
||||
|
||||
public void setPostbalance(BigDecimal postbalance) { |
||||
this.postbalance = postbalance; |
||||
} |
||||
|
||||
public String getBillversion() { |
||||
return billversion; |
||||
} |
||||
|
||||
public void setBillversion(String billversion) { |
||||
this.billversion = billversion; |
||||
} |
||||
|
||||
public String getReconversion() { |
||||
return reconversion; |
||||
} |
||||
|
||||
public void setReconversion(String reconversion) { |
||||
this.reconversion = reconversion; |
||||
} |
||||
|
||||
public String getPromoterid() { |
||||
return promoterid; |
||||
} |
||||
|
||||
public void setPromoterid(String promoterid) { |
||||
this.promoterid = promoterid; |
||||
} |
||||
|
||||
public String getAccessType() { |
||||
return accessType; |
||||
} |
||||
|
||||
public void setAccessType(String accessType) { |
||||
this.accessType = accessType; |
||||
} |
||||
|
||||
public String getStaticcheckcode() { |
||||
return staticcheckcode; |
||||
} |
||||
|
||||
public void setStaticcheckcode(String staticcheckcode) { |
||||
this.staticcheckcode = staticcheckcode; |
||||
} |
||||
|
||||
public String getUseShop() { |
||||
return useShop; |
||||
} |
||||
|
||||
public void setUseShop(String useShop) { |
||||
this.useShop = useShop; |
||||
} |
||||
|
||||
@Override |
||||
public boolean equals(Object that) { |
||||
if (this == that) { |
||||
return true; |
||||
} |
||||
if (that == null) { |
||||
return false; |
||||
} |
||||
if (getClass() != that.getClass()) { |
||||
return false; |
||||
} |
||||
TbRechargePayOrder other = (TbRechargePayOrder) that; |
||||
return (this.getRechargeid() == null ? other.getRechargeid() == null : this.getRechargeid().equals(other.getRechargeid())) |
||||
&& (this.getPhone() == null ? other.getPhone() == null : this.getPhone().equals(other.getPhone())) |
||||
&& (this.getCouno() == null ? other.getCouno() == null : this.getCouno().equals(other.getCouno())) |
||||
&& (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus())) |
||||
&& (this.getDistributorid() == null ? other.getDistributorid() == null : this.getDistributorid().equals(other.getDistributorid())) |
||||
&& (this.getValidstartdate() == null ? other.getValidstartdate() == null : this.getValidstartdate().equals(other.getValidstartdate())) |
||||
&& (this.getValidenddate() == null ? other.getValidenddate() == null : this.getValidenddate().equals(other.getValidenddate())) |
||||
&& (this.getDistcoucount() == null ? other.getDistcoucount() == null : this.getDistcoucount().equals(other.getDistcoucount())) |
||||
&& (this.getCoutypecode() == null ? other.getCoutypecode() == null : this.getCoutypecode().equals(other.getCoutypecode())) |
||||
&& (this.getCreatetime() == null ? other.getCreatetime() == null : this.getCreatetime().equals(other.getCreatetime())) |
||||
&& (this.getCreateuser() == null ? other.getCreateuser() == null : this.getCreateuser().equals(other.getCreateuser())) |
||||
&& (this.getModifytime() == null ? other.getModifytime() == null : this.getModifytime().equals(other.getModifytime())) |
||||
&& (this.getModifyuser() == null ? other.getModifyuser() == null : this.getModifyuser().equals(other.getModifyuser())) |
||||
&& (this.getPrebalance() == null ? other.getPrebalance() == null : this.getPrebalance().equals(other.getPrebalance())) |
||||
&& (this.getPostbalance() == null ? other.getPostbalance() == null : this.getPostbalance().equals(other.getPostbalance())) |
||||
&& (this.getBillversion() == null ? other.getBillversion() == null : this.getBillversion().equals(other.getBillversion())) |
||||
&& (this.getReconversion() == null ? other.getReconversion() == null : this.getReconversion().equals(other.getReconversion())) |
||||
&& (this.getPromoterid() == null ? other.getPromoterid() == null : this.getPromoterid().equals(other.getPromoterid())) |
||||
&& (this.getAccessType() == null ? other.getAccessType() == null : this.getAccessType().equals(other.getAccessType())) |
||||
&& (this.getStaticcheckcode() == null ? other.getStaticcheckcode() == null : this.getStaticcheckcode().equals(other.getStaticcheckcode())) |
||||
&& (this.getUseShop() == null ? other.getUseShop() == null : this.getUseShop().equals(other.getUseShop())); |
||||
} |
||||
|
||||
@Override |
||||
public int hashCode() { |
||||
final int prime = 31; |
||||
int result = 1; |
||||
result = prime * result + ((getRechargeid() == null) ? 0 : getRechargeid().hashCode()); |
||||
result = prime * result + ((getPhone() == null) ? 0 : getPhone().hashCode()); |
||||
result = prime * result + ((getCouno() == null) ? 0 : getCouno().hashCode()); |
||||
result = prime * result + ((getStatus() == null) ? 0 : getStatus().hashCode()); |
||||
result = prime * result + ((getDistributorid() == null) ? 0 : getDistributorid().hashCode()); |
||||
result = prime * result + ((getValidstartdate() == null) ? 0 : getValidstartdate().hashCode()); |
||||
result = prime * result + ((getValidenddate() == null) ? 0 : getValidenddate().hashCode()); |
||||
result = prime * result + ((getDistcoucount() == null) ? 0 : getDistcoucount().hashCode()); |
||||
result = prime * result + ((getCoutypecode() == null) ? 0 : getCoutypecode().hashCode()); |
||||
result = prime * result + ((getCreatetime() == null) ? 0 : getCreatetime().hashCode()); |
||||
result = prime * result + ((getCreateuser() == null) ? 0 : getCreateuser().hashCode()); |
||||
result = prime * result + ((getModifytime() == null) ? 0 : getModifytime().hashCode()); |
||||
result = prime * result + ((getModifyuser() == null) ? 0 : getModifyuser().hashCode()); |
||||
result = prime * result + ((getPrebalance() == null) ? 0 : getPrebalance().hashCode()); |
||||
result = prime * result + ((getPostbalance() == null) ? 0 : getPostbalance().hashCode()); |
||||
result = prime * result + ((getBillversion() == null) ? 0 : getBillversion().hashCode()); |
||||
result = prime * result + ((getReconversion() == null) ? 0 : getReconversion().hashCode()); |
||||
result = prime * result + ((getPromoterid() == null) ? 0 : getPromoterid().hashCode()); |
||||
result = prime * result + ((getAccessType() == null) ? 0 : getAccessType().hashCode()); |
||||
result = prime * result + ((getStaticcheckcode() == null) ? 0 : getStaticcheckcode().hashCode()); |
||||
result = prime * result + ((getUseShop() == null) ? 0 : getUseShop().hashCode()); |
||||
return result; |
||||
} |
||||
|
||||
@Override |
||||
public String toString() { |
||||
StringBuilder sb = new StringBuilder(); |
||||
sb.append(getClass().getSimpleName()); |
||||
sb.append(" ["); |
||||
sb.append("Hash = ").append(hashCode()); |
||||
sb.append(", rechargeid=").append(rechargeid); |
||||
sb.append(", phone=").append(phone); |
||||
sb.append(", couno=").append(couno); |
||||
sb.append(", status=").append(status); |
||||
sb.append(", distributorid=").append(distributorid); |
||||
sb.append(", validstartdate=").append(validstartdate); |
||||
sb.append(", validenddate=").append(validenddate); |
||||
sb.append(", distcoucount=").append(distcoucount); |
||||
sb.append(", coutypecode=").append(coutypecode); |
||||
sb.append(", createtime=").append(createtime); |
||||
sb.append(", createuser=").append(createuser); |
||||
sb.append(", modifytime=").append(modifytime); |
||||
sb.append(", modifyuser=").append(modifyuser); |
||||
sb.append(", prebalance=").append(prebalance); |
||||
sb.append(", postbalance=").append(postbalance); |
||||
sb.append(", billversion=").append(billversion); |
||||
sb.append(", reconversion=").append(reconversion); |
||||
sb.append(", promoterid=").append(promoterid); |
||||
sb.append(", accessType=").append(accessType); |
||||
sb.append(", staticcheckcode=").append(staticcheckcode); |
||||
sb.append(", useShop=").append(useShop); |
||||
sb.append(", serialVersionUID=").append(serialVersionUID); |
||||
sb.append("]"); |
||||
return sb.toString(); |
||||
} |
||||
} |
File diff suppressed because it is too large
Load Diff
@ -1,276 +0,0 @@ |
||||
package com.hai.entity; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
/** |
||||
* tb_recharge_pay_order |
||||
* @author |
||||
*/ |
||||
public class TbRechargePayOrderWithBLOBs extends TbRechargePayOrder implements Serializable { |
||||
private String id; |
||||
|
||||
private String rechargeid; |
||||
|
||||
private String phone; |
||||
|
||||
private String couno; |
||||
|
||||
private String status; |
||||
|
||||
private String distributorid; |
||||
|
||||
private String distcoucount; |
||||
|
||||
private String coutypecode; |
||||
|
||||
private String createuser; |
||||
|
||||
private String modifyuser; |
||||
|
||||
private String billversion; |
||||
|
||||
private String reconversion; |
||||
|
||||
private String promoterid; |
||||
|
||||
private String accessType; |
||||
|
||||
private String staticcheckcode; |
||||
|
||||
private String useShop; |
||||
|
||||
private String useTime; |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
public String getId() { |
||||
return id; |
||||
} |
||||
|
||||
public void setId(String id) { |
||||
this.id = id; |
||||
} |
||||
|
||||
public String getRechargeid() { |
||||
return rechargeid; |
||||
} |
||||
|
||||
public void setRechargeid(String rechargeid) { |
||||
this.rechargeid = rechargeid; |
||||
} |
||||
|
||||
public String getPhone() { |
||||
return phone; |
||||
} |
||||
|
||||
public void setPhone(String phone) { |
||||
this.phone = phone; |
||||
} |
||||
|
||||
public String getCouno() { |
||||
return couno; |
||||
} |
||||
|
||||
public void setCouno(String couno) { |
||||
this.couno = couno; |
||||
} |
||||
|
||||
public String getStatus() { |
||||
return status; |
||||
} |
||||
|
||||
public void setStatus(String status) { |
||||
this.status = status; |
||||
} |
||||
|
||||
public String getDistributorid() { |
||||
return distributorid; |
||||
} |
||||
|
||||
public void setDistributorid(String distributorid) { |
||||
this.distributorid = distributorid; |
||||
} |
||||
|
||||
public String getDistcoucount() { |
||||
return distcoucount; |
||||
} |
||||
|
||||
public void setDistcoucount(String distcoucount) { |
||||
this.distcoucount = distcoucount; |
||||
} |
||||
|
||||
public String getCoutypecode() { |
||||
return coutypecode; |
||||
} |
||||
|
||||
public void setCoutypecode(String coutypecode) { |
||||
this.coutypecode = coutypecode; |
||||
} |
||||
|
||||
public String getCreateuser() { |
||||
return createuser; |
||||
} |
||||
|
||||
public void setCreateuser(String createuser) { |
||||
this.createuser = createuser; |
||||
} |
||||
|
||||
public String getModifyuser() { |
||||
return modifyuser; |
||||
} |
||||
|
||||
public void setModifyuser(String modifyuser) { |
||||
this.modifyuser = modifyuser; |
||||
} |
||||
|
||||
public String getBillversion() { |
||||
return billversion; |
||||
} |
||||
|
||||
public void setBillversion(String billversion) { |
||||
this.billversion = billversion; |
||||
} |
||||
|
||||
public String getReconversion() { |
||||
return reconversion; |
||||
} |
||||
|
||||
public void setReconversion(String reconversion) { |
||||
this.reconversion = reconversion; |
||||
} |
||||
|
||||
public String getPromoterid() { |
||||
return promoterid; |
||||
} |
||||
|
||||
public void setPromoterid(String promoterid) { |
||||
this.promoterid = promoterid; |
||||
} |
||||
|
||||
public String getAccessType() { |
||||
return accessType; |
||||
} |
||||
|
||||
public void setAccessType(String accessType) { |
||||
this.accessType = accessType; |
||||
} |
||||
|
||||
public String getStaticcheckcode() { |
||||
return staticcheckcode; |
||||
} |
||||
|
||||
public void setStaticcheckcode(String staticcheckcode) { |
||||
this.staticcheckcode = staticcheckcode; |
||||
} |
||||
|
||||
public String getUseShop() { |
||||
return useShop; |
||||
} |
||||
|
||||
public void setUseShop(String useShop) { |
||||
this.useShop = useShop; |
||||
} |
||||
|
||||
public String getUseTime() { |
||||
return useTime; |
||||
} |
||||
|
||||
public void setUseTime(String useTime) { |
||||
this.useTime = useTime; |
||||
} |
||||
|
||||
@Override |
||||
public boolean equals(Object that) { |
||||
if (this == that) { |
||||
return true; |
||||
} |
||||
if (that == null) { |
||||
return false; |
||||
} |
||||
if (getClass() != that.getClass()) { |
||||
return false; |
||||
} |
||||
TbRechargePayOrderWithBLOBs other = (TbRechargePayOrderWithBLOBs) that; |
||||
return (this.getValidstartdate() == null ? other.getValidstartdate() == null : this.getValidstartdate().equals(other.getValidstartdate())) |
||||
&& (this.getValidenddate() == null ? other.getValidenddate() == null : this.getValidenddate().equals(other.getValidenddate())) |
||||
&& (this.getCreatetime() == null ? other.getCreatetime() == null : this.getCreatetime().equals(other.getCreatetime())) |
||||
&& (this.getModifytime() == null ? other.getModifytime() == null : this.getModifytime().equals(other.getModifytime())) |
||||
&& (this.getPrebalance() == null ? other.getPrebalance() == null : this.getPrebalance().equals(other.getPrebalance())) |
||||
&& (this.getPostbalance() == null ? other.getPostbalance() == null : this.getPostbalance().equals(other.getPostbalance())) |
||||
&& (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) |
||||
&& (this.getRechargeid() == null ? other.getRechargeid() == null : this.getRechargeid().equals(other.getRechargeid())) |
||||
&& (this.getPhone() == null ? other.getPhone() == null : this.getPhone().equals(other.getPhone())) |
||||
&& (this.getCouno() == null ? other.getCouno() == null : this.getCouno().equals(other.getCouno())) |
||||
&& (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus())) |
||||
&& (this.getDistributorid() == null ? other.getDistributorid() == null : this.getDistributorid().equals(other.getDistributorid())) |
||||
&& (this.getDistcoucount() == null ? other.getDistcoucount() == null : this.getDistcoucount().equals(other.getDistcoucount())) |
||||
&& (this.getCoutypecode() == null ? other.getCoutypecode() == null : this.getCoutypecode().equals(other.getCoutypecode())) |
||||
&& (this.getCreateuser() == null ? other.getCreateuser() == null : this.getCreateuser().equals(other.getCreateuser())) |
||||
&& (this.getModifyuser() == null ? other.getModifyuser() == null : this.getModifyuser().equals(other.getModifyuser())) |
||||
&& (this.getBillversion() == null ? other.getBillversion() == null : this.getBillversion().equals(other.getBillversion())) |
||||
&& (this.getReconversion() == null ? other.getReconversion() == null : this.getReconversion().equals(other.getReconversion())) |
||||
&& (this.getPromoterid() == null ? other.getPromoterid() == null : this.getPromoterid().equals(other.getPromoterid())) |
||||
&& (this.getAccessType() == null ? other.getAccessType() == null : this.getAccessType().equals(other.getAccessType())) |
||||
&& (this.getStaticcheckcode() == null ? other.getStaticcheckcode() == null : this.getStaticcheckcode().equals(other.getStaticcheckcode())) |
||||
&& (this.getUseShop() == null ? other.getUseShop() == null : this.getUseShop().equals(other.getUseShop())) |
||||
&& (this.getUseTime() == null ? other.getUseTime() == null : this.getUseTime().equals(other.getUseTime())); |
||||
} |
||||
|
||||
@Override |
||||
public int hashCode() { |
||||
final int prime = 31; |
||||
int result = 1; |
||||
result = prime * result + ((getValidstartdate() == null) ? 0 : getValidstartdate().hashCode()); |
||||
result = prime * result + ((getValidenddate() == null) ? 0 : getValidenddate().hashCode()); |
||||
result = prime * result + ((getCreatetime() == null) ? 0 : getCreatetime().hashCode()); |
||||
result = prime * result + ((getModifytime() == null) ? 0 : getModifytime().hashCode()); |
||||
result = prime * result + ((getPrebalance() == null) ? 0 : getPrebalance().hashCode()); |
||||
result = prime * result + ((getPostbalance() == null) ? 0 : getPostbalance().hashCode()); |
||||
result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); |
||||
result = prime * result + ((getRechargeid() == null) ? 0 : getRechargeid().hashCode()); |
||||
result = prime * result + ((getPhone() == null) ? 0 : getPhone().hashCode()); |
||||
result = prime * result + ((getCouno() == null) ? 0 : getCouno().hashCode()); |
||||
result = prime * result + ((getStatus() == null) ? 0 : getStatus().hashCode()); |
||||
result = prime * result + ((getDistributorid() == null) ? 0 : getDistributorid().hashCode()); |
||||
result = prime * result + ((getDistcoucount() == null) ? 0 : getDistcoucount().hashCode()); |
||||
result = prime * result + ((getCoutypecode() == null) ? 0 : getCoutypecode().hashCode()); |
||||
result = prime * result + ((getCreateuser() == null) ? 0 : getCreateuser().hashCode()); |
||||
result = prime * result + ((getModifyuser() == null) ? 0 : getModifyuser().hashCode()); |
||||
result = prime * result + ((getBillversion() == null) ? 0 : getBillversion().hashCode()); |
||||
result = prime * result + ((getReconversion() == null) ? 0 : getReconversion().hashCode()); |
||||
result = prime * result + ((getPromoterid() == null) ? 0 : getPromoterid().hashCode()); |
||||
result = prime * result + ((getAccessType() == null) ? 0 : getAccessType().hashCode()); |
||||
result = prime * result + ((getStaticcheckcode() == null) ? 0 : getStaticcheckcode().hashCode()); |
||||
result = prime * result + ((getUseShop() == null) ? 0 : getUseShop().hashCode()); |
||||
result = prime * result + ((getUseTime() == null) ? 0 : getUseTime().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(", rechargeid=").append(rechargeid); |
||||
sb.append(", phone=").append(phone); |
||||
sb.append(", couno=").append(couno); |
||||
sb.append(", status=").append(status); |
||||
sb.append(", distributorid=").append(distributorid); |
||||
sb.append(", distcoucount=").append(distcoucount); |
||||
sb.append(", coutypecode=").append(coutypecode); |
||||
sb.append(", createuser=").append(createuser); |
||||
sb.append(", modifyuser=").append(modifyuser); |
||||
sb.append(", billversion=").append(billversion); |
||||
sb.append(", reconversion=").append(reconversion); |
||||
sb.append(", promoterid=").append(promoterid); |
||||
sb.append(", accessType=").append(accessType); |
||||
sb.append(", staticcheckcode=").append(staticcheckcode); |
||||
sb.append(", useShop=").append(useShop); |
||||
sb.append(", useTime=").append(useTime); |
||||
sb.append(", serialVersionUID=").append(serialVersionUID); |
||||
sb.append("]"); |
||||
return sb.toString(); |
||||
} |
||||
} |
@ -0,0 +1,11 @@ |
||||
package com.hai.service; |
||||
|
||||
/** |
||||
* 测试服务 |
||||
* @author Sum1Dream |
||||
*/ |
||||
public interface TestService { |
||||
|
||||
|
||||
|
||||
} |
@ -0,0 +1,13 @@ |
||||
package com.hai.service.impl; |
||||
|
||||
import com.hai.service.TestService; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
/** |
||||
* @author sum1dream |
||||
*/ |
||||
@Service("testService") |
||||
public class TestServiceImpl implements TestService { |
||||
|
||||
|
||||
} |
Loading…
Reference in new issue