commit
265fe58b1d
@ -0,0 +1,78 @@ |
||||
package com.hfkj.common.utils; |
||||
|
||||
import com.alibaba.fastjson.JSONObject; |
||||
import org.apache.commons.lang3.StringUtils; |
||||
|
||||
import javax.xml.bind.annotation.adapters.HexBinaryAdapter; |
||||
import java.security.MessageDigest; |
||||
import java.util.Arrays; |
||||
import java.util.Map; |
||||
import java.util.Set; |
||||
|
||||
public class SignatureUtil { |
||||
/** |
||||
* 参数签名 |
||||
* @param param 参数 |
||||
* @param key 秘钥 |
||||
* @return |
||||
* @throws Exception |
||||
*/ |
||||
public static String createSign(Object param, String key) throws Exception { |
||||
Map map = JSONObject.parseObject(JSONObject.toJSONString(param), Map.class); |
||||
return md5Encode(paramSort(map, key).getBytes()); |
||||
} |
||||
|
||||
/** |
||||
* 验证签名 |
||||
* @param checkSign 需验证的签名字符串 |
||||
* @param param 参数 |
||||
* @param key 秘钥 |
||||
* @return |
||||
* @throws Exception |
||||
*/ |
||||
public static Boolean checkSign(String checkSign,Object param, String key) throws Exception { |
||||
Map map = JSONObject.parseObject(JSONObject.toJSONString(param), Map.class); |
||||
// 去除签名
|
||||
map.remove("sign"); |
||||
if (checkSign.equals(createSign(map, key))) { |
||||
return true; |
||||
} |
||||
return false; |
||||
} |
||||
|
||||
/** |
||||
* 参数排序 |
||||
* @param param |
||||
* @return |
||||
*/ |
||||
public static String paramSort(final Map<String, Object> param, String key) { |
||||
Set<String> keySet = param.keySet(); |
||||
String[] keyArray = keySet.toArray(new String[keySet.size()]); |
||||
Arrays.sort(keyArray); |
||||
StringBuilder sb = new StringBuilder(); |
||||
for (String k : keyArray) { |
||||
if (StringUtils.isBlank(sb.toString())) { |
||||
sb.append(k).append("=").append(param.get(k)); |
||||
} else { |
||||
sb.append("&").append(k).append("=").append(param.get(k)); |
||||
} |
||||
} |
||||
sb.append("&key=").append(key); |
||||
return sb.toString(); |
||||
} |
||||
|
||||
/** |
||||
* MD5加密 |
||||
* @param data |
||||
* @return |
||||
* @throws Exception |
||||
*/ |
||||
public static String md5Encode(byte[] data) throws Exception { |
||||
// 初始化MessageDigest
|
||||
MessageDigest md = MessageDigest.getInstance("MD5"); |
||||
// 执行摘要信息
|
||||
byte[] digest = md.digest(data); |
||||
// 将摘要信息转换为32位的十六进制字符串
|
||||
return new String(new HexBinaryAdapter().marshal(digest)); |
||||
} |
||||
} |
@ -0,0 +1,239 @@ |
||||
package com.hfkj.dao; |
||||
|
||||
import com.hfkj.entity.BsOrderMember; |
||||
import com.hfkj.entity.BsOrderMemberExample; |
||||
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 BsOrderMemberMapper extends BsOrderMemberMapperExt { |
||||
@SelectProvider(type=BsOrderMemberSqlProvider.class, method="countByExample") |
||||
long countByExample(BsOrderMemberExample example); |
||||
|
||||
@DeleteProvider(type=BsOrderMemberSqlProvider.class, method="deleteByExample") |
||||
int deleteByExample(BsOrderMemberExample example); |
||||
|
||||
@Delete({ |
||||
"delete from bs_order_member", |
||||
"where id = #{id,jdbcType=BIGINT}" |
||||
}) |
||||
int deleteByPrimaryKey(Long id); |
||||
|
||||
@Insert({ |
||||
"insert into bs_order_member (order_no, child_order_no, ", |
||||
"mer_id, platform_code, ", |
||||
"user_id, user_phone, ", |
||||
"goods_id, goods_name, ", |
||||
"goods_type_id, goods_type_name, ", |
||||
"goods_brand_id, goods_brand_name, ", |
||||
"goods_specs_id, goods_specs_name, ", |
||||
"goods_spesc_original_price, goods_spesc_sale_price, ", |
||||
"goods_vpd_id, goods_vpd_key, ", |
||||
"goods_vpd_source, goods_count, ", |
||||
"total_price, total_deduction_price, ", |
||||
"coupon_discount_price, integral_discount_price, ", |
||||
"pay_real_price, pay_channel, ", |
||||
"pay_serial_no, pay_type, ", |
||||
"`status`, create_time, ", |
||||
"pay_time, cancel_time, ", |
||||
"refund_time, finish_time, ", |
||||
"update_time, ext_1, ", |
||||
"ext_2, ext_3)", |
||||
"values (#{orderNo,jdbcType=VARCHAR}, #{childOrderNo,jdbcType=VARCHAR}, ", |
||||
"#{merId,jdbcType=BIGINT}, #{platformCode,jdbcType=VARCHAR}, ", |
||||
"#{userId,jdbcType=BIGINT}, #{userPhone,jdbcType=VARCHAR}, ", |
||||
"#{goodsId,jdbcType=BIGINT}, #{goodsName,jdbcType=VARCHAR}, ", |
||||
"#{goodsTypeId,jdbcType=BIGINT}, #{goodsTypeName,jdbcType=VARCHAR}, ", |
||||
"#{goodsBrandId,jdbcType=BIGINT}, #{goodsBrandName,jdbcType=VARCHAR}, ", |
||||
"#{goodsSpecsId,jdbcType=BIGINT}, #{goodsSpecsName,jdbcType=VARCHAR}, ", |
||||
"#{goodsSpescOriginalPrice,jdbcType=DECIMAL}, #{goodsSpescSalePrice,jdbcType=DECIMAL}, ", |
||||
"#{goodsVpdId,jdbcType=BIGINT}, #{goodsVpdKey,jdbcType=VARCHAR}, ", |
||||
"#{goodsVpdSource,jdbcType=INTEGER}, #{goodsCount,jdbcType=INTEGER}, ", |
||||
"#{totalPrice,jdbcType=DECIMAL}, #{totalDeductionPrice,jdbcType=DECIMAL}, ", |
||||
"#{couponDiscountPrice,jdbcType=DECIMAL}, #{integralDiscountPrice,jdbcType=DECIMAL}, ", |
||||
"#{payRealPrice,jdbcType=DECIMAL}, #{payChannel,jdbcType=INTEGER}, ", |
||||
"#{paySerialNo,jdbcType=VARCHAR}, #{payType,jdbcType=INTEGER}, ", |
||||
"#{status,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}, ", |
||||
"#{payTime,jdbcType=TIMESTAMP}, #{cancelTime,jdbcType=TIMESTAMP}, ", |
||||
"#{refundTime,jdbcType=TIMESTAMP}, #{finishTime,jdbcType=TIMESTAMP}, ", |
||||
"#{updateTime,jdbcType=TIMESTAMP}, #{ext1,jdbcType=VARCHAR}, ", |
||||
"#{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})" |
||||
}) |
||||
@Options(useGeneratedKeys=true,keyProperty="id") |
||||
int insert(BsOrderMember record); |
||||
|
||||
@InsertProvider(type=BsOrderMemberSqlProvider.class, method="insertSelective") |
||||
@Options(useGeneratedKeys=true,keyProperty="id") |
||||
int insertSelective(BsOrderMember record); |
||||
|
||||
@SelectProvider(type=BsOrderMemberSqlProvider.class, method="selectByExample") |
||||
@Results({ |
||||
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), |
||||
@Result(column="order_no", property="orderNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="child_order_no", property="childOrderNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="mer_id", property="merId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="platform_code", property="platformCode", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="user_id", property="userId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="user_phone", property="userPhone", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="goods_id", property="goodsId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="goods_name", property="goodsName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="goods_type_id", property="goodsTypeId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="goods_type_name", property="goodsTypeName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="goods_brand_id", property="goodsBrandId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="goods_brand_name", property="goodsBrandName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="goods_specs_id", property="goodsSpecsId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="goods_specs_name", property="goodsSpecsName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="goods_spesc_original_price", property="goodsSpescOriginalPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="goods_spesc_sale_price", property="goodsSpescSalePrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="goods_vpd_id", property="goodsVpdId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="goods_vpd_key", property="goodsVpdKey", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="goods_vpd_source", property="goodsVpdSource", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="goods_count", property="goodsCount", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="total_price", property="totalPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="total_deduction_price", property="totalDeductionPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="coupon_discount_price", property="couponDiscountPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="integral_discount_price", property="integralDiscountPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="pay_real_price", property="payRealPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="pay_channel", property="payChannel", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="pay_serial_no", property="paySerialNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="pay_type", property="payType", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="pay_time", property="payTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="cancel_time", property="cancelTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="refund_time", property="refundTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="finish_time", property="finishTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@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<BsOrderMember> selectByExample(BsOrderMemberExample example); |
||||
|
||||
@Select({ |
||||
"select", |
||||
"id, order_no, child_order_no, mer_id, platform_code, user_id, user_phone, goods_id, ", |
||||
"goods_name, goods_type_id, goods_type_name, goods_brand_id, goods_brand_name, ", |
||||
"goods_specs_id, goods_specs_name, goods_spesc_original_price, goods_spesc_sale_price, ", |
||||
"goods_vpd_id, goods_vpd_key, goods_vpd_source, goods_count, total_price, total_deduction_price, ", |
||||
"coupon_discount_price, integral_discount_price, pay_real_price, pay_channel, ", |
||||
"pay_serial_no, pay_type, `status`, create_time, pay_time, cancel_time, refund_time, ", |
||||
"finish_time, update_time, ext_1, ext_2, ext_3", |
||||
"from bs_order_member", |
||||
"where id = #{id,jdbcType=BIGINT}" |
||||
}) |
||||
@Results({ |
||||
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), |
||||
@Result(column="order_no", property="orderNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="child_order_no", property="childOrderNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="mer_id", property="merId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="platform_code", property="platformCode", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="user_id", property="userId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="user_phone", property="userPhone", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="goods_id", property="goodsId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="goods_name", property="goodsName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="goods_type_id", property="goodsTypeId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="goods_type_name", property="goodsTypeName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="goods_brand_id", property="goodsBrandId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="goods_brand_name", property="goodsBrandName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="goods_specs_id", property="goodsSpecsId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="goods_specs_name", property="goodsSpecsName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="goods_spesc_original_price", property="goodsSpescOriginalPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="goods_spesc_sale_price", property="goodsSpescSalePrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="goods_vpd_id", property="goodsVpdId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="goods_vpd_key", property="goodsVpdKey", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="goods_vpd_source", property="goodsVpdSource", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="goods_count", property="goodsCount", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="total_price", property="totalPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="total_deduction_price", property="totalDeductionPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="coupon_discount_price", property="couponDiscountPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="integral_discount_price", property="integralDiscountPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="pay_real_price", property="payRealPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="pay_channel", property="payChannel", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="pay_serial_no", property="paySerialNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="pay_type", property="payType", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="pay_time", property="payTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="cancel_time", property="cancelTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="refund_time", property="refundTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="finish_time", property="finishTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@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) |
||||
}) |
||||
BsOrderMember selectByPrimaryKey(Long id); |
||||
|
||||
@UpdateProvider(type=BsOrderMemberSqlProvider.class, method="updateByExampleSelective") |
||||
int updateByExampleSelective(@Param("record") BsOrderMember record, @Param("example") BsOrderMemberExample example); |
||||
|
||||
@UpdateProvider(type=BsOrderMemberSqlProvider.class, method="updateByExample") |
||||
int updateByExample(@Param("record") BsOrderMember record, @Param("example") BsOrderMemberExample example); |
||||
|
||||
@UpdateProvider(type=BsOrderMemberSqlProvider.class, method="updateByPrimaryKeySelective") |
||||
int updateByPrimaryKeySelective(BsOrderMember record); |
||||
|
||||
@Update({ |
||||
"update bs_order_member", |
||||
"set order_no = #{orderNo,jdbcType=VARCHAR},", |
||||
"child_order_no = #{childOrderNo,jdbcType=VARCHAR},", |
||||
"mer_id = #{merId,jdbcType=BIGINT},", |
||||
"platform_code = #{platformCode,jdbcType=VARCHAR},", |
||||
"user_id = #{userId,jdbcType=BIGINT},", |
||||
"user_phone = #{userPhone,jdbcType=VARCHAR},", |
||||
"goods_id = #{goodsId,jdbcType=BIGINT},", |
||||
"goods_name = #{goodsName,jdbcType=VARCHAR},", |
||||
"goods_type_id = #{goodsTypeId,jdbcType=BIGINT},", |
||||
"goods_type_name = #{goodsTypeName,jdbcType=VARCHAR},", |
||||
"goods_brand_id = #{goodsBrandId,jdbcType=BIGINT},", |
||||
"goods_brand_name = #{goodsBrandName,jdbcType=VARCHAR},", |
||||
"goods_specs_id = #{goodsSpecsId,jdbcType=BIGINT},", |
||||
"goods_specs_name = #{goodsSpecsName,jdbcType=VARCHAR},", |
||||
"goods_spesc_original_price = #{goodsSpescOriginalPrice,jdbcType=DECIMAL},", |
||||
"goods_spesc_sale_price = #{goodsSpescSalePrice,jdbcType=DECIMAL},", |
||||
"goods_vpd_id = #{goodsVpdId,jdbcType=BIGINT},", |
||||
"goods_vpd_key = #{goodsVpdKey,jdbcType=VARCHAR},", |
||||
"goods_vpd_source = #{goodsVpdSource,jdbcType=INTEGER},", |
||||
"goods_count = #{goodsCount,jdbcType=INTEGER},", |
||||
"total_price = #{totalPrice,jdbcType=DECIMAL},", |
||||
"total_deduction_price = #{totalDeductionPrice,jdbcType=DECIMAL},", |
||||
"coupon_discount_price = #{couponDiscountPrice,jdbcType=DECIMAL},", |
||||
"integral_discount_price = #{integralDiscountPrice,jdbcType=DECIMAL},", |
||||
"pay_real_price = #{payRealPrice,jdbcType=DECIMAL},", |
||||
"pay_channel = #{payChannel,jdbcType=INTEGER},", |
||||
"pay_serial_no = #{paySerialNo,jdbcType=VARCHAR},", |
||||
"pay_type = #{payType,jdbcType=INTEGER},", |
||||
"`status` = #{status,jdbcType=INTEGER},", |
||||
"create_time = #{createTime,jdbcType=TIMESTAMP},", |
||||
"pay_time = #{payTime,jdbcType=TIMESTAMP},", |
||||
"cancel_time = #{cancelTime,jdbcType=TIMESTAMP},", |
||||
"refund_time = #{refundTime,jdbcType=TIMESTAMP},", |
||||
"finish_time = #{finishTime,jdbcType=TIMESTAMP},", |
||||
"update_time = #{updateTime,jdbcType=TIMESTAMP},", |
||||
"ext_1 = #{ext1,jdbcType=VARCHAR},", |
||||
"ext_2 = #{ext2,jdbcType=VARCHAR},", |
||||
"ext_3 = #{ext3,jdbcType=VARCHAR}", |
||||
"where id = #{id,jdbcType=BIGINT}" |
||||
}) |
||||
int updateByPrimaryKey(BsOrderMember record); |
||||
} |
@ -0,0 +1,7 @@ |
||||
package com.hfkj.dao; |
||||
|
||||
/** |
||||
* mapper扩展类 |
||||
*/ |
||||
public interface BsOrderMemberMapperExt { |
||||
} |
@ -0,0 +1,710 @@ |
||||
package com.hfkj.dao; |
||||
|
||||
import com.hfkj.entity.BsOrderMember; |
||||
import com.hfkj.entity.BsOrderMemberExample.Criteria; |
||||
import com.hfkj.entity.BsOrderMemberExample.Criterion; |
||||
import com.hfkj.entity.BsOrderMemberExample; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
import org.apache.ibatis.jdbc.SQL; |
||||
|
||||
public class BsOrderMemberSqlProvider { |
||||
|
||||
public String countByExample(BsOrderMemberExample example) { |
||||
SQL sql = new SQL(); |
||||
sql.SELECT("count(*)").FROM("bs_order_member"); |
||||
applyWhere(sql, example, false); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String deleteByExample(BsOrderMemberExample example) { |
||||
SQL sql = new SQL(); |
||||
sql.DELETE_FROM("bs_order_member"); |
||||
applyWhere(sql, example, false); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String insertSelective(BsOrderMember record) { |
||||
SQL sql = new SQL(); |
||||
sql.INSERT_INTO("bs_order_member"); |
||||
|
||||
if (record.getOrderNo() != null) { |
||||
sql.VALUES("order_no", "#{orderNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getChildOrderNo() != null) { |
||||
sql.VALUES("child_order_no", "#{childOrderNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getMerId() != null) { |
||||
sql.VALUES("mer_id", "#{merId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getPlatformCode() != null) { |
||||
sql.VALUES("platform_code", "#{platformCode,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getUserId() != null) { |
||||
sql.VALUES("user_id", "#{userId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getUserPhone() != null) { |
||||
sql.VALUES("user_phone", "#{userPhone,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getGoodsId() != null) { |
||||
sql.VALUES("goods_id", "#{goodsId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getGoodsName() != null) { |
||||
sql.VALUES("goods_name", "#{goodsName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getGoodsTypeId() != null) { |
||||
sql.VALUES("goods_type_id", "#{goodsTypeId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getGoodsTypeName() != null) { |
||||
sql.VALUES("goods_type_name", "#{goodsTypeName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getGoodsBrandId() != null) { |
||||
sql.VALUES("goods_brand_id", "#{goodsBrandId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getGoodsBrandName() != null) { |
||||
sql.VALUES("goods_brand_name", "#{goodsBrandName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getGoodsSpecsId() != null) { |
||||
sql.VALUES("goods_specs_id", "#{goodsSpecsId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getGoodsSpecsName() != null) { |
||||
sql.VALUES("goods_specs_name", "#{goodsSpecsName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getGoodsSpescOriginalPrice() != null) { |
||||
sql.VALUES("goods_spesc_original_price", "#{goodsSpescOriginalPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getGoodsSpescSalePrice() != null) { |
||||
sql.VALUES("goods_spesc_sale_price", "#{goodsSpescSalePrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getGoodsVpdId() != null) { |
||||
sql.VALUES("goods_vpd_id", "#{goodsVpdId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getGoodsVpdKey() != null) { |
||||
sql.VALUES("goods_vpd_key", "#{goodsVpdKey,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getGoodsVpdSource() != null) { |
||||
sql.VALUES("goods_vpd_source", "#{goodsVpdSource,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getGoodsCount() != null) { |
||||
sql.VALUES("goods_count", "#{goodsCount,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getTotalPrice() != null) { |
||||
sql.VALUES("total_price", "#{totalPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getTotalDeductionPrice() != null) { |
||||
sql.VALUES("total_deduction_price", "#{totalDeductionPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getCouponDiscountPrice() != null) { |
||||
sql.VALUES("coupon_discount_price", "#{couponDiscountPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getIntegralDiscountPrice() != null) { |
||||
sql.VALUES("integral_discount_price", "#{integralDiscountPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getPayRealPrice() != null) { |
||||
sql.VALUES("pay_real_price", "#{payRealPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getPayChannel() != null) { |
||||
sql.VALUES("pay_channel", "#{payChannel,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getPaySerialNo() != null) { |
||||
sql.VALUES("pay_serial_no", "#{paySerialNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getPayType() != null) { |
||||
sql.VALUES("pay_type", "#{payType,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.VALUES("`status`", "#{status,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.VALUES("create_time", "#{createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getPayTime() != null) { |
||||
sql.VALUES("pay_time", "#{payTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getCancelTime() != null) { |
||||
sql.VALUES("cancel_time", "#{cancelTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getRefundTime() != null) { |
||||
sql.VALUES("refund_time", "#{refundTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getFinishTime() != null) { |
||||
sql.VALUES("finish_time", "#{finishTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getUpdateTime() != null) { |
||||
sql.VALUES("update_time", "#{updateTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
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(BsOrderMemberExample example) { |
||||
SQL sql = new SQL(); |
||||
if (example != null && example.isDistinct()) { |
||||
sql.SELECT_DISTINCT("id"); |
||||
} else { |
||||
sql.SELECT("id"); |
||||
} |
||||
sql.SELECT("order_no"); |
||||
sql.SELECT("child_order_no"); |
||||
sql.SELECT("mer_id"); |
||||
sql.SELECT("platform_code"); |
||||
sql.SELECT("user_id"); |
||||
sql.SELECT("user_phone"); |
||||
sql.SELECT("goods_id"); |
||||
sql.SELECT("goods_name"); |
||||
sql.SELECT("goods_type_id"); |
||||
sql.SELECT("goods_type_name"); |
||||
sql.SELECT("goods_brand_id"); |
||||
sql.SELECT("goods_brand_name"); |
||||
sql.SELECT("goods_specs_id"); |
||||
sql.SELECT("goods_specs_name"); |
||||
sql.SELECT("goods_spesc_original_price"); |
||||
sql.SELECT("goods_spesc_sale_price"); |
||||
sql.SELECT("goods_vpd_id"); |
||||
sql.SELECT("goods_vpd_key"); |
||||
sql.SELECT("goods_vpd_source"); |
||||
sql.SELECT("goods_count"); |
||||
sql.SELECT("total_price"); |
||||
sql.SELECT("total_deduction_price"); |
||||
sql.SELECT("coupon_discount_price"); |
||||
sql.SELECT("integral_discount_price"); |
||||
sql.SELECT("pay_real_price"); |
||||
sql.SELECT("pay_channel"); |
||||
sql.SELECT("pay_serial_no"); |
||||
sql.SELECT("pay_type"); |
||||
sql.SELECT("`status`"); |
||||
sql.SELECT("create_time"); |
||||
sql.SELECT("pay_time"); |
||||
sql.SELECT("cancel_time"); |
||||
sql.SELECT("refund_time"); |
||||
sql.SELECT("finish_time"); |
||||
sql.SELECT("update_time"); |
||||
sql.SELECT("ext_1"); |
||||
sql.SELECT("ext_2"); |
||||
sql.SELECT("ext_3"); |
||||
sql.FROM("bs_order_member"); |
||||
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) { |
||||
BsOrderMember record = (BsOrderMember) parameter.get("record"); |
||||
BsOrderMemberExample example = (BsOrderMemberExample) parameter.get("example"); |
||||
|
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("bs_order_member"); |
||||
|
||||
if (record.getId() != null) { |
||||
sql.SET("id = #{record.id,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getOrderNo() != null) { |
||||
sql.SET("order_no = #{record.orderNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getChildOrderNo() != null) { |
||||
sql.SET("child_order_no = #{record.childOrderNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getMerId() != null) { |
||||
sql.SET("mer_id = #{record.merId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getPlatformCode() != null) { |
||||
sql.SET("platform_code = #{record.platformCode,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getUserId() != null) { |
||||
sql.SET("user_id = #{record.userId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getUserPhone() != null) { |
||||
sql.SET("user_phone = #{record.userPhone,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getGoodsId() != null) { |
||||
sql.SET("goods_id = #{record.goodsId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getGoodsName() != null) { |
||||
sql.SET("goods_name = #{record.goodsName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getGoodsTypeId() != null) { |
||||
sql.SET("goods_type_id = #{record.goodsTypeId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getGoodsTypeName() != null) { |
||||
sql.SET("goods_type_name = #{record.goodsTypeName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getGoodsBrandId() != null) { |
||||
sql.SET("goods_brand_id = #{record.goodsBrandId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getGoodsBrandName() != null) { |
||||
sql.SET("goods_brand_name = #{record.goodsBrandName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getGoodsSpecsId() != null) { |
||||
sql.SET("goods_specs_id = #{record.goodsSpecsId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getGoodsSpecsName() != null) { |
||||
sql.SET("goods_specs_name = #{record.goodsSpecsName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getGoodsSpescOriginalPrice() != null) { |
||||
sql.SET("goods_spesc_original_price = #{record.goodsSpescOriginalPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getGoodsSpescSalePrice() != null) { |
||||
sql.SET("goods_spesc_sale_price = #{record.goodsSpescSalePrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getGoodsVpdId() != null) { |
||||
sql.SET("goods_vpd_id = #{record.goodsVpdId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getGoodsVpdKey() != null) { |
||||
sql.SET("goods_vpd_key = #{record.goodsVpdKey,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getGoodsVpdSource() != null) { |
||||
sql.SET("goods_vpd_source = #{record.goodsVpdSource,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getGoodsCount() != null) { |
||||
sql.SET("goods_count = #{record.goodsCount,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getTotalPrice() != null) { |
||||
sql.SET("total_price = #{record.totalPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getTotalDeductionPrice() != null) { |
||||
sql.SET("total_deduction_price = #{record.totalDeductionPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getCouponDiscountPrice() != null) { |
||||
sql.SET("coupon_discount_price = #{record.couponDiscountPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getIntegralDiscountPrice() != null) { |
||||
sql.SET("integral_discount_price = #{record.integralDiscountPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getPayRealPrice() != null) { |
||||
sql.SET("pay_real_price = #{record.payRealPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getPayChannel() != null) { |
||||
sql.SET("pay_channel = #{record.payChannel,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getPaySerialNo() != null) { |
||||
sql.SET("pay_serial_no = #{record.paySerialNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getPayType() != null) { |
||||
sql.SET("pay_type = #{record.payType,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getPayTime() != null) { |
||||
sql.SET("pay_time = #{record.payTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getCancelTime() != null) { |
||||
sql.SET("cancel_time = #{record.cancelTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getRefundTime() != null) { |
||||
sql.SET("refund_time = #{record.refundTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getFinishTime() != null) { |
||||
sql.SET("finish_time = #{record.finishTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getUpdateTime() != null) { |
||||
sql.SET("update_time = #{record.updateTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
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("bs_order_member"); |
||||
|
||||
sql.SET("id = #{record.id,jdbcType=BIGINT}"); |
||||
sql.SET("order_no = #{record.orderNo,jdbcType=VARCHAR}"); |
||||
sql.SET("child_order_no = #{record.childOrderNo,jdbcType=VARCHAR}"); |
||||
sql.SET("mer_id = #{record.merId,jdbcType=BIGINT}"); |
||||
sql.SET("platform_code = #{record.platformCode,jdbcType=VARCHAR}"); |
||||
sql.SET("user_id = #{record.userId,jdbcType=BIGINT}"); |
||||
sql.SET("user_phone = #{record.userPhone,jdbcType=VARCHAR}"); |
||||
sql.SET("goods_id = #{record.goodsId,jdbcType=BIGINT}"); |
||||
sql.SET("goods_name = #{record.goodsName,jdbcType=VARCHAR}"); |
||||
sql.SET("goods_type_id = #{record.goodsTypeId,jdbcType=BIGINT}"); |
||||
sql.SET("goods_type_name = #{record.goodsTypeName,jdbcType=VARCHAR}"); |
||||
sql.SET("goods_brand_id = #{record.goodsBrandId,jdbcType=BIGINT}"); |
||||
sql.SET("goods_brand_name = #{record.goodsBrandName,jdbcType=VARCHAR}"); |
||||
sql.SET("goods_specs_id = #{record.goodsSpecsId,jdbcType=BIGINT}"); |
||||
sql.SET("goods_specs_name = #{record.goodsSpecsName,jdbcType=VARCHAR}"); |
||||
sql.SET("goods_spesc_original_price = #{record.goodsSpescOriginalPrice,jdbcType=DECIMAL}"); |
||||
sql.SET("goods_spesc_sale_price = #{record.goodsSpescSalePrice,jdbcType=DECIMAL}"); |
||||
sql.SET("goods_vpd_id = #{record.goodsVpdId,jdbcType=BIGINT}"); |
||||
sql.SET("goods_vpd_key = #{record.goodsVpdKey,jdbcType=VARCHAR}"); |
||||
sql.SET("goods_vpd_source = #{record.goodsVpdSource,jdbcType=INTEGER}"); |
||||
sql.SET("goods_count = #{record.goodsCount,jdbcType=INTEGER}"); |
||||
sql.SET("total_price = #{record.totalPrice,jdbcType=DECIMAL}"); |
||||
sql.SET("total_deduction_price = #{record.totalDeductionPrice,jdbcType=DECIMAL}"); |
||||
sql.SET("coupon_discount_price = #{record.couponDiscountPrice,jdbcType=DECIMAL}"); |
||||
sql.SET("integral_discount_price = #{record.integralDiscountPrice,jdbcType=DECIMAL}"); |
||||
sql.SET("pay_real_price = #{record.payRealPrice,jdbcType=DECIMAL}"); |
||||
sql.SET("pay_channel = #{record.payChannel,jdbcType=INTEGER}"); |
||||
sql.SET("pay_serial_no = #{record.paySerialNo,jdbcType=VARCHAR}"); |
||||
sql.SET("pay_type = #{record.payType,jdbcType=INTEGER}"); |
||||
sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); |
||||
sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); |
||||
sql.SET("pay_time = #{record.payTime,jdbcType=TIMESTAMP}"); |
||||
sql.SET("cancel_time = #{record.cancelTime,jdbcType=TIMESTAMP}"); |
||||
sql.SET("refund_time = #{record.refundTime,jdbcType=TIMESTAMP}"); |
||||
sql.SET("finish_time = #{record.finishTime,jdbcType=TIMESTAMP}"); |
||||
sql.SET("update_time = #{record.updateTime,jdbcType=TIMESTAMP}"); |
||||
sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); |
||||
sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); |
||||
sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); |
||||
|
||||
BsOrderMemberExample example = (BsOrderMemberExample) parameter.get("example"); |
||||
applyWhere(sql, example, true); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String updateByPrimaryKeySelective(BsOrderMember record) { |
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("bs_order_member"); |
||||
|
||||
if (record.getOrderNo() != null) { |
||||
sql.SET("order_no = #{orderNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getChildOrderNo() != null) { |
||||
sql.SET("child_order_no = #{childOrderNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getMerId() != null) { |
||||
sql.SET("mer_id = #{merId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getPlatformCode() != null) { |
||||
sql.SET("platform_code = #{platformCode,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getUserId() != null) { |
||||
sql.SET("user_id = #{userId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getUserPhone() != null) { |
||||
sql.SET("user_phone = #{userPhone,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getGoodsId() != null) { |
||||
sql.SET("goods_id = #{goodsId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getGoodsName() != null) { |
||||
sql.SET("goods_name = #{goodsName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getGoodsTypeId() != null) { |
||||
sql.SET("goods_type_id = #{goodsTypeId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getGoodsTypeName() != null) { |
||||
sql.SET("goods_type_name = #{goodsTypeName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getGoodsBrandId() != null) { |
||||
sql.SET("goods_brand_id = #{goodsBrandId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getGoodsBrandName() != null) { |
||||
sql.SET("goods_brand_name = #{goodsBrandName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getGoodsSpecsId() != null) { |
||||
sql.SET("goods_specs_id = #{goodsSpecsId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getGoodsSpecsName() != null) { |
||||
sql.SET("goods_specs_name = #{goodsSpecsName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getGoodsSpescOriginalPrice() != null) { |
||||
sql.SET("goods_spesc_original_price = #{goodsSpescOriginalPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getGoodsSpescSalePrice() != null) { |
||||
sql.SET("goods_spesc_sale_price = #{goodsSpescSalePrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getGoodsVpdId() != null) { |
||||
sql.SET("goods_vpd_id = #{goodsVpdId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getGoodsVpdKey() != null) { |
||||
sql.SET("goods_vpd_key = #{goodsVpdKey,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getGoodsVpdSource() != null) { |
||||
sql.SET("goods_vpd_source = #{goodsVpdSource,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getGoodsCount() != null) { |
||||
sql.SET("goods_count = #{goodsCount,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getTotalPrice() != null) { |
||||
sql.SET("total_price = #{totalPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getTotalDeductionPrice() != null) { |
||||
sql.SET("total_deduction_price = #{totalDeductionPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getCouponDiscountPrice() != null) { |
||||
sql.SET("coupon_discount_price = #{couponDiscountPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getIntegralDiscountPrice() != null) { |
||||
sql.SET("integral_discount_price = #{integralDiscountPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getPayRealPrice() != null) { |
||||
sql.SET("pay_real_price = #{payRealPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getPayChannel() != null) { |
||||
sql.SET("pay_channel = #{payChannel,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getPaySerialNo() != null) { |
||||
sql.SET("pay_serial_no = #{paySerialNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getPayType() != null) { |
||||
sql.SET("pay_type = #{payType,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.SET("`status` = #{status,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.SET("create_time = #{createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getPayTime() != null) { |
||||
sql.SET("pay_time = #{payTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getCancelTime() != null) { |
||||
sql.SET("cancel_time = #{cancelTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getRefundTime() != null) { |
||||
sql.SET("refund_time = #{refundTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getFinishTime() != null) { |
||||
sql.SET("finish_time = #{finishTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getUpdateTime() != null) { |
||||
sql.SET("update_time = #{updateTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
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, BsOrderMemberExample 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,89 @@ |
||||
package com.hfkj.dao; |
||||
|
||||
import com.hfkj.entity.SecConfig; |
||||
import com.hfkj.entity.SecConfigExample; |
||||
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 SecConfigMapper extends SecConfigMapperExt { |
||||
@SelectProvider(type=SecConfigSqlProvider.class, method="countByExample") |
||||
long countByExample(SecConfigExample example); |
||||
|
||||
@DeleteProvider(type=SecConfigSqlProvider.class, method="deleteByExample") |
||||
int deleteByExample(SecConfigExample example); |
||||
|
||||
@Delete({ |
||||
"delete from sec_config", |
||||
"where id = #{id,jdbcType=INTEGER}" |
||||
}) |
||||
int deleteByPrimaryKey(Integer id); |
||||
|
||||
@Insert({ |
||||
"insert into sec_config (code_type, code_value)", |
||||
"values (#{codeType,jdbcType=VARCHAR}, #{codeValue,jdbcType=VARCHAR})" |
||||
}) |
||||
@Options(useGeneratedKeys=true,keyProperty="id") |
||||
int insert(SecConfig record); |
||||
|
||||
@InsertProvider(type=SecConfigSqlProvider.class, method="insertSelective") |
||||
@Options(useGeneratedKeys=true,keyProperty="id") |
||||
int insertSelective(SecConfig record); |
||||
|
||||
@SelectProvider(type=SecConfigSqlProvider.class, method="selectByExample") |
||||
@Results({ |
||||
@Result(column="id", property="id", jdbcType=JdbcType.INTEGER, id=true), |
||||
@Result(column="code_type", property="codeType", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="code_value", property="codeValue", jdbcType=JdbcType.VARCHAR) |
||||
}) |
||||
List<SecConfig> selectByExample(SecConfigExample example); |
||||
|
||||
@Select({ |
||||
"select", |
||||
"id, code_type, code_value", |
||||
"from sec_config", |
||||
"where id = #{id,jdbcType=INTEGER}" |
||||
}) |
||||
@Results({ |
||||
@Result(column="id", property="id", jdbcType=JdbcType.INTEGER, id=true), |
||||
@Result(column="code_type", property="codeType", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="code_value", property="codeValue", jdbcType=JdbcType.VARCHAR) |
||||
}) |
||||
SecConfig selectByPrimaryKey(Integer id); |
||||
|
||||
@UpdateProvider(type=SecConfigSqlProvider.class, method="updateByExampleSelective") |
||||
int updateByExampleSelective(@Param("record") SecConfig record, @Param("example") SecConfigExample example); |
||||
|
||||
@UpdateProvider(type=SecConfigSqlProvider.class, method="updateByExample") |
||||
int updateByExample(@Param("record") SecConfig record, @Param("example") SecConfigExample example); |
||||
|
||||
@UpdateProvider(type=SecConfigSqlProvider.class, method="updateByPrimaryKeySelective") |
||||
int updateByPrimaryKeySelective(SecConfig record); |
||||
|
||||
@Update({ |
||||
"update sec_config", |
||||
"set code_type = #{codeType,jdbcType=VARCHAR},", |
||||
"code_value = #{codeValue,jdbcType=VARCHAR}", |
||||
"where id = #{id,jdbcType=INTEGER}" |
||||
}) |
||||
int updateByPrimaryKey(SecConfig record); |
||||
} |
@ -0,0 +1,7 @@ |
||||
package com.hfkj.dao; |
||||
|
||||
/** |
||||
* mapper扩展类 |
||||
*/ |
||||
public interface SecConfigMapperExt { |
||||
} |
@ -0,0 +1,206 @@ |
||||
package com.hfkj.dao; |
||||
|
||||
import com.hfkj.entity.SecConfig; |
||||
import com.hfkj.entity.SecConfigExample.Criteria; |
||||
import com.hfkj.entity.SecConfigExample.Criterion; |
||||
import com.hfkj.entity.SecConfigExample; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
import org.apache.ibatis.jdbc.SQL; |
||||
|
||||
public class SecConfigSqlProvider { |
||||
|
||||
public String countByExample(SecConfigExample example) { |
||||
SQL sql = new SQL(); |
||||
sql.SELECT("count(*)").FROM("sec_config"); |
||||
applyWhere(sql, example, false); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String deleteByExample(SecConfigExample example) { |
||||
SQL sql = new SQL(); |
||||
sql.DELETE_FROM("sec_config"); |
||||
applyWhere(sql, example, false); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String insertSelective(SecConfig record) { |
||||
SQL sql = new SQL(); |
||||
sql.INSERT_INTO("sec_config"); |
||||
|
||||
if (record.getCodeType() != null) { |
||||
sql.VALUES("code_type", "#{codeType,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getCodeValue() != null) { |
||||
sql.VALUES("code_value", "#{codeValue,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String selectByExample(SecConfigExample example) { |
||||
SQL sql = new SQL(); |
||||
if (example != null && example.isDistinct()) { |
||||
sql.SELECT_DISTINCT("id"); |
||||
} else { |
||||
sql.SELECT("id"); |
||||
} |
||||
sql.SELECT("code_type"); |
||||
sql.SELECT("code_value"); |
||||
sql.FROM("sec_config"); |
||||
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) { |
||||
SecConfig record = (SecConfig) parameter.get("record"); |
||||
SecConfigExample example = (SecConfigExample) parameter.get("example"); |
||||
|
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("sec_config"); |
||||
|
||||
if (record.getId() != null) { |
||||
sql.SET("id = #{record.id,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getCodeType() != null) { |
||||
sql.SET("code_type = #{record.codeType,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getCodeValue() != null) { |
||||
sql.SET("code_value = #{record.codeValue,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
applyWhere(sql, example, true); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String updateByExample(Map<String, Object> parameter) { |
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("sec_config"); |
||||
|
||||
sql.SET("id = #{record.id,jdbcType=INTEGER}"); |
||||
sql.SET("code_type = #{record.codeType,jdbcType=VARCHAR}"); |
||||
sql.SET("code_value = #{record.codeValue,jdbcType=VARCHAR}"); |
||||
|
||||
SecConfigExample example = (SecConfigExample) parameter.get("example"); |
||||
applyWhere(sql, example, true); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String updateByPrimaryKeySelective(SecConfig record) { |
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("sec_config"); |
||||
|
||||
if (record.getCodeType() != null) { |
||||
sql.SET("code_type = #{codeType,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getCodeValue() != null) { |
||||
sql.SET("code_value = #{codeValue,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
sql.WHERE("id = #{id,jdbcType=INTEGER}"); |
||||
|
||||
return sql.toString(); |
||||
} |
||||
|
||||
protected void applyWhere(SQL sql, SecConfigExample 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,665 @@ |
||||
package com.hfkj.entity; |
||||
|
||||
import java.io.Serializable; |
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* bs_order_member |
||||
* @author |
||||
*/ |
||||
/** |
||||
* |
||||
* 代码由工具生成 |
||||
* |
||||
**/ |
||||
public class BsOrderMember implements Serializable { |
||||
/** |
||||
* 主键 |
||||
*/ |
||||
private Long id; |
||||
|
||||
/** |
||||
* 交易订单号 |
||||
*/ |
||||
private String orderNo; |
||||
|
||||
/** |
||||
* 子订单号 |
||||
*/ |
||||
private String childOrderNo; |
||||
|
||||
/** |
||||
* 商户id |
||||
*/ |
||||
private Long merId; |
||||
|
||||
/** |
||||
* 登录平台code |
||||
*/ |
||||
private String platformCode; |
||||
|
||||
/** |
||||
* 用户id |
||||
*/ |
||||
private Long userId; |
||||
|
||||
/** |
||||
* 用户手机号 |
||||
*/ |
||||
private String userPhone; |
||||
|
||||
/** |
||||
* 商品id |
||||
*/ |
||||
private Long goodsId; |
||||
|
||||
/** |
||||
* 商品名称 |
||||
*/ |
||||
private String goodsName; |
||||
|
||||
/** |
||||
* 商品类型id |
||||
*/ |
||||
private Long goodsTypeId; |
||||
|
||||
/** |
||||
* 商品类型名称 |
||||
*/ |
||||
private String goodsTypeName; |
||||
|
||||
/** |
||||
* 商品品牌id |
||||
*/ |
||||
private Long goodsBrandId; |
||||
|
||||
/** |
||||
* 商品品牌名称 |
||||
*/ |
||||
private String goodsBrandName; |
||||
|
||||
/** |
||||
* 商品规格id |
||||
*/ |
||||
private Long goodsSpecsId; |
||||
|
||||
/** |
||||
* 商品规格名称 |
||||
*/ |
||||
private String goodsSpecsName; |
||||
|
||||
/** |
||||
* 商品规格原价 |
||||
*/ |
||||
private BigDecimal goodsSpescOriginalPrice; |
||||
|
||||
/** |
||||
* 商品规格销售价 |
||||
*/ |
||||
private BigDecimal goodsSpescSalePrice; |
||||
|
||||
/** |
||||
* 商品虚拟id |
||||
*/ |
||||
private Long goodsVpdId; |
||||
|
||||
/** |
||||
* 商品虚拟key |
||||
*/ |
||||
private String goodsVpdKey; |
||||
|
||||
/** |
||||
* 商品虚拟来源 |
||||
*/ |
||||
private Integer goodsVpdSource; |
||||
|
||||
/** |
||||
* 商品数量 |
||||
*/ |
||||
private Integer goodsCount; |
||||
|
||||
/** |
||||
* 交易金额 |
||||
*/ |
||||
private BigDecimal totalPrice; |
||||
|
||||
/** |
||||
* 总优惠金额(优惠券优惠金额 + 积分抵扣) |
||||
*/ |
||||
private BigDecimal totalDeductionPrice; |
||||
|
||||
/** |
||||
* 优惠券优惠金额 |
||||
*/ |
||||
private BigDecimal couponDiscountPrice; |
||||
|
||||
/** |
||||
* 积分抵扣优惠金额 |
||||
*/ |
||||
private Long integralDiscountPrice; |
||||
|
||||
/** |
||||
* 实付金额 |
||||
*/ |
||||
private BigDecimal payRealPrice; |
||||
|
||||
/** |
||||
* 支付渠道与bs_order订单表同步 |
||||
*/ |
||||
private Integer payChannel; |
||||
|
||||
/** |
||||
* 客户支付流水号 |
||||
*/ |
||||
private String paySerialNo; |
||||
|
||||
/** |
||||
* 支付方式与bs_order订单表同步 |
||||
*/ |
||||
private Integer payType; |
||||
|
||||
/** |
||||
* 状态与子订单状态同步 |
||||
*/ |
||||
private Integer status; |
||||
|
||||
/** |
||||
* 创建时间 |
||||
*/ |
||||
private Date createTime; |
||||
|
||||
/** |
||||
* 支付时间 |
||||
*/ |
||||
private Date payTime; |
||||
|
||||
/** |
||||
* 取消时间 |
||||
*/ |
||||
private Date cancelTime; |
||||
|
||||
/** |
||||
* 退款时间 |
||||
*/ |
||||
private Date refundTime; |
||||
|
||||
/** |
||||
* 完成时间 |
||||
*/ |
||||
private Date finishTime; |
||||
|
||||
/** |
||||
* 更新时间 |
||||
*/ |
||||
private Date updateTime; |
||||
|
||||
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 String getOrderNo() { |
||||
return orderNo; |
||||
} |
||||
|
||||
public void setOrderNo(String orderNo) { |
||||
this.orderNo = orderNo; |
||||
} |
||||
|
||||
public String getChildOrderNo() { |
||||
return childOrderNo; |
||||
} |
||||
|
||||
public void setChildOrderNo(String childOrderNo) { |
||||
this.childOrderNo = childOrderNo; |
||||
} |
||||
|
||||
public Long getMerId() { |
||||
return merId; |
||||
} |
||||
|
||||
public void setMerId(Long merId) { |
||||
this.merId = merId; |
||||
} |
||||
|
||||
public String getPlatformCode() { |
||||
return platformCode; |
||||
} |
||||
|
||||
public void setPlatformCode(String platformCode) { |
||||
this.platformCode = platformCode; |
||||
} |
||||
|
||||
public Long getUserId() { |
||||
return userId; |
||||
} |
||||
|
||||
public void setUserId(Long userId) { |
||||
this.userId = userId; |
||||
} |
||||
|
||||
public String getUserPhone() { |
||||
return userPhone; |
||||
} |
||||
|
||||
public void setUserPhone(String userPhone) { |
||||
this.userPhone = userPhone; |
||||
} |
||||
|
||||
public Long getGoodsId() { |
||||
return goodsId; |
||||
} |
||||
|
||||
public void setGoodsId(Long goodsId) { |
||||
this.goodsId = goodsId; |
||||
} |
||||
|
||||
public String getGoodsName() { |
||||
return goodsName; |
||||
} |
||||
|
||||
public void setGoodsName(String goodsName) { |
||||
this.goodsName = goodsName; |
||||
} |
||||
|
||||
public Long getGoodsTypeId() { |
||||
return goodsTypeId; |
||||
} |
||||
|
||||
public void setGoodsTypeId(Long goodsTypeId) { |
||||
this.goodsTypeId = goodsTypeId; |
||||
} |
||||
|
||||
public String getGoodsTypeName() { |
||||
return goodsTypeName; |
||||
} |
||||
|
||||
public void setGoodsTypeName(String goodsTypeName) { |
||||
this.goodsTypeName = goodsTypeName; |
||||
} |
||||
|
||||
public Long getGoodsBrandId() { |
||||
return goodsBrandId; |
||||
} |
||||
|
||||
public void setGoodsBrandId(Long goodsBrandId) { |
||||
this.goodsBrandId = goodsBrandId; |
||||
} |
||||
|
||||
public String getGoodsBrandName() { |
||||
return goodsBrandName; |
||||
} |
||||
|
||||
public void setGoodsBrandName(String goodsBrandName) { |
||||
this.goodsBrandName = goodsBrandName; |
||||
} |
||||
|
||||
public Long getGoodsSpecsId() { |
||||
return goodsSpecsId; |
||||
} |
||||
|
||||
public void setGoodsSpecsId(Long goodsSpecsId) { |
||||
this.goodsSpecsId = goodsSpecsId; |
||||
} |
||||
|
||||
public String getGoodsSpecsName() { |
||||
return goodsSpecsName; |
||||
} |
||||
|
||||
public void setGoodsSpecsName(String goodsSpecsName) { |
||||
this.goodsSpecsName = goodsSpecsName; |
||||
} |
||||
|
||||
public BigDecimal getGoodsSpescOriginalPrice() { |
||||
return goodsSpescOriginalPrice; |
||||
} |
||||
|
||||
public void setGoodsSpescOriginalPrice(BigDecimal goodsSpescOriginalPrice) { |
||||
this.goodsSpescOriginalPrice = goodsSpescOriginalPrice; |
||||
} |
||||
|
||||
public BigDecimal getGoodsSpescSalePrice() { |
||||
return goodsSpescSalePrice; |
||||
} |
||||
|
||||
public void setGoodsSpescSalePrice(BigDecimal goodsSpescSalePrice) { |
||||
this.goodsSpescSalePrice = goodsSpescSalePrice; |
||||
} |
||||
|
||||
public Long getGoodsVpdId() { |
||||
return goodsVpdId; |
||||
} |
||||
|
||||
public void setGoodsVpdId(Long goodsVpdId) { |
||||
this.goodsVpdId = goodsVpdId; |
||||
} |
||||
|
||||
public String getGoodsVpdKey() { |
||||
return goodsVpdKey; |
||||
} |
||||
|
||||
public void setGoodsVpdKey(String goodsVpdKey) { |
||||
this.goodsVpdKey = goodsVpdKey; |
||||
} |
||||
|
||||
public Integer getGoodsVpdSource() { |
||||
return goodsVpdSource; |
||||
} |
||||
|
||||
public void setGoodsVpdSource(Integer goodsVpdSource) { |
||||
this.goodsVpdSource = goodsVpdSource; |
||||
} |
||||
|
||||
public Integer getGoodsCount() { |
||||
return goodsCount; |
||||
} |
||||
|
||||
public void setGoodsCount(Integer goodsCount) { |
||||
this.goodsCount = goodsCount; |
||||
} |
||||
|
||||
public BigDecimal getTotalPrice() { |
||||
return totalPrice; |
||||
} |
||||
|
||||
public void setTotalPrice(BigDecimal totalPrice) { |
||||
this.totalPrice = totalPrice; |
||||
} |
||||
|
||||
public BigDecimal getTotalDeductionPrice() { |
||||
return totalDeductionPrice; |
||||
} |
||||
|
||||
public void setTotalDeductionPrice(BigDecimal totalDeductionPrice) { |
||||
this.totalDeductionPrice = totalDeductionPrice; |
||||
} |
||||
|
||||
public BigDecimal getCouponDiscountPrice() { |
||||
return couponDiscountPrice; |
||||
} |
||||
|
||||
public void setCouponDiscountPrice(BigDecimal couponDiscountPrice) { |
||||
this.couponDiscountPrice = couponDiscountPrice; |
||||
} |
||||
|
||||
public Long getIntegralDiscountPrice() { |
||||
return integralDiscountPrice; |
||||
} |
||||
|
||||
public void setIntegralDiscountPrice(Long integralDiscountPrice) { |
||||
this.integralDiscountPrice = integralDiscountPrice; |
||||
} |
||||
|
||||
public BigDecimal getPayRealPrice() { |
||||
return payRealPrice; |
||||
} |
||||
|
||||
public void setPayRealPrice(BigDecimal payRealPrice) { |
||||
this.payRealPrice = payRealPrice; |
||||
} |
||||
|
||||
public Integer getPayChannel() { |
||||
return payChannel; |
||||
} |
||||
|
||||
public void setPayChannel(Integer payChannel) { |
||||
this.payChannel = payChannel; |
||||
} |
||||
|
||||
public String getPaySerialNo() { |
||||
return paySerialNo; |
||||
} |
||||
|
||||
public void setPaySerialNo(String paySerialNo) { |
||||
this.paySerialNo = paySerialNo; |
||||
} |
||||
|
||||
public Integer getPayType() { |
||||
return payType; |
||||
} |
||||
|
||||
public void setPayType(Integer payType) { |
||||
this.payType = payType; |
||||
} |
||||
|
||||
public Integer getStatus() { |
||||
return status; |
||||
} |
||||
|
||||
public void setStatus(Integer status) { |
||||
this.status = status; |
||||
} |
||||
|
||||
public Date getCreateTime() { |
||||
return createTime; |
||||
} |
||||
|
||||
public void setCreateTime(Date createTime) { |
||||
this.createTime = createTime; |
||||
} |
||||
|
||||
public Date getPayTime() { |
||||
return payTime; |
||||
} |
||||
|
||||
public void setPayTime(Date payTime) { |
||||
this.payTime = payTime; |
||||
} |
||||
|
||||
public Date getCancelTime() { |
||||
return cancelTime; |
||||
} |
||||
|
||||
public void setCancelTime(Date cancelTime) { |
||||
this.cancelTime = cancelTime; |
||||
} |
||||
|
||||
public Date getRefundTime() { |
||||
return refundTime; |
||||
} |
||||
|
||||
public void setRefundTime(Date refundTime) { |
||||
this.refundTime = refundTime; |
||||
} |
||||
|
||||
public Date getFinishTime() { |
||||
return finishTime; |
||||
} |
||||
|
||||
public void setFinishTime(Date finishTime) { |
||||
this.finishTime = finishTime; |
||||
} |
||||
|
||||
public Date getUpdateTime() { |
||||
return updateTime; |
||||
} |
||||
|
||||
public void setUpdateTime(Date updateTime) { |
||||
this.updateTime = updateTime; |
||||
} |
||||
|
||||
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; |
||||
} |
||||
BsOrderMember other = (BsOrderMember) that; |
||||
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) |
||||
&& (this.getOrderNo() == null ? other.getOrderNo() == null : this.getOrderNo().equals(other.getOrderNo())) |
||||
&& (this.getChildOrderNo() == null ? other.getChildOrderNo() == null : this.getChildOrderNo().equals(other.getChildOrderNo())) |
||||
&& (this.getMerId() == null ? other.getMerId() == null : this.getMerId().equals(other.getMerId())) |
||||
&& (this.getPlatformCode() == null ? other.getPlatformCode() == null : this.getPlatformCode().equals(other.getPlatformCode())) |
||||
&& (this.getUserId() == null ? other.getUserId() == null : this.getUserId().equals(other.getUserId())) |
||||
&& (this.getUserPhone() == null ? other.getUserPhone() == null : this.getUserPhone().equals(other.getUserPhone())) |
||||
&& (this.getGoodsId() == null ? other.getGoodsId() == null : this.getGoodsId().equals(other.getGoodsId())) |
||||
&& (this.getGoodsName() == null ? other.getGoodsName() == null : this.getGoodsName().equals(other.getGoodsName())) |
||||
&& (this.getGoodsTypeId() == null ? other.getGoodsTypeId() == null : this.getGoodsTypeId().equals(other.getGoodsTypeId())) |
||||
&& (this.getGoodsTypeName() == null ? other.getGoodsTypeName() == null : this.getGoodsTypeName().equals(other.getGoodsTypeName())) |
||||
&& (this.getGoodsBrandId() == null ? other.getGoodsBrandId() == null : this.getGoodsBrandId().equals(other.getGoodsBrandId())) |
||||
&& (this.getGoodsBrandName() == null ? other.getGoodsBrandName() == null : this.getGoodsBrandName().equals(other.getGoodsBrandName())) |
||||
&& (this.getGoodsSpecsId() == null ? other.getGoodsSpecsId() == null : this.getGoodsSpecsId().equals(other.getGoodsSpecsId())) |
||||
&& (this.getGoodsSpecsName() == null ? other.getGoodsSpecsName() == null : this.getGoodsSpecsName().equals(other.getGoodsSpecsName())) |
||||
&& (this.getGoodsSpescOriginalPrice() == null ? other.getGoodsSpescOriginalPrice() == null : this.getGoodsSpescOriginalPrice().equals(other.getGoodsSpescOriginalPrice())) |
||||
&& (this.getGoodsSpescSalePrice() == null ? other.getGoodsSpescSalePrice() == null : this.getGoodsSpescSalePrice().equals(other.getGoodsSpescSalePrice())) |
||||
&& (this.getGoodsVpdId() == null ? other.getGoodsVpdId() == null : this.getGoodsVpdId().equals(other.getGoodsVpdId())) |
||||
&& (this.getGoodsVpdKey() == null ? other.getGoodsVpdKey() == null : this.getGoodsVpdKey().equals(other.getGoodsVpdKey())) |
||||
&& (this.getGoodsVpdSource() == null ? other.getGoodsVpdSource() == null : this.getGoodsVpdSource().equals(other.getGoodsVpdSource())) |
||||
&& (this.getGoodsCount() == null ? other.getGoodsCount() == null : this.getGoodsCount().equals(other.getGoodsCount())) |
||||
&& (this.getTotalPrice() == null ? other.getTotalPrice() == null : this.getTotalPrice().equals(other.getTotalPrice())) |
||||
&& (this.getTotalDeductionPrice() == null ? other.getTotalDeductionPrice() == null : this.getTotalDeductionPrice().equals(other.getTotalDeductionPrice())) |
||||
&& (this.getCouponDiscountPrice() == null ? other.getCouponDiscountPrice() == null : this.getCouponDiscountPrice().equals(other.getCouponDiscountPrice())) |
||||
&& (this.getIntegralDiscountPrice() == null ? other.getIntegralDiscountPrice() == null : this.getIntegralDiscountPrice().equals(other.getIntegralDiscountPrice())) |
||||
&& (this.getPayRealPrice() == null ? other.getPayRealPrice() == null : this.getPayRealPrice().equals(other.getPayRealPrice())) |
||||
&& (this.getPayChannel() == null ? other.getPayChannel() == null : this.getPayChannel().equals(other.getPayChannel())) |
||||
&& (this.getPaySerialNo() == null ? other.getPaySerialNo() == null : this.getPaySerialNo().equals(other.getPaySerialNo())) |
||||
&& (this.getPayType() == null ? other.getPayType() == null : this.getPayType().equals(other.getPayType())) |
||||
&& (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus())) |
||||
&& (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime())) |
||||
&& (this.getPayTime() == null ? other.getPayTime() == null : this.getPayTime().equals(other.getPayTime())) |
||||
&& (this.getCancelTime() == null ? other.getCancelTime() == null : this.getCancelTime().equals(other.getCancelTime())) |
||||
&& (this.getRefundTime() == null ? other.getRefundTime() == null : this.getRefundTime().equals(other.getRefundTime())) |
||||
&& (this.getFinishTime() == null ? other.getFinishTime() == null : this.getFinishTime().equals(other.getFinishTime())) |
||||
&& (this.getUpdateTime() == null ? other.getUpdateTime() == null : this.getUpdateTime().equals(other.getUpdateTime())) |
||||
&& (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 + ((getOrderNo() == null) ? 0 : getOrderNo().hashCode()); |
||||
result = prime * result + ((getChildOrderNo() == null) ? 0 : getChildOrderNo().hashCode()); |
||||
result = prime * result + ((getMerId() == null) ? 0 : getMerId().hashCode()); |
||||
result = prime * result + ((getPlatformCode() == null) ? 0 : getPlatformCode().hashCode()); |
||||
result = prime * result + ((getUserId() == null) ? 0 : getUserId().hashCode()); |
||||
result = prime * result + ((getUserPhone() == null) ? 0 : getUserPhone().hashCode()); |
||||
result = prime * result + ((getGoodsId() == null) ? 0 : getGoodsId().hashCode()); |
||||
result = prime * result + ((getGoodsName() == null) ? 0 : getGoodsName().hashCode()); |
||||
result = prime * result + ((getGoodsTypeId() == null) ? 0 : getGoodsTypeId().hashCode()); |
||||
result = prime * result + ((getGoodsTypeName() == null) ? 0 : getGoodsTypeName().hashCode()); |
||||
result = prime * result + ((getGoodsBrandId() == null) ? 0 : getGoodsBrandId().hashCode()); |
||||
result = prime * result + ((getGoodsBrandName() == null) ? 0 : getGoodsBrandName().hashCode()); |
||||
result = prime * result + ((getGoodsSpecsId() == null) ? 0 : getGoodsSpecsId().hashCode()); |
||||
result = prime * result + ((getGoodsSpecsName() == null) ? 0 : getGoodsSpecsName().hashCode()); |
||||
result = prime * result + ((getGoodsSpescOriginalPrice() == null) ? 0 : getGoodsSpescOriginalPrice().hashCode()); |
||||
result = prime * result + ((getGoodsSpescSalePrice() == null) ? 0 : getGoodsSpescSalePrice().hashCode()); |
||||
result = prime * result + ((getGoodsVpdId() == null) ? 0 : getGoodsVpdId().hashCode()); |
||||
result = prime * result + ((getGoodsVpdKey() == null) ? 0 : getGoodsVpdKey().hashCode()); |
||||
result = prime * result + ((getGoodsVpdSource() == null) ? 0 : getGoodsVpdSource().hashCode()); |
||||
result = prime * result + ((getGoodsCount() == null) ? 0 : getGoodsCount().hashCode()); |
||||
result = prime * result + ((getTotalPrice() == null) ? 0 : getTotalPrice().hashCode()); |
||||
result = prime * result + ((getTotalDeductionPrice() == null) ? 0 : getTotalDeductionPrice().hashCode()); |
||||
result = prime * result + ((getCouponDiscountPrice() == null) ? 0 : getCouponDiscountPrice().hashCode()); |
||||
result = prime * result + ((getIntegralDiscountPrice() == null) ? 0 : getIntegralDiscountPrice().hashCode()); |
||||
result = prime * result + ((getPayRealPrice() == null) ? 0 : getPayRealPrice().hashCode()); |
||||
result = prime * result + ((getPayChannel() == null) ? 0 : getPayChannel().hashCode()); |
||||
result = prime * result + ((getPaySerialNo() == null) ? 0 : getPaySerialNo().hashCode()); |
||||
result = prime * result + ((getPayType() == null) ? 0 : getPayType().hashCode()); |
||||
result = prime * result + ((getStatus() == null) ? 0 : getStatus().hashCode()); |
||||
result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); |
||||
result = prime * result + ((getPayTime() == null) ? 0 : getPayTime().hashCode()); |
||||
result = prime * result + ((getCancelTime() == null) ? 0 : getCancelTime().hashCode()); |
||||
result = prime * result + ((getRefundTime() == null) ? 0 : getRefundTime().hashCode()); |
||||
result = prime * result + ((getFinishTime() == null) ? 0 : getFinishTime().hashCode()); |
||||
result = prime * result + ((getUpdateTime() == null) ? 0 : getUpdateTime().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(", orderNo=").append(orderNo); |
||||
sb.append(", childOrderNo=").append(childOrderNo); |
||||
sb.append(", merId=").append(merId); |
||||
sb.append(", platformCode=").append(platformCode); |
||||
sb.append(", userId=").append(userId); |
||||
sb.append(", userPhone=").append(userPhone); |
||||
sb.append(", goodsId=").append(goodsId); |
||||
sb.append(", goodsName=").append(goodsName); |
||||
sb.append(", goodsTypeId=").append(goodsTypeId); |
||||
sb.append(", goodsTypeName=").append(goodsTypeName); |
||||
sb.append(", goodsBrandId=").append(goodsBrandId); |
||||
sb.append(", goodsBrandName=").append(goodsBrandName); |
||||
sb.append(", goodsSpecsId=").append(goodsSpecsId); |
||||
sb.append(", goodsSpecsName=").append(goodsSpecsName); |
||||
sb.append(", goodsSpescOriginalPrice=").append(goodsSpescOriginalPrice); |
||||
sb.append(", goodsSpescSalePrice=").append(goodsSpescSalePrice); |
||||
sb.append(", goodsVpdId=").append(goodsVpdId); |
||||
sb.append(", goodsVpdKey=").append(goodsVpdKey); |
||||
sb.append(", goodsVpdSource=").append(goodsVpdSource); |
||||
sb.append(", goodsCount=").append(goodsCount); |
||||
sb.append(", totalPrice=").append(totalPrice); |
||||
sb.append(", totalDeductionPrice=").append(totalDeductionPrice); |
||||
sb.append(", couponDiscountPrice=").append(couponDiscountPrice); |
||||
sb.append(", integralDiscountPrice=").append(integralDiscountPrice); |
||||
sb.append(", payRealPrice=").append(payRealPrice); |
||||
sb.append(", payChannel=").append(payChannel); |
||||
sb.append(", paySerialNo=").append(paySerialNo); |
||||
sb.append(", payType=").append(payType); |
||||
sb.append(", status=").append(status); |
||||
sb.append(", createTime=").append(createTime); |
||||
sb.append(", payTime=").append(payTime); |
||||
sb.append(", cancelTime=").append(cancelTime); |
||||
sb.append(", refundTime=").append(refundTime); |
||||
sb.append(", finishTime=").append(finishTime); |
||||
sb.append(", updateTime=").append(updateTime); |
||||
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
@ -0,0 +1,87 @@ |
||||
package com.hfkj.entity; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
/** |
||||
* sec_config |
||||
* @author |
||||
*/ |
||||
/** |
||||
* |
||||
* 代码由工具生成 |
||||
* |
||||
**/ |
||||
public class SecConfig implements Serializable { |
||||
private Integer id; |
||||
|
||||
private String codeType; |
||||
|
||||
private String codeValue; |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
public Integer getId() { |
||||
return id; |
||||
} |
||||
|
||||
public void setId(Integer id) { |
||||
this.id = id; |
||||
} |
||||
|
||||
public String getCodeType() { |
||||
return codeType; |
||||
} |
||||
|
||||
public void setCodeType(String codeType) { |
||||
this.codeType = codeType; |
||||
} |
||||
|
||||
public String getCodeValue() { |
||||
return codeValue; |
||||
} |
||||
|
||||
public void setCodeValue(String codeValue) { |
||||
this.codeValue = codeValue; |
||||
} |
||||
|
||||
@Override |
||||
public boolean equals(Object that) { |
||||
if (this == that) { |
||||
return true; |
||||
} |
||||
if (that == null) { |
||||
return false; |
||||
} |
||||
if (getClass() != that.getClass()) { |
||||
return false; |
||||
} |
||||
SecConfig other = (SecConfig) that; |
||||
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) |
||||
&& (this.getCodeType() == null ? other.getCodeType() == null : this.getCodeType().equals(other.getCodeType())) |
||||
&& (this.getCodeValue() == null ? other.getCodeValue() == null : this.getCodeValue().equals(other.getCodeValue())); |
||||
} |
||||
|
||||
@Override |
||||
public int hashCode() { |
||||
final int prime = 31; |
||||
int result = 1; |
||||
result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); |
||||
result = prime * result + ((getCodeType() == null) ? 0 : getCodeType().hashCode()); |
||||
result = prime * result + ((getCodeValue() == null) ? 0 : getCodeValue().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(", codeType=").append(codeType); |
||||
sb.append(", codeValue=").append(codeValue); |
||||
sb.append(", serialVersionUID=").append(serialVersionUID); |
||||
sb.append("]"); |
||||
return sb.toString(); |
||||
} |
||||
} |
@ -0,0 +1,422 @@ |
||||
package com.hfkj.entity; |
||||
|
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
|
||||
public class SecConfigExample { |
||||
protected String orderByClause; |
||||
|
||||
protected boolean distinct; |
||||
|
||||
protected List<Criteria> oredCriteria; |
||||
|
||||
private Integer limit; |
||||
|
||||
private Long offset; |
||||
|
||||
public SecConfigExample() { |
||||
oredCriteria = new ArrayList<Criteria>(); |
||||
} |
||||
|
||||
public void setOrderByClause(String orderByClause) { |
||||
this.orderByClause = orderByClause; |
||||
} |
||||
|
||||
public String getOrderByClause() { |
||||
return orderByClause; |
||||
} |
||||
|
||||
public void setDistinct(boolean distinct) { |
||||
this.distinct = distinct; |
||||
} |
||||
|
||||
public boolean isDistinct() { |
||||
return distinct; |
||||
} |
||||
|
||||
public List<Criteria> getOredCriteria() { |
||||
return oredCriteria; |
||||
} |
||||
|
||||
public void or(Criteria criteria) { |
||||
oredCriteria.add(criteria); |
||||
} |
||||
|
||||
public Criteria or() { |
||||
Criteria criteria = createCriteriaInternal(); |
||||
oredCriteria.add(criteria); |
||||
return criteria; |
||||
} |
||||
|
||||
public Criteria createCriteria() { |
||||
Criteria criteria = createCriteriaInternal(); |
||||
if (oredCriteria.size() == 0) { |
||||
oredCriteria.add(criteria); |
||||
} |
||||
return criteria; |
||||
} |
||||
|
||||
protected Criteria createCriteriaInternal() { |
||||
Criteria criteria = new Criteria(); |
||||
return criteria; |
||||
} |
||||
|
||||
public void clear() { |
||||
oredCriteria.clear(); |
||||
orderByClause = null; |
||||
distinct = false; |
||||
} |
||||
|
||||
public void setLimit(Integer limit) { |
||||
this.limit = limit; |
||||
} |
||||
|
||||
public Integer getLimit() { |
||||
return limit; |
||||
} |
||||
|
||||
public void setOffset(Long offset) { |
||||
this.offset = offset; |
||||
} |
||||
|
||||
public Long getOffset() { |
||||
return offset; |
||||
} |
||||
|
||||
protected abstract static class GeneratedCriteria { |
||||
protected List<Criterion> criteria; |
||||
|
||||
protected GeneratedCriteria() { |
||||
super(); |
||||
criteria = new ArrayList<Criterion>(); |
||||
} |
||||
|
||||
public boolean isValid() { |
||||
return criteria.size() > 0; |
||||
} |
||||
|
||||
public List<Criterion> getAllCriteria() { |
||||
return criteria; |
||||
} |
||||
|
||||
public List<Criterion> getCriteria() { |
||||
return criteria; |
||||
} |
||||
|
||||
protected void addCriterion(String condition) { |
||||
if (condition == null) { |
||||
throw new RuntimeException("Value for condition cannot be null"); |
||||
} |
||||
criteria.add(new Criterion(condition)); |
||||
} |
||||
|
||||
protected void addCriterion(String condition, Object value, String property) { |
||||
if (value == null) { |
||||
throw new RuntimeException("Value for " + property + " cannot be null"); |
||||
} |
||||
criteria.add(new Criterion(condition, value)); |
||||
} |
||||
|
||||
protected void addCriterion(String condition, Object value1, Object value2, String property) { |
||||
if (value1 == null || value2 == null) { |
||||
throw new RuntimeException("Between values for " + property + " cannot be null"); |
||||
} |
||||
criteria.add(new Criterion(condition, value1, value2)); |
||||
} |
||||
|
||||
public Criteria andIdIsNull() { |
||||
addCriterion("id is null"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andIdIsNotNull() { |
||||
addCriterion("id is not null"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andIdEqualTo(Integer value) { |
||||
addCriterion("id =", value, "id"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andIdNotEqualTo(Integer value) { |
||||
addCriterion("id <>", value, "id"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andIdGreaterThan(Integer value) { |
||||
addCriterion("id >", value, "id"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andIdGreaterThanOrEqualTo(Integer value) { |
||||
addCriterion("id >=", value, "id"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andIdLessThan(Integer value) { |
||||
addCriterion("id <", value, "id"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andIdLessThanOrEqualTo(Integer value) { |
||||
addCriterion("id <=", value, "id"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andIdIn(List<Integer> values) { |
||||
addCriterion("id in", values, "id"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andIdNotIn(List<Integer> values) { |
||||
addCriterion("id not in", values, "id"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andIdBetween(Integer value1, Integer value2) { |
||||
addCriterion("id between", value1, value2, "id"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andIdNotBetween(Integer value1, Integer value2) { |
||||
addCriterion("id not between", value1, value2, "id"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeTypeIsNull() { |
||||
addCriterion("code_type is null"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeTypeIsNotNull() { |
||||
addCriterion("code_type is not null"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeTypeEqualTo(String value) { |
||||
addCriterion("code_type =", value, "codeType"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeTypeNotEqualTo(String value) { |
||||
addCriterion("code_type <>", value, "codeType"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeTypeGreaterThan(String value) { |
||||
addCriterion("code_type >", value, "codeType"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeTypeGreaterThanOrEqualTo(String value) { |
||||
addCriterion("code_type >=", value, "codeType"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeTypeLessThan(String value) { |
||||
addCriterion("code_type <", value, "codeType"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeTypeLessThanOrEqualTo(String value) { |
||||
addCriterion("code_type <=", value, "codeType"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeTypeLike(String value) { |
||||
addCriterion("code_type like", value, "codeType"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeTypeNotLike(String value) { |
||||
addCriterion("code_type not like", value, "codeType"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeTypeIn(List<String> values) { |
||||
addCriterion("code_type in", values, "codeType"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeTypeNotIn(List<String> values) { |
||||
addCriterion("code_type not in", values, "codeType"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeTypeBetween(String value1, String value2) { |
||||
addCriterion("code_type between", value1, value2, "codeType"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeTypeNotBetween(String value1, String value2) { |
||||
addCriterion("code_type not between", value1, value2, "codeType"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeValueIsNull() { |
||||
addCriterion("code_value is null"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeValueIsNotNull() { |
||||
addCriterion("code_value is not null"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeValueEqualTo(String value) { |
||||
addCriterion("code_value =", value, "codeValue"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeValueNotEqualTo(String value) { |
||||
addCriterion("code_value <>", value, "codeValue"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeValueGreaterThan(String value) { |
||||
addCriterion("code_value >", value, "codeValue"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeValueGreaterThanOrEqualTo(String value) { |
||||
addCriterion("code_value >=", value, "codeValue"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeValueLessThan(String value) { |
||||
addCriterion("code_value <", value, "codeValue"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeValueLessThanOrEqualTo(String value) { |
||||
addCriterion("code_value <=", value, "codeValue"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeValueLike(String value) { |
||||
addCriterion("code_value like", value, "codeValue"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeValueNotLike(String value) { |
||||
addCriterion("code_value not like", value, "codeValue"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeValueIn(List<String> values) { |
||||
addCriterion("code_value in", values, "codeValue"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeValueNotIn(List<String> values) { |
||||
addCriterion("code_value not in", values, "codeValue"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeValueBetween(String value1, String value2) { |
||||
addCriterion("code_value between", value1, value2, "codeValue"); |
||||
return (Criteria) this; |
||||
} |
||||
|
||||
public Criteria andCodeValueNotBetween(String value1, String value2) { |
||||
addCriterion("code_value not between", value1, value2, "codeValue"); |
||||
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); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,67 @@ |
||||
package com.hfkj.haioil; |
||||
|
||||
import com.alibaba.fastjson.JSONObject; |
||||
import com.hfkj.common.exception.ErrorCode; |
||||
import com.hfkj.common.exception.ErrorHelp; |
||||
import com.hfkj.common.exception.SysCode; |
||||
import com.hfkj.common.utils.HttpsUtils; |
||||
import com.hfkj.common.utils.SignatureUtil; |
||||
import com.hfkj.config.CommonSysConst; |
||||
import org.slf4j.Logger; |
||||
import org.slf4j.LoggerFactory; |
||||
|
||||
import java.util.Date; |
||||
import java.util.Map; |
||||
import java.util.Objects; |
||||
|
||||
public class HaiOilService { |
||||
|
||||
private static Logger log = LoggerFactory.getLogger(HaiOilService.class); |
||||
|
||||
|
||||
/** |
||||
* @MethodName pushPk |
||||
* @Description: 推送优惠券包 |
||||
* @param map |
||||
* @return: com.alibaba.fastjson.JSONObject |
||||
* @Author: Sum1Dream |
||||
* @Date: 2024/9/9 下午2:57 |
||||
*/ |
||||
public static JSONObject pushPk(Map<String , Object> map) throws Exception { |
||||
|
||||
JSONObject object = request("/openapi/discount/pushPk" , map); |
||||
|
||||
if (Objects.equals(object.getString("return_code"), "000000")) { |
||||
return object; |
||||
} else { |
||||
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "请求失败!"); |
||||
} |
||||
|
||||
} |
||||
|
||||
/** |
||||
* 请求 |
||||
* @param postUrl 接口请求地址 |
||||
* @param param 参数 |
||||
* @return |
||||
* @throws Exception |
||||
*/ |
||||
public static JSONObject request(String postUrl, Map<String,Object> param) throws Exception { |
||||
|
||||
log.info("============ 嗨加油请求-START ============="); |
||||
param.put("appId", CommonSysConst.getSysConfig().getHaiOilAppid()); |
||||
param.put("reqId", new Date().getTime()); |
||||
param.put("sign", SignatureUtil.createSign(param , CommonSysConst.getSysConfig().getHaiOilAppSecret())); |
||||
|
||||
log.info("请求接口:" + postUrl); |
||||
log.info("请求参数:" + JSONObject.toJSONString(param)); |
||||
|
||||
JSONObject response = HttpsUtils.doPost(CommonSysConst.getSysConfig().getHaiOilPostUrl()+ postUrl, JSONObject.toJSONString(param)); |
||||
|
||||
log.info("响应参数:" + response.toJSONString()); |
||||
log.info("============ 嗨加油请求-END =============="); |
||||
return response; |
||||
|
||||
} |
||||
|
||||
} |
@ -1,19 +1,12 @@ |
||||
package com.hfkj.qianzhu.channel; |
||||
package com.hfkj.qianzhu; |
||||
|
||||
import com.alibaba.fastjson.JSONArray; |
||||
import com.alibaba.fastjson.JSONObject; |
||||
import com.hfkj.common.exception.ErrorCode; |
||||
import com.hfkj.common.exception.ErrorHelp; |
||||
import com.hfkj.common.exception.SysCode; |
||||
import com.hfkj.entity.BsProductConfig; |
||||
import com.hfkj.service.BsProductConfigService; |
||||
import com.hfkj.sysenum.order.OrderChildProductTypeEnum; |
||||
|
||||
import javax.annotation.Resource; |
||||
import java.math.BigDecimal; |
||||
import java.util.HashMap; |
||||
import java.util.Map; |
||||
import java.util.Objects; |
||||
|
||||
/** |
||||
* @ClassName CinemaService |
@ -1,4 +1,4 @@ |
||||
package com.hfkj.qianzhu.channel; |
||||
package com.hfkj.qianzhu; |
||||
|
||||
import com.alibaba.fastjson.JSONObject; |
||||
import com.hfkj.common.exception.ErrorCode; |
@ -1,4 +1,4 @@ |
||||
package com.hfkj.qianzhu.channel; |
||||
package com.hfkj.qianzhu; |
||||
|
||||
import com.alibaba.fastjson.JSON; |
||||
import com.alibaba.fastjson.JSONObject; |
@ -0,0 +1,52 @@ |
||||
package com.hfkj.service; |
||||
import com.hfkj.entity.SecConfig; |
||||
|
||||
/** |
||||
* @ClassName SecConfigService.java |
||||
* @author Sum1Dream |
||||
* @version 1.0.0 |
||||
* @Description //TODO
|
||||
* @createTime 17:29 2021/6/23 |
||||
**/ |
||||
public interface SecConfigService { |
||||
|
||||
/** |
||||
* @Author Sum1Dream |
||||
* @Name create |
||||
* @Description // 创建
|
||||
* @Date 15:11 2024/4/19 |
||||
* @Param GoodsBrand |
||||
* @return void |
||||
*/ |
||||
void create(SecConfig secConfig); |
||||
|
||||
/** |
||||
* @Author Sum1Dream |
||||
* @Name update |
||||
* @Description // 修改
|
||||
* @Date 15:12 2024/4/19 |
||||
* @Param GoodsBrand |
||||
* @return void |
||||
*/ |
||||
void update(SecConfig secConfig); |
||||
|
||||
/** |
||||
* @Author Sum1Dream |
||||
* @Name delete |
||||
* @Description // 修改
|
||||
* @Date 15:12 2024/4/19 |
||||
* @Param id |
||||
* @return void |
||||
*/ |
||||
void delete(Integer id); |
||||
|
||||
/** |
||||
* @Author Sum1Dream |
||||
* @Name queryDetail |
||||
* @Description // 根据ID查询产品类型详情
|
||||
* @Date 15:12 2024/4/19 |
||||
* @Param id |
||||
* @return com.hfkj.entity.GoodsBrand |
||||
*/ |
||||
SecConfig queryDetail(Integer id); |
||||
} |
@ -0,0 +1,78 @@ |
||||
package com.hfkj.service.goods; |
||||
|
||||
|
||||
import com.hfkj.entity.BsOrderMember; |
||||
|
||||
import java.util.List; |
||||
import java.util.Map; |
||||
|
||||
public interface BsOrderMemberService { |
||||
|
||||
/** |
||||
* @MethodName create |
||||
* @Description: 创建 |
||||
* @param orderMember |
||||
* @Author: Sum1Dream |
||||
* @Date: 2024/9/5 下午4:18 |
||||
*/ |
||||
void create(BsOrderMember orderMember); |
||||
|
||||
/** |
||||
* @MethodName update |
||||
* @Description: 更新 |
||||
* @param orderMember |
||||
* @Author: Sum1Dream |
||||
* @Date: 2024/9/5 下午4:19 |
||||
*/ |
||||
void update(BsOrderMember orderMember); |
||||
|
||||
/** |
||||
* @MethodName delete |
||||
* @Description: 删除 |
||||
* @param id |
||||
* @param fullDelete |
||||
* @Author: Sum1Dream |
||||
* @Date: 2024/9/5 下午4:19 |
||||
*/ |
||||
void delete(Long id , Boolean fullDelete); |
||||
|
||||
/** |
||||
* @MethodName queryDetail |
||||
* @Description: 查询详情 |
||||
* @param id |
||||
* @return: com.hfkj.entity.BsOrderMember |
||||
* @Author: Sum1Dream |
||||
* @Date: 2024/9/5 下午4:19 |
||||
*/ |
||||
BsOrderMember queryDetail(Long id); |
||||
|
||||
/** |
||||
* @MethodName findGoodsOrder |
||||
* @Description: 根据订单号查询 |
||||
* @param orderNo |
||||
* @return: com.hfkj.entity.BsOrderMember |
||||
* @Author: Sum1Dream |
||||
* @Date: 2024/9/5 下午4:22 |
||||
*/ |
||||
BsOrderMember findGoodsOrder(String orderNo); |
||||
|
||||
/** |
||||
* @MethodName queryDetailByMap |
||||
* @Description: 查询订单详情 |
||||
* @param map |
||||
* @return: com.hfkj.entity.BsOrderMember |
||||
* @Author: Sum1Dream |
||||
* @Date: 2024/9/5 下午4:27 |
||||
*/ |
||||
BsOrderMember queryDetailByMap(Map<String , Object> map); |
||||
|
||||
/** |
||||
* @MethodName getList |
||||
* @Description: 查询订单列表 |
||||
* @param map |
||||
* @return: java.util.List<com.hfkj.entity.BsOrderMember> |
||||
* @Author: Sum1Dream |
||||
* @Date: 2024/9/5 下午4:27 |
||||
*/ |
||||
List<BsOrderMember> getList(Map<String , Object> map); |
||||
} |
@ -0,0 +1,53 @@ |
||||
package com.hfkj.service.goods.impl; |
||||
|
||||
import com.hfkj.dao.BsOrderMemberMapper; |
||||
import com.hfkj.entity.BsOrderMember; |
||||
import com.hfkj.service.goods.BsOrderMemberService; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
import javax.annotation.Resource; |
||||
import java.util.Collections; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
|
||||
@Service("bsOrderMemberService") |
||||
public class BsOrderMemberServiceImpl implements BsOrderMemberService { |
||||
|
||||
@Resource |
||||
private BsOrderMemberMapper bsOrderMemberMapper; |
||||
|
||||
@Override |
||||
public void create(BsOrderMember orderMember) { |
||||
bsOrderMemberMapper.insert(orderMember); |
||||
} |
||||
|
||||
@Override |
||||
public void update(BsOrderMember orderMember) { |
||||
bsOrderMemberMapper.updateByPrimaryKey(orderMember); |
||||
} |
||||
|
||||
@Override |
||||
public void delete(Long id, Boolean fullDelete) { |
||||
bsOrderMemberMapper.deleteByPrimaryKey(id); |
||||
} |
||||
|
||||
@Override |
||||
public BsOrderMember queryDetail(Long id) { |
||||
return bsOrderMemberMapper.selectByPrimaryKey(id); |
||||
} |
||||
|
||||
@Override |
||||
public BsOrderMember findGoodsOrder(String orderNo) { |
||||
return null; |
||||
} |
||||
|
||||
@Override |
||||
public BsOrderMember queryDetailByMap(Map<String, Object> map) { |
||||
return null; |
||||
} |
||||
|
||||
@Override |
||||
public List<BsOrderMember> getList(Map<String, Object> map) { |
||||
return Collections.emptyList(); |
||||
} |
||||
} |
@ -0,0 +1,34 @@ |
||||
package com.hfkj.service.impl; |
||||
|
||||
import com.hfkj.dao.SecConfigMapper; |
||||
import com.hfkj.entity.SecConfig; |
||||
import com.hfkj.service.SecConfigService; |
||||
import org.springframework.stereotype.Service; |
||||
import javax.annotation.Resource; |
||||
|
||||
@Service("secConfigService") |
||||
public class SecConfigServiceImpl implements SecConfigService { |
||||
|
||||
@Resource |
||||
private SecConfigMapper secConfigMapper; |
||||
|
||||
@Override |
||||
public void create(SecConfig secConfig) { |
||||
secConfigMapper.insert(secConfig); |
||||
} |
||||
|
||||
@Override |
||||
public void update(SecConfig secConfig) { |
||||
secConfigMapper.updateByPrimaryKeySelective(secConfig); |
||||
} |
||||
|
||||
@Override |
||||
public void delete(Integer id) { |
||||
secConfigMapper.deleteByPrimaryKey(id); |
||||
} |
||||
|
||||
@Override |
||||
public SecConfig queryDetail(Integer id) { |
||||
return secConfigMapper.selectByPrimaryKey(id); |
||||
} |
||||
} |
@ -0,0 +1,88 @@ |
||||
package com.hfkj.yushang; |
||||
|
||||
import com.alibaba.fastjson.JSONObject; |
||||
import com.hfkj.common.exception.ErrorCode; |
||||
import com.hfkj.common.exception.ErrorHelp; |
||||
import com.hfkj.common.exception.SysCode; |
||||
import com.hfkj.common.utils.HttpsUtils; |
||||
import com.hfkj.common.utils.MD5Util; |
||||
import com.hfkj.config.CommonSysConst; |
||||
import com.hfkj.config.GenerateSign; |
||||
import org.slf4j.Logger; |
||||
import org.slf4j.LoggerFactory; |
||||
|
||||
import java.util.Date; |
||||
import java.util.Map; |
||||
|
||||
public class YuShangService { |
||||
|
||||
private static Logger log = LoggerFactory.getLogger(YuShangService.class); |
||||
|
||||
/** |
||||
* @MethodName insertV2 |
||||
* @Description: 直充订单提交接口 |
||||
* @param map |
||||
* @return: com.alibaba.fastjson.JSONObject |
||||
* @Author: Sum1Dream |
||||
* @Date: 2024/9/5 下午2:17 |
||||
*/ |
||||
public static JSONObject insertV2(Map<String , Object> map) throws Exception { |
||||
|
||||
JSONObject object = request("/Order/InsertV2" , map); |
||||
|
||||
if ( object.getInteger("Code") == 999) { |
||||
return object; |
||||
} else { |
||||
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "请求失败!"); |
||||
} |
||||
|
||||
} |
||||
|
||||
/** |
||||
* @MethodName queryV2 |
||||
* @Description: 订单查询接口 |
||||
* @param map |
||||
* @return: com.alibaba.fastjson.JSONObject |
||||
* @Author: Sum1Dream |
||||
* @Date: 2024/9/5 下午2:29 |
||||
*/ |
||||
public static JSONObject queryV2(Map<String , Object> map) throws Exception { |
||||
|
||||
JSONObject object = request("Order/QueryV2" , map); |
||||
|
||||
if ( object.getInteger("Code") == 999) { |
||||
return object; |
||||
} else { |
||||
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "请求失败!"); |
||||
} |
||||
|
||||
} |
||||
|
||||
/** |
||||
* 请求 |
||||
* @param postUrl 接口请求地址 |
||||
* @param param 参数 |
||||
* @return |
||||
* @throws Exception |
||||
*/ |
||||
public static JSONObject request(String postUrl, Map<String,Object> param) throws Exception { |
||||
|
||||
log.info("============ 娱尚请求-START ============="); |
||||
param.put("AppKey", CommonSysConst.getSysConfig().getYuShangAppKey()); |
||||
param.put("timestamp", new Date().getTime()); |
||||
param.put("CustomerIP", "127.0.0.1"); |
||||
param.put("sign", MD5Util.encode(GenerateSign.paramSortYuShang(param,CommonSysConst.getSysConfig().getYuShangAppSecret()).getBytes()).toLowerCase()); |
||||
|
||||
log.info("请求接口:" + postUrl); |
||||
log.info("请求参数:" + JSONObject.toJSONString(param)); |
||||
|
||||
JSONObject response = HttpsUtils.doPost(CommonSysConst.getSysConfig().getYuShangPostUrl()+ postUrl, JSONObject.toJSONString(param)); |
||||
|
||||
log.info("响应参数:" + response.toJSONString()); |
||||
log.info("============ 娱尚请求-END =============="); |
||||
return response; |
||||
|
||||
} |
||||
|
||||
|
||||
} |
Loading…
Reference in new issue