new-dev
胡锐 2 years ago
parent fc3e972856
commit 8280e5f69b
  1. 25
      hai-service/src/main/java/com/hai/dao/GoodsOrderMapper.java
  2. 56
      hai-service/src/main/java/com/hai/dao/GoodsOrderSqlProvider.java
  3. 85
      hai-service/src/main/java/com/hai/dao/HighChildOrderMapper.java
  4. 126
      hai-service/src/main/java/com/hai/dao/HighChildOrderSqlProvider.java
  5. 64
      hai-service/src/main/java/com/hai/entity/GoodsOrder.java
  6. 260
      hai-service/src/main/java/com/hai/entity/GoodsOrderExample.java
  7. 252
      hai-service/src/main/java/com/hai/entity/HighChildOrder.java
  8. 454
      hai-service/src/main/java/com/hai/entity/HighChildOrderExample.java

@ -39,17 +39,13 @@ public interface GoodsOrderMapper extends GoodsOrderMapperExt {
int deleteByPrimaryKey(Long id); int deleteByPrimaryKey(Long id);
@Insert({ @Insert({
"insert into goods_order (logistics_no, sku_id, ", "insert into goods_order (logistics_no, order_no, ",
"order_no, child_order_no, ",
"pay_price, order_price, ",
"freight_price, delivery_address_id, ", "freight_price, delivery_address_id, ",
"delivery_address, create_time, ", "delivery_address, create_time, ",
"update_time, op_id, ", "update_time, op_id, ",
"op_name, `status`, ", "op_name, `status`, ",
"ext_1, ext_2, ext_3)", "ext_1, ext_2, ext_3)",
"values (#{logisticsNo,jdbcType=VARCHAR}, #{skuId,jdbcType=VARCHAR}, ", "values (#{logisticsNo,jdbcType=VARCHAR}, #{orderNo,jdbcType=VARCHAR}, ",
"#{orderNo,jdbcType=VARCHAR}, #{childOrderNo,jdbcType=VARCHAR}, ",
"#{payPrice,jdbcType=DECIMAL}, #{orderPrice,jdbcType=DECIMAL}, ",
"#{freightPrice,jdbcType=DECIMAL}, #{deliveryAddressId,jdbcType=BIGINT}, ", "#{freightPrice,jdbcType=DECIMAL}, #{deliveryAddressId,jdbcType=BIGINT}, ",
"#{deliveryAddress,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, ", "#{deliveryAddress,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, ",
"#{updateTime,jdbcType=TIMESTAMP}, #{opId,jdbcType=BIGINT}, ", "#{updateTime,jdbcType=TIMESTAMP}, #{opId,jdbcType=BIGINT}, ",
@ -67,11 +63,7 @@ public interface GoodsOrderMapper extends GoodsOrderMapperExt {
@Results({ @Results({
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), @Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true),
@Result(column="logistics_no", property="logisticsNo", jdbcType=JdbcType.VARCHAR), @Result(column="logistics_no", property="logisticsNo", jdbcType=JdbcType.VARCHAR),
@Result(column="sku_id", property="skuId", jdbcType=JdbcType.VARCHAR),
@Result(column="order_no", property="orderNo", jdbcType=JdbcType.VARCHAR), @Result(column="order_no", property="orderNo", jdbcType=JdbcType.VARCHAR),
@Result(column="child_order_no", property="childOrderNo", jdbcType=JdbcType.VARCHAR),
@Result(column="pay_price", property="payPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="order_price", property="orderPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="freight_price", property="freightPrice", jdbcType=JdbcType.DECIMAL), @Result(column="freight_price", property="freightPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="delivery_address_id", property="deliveryAddressId", jdbcType=JdbcType.BIGINT), @Result(column="delivery_address_id", property="deliveryAddressId", jdbcType=JdbcType.BIGINT),
@Result(column="delivery_address", property="deliveryAddress", jdbcType=JdbcType.VARCHAR), @Result(column="delivery_address", property="deliveryAddress", jdbcType=JdbcType.VARCHAR),
@ -88,20 +80,15 @@ public interface GoodsOrderMapper extends GoodsOrderMapperExt {
@Select({ @Select({
"select", "select",
"id, logistics_no, sku_id, order_no, child_order_no, pay_price, order_price, ", "id, logistics_no, order_no, freight_price, delivery_address_id, delivery_address, ",
"freight_price, delivery_address_id, delivery_address, create_time, update_time, ", "create_time, update_time, op_id, op_name, `status`, ext_1, ext_2, ext_3",
"op_id, op_name, `status`, ext_1, ext_2, ext_3",
"from goods_order", "from goods_order",
"where id = #{id,jdbcType=BIGINT}" "where id = #{id,jdbcType=BIGINT}"
}) })
@Results({ @Results({
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), @Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true),
@Result(column="logistics_no", property="logisticsNo", jdbcType=JdbcType.VARCHAR), @Result(column="logistics_no", property="logisticsNo", jdbcType=JdbcType.VARCHAR),
@Result(column="sku_id", property="skuId", jdbcType=JdbcType.VARCHAR),
@Result(column="order_no", property="orderNo", jdbcType=JdbcType.VARCHAR), @Result(column="order_no", property="orderNo", jdbcType=JdbcType.VARCHAR),
@Result(column="child_order_no", property="childOrderNo", jdbcType=JdbcType.VARCHAR),
@Result(column="pay_price", property="payPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="order_price", property="orderPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="freight_price", property="freightPrice", jdbcType=JdbcType.DECIMAL), @Result(column="freight_price", property="freightPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="delivery_address_id", property="deliveryAddressId", jdbcType=JdbcType.BIGINT), @Result(column="delivery_address_id", property="deliveryAddressId", jdbcType=JdbcType.BIGINT),
@Result(column="delivery_address", property="deliveryAddress", jdbcType=JdbcType.VARCHAR), @Result(column="delivery_address", property="deliveryAddress", jdbcType=JdbcType.VARCHAR),
@ -128,11 +115,7 @@ public interface GoodsOrderMapper extends GoodsOrderMapperExt {
@Update({ @Update({
"update goods_order", "update goods_order",
"set logistics_no = #{logisticsNo,jdbcType=VARCHAR},", "set logistics_no = #{logisticsNo,jdbcType=VARCHAR},",
"sku_id = #{skuId,jdbcType=VARCHAR},",
"order_no = #{orderNo,jdbcType=VARCHAR},", "order_no = #{orderNo,jdbcType=VARCHAR},",
"child_order_no = #{childOrderNo,jdbcType=VARCHAR},",
"pay_price = #{payPrice,jdbcType=DECIMAL},",
"order_price = #{orderPrice,jdbcType=DECIMAL},",
"freight_price = #{freightPrice,jdbcType=DECIMAL},", "freight_price = #{freightPrice,jdbcType=DECIMAL},",
"delivery_address_id = #{deliveryAddressId,jdbcType=BIGINT},", "delivery_address_id = #{deliveryAddressId,jdbcType=BIGINT},",
"delivery_address = #{deliveryAddress,jdbcType=VARCHAR},", "delivery_address = #{deliveryAddress,jdbcType=VARCHAR},",

@ -32,26 +32,10 @@ public class GoodsOrderSqlProvider {
sql.VALUES("logistics_no", "#{logisticsNo,jdbcType=VARCHAR}"); sql.VALUES("logistics_no", "#{logisticsNo,jdbcType=VARCHAR}");
} }
if (record.getSkuId() != null) {
sql.VALUES("sku_id", "#{skuId,jdbcType=VARCHAR}");
}
if (record.getOrderNo() != null) { if (record.getOrderNo() != null) {
sql.VALUES("order_no", "#{orderNo,jdbcType=VARCHAR}"); sql.VALUES("order_no", "#{orderNo,jdbcType=VARCHAR}");
} }
if (record.getChildOrderNo() != null) {
sql.VALUES("child_order_no", "#{childOrderNo,jdbcType=VARCHAR}");
}
if (record.getPayPrice() != null) {
sql.VALUES("pay_price", "#{payPrice,jdbcType=DECIMAL}");
}
if (record.getOrderPrice() != null) {
sql.VALUES("order_price", "#{orderPrice,jdbcType=DECIMAL}");
}
if (record.getFreightPrice() != null) { if (record.getFreightPrice() != null) {
sql.VALUES("freight_price", "#{freightPrice,jdbcType=DECIMAL}"); sql.VALUES("freight_price", "#{freightPrice,jdbcType=DECIMAL}");
} }
@ -107,11 +91,7 @@ public class GoodsOrderSqlProvider {
sql.SELECT("id"); sql.SELECT("id");
} }
sql.SELECT("logistics_no"); sql.SELECT("logistics_no");
sql.SELECT("sku_id");
sql.SELECT("order_no"); sql.SELECT("order_no");
sql.SELECT("child_order_no");
sql.SELECT("pay_price");
sql.SELECT("order_price");
sql.SELECT("freight_price"); sql.SELECT("freight_price");
sql.SELECT("delivery_address_id"); sql.SELECT("delivery_address_id");
sql.SELECT("delivery_address"); sql.SELECT("delivery_address");
@ -148,26 +128,10 @@ public class GoodsOrderSqlProvider {
sql.SET("logistics_no = #{record.logisticsNo,jdbcType=VARCHAR}"); sql.SET("logistics_no = #{record.logisticsNo,jdbcType=VARCHAR}");
} }
if (record.getSkuId() != null) {
sql.SET("sku_id = #{record.skuId,jdbcType=VARCHAR}");
}
if (record.getOrderNo() != null) { if (record.getOrderNo() != null) {
sql.SET("order_no = #{record.orderNo,jdbcType=VARCHAR}"); sql.SET("order_no = #{record.orderNo,jdbcType=VARCHAR}");
} }
if (record.getChildOrderNo() != null) {
sql.SET("child_order_no = #{record.childOrderNo,jdbcType=VARCHAR}");
}
if (record.getPayPrice() != null) {
sql.SET("pay_price = #{record.payPrice,jdbcType=DECIMAL}");
}
if (record.getOrderPrice() != null) {
sql.SET("order_price = #{record.orderPrice,jdbcType=DECIMAL}");
}
if (record.getFreightPrice() != null) { if (record.getFreightPrice() != null) {
sql.SET("freight_price = #{record.freightPrice,jdbcType=DECIMAL}"); sql.SET("freight_price = #{record.freightPrice,jdbcType=DECIMAL}");
} }
@ -222,11 +186,7 @@ public class GoodsOrderSqlProvider {
sql.SET("id = #{record.id,jdbcType=BIGINT}"); sql.SET("id = #{record.id,jdbcType=BIGINT}");
sql.SET("logistics_no = #{record.logisticsNo,jdbcType=VARCHAR}"); sql.SET("logistics_no = #{record.logisticsNo,jdbcType=VARCHAR}");
sql.SET("sku_id = #{record.skuId,jdbcType=VARCHAR}");
sql.SET("order_no = #{record.orderNo,jdbcType=VARCHAR}"); sql.SET("order_no = #{record.orderNo,jdbcType=VARCHAR}");
sql.SET("child_order_no = #{record.childOrderNo,jdbcType=VARCHAR}");
sql.SET("pay_price = #{record.payPrice,jdbcType=DECIMAL}");
sql.SET("order_price = #{record.orderPrice,jdbcType=DECIMAL}");
sql.SET("freight_price = #{record.freightPrice,jdbcType=DECIMAL}"); sql.SET("freight_price = #{record.freightPrice,jdbcType=DECIMAL}");
sql.SET("delivery_address_id = #{record.deliveryAddressId,jdbcType=BIGINT}"); sql.SET("delivery_address_id = #{record.deliveryAddressId,jdbcType=BIGINT}");
sql.SET("delivery_address = #{record.deliveryAddress,jdbcType=VARCHAR}"); sql.SET("delivery_address = #{record.deliveryAddress,jdbcType=VARCHAR}");
@ -252,26 +212,10 @@ public class GoodsOrderSqlProvider {
sql.SET("logistics_no = #{logisticsNo,jdbcType=VARCHAR}"); sql.SET("logistics_no = #{logisticsNo,jdbcType=VARCHAR}");
} }
if (record.getSkuId() != null) {
sql.SET("sku_id = #{skuId,jdbcType=VARCHAR}");
}
if (record.getOrderNo() != null) { if (record.getOrderNo() != null) {
sql.SET("order_no = #{orderNo,jdbcType=VARCHAR}"); sql.SET("order_no = #{orderNo,jdbcType=VARCHAR}");
} }
if (record.getChildOrderNo() != null) {
sql.SET("child_order_no = #{childOrderNo,jdbcType=VARCHAR}");
}
if (record.getPayPrice() != null) {
sql.SET("pay_price = #{payPrice,jdbcType=DECIMAL}");
}
if (record.getOrderPrice() != null) {
sql.SET("order_price = #{orderPrice,jdbcType=DECIMAL}");
}
if (record.getFreightPrice() != null) { if (record.getFreightPrice() != null) {
sql.SET("freight_price = #{freightPrice,jdbcType=DECIMAL}"); sql.SET("freight_price = #{freightPrice,jdbcType=DECIMAL}");
} }

@ -45,38 +45,38 @@ public interface HighChildOrderMapper extends HighChildOrderMapperExt {
"store_name, store_address, ", "store_name, store_address, ",
"goods_type, goods_id, ", "goods_type, goods_id, ",
"goods_name, goods_desc, ", "goods_name, goods_desc, ",
"goods_img, goods_spec_name, ", "goods_img, sku_id, ",
"goods_price, goods_actual_price, ", "goods_spec_name, goods_price, ",
"total_price, total_actual_price, ", "goods_actual_price, surplus_refund_num, ",
"total_deduction_price, sale_count, ", "surplus_refund_price, surplus_refund_integral, ",
"surplus_refund_num, surplus_refund_price, ", "channel_order_no, total_price, ",
"surplus_refund_integral, channel_order_no, ", "total_actual_price, total_deduction_price, ",
"giveaway_type, child_order_status, ", "sale_count, giveaway_type, ",
"praise_status, create_time, ", "child_order_status, praise_status, ",
"pay_time, finish_time, ", "create_time, pay_time, ",
"refund_time, refund_remarks, ", "finish_time, refund_time, ",
"cancel_time, ext_1, ", "refund_remarks, cancel_time, ",
"ext_2, ext_3, ext_4, ", "ext_1, ext_2, ext_3, ",
"ext_5, ext_6)", "ext_4, ext_5, ext_6)",
"values (#{orderId,jdbcType=BIGINT}, #{orderNo,jdbcType=VARCHAR}, ", "values (#{orderId,jdbcType=BIGINT}, #{orderNo,jdbcType=VARCHAR}, ",
"#{memId,jdbcType=BIGINT}, #{memName,jdbcType=VARCHAR}, #{memPhone,jdbcType=VARCHAR}, ", "#{memId,jdbcType=BIGINT}, #{memName,jdbcType=VARCHAR}, #{memPhone,jdbcType=VARCHAR}, ",
"#{childOrderNo,jdbcType=VARCHAR}, #{storeId,jdbcType=BIGINT}, ", "#{childOrderNo,jdbcType=VARCHAR}, #{storeId,jdbcType=BIGINT}, ",
"#{storeName,jdbcType=VARCHAR}, #{storeAddress,jdbcType=VARCHAR}, ", "#{storeName,jdbcType=VARCHAR}, #{storeAddress,jdbcType=VARCHAR}, ",
"#{goodsType,jdbcType=INTEGER}, #{goodsId,jdbcType=BIGINT}, ", "#{goodsType,jdbcType=INTEGER}, #{goodsId,jdbcType=BIGINT}, ",
"#{goodsName,jdbcType=VARCHAR}, #{goodsDesc,jdbcType=VARCHAR}, ", "#{goodsName,jdbcType=VARCHAR}, #{goodsDesc,jdbcType=VARCHAR}, ",
"#{goodsImg,jdbcType=VARCHAR}, #{goodsSpecName,jdbcType=VARCHAR}, ", "#{goodsImg,jdbcType=VARCHAR}, #{skuId,jdbcType=BIGINT}, ",
"#{goodsPrice,jdbcType=DECIMAL}, #{goodsActualPrice,jdbcType=DECIMAL}, ", "#{goodsSpecName,jdbcType=VARCHAR}, #{goodsPrice,jdbcType=DECIMAL}, ",
"#{totalPrice,jdbcType=DECIMAL}, #{totalActualPrice,jdbcType=DECIMAL}, ", "#{goodsActualPrice,jdbcType=DECIMAL}, #{surplusRefundNum,jdbcType=INTEGER}, ",
"#{totalDeductionPrice,jdbcType=DECIMAL}, #{saleCount,jdbcType=INTEGER}, ", "#{surplusRefundPrice,jdbcType=DECIMAL}, #{surplusRefundIntegral,jdbcType=INTEGER}, ",
"#{surplusRefundNum,jdbcType=INTEGER}, #{surplusRefundPrice,jdbcType=DECIMAL}, ", "#{channelOrderNo,jdbcType=VARCHAR}, #{totalPrice,jdbcType=DECIMAL}, ",
"#{surplusRefundIntegral,jdbcType=INTEGER}, #{channelOrderNo,jdbcType=VARCHAR}, ", "#{totalActualPrice,jdbcType=DECIMAL}, #{totalDeductionPrice,jdbcType=DECIMAL}, ",
"#{giveawayType,jdbcType=BIT}, #{childOrderStatus,jdbcType=INTEGER}, ", "#{saleCount,jdbcType=INTEGER}, #{giveawayType,jdbcType=BIT}, ",
"#{praiseStatus,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}, ", "#{childOrderStatus,jdbcType=INTEGER}, #{praiseStatus,jdbcType=INTEGER}, ",
"#{payTime,jdbcType=TIMESTAMP}, #{finishTime,jdbcType=TIMESTAMP}, ", "#{createTime,jdbcType=TIMESTAMP}, #{payTime,jdbcType=TIMESTAMP}, ",
"#{refundTime,jdbcType=TIMESTAMP}, #{refundRemarks,jdbcType=VARCHAR}, ", "#{finishTime,jdbcType=TIMESTAMP}, #{refundTime,jdbcType=TIMESTAMP}, ",
"#{cancelTime,jdbcType=TIMESTAMP}, #{ext1,jdbcType=VARCHAR}, ", "#{refundRemarks,jdbcType=VARCHAR}, #{cancelTime,jdbcType=TIMESTAMP}, ",
"#{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR}, #{ext4,jdbcType=VARCHAR}, ", "#{ext1,jdbcType=VARCHAR}, #{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR}, ",
"#{ext5,jdbcType=VARCHAR}, #{ext6,jdbcType=VARCHAR})" "#{ext4,jdbcType=VARCHAR}, #{ext5,jdbcType=VARCHAR}, #{ext6,jdbcType=VARCHAR})"
}) })
@Options(useGeneratedKeys=true,keyProperty="id") @Options(useGeneratedKeys=true,keyProperty="id")
int insert(HighChildOrder record); int insert(HighChildOrder record);
@ -102,17 +102,18 @@ public interface HighChildOrderMapper extends HighChildOrderMapperExt {
@Result(column="goods_name", property="goodsName", jdbcType=JdbcType.VARCHAR), @Result(column="goods_name", property="goodsName", jdbcType=JdbcType.VARCHAR),
@Result(column="goods_desc", property="goodsDesc", jdbcType=JdbcType.VARCHAR), @Result(column="goods_desc", property="goodsDesc", jdbcType=JdbcType.VARCHAR),
@Result(column="goods_img", property="goodsImg", jdbcType=JdbcType.VARCHAR), @Result(column="goods_img", property="goodsImg", jdbcType=JdbcType.VARCHAR),
@Result(column="sku_id", property="skuId", jdbcType=JdbcType.BIGINT),
@Result(column="goods_spec_name", property="goodsSpecName", jdbcType=JdbcType.VARCHAR), @Result(column="goods_spec_name", property="goodsSpecName", jdbcType=JdbcType.VARCHAR),
@Result(column="goods_price", property="goodsPrice", jdbcType=JdbcType.DECIMAL), @Result(column="goods_price", property="goodsPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="goods_actual_price", property="goodsActualPrice", jdbcType=JdbcType.DECIMAL), @Result(column="goods_actual_price", property="goodsActualPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="total_price", property="totalPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="total_actual_price", property="totalActualPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="total_deduction_price", property="totalDeductionPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="sale_count", property="saleCount", jdbcType=JdbcType.INTEGER),
@Result(column="surplus_refund_num", property="surplusRefundNum", jdbcType=JdbcType.INTEGER), @Result(column="surplus_refund_num", property="surplusRefundNum", jdbcType=JdbcType.INTEGER),
@Result(column="surplus_refund_price", property="surplusRefundPrice", jdbcType=JdbcType.DECIMAL), @Result(column="surplus_refund_price", property="surplusRefundPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="surplus_refund_integral", property="surplusRefundIntegral", jdbcType=JdbcType.INTEGER), @Result(column="surplus_refund_integral", property="surplusRefundIntegral", jdbcType=JdbcType.INTEGER),
@Result(column="channel_order_no", property="channelOrderNo", jdbcType=JdbcType.VARCHAR), @Result(column="channel_order_no", property="channelOrderNo", jdbcType=JdbcType.VARCHAR),
@Result(column="total_price", property="totalPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="total_actual_price", property="totalActualPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="total_deduction_price", property="totalDeductionPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="sale_count", property="saleCount", jdbcType=JdbcType.INTEGER),
@Result(column="giveaway_type", property="giveawayType", jdbcType=JdbcType.BIT), @Result(column="giveaway_type", property="giveawayType", jdbcType=JdbcType.BIT),
@Result(column="child_order_status", property="childOrderStatus", jdbcType=JdbcType.INTEGER), @Result(column="child_order_status", property="childOrderStatus", jdbcType=JdbcType.INTEGER),
@Result(column="praise_status", property="praiseStatus", jdbcType=JdbcType.INTEGER), @Result(column="praise_status", property="praiseStatus", jdbcType=JdbcType.INTEGER),
@ -135,9 +136,9 @@ public interface HighChildOrderMapper extends HighChildOrderMapperExt {
"select", "select",
"id, order_id, order_no, mem_id, mem_name, mem_phone, child_order_no, store_id, ", "id, order_id, order_no, mem_id, mem_name, mem_phone, child_order_no, store_id, ",
"store_name, store_address, goods_type, goods_id, goods_name, goods_desc, goods_img, ", "store_name, store_address, goods_type, goods_id, goods_name, goods_desc, goods_img, ",
"goods_spec_name, goods_price, goods_actual_price, total_price, total_actual_price, ", "sku_id, goods_spec_name, goods_price, goods_actual_price, surplus_refund_num, ",
"total_deduction_price, sale_count, surplus_refund_num, surplus_refund_price, ", "surplus_refund_price, surplus_refund_integral, channel_order_no, total_price, ",
"surplus_refund_integral, channel_order_no, giveaway_type, child_order_status, ", "total_actual_price, total_deduction_price, sale_count, giveaway_type, child_order_status, ",
"praise_status, create_time, pay_time, finish_time, refund_time, refund_remarks, ", "praise_status, create_time, pay_time, finish_time, refund_time, refund_remarks, ",
"cancel_time, ext_1, ext_2, ext_3, ext_4, ext_5, ext_6", "cancel_time, ext_1, ext_2, ext_3, ext_4, ext_5, ext_6",
"from high_child_order", "from high_child_order",
@ -159,17 +160,18 @@ public interface HighChildOrderMapper extends HighChildOrderMapperExt {
@Result(column="goods_name", property="goodsName", jdbcType=JdbcType.VARCHAR), @Result(column="goods_name", property="goodsName", jdbcType=JdbcType.VARCHAR),
@Result(column="goods_desc", property="goodsDesc", jdbcType=JdbcType.VARCHAR), @Result(column="goods_desc", property="goodsDesc", jdbcType=JdbcType.VARCHAR),
@Result(column="goods_img", property="goodsImg", jdbcType=JdbcType.VARCHAR), @Result(column="goods_img", property="goodsImg", jdbcType=JdbcType.VARCHAR),
@Result(column="sku_id", property="skuId", jdbcType=JdbcType.BIGINT),
@Result(column="goods_spec_name", property="goodsSpecName", jdbcType=JdbcType.VARCHAR), @Result(column="goods_spec_name", property="goodsSpecName", jdbcType=JdbcType.VARCHAR),
@Result(column="goods_price", property="goodsPrice", jdbcType=JdbcType.DECIMAL), @Result(column="goods_price", property="goodsPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="goods_actual_price", property="goodsActualPrice", jdbcType=JdbcType.DECIMAL), @Result(column="goods_actual_price", property="goodsActualPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="total_price", property="totalPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="total_actual_price", property="totalActualPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="total_deduction_price", property="totalDeductionPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="sale_count", property="saleCount", jdbcType=JdbcType.INTEGER),
@Result(column="surplus_refund_num", property="surplusRefundNum", jdbcType=JdbcType.INTEGER), @Result(column="surplus_refund_num", property="surplusRefundNum", jdbcType=JdbcType.INTEGER),
@Result(column="surplus_refund_price", property="surplusRefundPrice", jdbcType=JdbcType.DECIMAL), @Result(column="surplus_refund_price", property="surplusRefundPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="surplus_refund_integral", property="surplusRefundIntegral", jdbcType=JdbcType.INTEGER), @Result(column="surplus_refund_integral", property="surplusRefundIntegral", jdbcType=JdbcType.INTEGER),
@Result(column="channel_order_no", property="channelOrderNo", jdbcType=JdbcType.VARCHAR), @Result(column="channel_order_no", property="channelOrderNo", jdbcType=JdbcType.VARCHAR),
@Result(column="total_price", property="totalPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="total_actual_price", property="totalActualPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="total_deduction_price", property="totalDeductionPrice", jdbcType=JdbcType.DECIMAL),
@Result(column="sale_count", property="saleCount", jdbcType=JdbcType.INTEGER),
@Result(column="giveaway_type", property="giveawayType", jdbcType=JdbcType.BIT), @Result(column="giveaway_type", property="giveawayType", jdbcType=JdbcType.BIT),
@Result(column="child_order_status", property="childOrderStatus", jdbcType=JdbcType.INTEGER), @Result(column="child_order_status", property="childOrderStatus", jdbcType=JdbcType.INTEGER),
@Result(column="praise_status", property="praiseStatus", jdbcType=JdbcType.INTEGER), @Result(column="praise_status", property="praiseStatus", jdbcType=JdbcType.INTEGER),
@ -213,17 +215,18 @@ public interface HighChildOrderMapper extends HighChildOrderMapperExt {
"goods_name = #{goodsName,jdbcType=VARCHAR},", "goods_name = #{goodsName,jdbcType=VARCHAR},",
"goods_desc = #{goodsDesc,jdbcType=VARCHAR},", "goods_desc = #{goodsDesc,jdbcType=VARCHAR},",
"goods_img = #{goodsImg,jdbcType=VARCHAR},", "goods_img = #{goodsImg,jdbcType=VARCHAR},",
"sku_id = #{skuId,jdbcType=BIGINT},",
"goods_spec_name = #{goodsSpecName,jdbcType=VARCHAR},", "goods_spec_name = #{goodsSpecName,jdbcType=VARCHAR},",
"goods_price = #{goodsPrice,jdbcType=DECIMAL},", "goods_price = #{goodsPrice,jdbcType=DECIMAL},",
"goods_actual_price = #{goodsActualPrice,jdbcType=DECIMAL},", "goods_actual_price = #{goodsActualPrice,jdbcType=DECIMAL},",
"total_price = #{totalPrice,jdbcType=DECIMAL},",
"total_actual_price = #{totalActualPrice,jdbcType=DECIMAL},",
"total_deduction_price = #{totalDeductionPrice,jdbcType=DECIMAL},",
"sale_count = #{saleCount,jdbcType=INTEGER},",
"surplus_refund_num = #{surplusRefundNum,jdbcType=INTEGER},", "surplus_refund_num = #{surplusRefundNum,jdbcType=INTEGER},",
"surplus_refund_price = #{surplusRefundPrice,jdbcType=DECIMAL},", "surplus_refund_price = #{surplusRefundPrice,jdbcType=DECIMAL},",
"surplus_refund_integral = #{surplusRefundIntegral,jdbcType=INTEGER},", "surplus_refund_integral = #{surplusRefundIntegral,jdbcType=INTEGER},",
"channel_order_no = #{channelOrderNo,jdbcType=VARCHAR},", "channel_order_no = #{channelOrderNo,jdbcType=VARCHAR},",
"total_price = #{totalPrice,jdbcType=DECIMAL},",
"total_actual_price = #{totalActualPrice,jdbcType=DECIMAL},",
"total_deduction_price = #{totalDeductionPrice,jdbcType=DECIMAL},",
"sale_count = #{saleCount,jdbcType=INTEGER},",
"giveaway_type = #{giveawayType,jdbcType=BIT},", "giveaway_type = #{giveawayType,jdbcType=BIT},",
"child_order_status = #{childOrderStatus,jdbcType=INTEGER},", "child_order_status = #{childOrderStatus,jdbcType=INTEGER},",
"praise_status = #{praiseStatus,jdbcType=INTEGER},", "praise_status = #{praiseStatus,jdbcType=INTEGER},",

@ -84,6 +84,10 @@ public class HighChildOrderSqlProvider {
sql.VALUES("goods_img", "#{goodsImg,jdbcType=VARCHAR}"); sql.VALUES("goods_img", "#{goodsImg,jdbcType=VARCHAR}");
} }
if (record.getSkuId() != null) {
sql.VALUES("sku_id", "#{skuId,jdbcType=BIGINT}");
}
if (record.getGoodsSpecName() != null) { if (record.getGoodsSpecName() != null) {
sql.VALUES("goods_spec_name", "#{goodsSpecName,jdbcType=VARCHAR}"); sql.VALUES("goods_spec_name", "#{goodsSpecName,jdbcType=VARCHAR}");
} }
@ -96,22 +100,6 @@ public class HighChildOrderSqlProvider {
sql.VALUES("goods_actual_price", "#{goodsActualPrice,jdbcType=DECIMAL}"); sql.VALUES("goods_actual_price", "#{goodsActualPrice,jdbcType=DECIMAL}");
} }
if (record.getTotalPrice() != null) {
sql.VALUES("total_price", "#{totalPrice,jdbcType=DECIMAL}");
}
if (record.getTotalActualPrice() != null) {
sql.VALUES("total_actual_price", "#{totalActualPrice,jdbcType=DECIMAL}");
}
if (record.getTotalDeductionPrice() != null) {
sql.VALUES("total_deduction_price", "#{totalDeductionPrice,jdbcType=DECIMAL}");
}
if (record.getSaleCount() != null) {
sql.VALUES("sale_count", "#{saleCount,jdbcType=INTEGER}");
}
if (record.getSurplusRefundNum() != null) { if (record.getSurplusRefundNum() != null) {
sql.VALUES("surplus_refund_num", "#{surplusRefundNum,jdbcType=INTEGER}"); sql.VALUES("surplus_refund_num", "#{surplusRefundNum,jdbcType=INTEGER}");
} }
@ -128,6 +116,22 @@ public class HighChildOrderSqlProvider {
sql.VALUES("channel_order_no", "#{channelOrderNo,jdbcType=VARCHAR}"); sql.VALUES("channel_order_no", "#{channelOrderNo,jdbcType=VARCHAR}");
} }
if (record.getTotalPrice() != null) {
sql.VALUES("total_price", "#{totalPrice,jdbcType=DECIMAL}");
}
if (record.getTotalActualPrice() != null) {
sql.VALUES("total_actual_price", "#{totalActualPrice,jdbcType=DECIMAL}");
}
if (record.getTotalDeductionPrice() != null) {
sql.VALUES("total_deduction_price", "#{totalDeductionPrice,jdbcType=DECIMAL}");
}
if (record.getSaleCount() != null) {
sql.VALUES("sale_count", "#{saleCount,jdbcType=INTEGER}");
}
if (record.getGiveawayType() != null) { if (record.getGiveawayType() != null) {
sql.VALUES("giveaway_type", "#{giveawayType,jdbcType=BIT}"); sql.VALUES("giveaway_type", "#{giveawayType,jdbcType=BIT}");
} }
@ -212,17 +216,18 @@ public class HighChildOrderSqlProvider {
sql.SELECT("goods_name"); sql.SELECT("goods_name");
sql.SELECT("goods_desc"); sql.SELECT("goods_desc");
sql.SELECT("goods_img"); sql.SELECT("goods_img");
sql.SELECT("sku_id");
sql.SELECT("goods_spec_name"); sql.SELECT("goods_spec_name");
sql.SELECT("goods_price"); sql.SELECT("goods_price");
sql.SELECT("goods_actual_price"); sql.SELECT("goods_actual_price");
sql.SELECT("total_price");
sql.SELECT("total_actual_price");
sql.SELECT("total_deduction_price");
sql.SELECT("sale_count");
sql.SELECT("surplus_refund_num"); sql.SELECT("surplus_refund_num");
sql.SELECT("surplus_refund_price"); sql.SELECT("surplus_refund_price");
sql.SELECT("surplus_refund_integral"); sql.SELECT("surplus_refund_integral");
sql.SELECT("channel_order_no"); sql.SELECT("channel_order_no");
sql.SELECT("total_price");
sql.SELECT("total_actual_price");
sql.SELECT("total_deduction_price");
sql.SELECT("sale_count");
sql.SELECT("giveaway_type"); sql.SELECT("giveaway_type");
sql.SELECT("child_order_status"); sql.SELECT("child_order_status");
sql.SELECT("praise_status"); sql.SELECT("praise_status");
@ -315,6 +320,10 @@ public class HighChildOrderSqlProvider {
sql.SET("goods_img = #{record.goodsImg,jdbcType=VARCHAR}"); sql.SET("goods_img = #{record.goodsImg,jdbcType=VARCHAR}");
} }
if (record.getSkuId() != null) {
sql.SET("sku_id = #{record.skuId,jdbcType=BIGINT}");
}
if (record.getGoodsSpecName() != null) { if (record.getGoodsSpecName() != null) {
sql.SET("goods_spec_name = #{record.goodsSpecName,jdbcType=VARCHAR}"); sql.SET("goods_spec_name = #{record.goodsSpecName,jdbcType=VARCHAR}");
} }
@ -327,22 +336,6 @@ public class HighChildOrderSqlProvider {
sql.SET("goods_actual_price = #{record.goodsActualPrice,jdbcType=DECIMAL}"); sql.SET("goods_actual_price = #{record.goodsActualPrice,jdbcType=DECIMAL}");
} }
if (record.getTotalPrice() != null) {
sql.SET("total_price = #{record.totalPrice,jdbcType=DECIMAL}");
}
if (record.getTotalActualPrice() != null) {
sql.SET("total_actual_price = #{record.totalActualPrice,jdbcType=DECIMAL}");
}
if (record.getTotalDeductionPrice() != null) {
sql.SET("total_deduction_price = #{record.totalDeductionPrice,jdbcType=DECIMAL}");
}
if (record.getSaleCount() != null) {
sql.SET("sale_count = #{record.saleCount,jdbcType=INTEGER}");
}
if (record.getSurplusRefundNum() != null) { if (record.getSurplusRefundNum() != null) {
sql.SET("surplus_refund_num = #{record.surplusRefundNum,jdbcType=INTEGER}"); sql.SET("surplus_refund_num = #{record.surplusRefundNum,jdbcType=INTEGER}");
} }
@ -359,6 +352,22 @@ public class HighChildOrderSqlProvider {
sql.SET("channel_order_no = #{record.channelOrderNo,jdbcType=VARCHAR}"); sql.SET("channel_order_no = #{record.channelOrderNo,jdbcType=VARCHAR}");
} }
if (record.getTotalPrice() != null) {
sql.SET("total_price = #{record.totalPrice,jdbcType=DECIMAL}");
}
if (record.getTotalActualPrice() != null) {
sql.SET("total_actual_price = #{record.totalActualPrice,jdbcType=DECIMAL}");
}
if (record.getTotalDeductionPrice() != null) {
sql.SET("total_deduction_price = #{record.totalDeductionPrice,jdbcType=DECIMAL}");
}
if (record.getSaleCount() != null) {
sql.SET("sale_count = #{record.saleCount,jdbcType=INTEGER}");
}
if (record.getGiveawayType() != null) { if (record.getGiveawayType() != null) {
sql.SET("giveaway_type = #{record.giveawayType,jdbcType=BIT}"); sql.SET("giveaway_type = #{record.giveawayType,jdbcType=BIT}");
} }
@ -442,17 +451,18 @@ public class HighChildOrderSqlProvider {
sql.SET("goods_name = #{record.goodsName,jdbcType=VARCHAR}"); sql.SET("goods_name = #{record.goodsName,jdbcType=VARCHAR}");
sql.SET("goods_desc = #{record.goodsDesc,jdbcType=VARCHAR}"); sql.SET("goods_desc = #{record.goodsDesc,jdbcType=VARCHAR}");
sql.SET("goods_img = #{record.goodsImg,jdbcType=VARCHAR}"); sql.SET("goods_img = #{record.goodsImg,jdbcType=VARCHAR}");
sql.SET("sku_id = #{record.skuId,jdbcType=BIGINT}");
sql.SET("goods_spec_name = #{record.goodsSpecName,jdbcType=VARCHAR}"); sql.SET("goods_spec_name = #{record.goodsSpecName,jdbcType=VARCHAR}");
sql.SET("goods_price = #{record.goodsPrice,jdbcType=DECIMAL}"); sql.SET("goods_price = #{record.goodsPrice,jdbcType=DECIMAL}");
sql.SET("goods_actual_price = #{record.goodsActualPrice,jdbcType=DECIMAL}"); sql.SET("goods_actual_price = #{record.goodsActualPrice,jdbcType=DECIMAL}");
sql.SET("total_price = #{record.totalPrice,jdbcType=DECIMAL}");
sql.SET("total_actual_price = #{record.totalActualPrice,jdbcType=DECIMAL}");
sql.SET("total_deduction_price = #{record.totalDeductionPrice,jdbcType=DECIMAL}");
sql.SET("sale_count = #{record.saleCount,jdbcType=INTEGER}");
sql.SET("surplus_refund_num = #{record.surplusRefundNum,jdbcType=INTEGER}"); sql.SET("surplus_refund_num = #{record.surplusRefundNum,jdbcType=INTEGER}");
sql.SET("surplus_refund_price = #{record.surplusRefundPrice,jdbcType=DECIMAL}"); sql.SET("surplus_refund_price = #{record.surplusRefundPrice,jdbcType=DECIMAL}");
sql.SET("surplus_refund_integral = #{record.surplusRefundIntegral,jdbcType=INTEGER}"); sql.SET("surplus_refund_integral = #{record.surplusRefundIntegral,jdbcType=INTEGER}");
sql.SET("channel_order_no = #{record.channelOrderNo,jdbcType=VARCHAR}"); sql.SET("channel_order_no = #{record.channelOrderNo,jdbcType=VARCHAR}");
sql.SET("total_price = #{record.totalPrice,jdbcType=DECIMAL}");
sql.SET("total_actual_price = #{record.totalActualPrice,jdbcType=DECIMAL}");
sql.SET("total_deduction_price = #{record.totalDeductionPrice,jdbcType=DECIMAL}");
sql.SET("sale_count = #{record.saleCount,jdbcType=INTEGER}");
sql.SET("giveaway_type = #{record.giveawayType,jdbcType=BIT}"); sql.SET("giveaway_type = #{record.giveawayType,jdbcType=BIT}");
sql.SET("child_order_status = #{record.childOrderStatus,jdbcType=INTEGER}"); sql.SET("child_order_status = #{record.childOrderStatus,jdbcType=INTEGER}");
sql.SET("praise_status = #{record.praiseStatus,jdbcType=INTEGER}"); sql.SET("praise_status = #{record.praiseStatus,jdbcType=INTEGER}");
@ -534,6 +544,10 @@ public class HighChildOrderSqlProvider {
sql.SET("goods_img = #{goodsImg,jdbcType=VARCHAR}"); sql.SET("goods_img = #{goodsImg,jdbcType=VARCHAR}");
} }
if (record.getSkuId() != null) {
sql.SET("sku_id = #{skuId,jdbcType=BIGINT}");
}
if (record.getGoodsSpecName() != null) { if (record.getGoodsSpecName() != null) {
sql.SET("goods_spec_name = #{goodsSpecName,jdbcType=VARCHAR}"); sql.SET("goods_spec_name = #{goodsSpecName,jdbcType=VARCHAR}");
} }
@ -546,22 +560,6 @@ public class HighChildOrderSqlProvider {
sql.SET("goods_actual_price = #{goodsActualPrice,jdbcType=DECIMAL}"); sql.SET("goods_actual_price = #{goodsActualPrice,jdbcType=DECIMAL}");
} }
if (record.getTotalPrice() != null) {
sql.SET("total_price = #{totalPrice,jdbcType=DECIMAL}");
}
if (record.getTotalActualPrice() != null) {
sql.SET("total_actual_price = #{totalActualPrice,jdbcType=DECIMAL}");
}
if (record.getTotalDeductionPrice() != null) {
sql.SET("total_deduction_price = #{totalDeductionPrice,jdbcType=DECIMAL}");
}
if (record.getSaleCount() != null) {
sql.SET("sale_count = #{saleCount,jdbcType=INTEGER}");
}
if (record.getSurplusRefundNum() != null) { if (record.getSurplusRefundNum() != null) {
sql.SET("surplus_refund_num = #{surplusRefundNum,jdbcType=INTEGER}"); sql.SET("surplus_refund_num = #{surplusRefundNum,jdbcType=INTEGER}");
} }
@ -578,6 +576,22 @@ public class HighChildOrderSqlProvider {
sql.SET("channel_order_no = #{channelOrderNo,jdbcType=VARCHAR}"); sql.SET("channel_order_no = #{channelOrderNo,jdbcType=VARCHAR}");
} }
if (record.getTotalPrice() != null) {
sql.SET("total_price = #{totalPrice,jdbcType=DECIMAL}");
}
if (record.getTotalActualPrice() != null) {
sql.SET("total_actual_price = #{totalActualPrice,jdbcType=DECIMAL}");
}
if (record.getTotalDeductionPrice() != null) {
sql.SET("total_deduction_price = #{totalDeductionPrice,jdbcType=DECIMAL}");
}
if (record.getSaleCount() != null) {
sql.SET("sale_count = #{saleCount,jdbcType=INTEGER}");
}
if (record.getGiveawayType() != null) { if (record.getGiveawayType() != null) {
sql.SET("giveaway_type = #{giveawayType,jdbcType=BIT}"); sql.SET("giveaway_type = #{giveawayType,jdbcType=BIT}");
} }

@ -24,31 +24,11 @@ public class GoodsOrder implements Serializable {
*/ */
private String logisticsNo; private String logisticsNo;
/**
* 规格编码
*/
private String skuId;
/** /**
* 订单号 * 订单号
*/ */
private String orderNo; private String orderNo;
/**
* 子订单号
*/
private String childOrderNo;
/**
* 支付金额
*/
private BigDecimal payPrice;
/**
* 订单金额
*/
private BigDecimal orderPrice;
/** /**
* 运费 * 运费
*/ */
@ -122,14 +102,6 @@ public class GoodsOrder implements Serializable {
this.logisticsNo = logisticsNo; this.logisticsNo = logisticsNo;
} }
public String getSkuId() {
return skuId;
}
public void setSkuId(String skuId) {
this.skuId = skuId;
}
public String getOrderNo() { public String getOrderNo() {
return orderNo; return orderNo;
} }
@ -138,30 +110,6 @@ public class GoodsOrder implements Serializable {
this.orderNo = orderNo; this.orderNo = orderNo;
} }
public String getChildOrderNo() {
return childOrderNo;
}
public void setChildOrderNo(String childOrderNo) {
this.childOrderNo = childOrderNo;
}
public BigDecimal getPayPrice() {
return payPrice;
}
public void setPayPrice(BigDecimal payPrice) {
this.payPrice = payPrice;
}
public BigDecimal getOrderPrice() {
return orderPrice;
}
public void setOrderPrice(BigDecimal orderPrice) {
this.orderPrice = orderPrice;
}
public BigDecimal getFreightPrice() { public BigDecimal getFreightPrice() {
return freightPrice; return freightPrice;
} }
@ -264,11 +212,7 @@ public class GoodsOrder implements Serializable {
GoodsOrder other = (GoodsOrder) that; GoodsOrder other = (GoodsOrder) that;
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
&& (this.getLogisticsNo() == null ? other.getLogisticsNo() == null : this.getLogisticsNo().equals(other.getLogisticsNo())) && (this.getLogisticsNo() == null ? other.getLogisticsNo() == null : this.getLogisticsNo().equals(other.getLogisticsNo()))
&& (this.getSkuId() == null ? other.getSkuId() == null : this.getSkuId().equals(other.getSkuId()))
&& (this.getOrderNo() == null ? other.getOrderNo() == null : this.getOrderNo().equals(other.getOrderNo())) && (this.getOrderNo() == null ? other.getOrderNo() == null : this.getOrderNo().equals(other.getOrderNo()))
&& (this.getChildOrderNo() == null ? other.getChildOrderNo() == null : this.getChildOrderNo().equals(other.getChildOrderNo()))
&& (this.getPayPrice() == null ? other.getPayPrice() == null : this.getPayPrice().equals(other.getPayPrice()))
&& (this.getOrderPrice() == null ? other.getOrderPrice() == null : this.getOrderPrice().equals(other.getOrderPrice()))
&& (this.getFreightPrice() == null ? other.getFreightPrice() == null : this.getFreightPrice().equals(other.getFreightPrice())) && (this.getFreightPrice() == null ? other.getFreightPrice() == null : this.getFreightPrice().equals(other.getFreightPrice()))
&& (this.getDeliveryAddressId() == null ? other.getDeliveryAddressId() == null : this.getDeliveryAddressId().equals(other.getDeliveryAddressId())) && (this.getDeliveryAddressId() == null ? other.getDeliveryAddressId() == null : this.getDeliveryAddressId().equals(other.getDeliveryAddressId()))
&& (this.getDeliveryAddress() == null ? other.getDeliveryAddress() == null : this.getDeliveryAddress().equals(other.getDeliveryAddress())) && (this.getDeliveryAddress() == null ? other.getDeliveryAddress() == null : this.getDeliveryAddress().equals(other.getDeliveryAddress()))
@ -288,11 +232,7 @@ public class GoodsOrder implements Serializable {
int result = 1; int result = 1;
result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); result = prime * result + ((getId() == null) ? 0 : getId().hashCode());
result = prime * result + ((getLogisticsNo() == null) ? 0 : getLogisticsNo().hashCode()); result = prime * result + ((getLogisticsNo() == null) ? 0 : getLogisticsNo().hashCode());
result = prime * result + ((getSkuId() == null) ? 0 : getSkuId().hashCode());
result = prime * result + ((getOrderNo() == null) ? 0 : getOrderNo().hashCode()); result = prime * result + ((getOrderNo() == null) ? 0 : getOrderNo().hashCode());
result = prime * result + ((getChildOrderNo() == null) ? 0 : getChildOrderNo().hashCode());
result = prime * result + ((getPayPrice() == null) ? 0 : getPayPrice().hashCode());
result = prime * result + ((getOrderPrice() == null) ? 0 : getOrderPrice().hashCode());
result = prime * result + ((getFreightPrice() == null) ? 0 : getFreightPrice().hashCode()); result = prime * result + ((getFreightPrice() == null) ? 0 : getFreightPrice().hashCode());
result = prime * result + ((getDeliveryAddressId() == null) ? 0 : getDeliveryAddressId().hashCode()); result = prime * result + ((getDeliveryAddressId() == null) ? 0 : getDeliveryAddressId().hashCode());
result = prime * result + ((getDeliveryAddress() == null) ? 0 : getDeliveryAddress().hashCode()); result = prime * result + ((getDeliveryAddress() == null) ? 0 : getDeliveryAddress().hashCode());
@ -315,11 +255,7 @@ public class GoodsOrder implements Serializable {
sb.append("Hash = ").append(hashCode()); sb.append("Hash = ").append(hashCode());
sb.append(", id=").append(id); sb.append(", id=").append(id);
sb.append(", logisticsNo=").append(logisticsNo); sb.append(", logisticsNo=").append(logisticsNo);
sb.append(", skuId=").append(skuId);
sb.append(", orderNo=").append(orderNo); sb.append(", orderNo=").append(orderNo);
sb.append(", childOrderNo=").append(childOrderNo);
sb.append(", payPrice=").append(payPrice);
sb.append(", orderPrice=").append(orderPrice);
sb.append(", freightPrice=").append(freightPrice); sb.append(", freightPrice=").append(freightPrice);
sb.append(", deliveryAddressId=").append(deliveryAddressId); sb.append(", deliveryAddressId=").append(deliveryAddressId);
sb.append(", deliveryAddress=").append(deliveryAddress); sb.append(", deliveryAddress=").append(deliveryAddress);

@ -256,76 +256,6 @@ public class GoodsOrderExample {
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSkuIdIsNull() {
addCriterion("sku_id is null");
return (Criteria) this;
}
public Criteria andSkuIdIsNotNull() {
addCriterion("sku_id is not null");
return (Criteria) this;
}
public Criteria andSkuIdEqualTo(String value) {
addCriterion("sku_id =", value, "skuId");
return (Criteria) this;
}
public Criteria andSkuIdNotEqualTo(String value) {
addCriterion("sku_id <>", value, "skuId");
return (Criteria) this;
}
public Criteria andSkuIdGreaterThan(String value) {
addCriterion("sku_id >", value, "skuId");
return (Criteria) this;
}
public Criteria andSkuIdGreaterThanOrEqualTo(String value) {
addCriterion("sku_id >=", value, "skuId");
return (Criteria) this;
}
public Criteria andSkuIdLessThan(String value) {
addCriterion("sku_id <", value, "skuId");
return (Criteria) this;
}
public Criteria andSkuIdLessThanOrEqualTo(String value) {
addCriterion("sku_id <=", value, "skuId");
return (Criteria) this;
}
public Criteria andSkuIdLike(String value) {
addCriterion("sku_id like", value, "skuId");
return (Criteria) this;
}
public Criteria andSkuIdNotLike(String value) {
addCriterion("sku_id not like", value, "skuId");
return (Criteria) this;
}
public Criteria andSkuIdIn(List<String> values) {
addCriterion("sku_id in", values, "skuId");
return (Criteria) this;
}
public Criteria andSkuIdNotIn(List<String> values) {
addCriterion("sku_id not in", values, "skuId");
return (Criteria) this;
}
public Criteria andSkuIdBetween(String value1, String value2) {
addCriterion("sku_id between", value1, value2, "skuId");
return (Criteria) this;
}
public Criteria andSkuIdNotBetween(String value1, String value2) {
addCriterion("sku_id not between", value1, value2, "skuId");
return (Criteria) this;
}
public Criteria andOrderNoIsNull() { public Criteria andOrderNoIsNull() {
addCriterion("order_no is null"); addCriterion("order_no is null");
return (Criteria) this; return (Criteria) this;
@ -396,196 +326,6 @@ public class GoodsOrderExample {
return (Criteria) this; return (Criteria) this;
} }
public Criteria andChildOrderNoIsNull() {
addCriterion("child_order_no is null");
return (Criteria) this;
}
public Criteria andChildOrderNoIsNotNull() {
addCriterion("child_order_no is not null");
return (Criteria) this;
}
public Criteria andChildOrderNoEqualTo(String value) {
addCriterion("child_order_no =", value, "childOrderNo");
return (Criteria) this;
}
public Criteria andChildOrderNoNotEqualTo(String value) {
addCriterion("child_order_no <>", value, "childOrderNo");
return (Criteria) this;
}
public Criteria andChildOrderNoGreaterThan(String value) {
addCriterion("child_order_no >", value, "childOrderNo");
return (Criteria) this;
}
public Criteria andChildOrderNoGreaterThanOrEqualTo(String value) {
addCriterion("child_order_no >=", value, "childOrderNo");
return (Criteria) this;
}
public Criteria andChildOrderNoLessThan(String value) {
addCriterion("child_order_no <", value, "childOrderNo");
return (Criteria) this;
}
public Criteria andChildOrderNoLessThanOrEqualTo(String value) {
addCriterion("child_order_no <=", value, "childOrderNo");
return (Criteria) this;
}
public Criteria andChildOrderNoLike(String value) {
addCriterion("child_order_no like", value, "childOrderNo");
return (Criteria) this;
}
public Criteria andChildOrderNoNotLike(String value) {
addCriterion("child_order_no not like", value, "childOrderNo");
return (Criteria) this;
}
public Criteria andChildOrderNoIn(List<String> values) {
addCriterion("child_order_no in", values, "childOrderNo");
return (Criteria) this;
}
public Criteria andChildOrderNoNotIn(List<String> values) {
addCriterion("child_order_no not in", values, "childOrderNo");
return (Criteria) this;
}
public Criteria andChildOrderNoBetween(String value1, String value2) {
addCriterion("child_order_no between", value1, value2, "childOrderNo");
return (Criteria) this;
}
public Criteria andChildOrderNoNotBetween(String value1, String value2) {
addCriterion("child_order_no not between", value1, value2, "childOrderNo");
return (Criteria) this;
}
public Criteria andPayPriceIsNull() {
addCriterion("pay_price is null");
return (Criteria) this;
}
public Criteria andPayPriceIsNotNull() {
addCriterion("pay_price is not null");
return (Criteria) this;
}
public Criteria andPayPriceEqualTo(BigDecimal value) {
addCriterion("pay_price =", value, "payPrice");
return (Criteria) this;
}
public Criteria andPayPriceNotEqualTo(BigDecimal value) {
addCriterion("pay_price <>", value, "payPrice");
return (Criteria) this;
}
public Criteria andPayPriceGreaterThan(BigDecimal value) {
addCriterion("pay_price >", value, "payPrice");
return (Criteria) this;
}
public Criteria andPayPriceGreaterThanOrEqualTo(BigDecimal value) {
addCriterion("pay_price >=", value, "payPrice");
return (Criteria) this;
}
public Criteria andPayPriceLessThan(BigDecimal value) {
addCriterion("pay_price <", value, "payPrice");
return (Criteria) this;
}
public Criteria andPayPriceLessThanOrEqualTo(BigDecimal value) {
addCriterion("pay_price <=", value, "payPrice");
return (Criteria) this;
}
public Criteria andPayPriceIn(List<BigDecimal> values) {
addCriterion("pay_price in", values, "payPrice");
return (Criteria) this;
}
public Criteria andPayPriceNotIn(List<BigDecimal> values) {
addCriterion("pay_price not in", values, "payPrice");
return (Criteria) this;
}
public Criteria andPayPriceBetween(BigDecimal value1, BigDecimal value2) {
addCriterion("pay_price between", value1, value2, "payPrice");
return (Criteria) this;
}
public Criteria andPayPriceNotBetween(BigDecimal value1, BigDecimal value2) {
addCriterion("pay_price not between", value1, value2, "payPrice");
return (Criteria) this;
}
public Criteria andOrderPriceIsNull() {
addCriterion("order_price is null");
return (Criteria) this;
}
public Criteria andOrderPriceIsNotNull() {
addCriterion("order_price is not null");
return (Criteria) this;
}
public Criteria andOrderPriceEqualTo(BigDecimal value) {
addCriterion("order_price =", value, "orderPrice");
return (Criteria) this;
}
public Criteria andOrderPriceNotEqualTo(BigDecimal value) {
addCriterion("order_price <>", value, "orderPrice");
return (Criteria) this;
}
public Criteria andOrderPriceGreaterThan(BigDecimal value) {
addCriterion("order_price >", value, "orderPrice");
return (Criteria) this;
}
public Criteria andOrderPriceGreaterThanOrEqualTo(BigDecimal value) {
addCriterion("order_price >=", value, "orderPrice");
return (Criteria) this;
}
public Criteria andOrderPriceLessThan(BigDecimal value) {
addCriterion("order_price <", value, "orderPrice");
return (Criteria) this;
}
public Criteria andOrderPriceLessThanOrEqualTo(BigDecimal value) {
addCriterion("order_price <=", value, "orderPrice");
return (Criteria) this;
}
public Criteria andOrderPriceIn(List<BigDecimal> values) {
addCriterion("order_price in", values, "orderPrice");
return (Criteria) this;
}
public Criteria andOrderPriceNotIn(List<BigDecimal> values) {
addCriterion("order_price not in", values, "orderPrice");
return (Criteria) this;
}
public Criteria andOrderPriceBetween(BigDecimal value1, BigDecimal value2) {
addCriterion("order_price between", value1, value2, "orderPrice");
return (Criteria) this;
}
public Criteria andOrderPriceNotBetween(BigDecimal value1, BigDecimal value2) {
addCriterion("order_price not between", value1, value2, "orderPrice");
return (Criteria) this;
}
public Criteria andFreightPriceIsNull() { public Criteria andFreightPriceIsNull() {
addCriterion("freight_price is null"); addCriterion("freight_price is null");
return (Criteria) this; return (Criteria) this;

@ -6,12 +6,12 @@ import java.util.Date;
/** /**
* high_child_order * high_child_order
* @author * @author
*/ */
/** /**
* *
* 代码由工具生成 * 代码由工具生成
* *
**/ **/
public class HighChildOrder implements Serializable { public class HighChildOrder implements Serializable {
/** /**
@ -65,17 +65,17 @@ public class HighChildOrder implements Serializable {
private String storeAddress; private String storeAddress;
/** /**
* 商品类型 * 商品类型
1. 卡卷 1. 卡卷
2. 积分充值 2. 积分充值
3. 加油订单 3. 加油订单
4. KFC 4. KFC
5. 电影票 5. 电影票
6. 话费充值 6. 话费充值
7. 优惠卷包 7. 优惠卷包
8. 汇联通充值 8. 汇联通充值
9. 星巴克 9. 星巴克
10. 第三方充值 10. 第三方充值
*/ */
private Integer goodsType; private Integer goodsType;
@ -99,6 +99,11 @@ public class HighChildOrder implements Serializable {
*/ */
private String goodsImg; private String goodsImg;
/**
* 属性编码
*/
private Long skuId;
/** /**
* 商品规格名称 * 商品规格名称
*/ */
@ -115,44 +120,44 @@ public class HighChildOrder implements Serializable {
private BigDecimal goodsActualPrice; private BigDecimal goodsActualPrice;
/** /**
* 商品的价格单价*数量 * 剩余退款数量
*/ */
private BigDecimal totalPrice; private Integer surplusRefundNum;
/** /**
* 商品实际总价实际单价*数量 * 剩余退款金额
*/ */
private BigDecimal totalActualPrice; private BigDecimal surplusRefundPrice;
/** /**
* 商品总优惠金额 * 剩余退款积分
*/ */
private BigDecimal totalDeductionPrice; private Integer surplusRefundIntegral;
/** /**
* 商品的数量 * 渠道订单号
*/ */
private Integer saleCount; private String channelOrderNo;
/** /**
* 剩余退款数量 * 商品的价格单价*数量
*/ */
private Integer surplusRefundNum; private BigDecimal totalPrice;
/** /**
* 剩余退款金额 * 商品实际总价实际单价*数量
*/ */
private BigDecimal surplusRefundPrice; private BigDecimal totalActualPrice;
/** /**
* 剩余退款积分 * 商品总优惠金额
*/ */
private Integer surplusRefundIntegral; private BigDecimal totalDeductionPrice;
/** /**
* 渠道订单号 * 商品的数量
*/ */
private String channelOrderNo; private Integer saleCount;
/** /**
* 是否是赠品 0 1 * 是否是赠品 0 1
@ -161,13 +166,13 @@ public class HighChildOrder implements Serializable {
/** /**
* 子订单状态 * 子订单状态
1. 待支付 1. 待支付
2. 已支付 2. 已支付
3. 已完成 3. 已完成
4. 已退款 4. 已退款
5. 已取消 5. 已取消
6. 退款中 6. 退款中
7. 退款失败 7. 退款失败
*/ */
private Integer childOrderStatus; private Integer childOrderStatus;
@ -340,6 +345,14 @@ public class HighChildOrder implements Serializable {
this.goodsImg = goodsImg; this.goodsImg = goodsImg;
} }
public Long getSkuId() {
return skuId;
}
public void setSkuId(Long skuId) {
this.skuId = skuId;
}
public String getGoodsSpecName() { public String getGoodsSpecName() {
return goodsSpecName; return goodsSpecName;
} }
@ -364,38 +377,6 @@ public class HighChildOrder implements Serializable {
this.goodsActualPrice = goodsActualPrice; this.goodsActualPrice = goodsActualPrice;
} }
public BigDecimal getTotalPrice() {
return totalPrice;
}
public void setTotalPrice(BigDecimal totalPrice) {
this.totalPrice = totalPrice;
}
public BigDecimal getTotalActualPrice() {
return totalActualPrice;
}
public void setTotalActualPrice(BigDecimal totalActualPrice) {
this.totalActualPrice = totalActualPrice;
}
public BigDecimal getTotalDeductionPrice() {
return totalDeductionPrice;
}
public void setTotalDeductionPrice(BigDecimal totalDeductionPrice) {
this.totalDeductionPrice = totalDeductionPrice;
}
public Integer getSaleCount() {
return saleCount;
}
public void setSaleCount(Integer saleCount) {
this.saleCount = saleCount;
}
public Integer getSurplusRefundNum() { public Integer getSurplusRefundNum() {
return surplusRefundNum; return surplusRefundNum;
} }
@ -428,6 +409,38 @@ public class HighChildOrder implements Serializable {
this.channelOrderNo = channelOrderNo; this.channelOrderNo = channelOrderNo;
} }
public BigDecimal getTotalPrice() {
return totalPrice;
}
public void setTotalPrice(BigDecimal totalPrice) {
this.totalPrice = totalPrice;
}
public BigDecimal getTotalActualPrice() {
return totalActualPrice;
}
public void setTotalActualPrice(BigDecimal totalActualPrice) {
this.totalActualPrice = totalActualPrice;
}
public BigDecimal getTotalDeductionPrice() {
return totalDeductionPrice;
}
public void setTotalDeductionPrice(BigDecimal totalDeductionPrice) {
this.totalDeductionPrice = totalDeductionPrice;
}
public Integer getSaleCount() {
return saleCount;
}
public void setSaleCount(Integer saleCount) {
this.saleCount = saleCount;
}
public Boolean getGiveawayType() { public Boolean getGiveawayType() {
return giveawayType; return giveawayType;
} }
@ -561,46 +574,47 @@ public class HighChildOrder implements Serializable {
} }
HighChildOrder other = (HighChildOrder) that; HighChildOrder other = (HighChildOrder) that;
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
&& (this.getOrderId() == null ? other.getOrderId() == null : this.getOrderId().equals(other.getOrderId())) && (this.getOrderId() == null ? other.getOrderId() == null : this.getOrderId().equals(other.getOrderId()))
&& (this.getOrderNo() == null ? other.getOrderNo() == null : this.getOrderNo().equals(other.getOrderNo())) && (this.getOrderNo() == null ? other.getOrderNo() == null : this.getOrderNo().equals(other.getOrderNo()))
&& (this.getMemId() == null ? other.getMemId() == null : this.getMemId().equals(other.getMemId())) && (this.getMemId() == null ? other.getMemId() == null : this.getMemId().equals(other.getMemId()))
&& (this.getMemName() == null ? other.getMemName() == null : this.getMemName().equals(other.getMemName())) && (this.getMemName() == null ? other.getMemName() == null : this.getMemName().equals(other.getMemName()))
&& (this.getMemPhone() == null ? other.getMemPhone() == null : this.getMemPhone().equals(other.getMemPhone())) && (this.getMemPhone() == null ? other.getMemPhone() == null : this.getMemPhone().equals(other.getMemPhone()))
&& (this.getChildOrderNo() == null ? other.getChildOrderNo() == null : this.getChildOrderNo().equals(other.getChildOrderNo())) && (this.getChildOrderNo() == null ? other.getChildOrderNo() == null : this.getChildOrderNo().equals(other.getChildOrderNo()))
&& (this.getStoreId() == null ? other.getStoreId() == null : this.getStoreId().equals(other.getStoreId())) && (this.getStoreId() == null ? other.getStoreId() == null : this.getStoreId().equals(other.getStoreId()))
&& (this.getStoreName() == null ? other.getStoreName() == null : this.getStoreName().equals(other.getStoreName())) && (this.getStoreName() == null ? other.getStoreName() == null : this.getStoreName().equals(other.getStoreName()))
&& (this.getStoreAddress() == null ? other.getStoreAddress() == null : this.getStoreAddress().equals(other.getStoreAddress())) && (this.getStoreAddress() == null ? other.getStoreAddress() == null : this.getStoreAddress().equals(other.getStoreAddress()))
&& (this.getGoodsType() == null ? other.getGoodsType() == null : this.getGoodsType().equals(other.getGoodsType())) && (this.getGoodsType() == null ? other.getGoodsType() == null : this.getGoodsType().equals(other.getGoodsType()))
&& (this.getGoodsId() == null ? other.getGoodsId() == null : this.getGoodsId().equals(other.getGoodsId())) && (this.getGoodsId() == null ? other.getGoodsId() == null : this.getGoodsId().equals(other.getGoodsId()))
&& (this.getGoodsName() == null ? other.getGoodsName() == null : this.getGoodsName().equals(other.getGoodsName())) && (this.getGoodsName() == null ? other.getGoodsName() == null : this.getGoodsName().equals(other.getGoodsName()))
&& (this.getGoodsDesc() == null ? other.getGoodsDesc() == null : this.getGoodsDesc().equals(other.getGoodsDesc())) && (this.getGoodsDesc() == null ? other.getGoodsDesc() == null : this.getGoodsDesc().equals(other.getGoodsDesc()))
&& (this.getGoodsImg() == null ? other.getGoodsImg() == null : this.getGoodsImg().equals(other.getGoodsImg())) && (this.getGoodsImg() == null ? other.getGoodsImg() == null : this.getGoodsImg().equals(other.getGoodsImg()))
&& (this.getGoodsSpecName() == null ? other.getGoodsSpecName() == null : this.getGoodsSpecName().equals(other.getGoodsSpecName())) && (this.getSkuId() == null ? other.getSkuId() == null : this.getSkuId().equals(other.getSkuId()))
&& (this.getGoodsPrice() == null ? other.getGoodsPrice() == null : this.getGoodsPrice().equals(other.getGoodsPrice())) && (this.getGoodsSpecName() == null ? other.getGoodsSpecName() == null : this.getGoodsSpecName().equals(other.getGoodsSpecName()))
&& (this.getGoodsActualPrice() == null ? other.getGoodsActualPrice() == null : this.getGoodsActualPrice().equals(other.getGoodsActualPrice())) && (this.getGoodsPrice() == null ? other.getGoodsPrice() == null : this.getGoodsPrice().equals(other.getGoodsPrice()))
&& (this.getTotalPrice() == null ? other.getTotalPrice() == null : this.getTotalPrice().equals(other.getTotalPrice())) && (this.getGoodsActualPrice() == null ? other.getGoodsActualPrice() == null : this.getGoodsActualPrice().equals(other.getGoodsActualPrice()))
&& (this.getTotalActualPrice() == null ? other.getTotalActualPrice() == null : this.getTotalActualPrice().equals(other.getTotalActualPrice())) && (this.getSurplusRefundNum() == null ? other.getSurplusRefundNum() == null : this.getSurplusRefundNum().equals(other.getSurplusRefundNum()))
&& (this.getTotalDeductionPrice() == null ? other.getTotalDeductionPrice() == null : this.getTotalDeductionPrice().equals(other.getTotalDeductionPrice())) && (this.getSurplusRefundPrice() == null ? other.getSurplusRefundPrice() == null : this.getSurplusRefundPrice().equals(other.getSurplusRefundPrice()))
&& (this.getSaleCount() == null ? other.getSaleCount() == null : this.getSaleCount().equals(other.getSaleCount())) && (this.getSurplusRefundIntegral() == null ? other.getSurplusRefundIntegral() == null : this.getSurplusRefundIntegral().equals(other.getSurplusRefundIntegral()))
&& (this.getSurplusRefundNum() == null ? other.getSurplusRefundNum() == null : this.getSurplusRefundNum().equals(other.getSurplusRefundNum())) && (this.getChannelOrderNo() == null ? other.getChannelOrderNo() == null : this.getChannelOrderNo().equals(other.getChannelOrderNo()))
&& (this.getSurplusRefundPrice() == null ? other.getSurplusRefundPrice() == null : this.getSurplusRefundPrice().equals(other.getSurplusRefundPrice())) && (this.getTotalPrice() == null ? other.getTotalPrice() == null : this.getTotalPrice().equals(other.getTotalPrice()))
&& (this.getSurplusRefundIntegral() == null ? other.getSurplusRefundIntegral() == null : this.getSurplusRefundIntegral().equals(other.getSurplusRefundIntegral())) && (this.getTotalActualPrice() == null ? other.getTotalActualPrice() == null : this.getTotalActualPrice().equals(other.getTotalActualPrice()))
&& (this.getChannelOrderNo() == null ? other.getChannelOrderNo() == null : this.getChannelOrderNo().equals(other.getChannelOrderNo())) && (this.getTotalDeductionPrice() == null ? other.getTotalDeductionPrice() == null : this.getTotalDeductionPrice().equals(other.getTotalDeductionPrice()))
&& (this.getGiveawayType() == null ? other.getGiveawayType() == null : this.getGiveawayType().equals(other.getGiveawayType())) && (this.getSaleCount() == null ? other.getSaleCount() == null : this.getSaleCount().equals(other.getSaleCount()))
&& (this.getChildOrderStatus() == null ? other.getChildOrderStatus() == null : this.getChildOrderStatus().equals(other.getChildOrderStatus())) && (this.getGiveawayType() == null ? other.getGiveawayType() == null : this.getGiveawayType().equals(other.getGiveawayType()))
&& (this.getPraiseStatus() == null ? other.getPraiseStatus() == null : this.getPraiseStatus().equals(other.getPraiseStatus())) && (this.getChildOrderStatus() == null ? other.getChildOrderStatus() == null : this.getChildOrderStatus().equals(other.getChildOrderStatus()))
&& (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime())) && (this.getPraiseStatus() == null ? other.getPraiseStatus() == null : this.getPraiseStatus().equals(other.getPraiseStatus()))
&& (this.getPayTime() == null ? other.getPayTime() == null : this.getPayTime().equals(other.getPayTime())) && (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime()))
&& (this.getFinishTime() == null ? other.getFinishTime() == null : this.getFinishTime().equals(other.getFinishTime())) && (this.getPayTime() == null ? other.getPayTime() == null : this.getPayTime().equals(other.getPayTime()))
&& (this.getRefundTime() == null ? other.getRefundTime() == null : this.getRefundTime().equals(other.getRefundTime())) && (this.getFinishTime() == null ? other.getFinishTime() == null : this.getFinishTime().equals(other.getFinishTime()))
&& (this.getRefundRemarks() == null ? other.getRefundRemarks() == null : this.getRefundRemarks().equals(other.getRefundRemarks())) && (this.getRefundTime() == null ? other.getRefundTime() == null : this.getRefundTime().equals(other.getRefundTime()))
&& (this.getCancelTime() == null ? other.getCancelTime() == null : this.getCancelTime().equals(other.getCancelTime())) && (this.getRefundRemarks() == null ? other.getRefundRemarks() == null : this.getRefundRemarks().equals(other.getRefundRemarks()))
&& (this.getExt1() == null ? other.getExt1() == null : this.getExt1().equals(other.getExt1())) && (this.getCancelTime() == null ? other.getCancelTime() == null : this.getCancelTime().equals(other.getCancelTime()))
&& (this.getExt2() == null ? other.getExt2() == null : this.getExt2().equals(other.getExt2())) && (this.getExt1() == null ? other.getExt1() == null : this.getExt1().equals(other.getExt1()))
&& (this.getExt3() == null ? other.getExt3() == null : this.getExt3().equals(other.getExt3())) && (this.getExt2() == null ? other.getExt2() == null : this.getExt2().equals(other.getExt2()))
&& (this.getExt4() == null ? other.getExt4() == null : this.getExt4().equals(other.getExt4())) && (this.getExt3() == null ? other.getExt3() == null : this.getExt3().equals(other.getExt3()))
&& (this.getExt5() == null ? other.getExt5() == null : this.getExt5().equals(other.getExt5())) && (this.getExt4() == null ? other.getExt4() == null : this.getExt4().equals(other.getExt4()))
&& (this.getExt6() == null ? other.getExt6() == null : this.getExt6().equals(other.getExt6())); && (this.getExt5() == null ? other.getExt5() == null : this.getExt5().equals(other.getExt5()))
&& (this.getExt6() == null ? other.getExt6() == null : this.getExt6().equals(other.getExt6()));
} }
@Override @Override
@ -622,17 +636,18 @@ public class HighChildOrder implements Serializable {
result = prime * result + ((getGoodsName() == null) ? 0 : getGoodsName().hashCode()); result = prime * result + ((getGoodsName() == null) ? 0 : getGoodsName().hashCode());
result = prime * result + ((getGoodsDesc() == null) ? 0 : getGoodsDesc().hashCode()); result = prime * result + ((getGoodsDesc() == null) ? 0 : getGoodsDesc().hashCode());
result = prime * result + ((getGoodsImg() == null) ? 0 : getGoodsImg().hashCode()); result = prime * result + ((getGoodsImg() == null) ? 0 : getGoodsImg().hashCode());
result = prime * result + ((getSkuId() == null) ? 0 : getSkuId().hashCode());
result = prime * result + ((getGoodsSpecName() == null) ? 0 : getGoodsSpecName().hashCode()); result = prime * result + ((getGoodsSpecName() == null) ? 0 : getGoodsSpecName().hashCode());
result = prime * result + ((getGoodsPrice() == null) ? 0 : getGoodsPrice().hashCode()); result = prime * result + ((getGoodsPrice() == null) ? 0 : getGoodsPrice().hashCode());
result = prime * result + ((getGoodsActualPrice() == null) ? 0 : getGoodsActualPrice().hashCode()); result = prime * result + ((getGoodsActualPrice() == null) ? 0 : getGoodsActualPrice().hashCode());
result = prime * result + ((getTotalPrice() == null) ? 0 : getTotalPrice().hashCode());
result = prime * result + ((getTotalActualPrice() == null) ? 0 : getTotalActualPrice().hashCode());
result = prime * result + ((getTotalDeductionPrice() == null) ? 0 : getTotalDeductionPrice().hashCode());
result = prime * result + ((getSaleCount() == null) ? 0 : getSaleCount().hashCode());
result = prime * result + ((getSurplusRefundNum() == null) ? 0 : getSurplusRefundNum().hashCode()); result = prime * result + ((getSurplusRefundNum() == null) ? 0 : getSurplusRefundNum().hashCode());
result = prime * result + ((getSurplusRefundPrice() == null) ? 0 : getSurplusRefundPrice().hashCode()); result = prime * result + ((getSurplusRefundPrice() == null) ? 0 : getSurplusRefundPrice().hashCode());
result = prime * result + ((getSurplusRefundIntegral() == null) ? 0 : getSurplusRefundIntegral().hashCode()); result = prime * result + ((getSurplusRefundIntegral() == null) ? 0 : getSurplusRefundIntegral().hashCode());
result = prime * result + ((getChannelOrderNo() == null) ? 0 : getChannelOrderNo().hashCode()); result = prime * result + ((getChannelOrderNo() == null) ? 0 : getChannelOrderNo().hashCode());
result = prime * result + ((getTotalPrice() == null) ? 0 : getTotalPrice().hashCode());
result = prime * result + ((getTotalActualPrice() == null) ? 0 : getTotalActualPrice().hashCode());
result = prime * result + ((getTotalDeductionPrice() == null) ? 0 : getTotalDeductionPrice().hashCode());
result = prime * result + ((getSaleCount() == null) ? 0 : getSaleCount().hashCode());
result = prime * result + ((getGiveawayType() == null) ? 0 : getGiveawayType().hashCode()); result = prime * result + ((getGiveawayType() == null) ? 0 : getGiveawayType().hashCode());
result = prime * result + ((getChildOrderStatus() == null) ? 0 : getChildOrderStatus().hashCode()); result = prime * result + ((getChildOrderStatus() == null) ? 0 : getChildOrderStatus().hashCode());
result = prime * result + ((getPraiseStatus() == null) ? 0 : getPraiseStatus().hashCode()); result = prime * result + ((getPraiseStatus() == null) ? 0 : getPraiseStatus().hashCode());
@ -672,17 +687,18 @@ public class HighChildOrder implements Serializable {
sb.append(", goodsName=").append(goodsName); sb.append(", goodsName=").append(goodsName);
sb.append(", goodsDesc=").append(goodsDesc); sb.append(", goodsDesc=").append(goodsDesc);
sb.append(", goodsImg=").append(goodsImg); sb.append(", goodsImg=").append(goodsImg);
sb.append(", skuId=").append(skuId);
sb.append(", goodsSpecName=").append(goodsSpecName); sb.append(", goodsSpecName=").append(goodsSpecName);
sb.append(", goodsPrice=").append(goodsPrice); sb.append(", goodsPrice=").append(goodsPrice);
sb.append(", goodsActualPrice=").append(goodsActualPrice); sb.append(", goodsActualPrice=").append(goodsActualPrice);
sb.append(", totalPrice=").append(totalPrice);
sb.append(", totalActualPrice=").append(totalActualPrice);
sb.append(", totalDeductionPrice=").append(totalDeductionPrice);
sb.append(", saleCount=").append(saleCount);
sb.append(", surplusRefundNum=").append(surplusRefundNum); sb.append(", surplusRefundNum=").append(surplusRefundNum);
sb.append(", surplusRefundPrice=").append(surplusRefundPrice); sb.append(", surplusRefundPrice=").append(surplusRefundPrice);
sb.append(", surplusRefundIntegral=").append(surplusRefundIntegral); sb.append(", surplusRefundIntegral=").append(surplusRefundIntegral);
sb.append(", channelOrderNo=").append(channelOrderNo); sb.append(", channelOrderNo=").append(channelOrderNo);
sb.append(", totalPrice=").append(totalPrice);
sb.append(", totalActualPrice=").append(totalActualPrice);
sb.append(", totalDeductionPrice=").append(totalDeductionPrice);
sb.append(", saleCount=").append(saleCount);
sb.append(", giveawayType=").append(giveawayType); sb.append(", giveawayType=").append(giveawayType);
sb.append(", childOrderStatus=").append(childOrderStatus); sb.append(", childOrderStatus=").append(childOrderStatus);
sb.append(", praiseStatus=").append(praiseStatus); sb.append(", praiseStatus=").append(praiseStatus);
@ -702,4 +718,4 @@ public class HighChildOrder implements Serializable {
sb.append("]"); sb.append("]");
return sb.toString(); return sb.toString();
} }
} }

@ -1116,6 +1116,66 @@ public class HighChildOrderExample {
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSkuIdIsNull() {
addCriterion("sku_id is null");
return (Criteria) this;
}
public Criteria andSkuIdIsNotNull() {
addCriterion("sku_id is not null");
return (Criteria) this;
}
public Criteria andSkuIdEqualTo(Long value) {
addCriterion("sku_id =", value, "skuId");
return (Criteria) this;
}
public Criteria andSkuIdNotEqualTo(Long value) {
addCriterion("sku_id <>", value, "skuId");
return (Criteria) this;
}
public Criteria andSkuIdGreaterThan(Long value) {
addCriterion("sku_id >", value, "skuId");
return (Criteria) this;
}
public Criteria andSkuIdGreaterThanOrEqualTo(Long value) {
addCriterion("sku_id >=", value, "skuId");
return (Criteria) this;
}
public Criteria andSkuIdLessThan(Long value) {
addCriterion("sku_id <", value, "skuId");
return (Criteria) this;
}
public Criteria andSkuIdLessThanOrEqualTo(Long value) {
addCriterion("sku_id <=", value, "skuId");
return (Criteria) this;
}
public Criteria andSkuIdIn(List<Long> values) {
addCriterion("sku_id in", values, "skuId");
return (Criteria) this;
}
public Criteria andSkuIdNotIn(List<Long> values) {
addCriterion("sku_id not in", values, "skuId");
return (Criteria) this;
}
public Criteria andSkuIdBetween(Long value1, Long value2) {
addCriterion("sku_id between", value1, value2, "skuId");
return (Criteria) this;
}
public Criteria andSkuIdNotBetween(Long value1, Long value2) {
addCriterion("sku_id not between", value1, value2, "skuId");
return (Criteria) this;
}
public Criteria andGoodsSpecNameIsNull() { public Criteria andGoodsSpecNameIsNull() {
addCriterion("goods_spec_name is null"); addCriterion("goods_spec_name is null");
return (Criteria) this; return (Criteria) this;
@ -1306,493 +1366,493 @@ public class HighChildOrderExample {
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalPriceIsNull() { public Criteria andSurplusRefundNumIsNull() {
addCriterion("total_price is null"); addCriterion("surplus_refund_num is null");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalPriceIsNotNull() { public Criteria andSurplusRefundNumIsNotNull() {
addCriterion("total_price is not null"); addCriterion("surplus_refund_num is not null");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalPriceEqualTo(BigDecimal value) { public Criteria andSurplusRefundNumEqualTo(Integer value) {
addCriterion("total_price =", value, "totalPrice"); addCriterion("surplus_refund_num =", value, "surplusRefundNum");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalPriceNotEqualTo(BigDecimal value) { public Criteria andSurplusRefundNumNotEqualTo(Integer value) {
addCriterion("total_price <>", value, "totalPrice"); addCriterion("surplus_refund_num <>", value, "surplusRefundNum");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalPriceGreaterThan(BigDecimal value) { public Criteria andSurplusRefundNumGreaterThan(Integer value) {
addCriterion("total_price >", value, "totalPrice"); addCriterion("surplus_refund_num >", value, "surplusRefundNum");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalPriceGreaterThanOrEqualTo(BigDecimal value) { public Criteria andSurplusRefundNumGreaterThanOrEqualTo(Integer value) {
addCriterion("total_price >=", value, "totalPrice"); addCriterion("surplus_refund_num >=", value, "surplusRefundNum");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalPriceLessThan(BigDecimal value) { public Criteria andSurplusRefundNumLessThan(Integer value) {
addCriterion("total_price <", value, "totalPrice"); addCriterion("surplus_refund_num <", value, "surplusRefundNum");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalPriceLessThanOrEqualTo(BigDecimal value) { public Criteria andSurplusRefundNumLessThanOrEqualTo(Integer value) {
addCriterion("total_price <=", value, "totalPrice"); addCriterion("surplus_refund_num <=", value, "surplusRefundNum");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalPriceIn(List<BigDecimal> values) { public Criteria andSurplusRefundNumIn(List<Integer> values) {
addCriterion("total_price in", values, "totalPrice"); addCriterion("surplus_refund_num in", values, "surplusRefundNum");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalPriceNotIn(List<BigDecimal> values) { public Criteria andSurplusRefundNumNotIn(List<Integer> values) {
addCriterion("total_price not in", values, "totalPrice"); addCriterion("surplus_refund_num not in", values, "surplusRefundNum");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalPriceBetween(BigDecimal value1, BigDecimal value2) { public Criteria andSurplusRefundNumBetween(Integer value1, Integer value2) {
addCriterion("total_price between", value1, value2, "totalPrice"); addCriterion("surplus_refund_num between", value1, value2, "surplusRefundNum");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalPriceNotBetween(BigDecimal value1, BigDecimal value2) { public Criteria andSurplusRefundNumNotBetween(Integer value1, Integer value2) {
addCriterion("total_price not between", value1, value2, "totalPrice"); addCriterion("surplus_refund_num not between", value1, value2, "surplusRefundNum");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalActualPriceIsNull() { public Criteria andSurplusRefundPriceIsNull() {
addCriterion("total_actual_price is null"); addCriterion("surplus_refund_price is null");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalActualPriceIsNotNull() { public Criteria andSurplusRefundPriceIsNotNull() {
addCriterion("total_actual_price is not null"); addCriterion("surplus_refund_price is not null");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalActualPriceEqualTo(BigDecimal value) { public Criteria andSurplusRefundPriceEqualTo(BigDecimal value) {
addCriterion("total_actual_price =", value, "totalActualPrice"); addCriterion("surplus_refund_price =", value, "surplusRefundPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalActualPriceNotEqualTo(BigDecimal value) { public Criteria andSurplusRefundPriceNotEqualTo(BigDecimal value) {
addCriterion("total_actual_price <>", value, "totalActualPrice"); addCriterion("surplus_refund_price <>", value, "surplusRefundPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalActualPriceGreaterThan(BigDecimal value) { public Criteria andSurplusRefundPriceGreaterThan(BigDecimal value) {
addCriterion("total_actual_price >", value, "totalActualPrice"); addCriterion("surplus_refund_price >", value, "surplusRefundPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalActualPriceGreaterThanOrEqualTo(BigDecimal value) { public Criteria andSurplusRefundPriceGreaterThanOrEqualTo(BigDecimal value) {
addCriterion("total_actual_price >=", value, "totalActualPrice"); addCriterion("surplus_refund_price >=", value, "surplusRefundPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalActualPriceLessThan(BigDecimal value) { public Criteria andSurplusRefundPriceLessThan(BigDecimal value) {
addCriterion("total_actual_price <", value, "totalActualPrice"); addCriterion("surplus_refund_price <", value, "surplusRefundPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalActualPriceLessThanOrEqualTo(BigDecimal value) { public Criteria andSurplusRefundPriceLessThanOrEqualTo(BigDecimal value) {
addCriterion("total_actual_price <=", value, "totalActualPrice"); addCriterion("surplus_refund_price <=", value, "surplusRefundPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalActualPriceIn(List<BigDecimal> values) { public Criteria andSurplusRefundPriceIn(List<BigDecimal> values) {
addCriterion("total_actual_price in", values, "totalActualPrice"); addCriterion("surplus_refund_price in", values, "surplusRefundPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalActualPriceNotIn(List<BigDecimal> values) { public Criteria andSurplusRefundPriceNotIn(List<BigDecimal> values) {
addCriterion("total_actual_price not in", values, "totalActualPrice"); addCriterion("surplus_refund_price not in", values, "surplusRefundPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalActualPriceBetween(BigDecimal value1, BigDecimal value2) { public Criteria andSurplusRefundPriceBetween(BigDecimal value1, BigDecimal value2) {
addCriterion("total_actual_price between", value1, value2, "totalActualPrice"); addCriterion("surplus_refund_price between", value1, value2, "surplusRefundPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalActualPriceNotBetween(BigDecimal value1, BigDecimal value2) { public Criteria andSurplusRefundPriceNotBetween(BigDecimal value1, BigDecimal value2) {
addCriterion("total_actual_price not between", value1, value2, "totalActualPrice"); addCriterion("surplus_refund_price not between", value1, value2, "surplusRefundPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalDeductionPriceIsNull() { public Criteria andSurplusRefundIntegralIsNull() {
addCriterion("total_deduction_price is null"); addCriterion("surplus_refund_integral is null");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalDeductionPriceIsNotNull() { public Criteria andSurplusRefundIntegralIsNotNull() {
addCriterion("total_deduction_price is not null"); addCriterion("surplus_refund_integral is not null");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalDeductionPriceEqualTo(BigDecimal value) { public Criteria andSurplusRefundIntegralEqualTo(Integer value) {
addCriterion("total_deduction_price =", value, "totalDeductionPrice"); addCriterion("surplus_refund_integral =", value, "surplusRefundIntegral");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalDeductionPriceNotEqualTo(BigDecimal value) { public Criteria andSurplusRefundIntegralNotEqualTo(Integer value) {
addCriterion("total_deduction_price <>", value, "totalDeductionPrice"); addCriterion("surplus_refund_integral <>", value, "surplusRefundIntegral");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalDeductionPriceGreaterThan(BigDecimal value) { public Criteria andSurplusRefundIntegralGreaterThan(Integer value) {
addCriterion("total_deduction_price >", value, "totalDeductionPrice"); addCriterion("surplus_refund_integral >", value, "surplusRefundIntegral");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalDeductionPriceGreaterThanOrEqualTo(BigDecimal value) { public Criteria andSurplusRefundIntegralGreaterThanOrEqualTo(Integer value) {
addCriterion("total_deduction_price >=", value, "totalDeductionPrice"); addCriterion("surplus_refund_integral >=", value, "surplusRefundIntegral");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalDeductionPriceLessThan(BigDecimal value) { public Criteria andSurplusRefundIntegralLessThan(Integer value) {
addCriterion("total_deduction_price <", value, "totalDeductionPrice"); addCriterion("surplus_refund_integral <", value, "surplusRefundIntegral");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalDeductionPriceLessThanOrEqualTo(BigDecimal value) { public Criteria andSurplusRefundIntegralLessThanOrEqualTo(Integer value) {
addCriterion("total_deduction_price <=", value, "totalDeductionPrice"); addCriterion("surplus_refund_integral <=", value, "surplusRefundIntegral");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalDeductionPriceIn(List<BigDecimal> values) { public Criteria andSurplusRefundIntegralIn(List<Integer> values) {
addCriterion("total_deduction_price in", values, "totalDeductionPrice"); addCriterion("surplus_refund_integral in", values, "surplusRefundIntegral");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalDeductionPriceNotIn(List<BigDecimal> values) { public Criteria andSurplusRefundIntegralNotIn(List<Integer> values) {
addCriterion("total_deduction_price not in", values, "totalDeductionPrice"); addCriterion("surplus_refund_integral not in", values, "surplusRefundIntegral");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalDeductionPriceBetween(BigDecimal value1, BigDecimal value2) { public Criteria andSurplusRefundIntegralBetween(Integer value1, Integer value2) {
addCriterion("total_deduction_price between", value1, value2, "totalDeductionPrice"); addCriterion("surplus_refund_integral between", value1, value2, "surplusRefundIntegral");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTotalDeductionPriceNotBetween(BigDecimal value1, BigDecimal value2) { public Criteria andSurplusRefundIntegralNotBetween(Integer value1, Integer value2) {
addCriterion("total_deduction_price not between", value1, value2, "totalDeductionPrice"); addCriterion("surplus_refund_integral not between", value1, value2, "surplusRefundIntegral");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSaleCountIsNull() { public Criteria andChannelOrderNoIsNull() {
addCriterion("sale_count is null"); addCriterion("channel_order_no is null");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSaleCountIsNotNull() { public Criteria andChannelOrderNoIsNotNull() {
addCriterion("sale_count is not null"); addCriterion("channel_order_no is not null");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSaleCountEqualTo(Integer value) { public Criteria andChannelOrderNoEqualTo(String value) {
addCriterion("sale_count =", value, "saleCount"); addCriterion("channel_order_no =", value, "channelOrderNo");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSaleCountNotEqualTo(Integer value) { public Criteria andChannelOrderNoNotEqualTo(String value) {
addCriterion("sale_count <>", value, "saleCount"); addCriterion("channel_order_no <>", value, "channelOrderNo");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSaleCountGreaterThan(Integer value) { public Criteria andChannelOrderNoGreaterThan(String value) {
addCriterion("sale_count >", value, "saleCount"); addCriterion("channel_order_no >", value, "channelOrderNo");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSaleCountGreaterThanOrEqualTo(Integer value) { public Criteria andChannelOrderNoGreaterThanOrEqualTo(String value) {
addCriterion("sale_count >=", value, "saleCount"); addCriterion("channel_order_no >=", value, "channelOrderNo");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSaleCountLessThan(Integer value) { public Criteria andChannelOrderNoLessThan(String value) {
addCriterion("sale_count <", value, "saleCount"); addCriterion("channel_order_no <", value, "channelOrderNo");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSaleCountLessThanOrEqualTo(Integer value) { public Criteria andChannelOrderNoLessThanOrEqualTo(String value) {
addCriterion("sale_count <=", value, "saleCount"); addCriterion("channel_order_no <=", value, "channelOrderNo");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSaleCountIn(List<Integer> values) { public Criteria andChannelOrderNoLike(String value) {
addCriterion("sale_count in", values, "saleCount"); addCriterion("channel_order_no like", value, "channelOrderNo");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSaleCountNotIn(List<Integer> values) { public Criteria andChannelOrderNoNotLike(String value) {
addCriterion("sale_count not in", values, "saleCount"); addCriterion("channel_order_no not like", value, "channelOrderNo");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSaleCountBetween(Integer value1, Integer value2) { public Criteria andChannelOrderNoIn(List<String> values) {
addCriterion("sale_count between", value1, value2, "saleCount"); addCriterion("channel_order_no in", values, "channelOrderNo");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSaleCountNotBetween(Integer value1, Integer value2) { public Criteria andChannelOrderNoNotIn(List<String> values) {
addCriterion("sale_count not between", value1, value2, "saleCount"); addCriterion("channel_order_no not in", values, "channelOrderNo");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundNumIsNull() { public Criteria andChannelOrderNoBetween(String value1, String value2) {
addCriterion("surplus_refund_num is null"); addCriterion("channel_order_no between", value1, value2, "channelOrderNo");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundNumIsNotNull() { public Criteria andChannelOrderNoNotBetween(String value1, String value2) {
addCriterion("surplus_refund_num is not null"); addCriterion("channel_order_no not between", value1, value2, "channelOrderNo");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundNumEqualTo(Integer value) { public Criteria andTotalPriceIsNull() {
addCriterion("surplus_refund_num =", value, "surplusRefundNum"); addCriterion("total_price is null");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundNumNotEqualTo(Integer value) { public Criteria andTotalPriceIsNotNull() {
addCriterion("surplus_refund_num <>", value, "surplusRefundNum"); addCriterion("total_price is not null");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundNumGreaterThan(Integer value) { public Criteria andTotalPriceEqualTo(BigDecimal value) {
addCriterion("surplus_refund_num >", value, "surplusRefundNum"); addCriterion("total_price =", value, "totalPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundNumGreaterThanOrEqualTo(Integer value) { public Criteria andTotalPriceNotEqualTo(BigDecimal value) {
addCriterion("surplus_refund_num >=", value, "surplusRefundNum"); addCriterion("total_price <>", value, "totalPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundNumLessThan(Integer value) { public Criteria andTotalPriceGreaterThan(BigDecimal value) {
addCriterion("surplus_refund_num <", value, "surplusRefundNum"); addCriterion("total_price >", value, "totalPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundNumLessThanOrEqualTo(Integer value) { public Criteria andTotalPriceGreaterThanOrEqualTo(BigDecimal value) {
addCriterion("surplus_refund_num <=", value, "surplusRefundNum"); addCriterion("total_price >=", value, "totalPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundNumIn(List<Integer> values) { public Criteria andTotalPriceLessThan(BigDecimal value) {
addCriterion("surplus_refund_num in", values, "surplusRefundNum"); addCriterion("total_price <", value, "totalPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundNumNotIn(List<Integer> values) { public Criteria andTotalPriceLessThanOrEqualTo(BigDecimal value) {
addCriterion("surplus_refund_num not in", values, "surplusRefundNum"); addCriterion("total_price <=", value, "totalPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundNumBetween(Integer value1, Integer value2) { public Criteria andTotalPriceIn(List<BigDecimal> values) {
addCriterion("surplus_refund_num between", value1, value2, "surplusRefundNum"); addCriterion("total_price in", values, "totalPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundNumNotBetween(Integer value1, Integer value2) { public Criteria andTotalPriceNotIn(List<BigDecimal> values) {
addCriterion("surplus_refund_num not between", value1, value2, "surplusRefundNum"); addCriterion("total_price not in", values, "totalPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundPriceIsNull() { public Criteria andTotalPriceBetween(BigDecimal value1, BigDecimal value2) {
addCriterion("surplus_refund_price is null"); addCriterion("total_price between", value1, value2, "totalPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundPriceIsNotNull() { public Criteria andTotalPriceNotBetween(BigDecimal value1, BigDecimal value2) {
addCriterion("surplus_refund_price is not null"); addCriterion("total_price not between", value1, value2, "totalPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundPriceEqualTo(BigDecimal value) { public Criteria andTotalActualPriceIsNull() {
addCriterion("surplus_refund_price =", value, "surplusRefundPrice"); addCriterion("total_actual_price is null");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundPriceNotEqualTo(BigDecimal value) { public Criteria andTotalActualPriceIsNotNull() {
addCriterion("surplus_refund_price <>", value, "surplusRefundPrice"); addCriterion("total_actual_price is not null");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundPriceGreaterThan(BigDecimal value) { public Criteria andTotalActualPriceEqualTo(BigDecimal value) {
addCriterion("surplus_refund_price >", value, "surplusRefundPrice"); addCriterion("total_actual_price =", value, "totalActualPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundPriceGreaterThanOrEqualTo(BigDecimal value) { public Criteria andTotalActualPriceNotEqualTo(BigDecimal value) {
addCriterion("surplus_refund_price >=", value, "surplusRefundPrice"); addCriterion("total_actual_price <>", value, "totalActualPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundPriceLessThan(BigDecimal value) { public Criteria andTotalActualPriceGreaterThan(BigDecimal value) {
addCriterion("surplus_refund_price <", value, "surplusRefundPrice"); addCriterion("total_actual_price >", value, "totalActualPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundPriceLessThanOrEqualTo(BigDecimal value) { public Criteria andTotalActualPriceGreaterThanOrEqualTo(BigDecimal value) {
addCriterion("surplus_refund_price <=", value, "surplusRefundPrice"); addCriterion("total_actual_price >=", value, "totalActualPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundPriceIn(List<BigDecimal> values) { public Criteria andTotalActualPriceLessThan(BigDecimal value) {
addCriterion("surplus_refund_price in", values, "surplusRefundPrice"); addCriterion("total_actual_price <", value, "totalActualPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundPriceNotIn(List<BigDecimal> values) { public Criteria andTotalActualPriceLessThanOrEqualTo(BigDecimal value) {
addCriterion("surplus_refund_price not in", values, "surplusRefundPrice"); addCriterion("total_actual_price <=", value, "totalActualPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundPriceBetween(BigDecimal value1, BigDecimal value2) { public Criteria andTotalActualPriceIn(List<BigDecimal> values) {
addCriterion("surplus_refund_price between", value1, value2, "surplusRefundPrice"); addCriterion("total_actual_price in", values, "totalActualPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundPriceNotBetween(BigDecimal value1, BigDecimal value2) { public Criteria andTotalActualPriceNotIn(List<BigDecimal> values) {
addCriterion("surplus_refund_price not between", value1, value2, "surplusRefundPrice"); addCriterion("total_actual_price not in", values, "totalActualPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundIntegralIsNull() { public Criteria andTotalActualPriceBetween(BigDecimal value1, BigDecimal value2) {
addCriterion("surplus_refund_integral is null"); addCriterion("total_actual_price between", value1, value2, "totalActualPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundIntegralIsNotNull() { public Criteria andTotalActualPriceNotBetween(BigDecimal value1, BigDecimal value2) {
addCriterion("surplus_refund_integral is not null"); addCriterion("total_actual_price not between", value1, value2, "totalActualPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundIntegralEqualTo(Integer value) { public Criteria andTotalDeductionPriceIsNull() {
addCriterion("surplus_refund_integral =", value, "surplusRefundIntegral"); addCriterion("total_deduction_price is null");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundIntegralNotEqualTo(Integer value) { public Criteria andTotalDeductionPriceIsNotNull() {
addCriterion("surplus_refund_integral <>", value, "surplusRefundIntegral"); addCriterion("total_deduction_price is not null");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundIntegralGreaterThan(Integer value) { public Criteria andTotalDeductionPriceEqualTo(BigDecimal value) {
addCriterion("surplus_refund_integral >", value, "surplusRefundIntegral"); addCriterion("total_deduction_price =", value, "totalDeductionPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundIntegralGreaterThanOrEqualTo(Integer value) { public Criteria andTotalDeductionPriceNotEqualTo(BigDecimal value) {
addCriterion("surplus_refund_integral >=", value, "surplusRefundIntegral"); addCriterion("total_deduction_price <>", value, "totalDeductionPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundIntegralLessThan(Integer value) { public Criteria andTotalDeductionPriceGreaterThan(BigDecimal value) {
addCriterion("surplus_refund_integral <", value, "surplusRefundIntegral"); addCriterion("total_deduction_price >", value, "totalDeductionPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundIntegralLessThanOrEqualTo(Integer value) { public Criteria andTotalDeductionPriceGreaterThanOrEqualTo(BigDecimal value) {
addCriterion("surplus_refund_integral <=", value, "surplusRefundIntegral"); addCriterion("total_deduction_price >=", value, "totalDeductionPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundIntegralIn(List<Integer> values) { public Criteria andTotalDeductionPriceLessThan(BigDecimal value) {
addCriterion("surplus_refund_integral in", values, "surplusRefundIntegral"); addCriterion("total_deduction_price <", value, "totalDeductionPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundIntegralNotIn(List<Integer> values) { public Criteria andTotalDeductionPriceLessThanOrEqualTo(BigDecimal value) {
addCriterion("surplus_refund_integral not in", values, "surplusRefundIntegral"); addCriterion("total_deduction_price <=", value, "totalDeductionPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundIntegralBetween(Integer value1, Integer value2) { public Criteria andTotalDeductionPriceIn(List<BigDecimal> values) {
addCriterion("surplus_refund_integral between", value1, value2, "surplusRefundIntegral"); addCriterion("total_deduction_price in", values, "totalDeductionPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andSurplusRefundIntegralNotBetween(Integer value1, Integer value2) { public Criteria andTotalDeductionPriceNotIn(List<BigDecimal> values) {
addCriterion("surplus_refund_integral not between", value1, value2, "surplusRefundIntegral"); addCriterion("total_deduction_price not in", values, "totalDeductionPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andChannelOrderNoIsNull() { public Criteria andTotalDeductionPriceBetween(BigDecimal value1, BigDecimal value2) {
addCriterion("channel_order_no is null"); addCriterion("total_deduction_price between", value1, value2, "totalDeductionPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andChannelOrderNoIsNotNull() { public Criteria andTotalDeductionPriceNotBetween(BigDecimal value1, BigDecimal value2) {
addCriterion("channel_order_no is not null"); addCriterion("total_deduction_price not between", value1, value2, "totalDeductionPrice");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andChannelOrderNoEqualTo(String value) { public Criteria andSaleCountIsNull() {
addCriterion("channel_order_no =", value, "channelOrderNo"); addCriterion("sale_count is null");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andChannelOrderNoNotEqualTo(String value) { public Criteria andSaleCountIsNotNull() {
addCriterion("channel_order_no <>", value, "channelOrderNo"); addCriterion("sale_count is not null");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andChannelOrderNoGreaterThan(String value) { public Criteria andSaleCountEqualTo(Integer value) {
addCriterion("channel_order_no >", value, "channelOrderNo"); addCriterion("sale_count =", value, "saleCount");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andChannelOrderNoGreaterThanOrEqualTo(String value) { public Criteria andSaleCountNotEqualTo(Integer value) {
addCriterion("channel_order_no >=", value, "channelOrderNo"); addCriterion("sale_count <>", value, "saleCount");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andChannelOrderNoLessThan(String value) { public Criteria andSaleCountGreaterThan(Integer value) {
addCriterion("channel_order_no <", value, "channelOrderNo"); addCriterion("sale_count >", value, "saleCount");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andChannelOrderNoLessThanOrEqualTo(String value) { public Criteria andSaleCountGreaterThanOrEqualTo(Integer value) {
addCriterion("channel_order_no <=", value, "channelOrderNo"); addCriterion("sale_count >=", value, "saleCount");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andChannelOrderNoLike(String value) { public Criteria andSaleCountLessThan(Integer value) {
addCriterion("channel_order_no like", value, "channelOrderNo"); addCriterion("sale_count <", value, "saleCount");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andChannelOrderNoNotLike(String value) { public Criteria andSaleCountLessThanOrEqualTo(Integer value) {
addCriterion("channel_order_no not like", value, "channelOrderNo"); addCriterion("sale_count <=", value, "saleCount");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andChannelOrderNoIn(List<String> values) { public Criteria andSaleCountIn(List<Integer> values) {
addCriterion("channel_order_no in", values, "channelOrderNo"); addCriterion("sale_count in", values, "saleCount");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andChannelOrderNoNotIn(List<String> values) { public Criteria andSaleCountNotIn(List<Integer> values) {
addCriterion("channel_order_no not in", values, "channelOrderNo"); addCriterion("sale_count not in", values, "saleCount");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andChannelOrderNoBetween(String value1, String value2) { public Criteria andSaleCountBetween(Integer value1, Integer value2) {
addCriterion("channel_order_no between", value1, value2, "channelOrderNo"); addCriterion("sale_count between", value1, value2, "saleCount");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andChannelOrderNoNotBetween(String value1, String value2) { public Criteria andSaleCountNotBetween(Integer value1, Integer value2) {
addCriterion("channel_order_no not between", value1, value2, "channelOrderNo"); addCriterion("sale_count not between", value1, value2, "saleCount");
return (Criteria) this; return (Criteria) this;
} }
@ -2861,4 +2921,4 @@ public class HighChildOrderExample {
this(condition, value, secondValue, null); this(condition, value, secondValue, null);
} }
} }
} }
Loading…
Cancel
Save