parent
d587b58f2c
commit
087429e992
@ -0,0 +1,64 @@ |
|||||||
|
package com.cweb.controller.meal; |
||||||
|
|
||||||
|
import com.alibaba.fastjson.JSONObject; |
||||||
|
import com.hfkj.common.exception.ErrorCode; |
||||||
|
import com.hfkj.common.exception.ErrorHelp; |
||||||
|
import com.hfkj.common.exception.SysCode; |
||||||
|
import com.hfkj.common.utils.ResponseMsgUtil; |
||||||
|
import com.hfkj.model.ResponseData; |
||||||
|
import com.hfkj.service.meal.BsMealShopCartService; |
||||||
|
import io.swagger.annotations.Api; |
||||||
|
import io.swagger.annotations.ApiOperation; |
||||||
|
import org.apache.commons.lang3.StringUtils; |
||||||
|
import org.slf4j.Logger; |
||||||
|
import org.slf4j.LoggerFactory; |
||||||
|
import org.springframework.stereotype.Controller; |
||||||
|
import org.springframework.web.bind.annotation.*; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
import java.util.ArrayList; |
||||||
|
import java.util.HashMap; |
||||||
|
import java.util.List; |
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
/** |
||||||
|
* @className: BsMealShopCartController |
||||||
|
* @author: HuRui |
||||||
|
* @date: 2023/11/30 |
||||||
|
**/ |
||||||
|
@Controller |
||||||
|
@Api(value = "桌台订单管理") |
||||||
|
@RequestMapping(value = "/mealTableOrder") |
||||||
|
public class BsMealTableOrderController { |
||||||
|
|
||||||
|
Logger log = LoggerFactory.getLogger(BsMealTableController.class); |
||||||
|
|
||||||
|
|
||||||
|
@RequestMapping(value="/createOrder",method = RequestMethod.POST) |
||||||
|
@ResponseBody |
||||||
|
@ApiOperation(value = "创建订单") |
||||||
|
public ResponseData createOrder(@RequestBody JSONObject body) { |
||||||
|
try { |
||||||
|
if (body == null |
||||||
|
|| StringUtils.isBlank(body.getString("serialNumber")) |
||||||
|
|| body.getJSONArray("productArray") == null) { |
||||||
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.REQ_PARAMS_ERROR, ""); |
||||||
|
} |
||||||
|
|
||||||
|
for (Object obj : body.getJSONArray("productArray")) { |
||||||
|
JSONObject product = (JSONObject) obj; |
||||||
|
if (product == null |
||||||
|
|| product.getLong("productId") == null || product.getInteger("number") == null) { |
||||||
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "产品参数校验未通过"); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
return ResponseMsgUtil.success("操作成功"); |
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
log.error(e.getMessage(), e); |
||||||
|
return ResponseMsgUtil.exception(e); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -1,7 +1,13 @@ |
|||||||
package com.hfkj.dao; |
package com.hfkj.dao; |
||||||
|
|
||||||
|
import org.apache.ibatis.annotations.Param; |
||||||
|
import org.apache.ibatis.annotations.Update; |
||||||
|
|
||||||
/** |
/** |
||||||
* mapper扩展类 |
* mapper扩展类 |
||||||
*/ |
*/ |
||||||
public interface BsMealShopCartMapperExt { |
public interface BsMealShopCartMapperExt { |
||||||
} |
|
||||||
|
@Update("update bs_meal_shop_cart set `status` = 0 where serial_number = #{serialNumber} and `status` = 1") |
||||||
|
void clear(@Param("serialNumber") String serialNumber); |
||||||
|
} |
||||||
|
@ -0,0 +1,159 @@ |
|||||||
|
package com.hfkj.dao; |
||||||
|
|
||||||
|
import com.hfkj.entity.BsMealTableOrderChildProduct; |
||||||
|
import com.hfkj.entity.BsMealTableOrderChildProductExample; |
||||||
|
import java.util.List; |
||||||
|
import org.apache.ibatis.annotations.Delete; |
||||||
|
import org.apache.ibatis.annotations.DeleteProvider; |
||||||
|
import org.apache.ibatis.annotations.Insert; |
||||||
|
import org.apache.ibatis.annotations.InsertProvider; |
||||||
|
import org.apache.ibatis.annotations.Options; |
||||||
|
import org.apache.ibatis.annotations.Param; |
||||||
|
import org.apache.ibatis.annotations.Result; |
||||||
|
import org.apache.ibatis.annotations.Results; |
||||||
|
import org.apache.ibatis.annotations.Select; |
||||||
|
import org.apache.ibatis.annotations.SelectProvider; |
||||||
|
import org.apache.ibatis.annotations.Update; |
||||||
|
import org.apache.ibatis.annotations.UpdateProvider; |
||||||
|
import org.apache.ibatis.type.JdbcType; |
||||||
|
import org.springframework.stereotype.Repository; |
||||||
|
|
||||||
|
/** |
||||||
|
* |
||||||
|
* 代码由工具生成,请勿修改!!! |
||||||
|
* 如果需要扩展请在其父类进行扩展 |
||||||
|
* |
||||||
|
**/ |
||||||
|
@Repository |
||||||
|
public interface BsMealTableOrderChildProductMapper extends BsMealTableOrderChildProductMapperExt { |
||||||
|
@SelectProvider(type=BsMealTableOrderChildProductSqlProvider.class, method="countByExample") |
||||||
|
long countByExample(BsMealTableOrderChildProductExample example); |
||||||
|
|
||||||
|
@DeleteProvider(type=BsMealTableOrderChildProductSqlProvider.class, method="deleteByExample") |
||||||
|
int deleteByExample(BsMealTableOrderChildProductExample example); |
||||||
|
|
||||||
|
@Delete({ |
||||||
|
"delete from bs_meal_table_order_child_product", |
||||||
|
"where id = #{id,jdbcType=BIGINT}" |
||||||
|
}) |
||||||
|
int deleteByPrimaryKey(Long id); |
||||||
|
|
||||||
|
@Insert({ |
||||||
|
"insert into bs_meal_table_order_child_product (store_id, store_name, ", |
||||||
|
"child_order_id, child_order_no, ", |
||||||
|
"product_category_id, product_category_name, ", |
||||||
|
"product_id, product_img, ", |
||||||
|
"product_name, product_spec, ", |
||||||
|
"product_price, product_num, ", |
||||||
|
"product_total_price, `status`, ", |
||||||
|
"create_time, update_time, ", |
||||||
|
"ext_1, ext_2, ext_3)", |
||||||
|
"values (#{storeId,jdbcType=BIGINT}, #{storeName,jdbcType=VARCHAR}, ", |
||||||
|
"#{childOrderId,jdbcType=BIGINT}, #{childOrderNo,jdbcType=VARCHAR}, ", |
||||||
|
"#{productCategoryId,jdbcType=BIGINT}, #{productCategoryName,jdbcType=VARCHAR}, ", |
||||||
|
"#{productId,jdbcType=BIGINT}, #{productImg,jdbcType=VARCHAR}, ", |
||||||
|
"#{productName,jdbcType=VARCHAR}, #{productSpec,jdbcType=VARCHAR}, ", |
||||||
|
"#{productPrice,jdbcType=DECIMAL}, #{productNum,jdbcType=INTEGER}, ", |
||||||
|
"#{productTotalPrice,jdbcType=DECIMAL}, #{status,jdbcType=INTEGER}, ", |
||||||
|
"#{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}, ", |
||||||
|
"#{ext1,jdbcType=VARCHAR}, #{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})" |
||||||
|
}) |
||||||
|
@Options(useGeneratedKeys=true,keyProperty="id") |
||||||
|
int insert(BsMealTableOrderChildProduct record); |
||||||
|
|
||||||
|
@InsertProvider(type=BsMealTableOrderChildProductSqlProvider.class, method="insertSelective") |
||||||
|
@Options(useGeneratedKeys=true,keyProperty="id") |
||||||
|
int insertSelective(BsMealTableOrderChildProduct record); |
||||||
|
|
||||||
|
@SelectProvider(type=BsMealTableOrderChildProductSqlProvider.class, method="selectByExample") |
||||||
|
@Results({ |
||||||
|
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), |
||||||
|
@Result(column="store_id", property="storeId", jdbcType=JdbcType.BIGINT), |
||||||
|
@Result(column="store_name", property="storeName", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="child_order_id", property="childOrderId", jdbcType=JdbcType.BIGINT), |
||||||
|
@Result(column="child_order_no", property="childOrderNo", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="product_category_id", property="productCategoryId", jdbcType=JdbcType.BIGINT), |
||||||
|
@Result(column="product_category_name", property="productCategoryName", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="product_id", property="productId", jdbcType=JdbcType.BIGINT), |
||||||
|
@Result(column="product_img", property="productImg", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="product_name", property="productName", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="product_spec", property="productSpec", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="product_price", property="productPrice", jdbcType=JdbcType.DECIMAL), |
||||||
|
@Result(column="product_num", property="productNum", jdbcType=JdbcType.INTEGER), |
||||||
|
@Result(column="product_total_price", property="productTotalPrice", jdbcType=JdbcType.DECIMAL), |
||||||
|
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER), |
||||||
|
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), |
||||||
|
@Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP), |
||||||
|
@Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) |
||||||
|
}) |
||||||
|
List<BsMealTableOrderChildProduct> selectByExample(BsMealTableOrderChildProductExample example); |
||||||
|
|
||||||
|
@Select({ |
||||||
|
"select", |
||||||
|
"id, store_id, store_name, child_order_id, child_order_no, product_category_id, ", |
||||||
|
"product_category_name, product_id, product_img, product_name, product_spec, ", |
||||||
|
"product_price, product_num, product_total_price, `status`, create_time, update_time, ", |
||||||
|
"ext_1, ext_2, ext_3", |
||||||
|
"from bs_meal_table_order_child_product", |
||||||
|
"where id = #{id,jdbcType=BIGINT}" |
||||||
|
}) |
||||||
|
@Results({ |
||||||
|
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), |
||||||
|
@Result(column="store_id", property="storeId", jdbcType=JdbcType.BIGINT), |
||||||
|
@Result(column="store_name", property="storeName", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="child_order_id", property="childOrderId", jdbcType=JdbcType.BIGINT), |
||||||
|
@Result(column="child_order_no", property="childOrderNo", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="product_category_id", property="productCategoryId", jdbcType=JdbcType.BIGINT), |
||||||
|
@Result(column="product_category_name", property="productCategoryName", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="product_id", property="productId", jdbcType=JdbcType.BIGINT), |
||||||
|
@Result(column="product_img", property="productImg", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="product_name", property="productName", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="product_spec", property="productSpec", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="product_price", property="productPrice", jdbcType=JdbcType.DECIMAL), |
||||||
|
@Result(column="product_num", property="productNum", jdbcType=JdbcType.INTEGER), |
||||||
|
@Result(column="product_total_price", property="productTotalPrice", jdbcType=JdbcType.DECIMAL), |
||||||
|
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER), |
||||||
|
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), |
||||||
|
@Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP), |
||||||
|
@Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) |
||||||
|
}) |
||||||
|
BsMealTableOrderChildProduct selectByPrimaryKey(Long id); |
||||||
|
|
||||||
|
@UpdateProvider(type=BsMealTableOrderChildProductSqlProvider.class, method="updateByExampleSelective") |
||||||
|
int updateByExampleSelective(@Param("record") BsMealTableOrderChildProduct record, @Param("example") BsMealTableOrderChildProductExample example); |
||||||
|
|
||||||
|
@UpdateProvider(type=BsMealTableOrderChildProductSqlProvider.class, method="updateByExample") |
||||||
|
int updateByExample(@Param("record") BsMealTableOrderChildProduct record, @Param("example") BsMealTableOrderChildProductExample example); |
||||||
|
|
||||||
|
@UpdateProvider(type=BsMealTableOrderChildProductSqlProvider.class, method="updateByPrimaryKeySelective") |
||||||
|
int updateByPrimaryKeySelective(BsMealTableOrderChildProduct record); |
||||||
|
|
||||||
|
@Update({ |
||||||
|
"update bs_meal_table_order_child_product", |
||||||
|
"set store_id = #{storeId,jdbcType=BIGINT},", |
||||||
|
"store_name = #{storeName,jdbcType=VARCHAR},", |
||||||
|
"child_order_id = #{childOrderId,jdbcType=BIGINT},", |
||||||
|
"child_order_no = #{childOrderNo,jdbcType=VARCHAR},", |
||||||
|
"product_category_id = #{productCategoryId,jdbcType=BIGINT},", |
||||||
|
"product_category_name = #{productCategoryName,jdbcType=VARCHAR},", |
||||||
|
"product_id = #{productId,jdbcType=BIGINT},", |
||||||
|
"product_img = #{productImg,jdbcType=VARCHAR},", |
||||||
|
"product_name = #{productName,jdbcType=VARCHAR},", |
||||||
|
"product_spec = #{productSpec,jdbcType=VARCHAR},", |
||||||
|
"product_price = #{productPrice,jdbcType=DECIMAL},", |
||||||
|
"product_num = #{productNum,jdbcType=INTEGER},", |
||||||
|
"product_total_price = #{productTotalPrice,jdbcType=DECIMAL},", |
||||||
|
"`status` = #{status,jdbcType=INTEGER},", |
||||||
|
"create_time = #{createTime,jdbcType=TIMESTAMP},", |
||||||
|
"update_time = #{updateTime,jdbcType=TIMESTAMP},", |
||||||
|
"ext_1 = #{ext1,jdbcType=VARCHAR},", |
||||||
|
"ext_2 = #{ext2,jdbcType=VARCHAR},", |
||||||
|
"ext_3 = #{ext3,jdbcType=VARCHAR}", |
||||||
|
"where id = #{id,jdbcType=BIGINT}" |
||||||
|
}) |
||||||
|
int updateByPrimaryKey(BsMealTableOrderChildProduct record); |
||||||
|
} |
@ -0,0 +1,7 @@ |
|||||||
|
package com.hfkj.dao; |
||||||
|
|
||||||
|
/** |
||||||
|
* mapper扩展类 |
||||||
|
*/ |
||||||
|
public interface BsMealTableOrderChildProductMapperExt { |
||||||
|
} |
@ -0,0 +1,444 @@ |
|||||||
|
package com.hfkj.dao; |
||||||
|
|
||||||
|
import com.hfkj.entity.BsMealTableOrderChildProduct; |
||||||
|
import com.hfkj.entity.BsMealTableOrderChildProductExample.Criteria; |
||||||
|
import com.hfkj.entity.BsMealTableOrderChildProductExample.Criterion; |
||||||
|
import com.hfkj.entity.BsMealTableOrderChildProductExample; |
||||||
|
import java.util.List; |
||||||
|
import java.util.Map; |
||||||
|
import org.apache.ibatis.jdbc.SQL; |
||||||
|
|
||||||
|
public class BsMealTableOrderChildProductSqlProvider { |
||||||
|
|
||||||
|
public String countByExample(BsMealTableOrderChildProductExample example) { |
||||||
|
SQL sql = new SQL(); |
||||||
|
sql.SELECT("count(*)").FROM("bs_meal_table_order_child_product"); |
||||||
|
applyWhere(sql, example, false); |
||||||
|
return sql.toString(); |
||||||
|
} |
||||||
|
|
||||||
|
public String deleteByExample(BsMealTableOrderChildProductExample example) { |
||||||
|
SQL sql = new SQL(); |
||||||
|
sql.DELETE_FROM("bs_meal_table_order_child_product"); |
||||||
|
applyWhere(sql, example, false); |
||||||
|
return sql.toString(); |
||||||
|
} |
||||||
|
|
||||||
|
public String insertSelective(BsMealTableOrderChildProduct record) { |
||||||
|
SQL sql = new SQL(); |
||||||
|
sql.INSERT_INTO("bs_meal_table_order_child_product"); |
||||||
|
|
||||||
|
if (record.getStoreId() != null) { |
||||||
|
sql.VALUES("store_id", "#{storeId,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getStoreName() != null) { |
||||||
|
sql.VALUES("store_name", "#{storeName,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getChildOrderId() != null) { |
||||||
|
sql.VALUES("child_order_id", "#{childOrderId,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getChildOrderNo() != null) { |
||||||
|
sql.VALUES("child_order_no", "#{childOrderNo,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductCategoryId() != null) { |
||||||
|
sql.VALUES("product_category_id", "#{productCategoryId,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductCategoryName() != null) { |
||||||
|
sql.VALUES("product_category_name", "#{productCategoryName,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductId() != null) { |
||||||
|
sql.VALUES("product_id", "#{productId,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductImg() != null) { |
||||||
|
sql.VALUES("product_img", "#{productImg,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductName() != null) { |
||||||
|
sql.VALUES("product_name", "#{productName,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductSpec() != null) { |
||||||
|
sql.VALUES("product_spec", "#{productSpec,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductPrice() != null) { |
||||||
|
sql.VALUES("product_price", "#{productPrice,jdbcType=DECIMAL}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductNum() != null) { |
||||||
|
sql.VALUES("product_num", "#{productNum,jdbcType=INTEGER}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductTotalPrice() != null) { |
||||||
|
sql.VALUES("product_total_price", "#{productTotalPrice,jdbcType=DECIMAL}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getStatus() != null) { |
||||||
|
sql.VALUES("`status`", "#{status,jdbcType=INTEGER}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getCreateTime() != null) { |
||||||
|
sql.VALUES("create_time", "#{createTime,jdbcType=TIMESTAMP}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getUpdateTime() != null) { |
||||||
|
sql.VALUES("update_time", "#{updateTime,jdbcType=TIMESTAMP}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getExt1() != null) { |
||||||
|
sql.VALUES("ext_1", "#{ext1,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getExt2() != null) { |
||||||
|
sql.VALUES("ext_2", "#{ext2,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getExt3() != null) { |
||||||
|
sql.VALUES("ext_3", "#{ext3,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
return sql.toString(); |
||||||
|
} |
||||||
|
|
||||||
|
public String selectByExample(BsMealTableOrderChildProductExample example) { |
||||||
|
SQL sql = new SQL(); |
||||||
|
if (example != null && example.isDistinct()) { |
||||||
|
sql.SELECT_DISTINCT("id"); |
||||||
|
} else { |
||||||
|
sql.SELECT("id"); |
||||||
|
} |
||||||
|
sql.SELECT("store_id"); |
||||||
|
sql.SELECT("store_name"); |
||||||
|
sql.SELECT("child_order_id"); |
||||||
|
sql.SELECT("child_order_no"); |
||||||
|
sql.SELECT("product_category_id"); |
||||||
|
sql.SELECT("product_category_name"); |
||||||
|
sql.SELECT("product_id"); |
||||||
|
sql.SELECT("product_img"); |
||||||
|
sql.SELECT("product_name"); |
||||||
|
sql.SELECT("product_spec"); |
||||||
|
sql.SELECT("product_price"); |
||||||
|
sql.SELECT("product_num"); |
||||||
|
sql.SELECT("product_total_price"); |
||||||
|
sql.SELECT("`status`"); |
||||||
|
sql.SELECT("create_time"); |
||||||
|
sql.SELECT("update_time"); |
||||||
|
sql.SELECT("ext_1"); |
||||||
|
sql.SELECT("ext_2"); |
||||||
|
sql.SELECT("ext_3"); |
||||||
|
sql.FROM("bs_meal_table_order_child_product"); |
||||||
|
applyWhere(sql, example, false); |
||||||
|
|
||||||
|
if (example != null && example.getOrderByClause() != null) { |
||||||
|
sql.ORDER_BY(example.getOrderByClause()); |
||||||
|
} |
||||||
|
|
||||||
|
return sql.toString(); |
||||||
|
} |
||||||
|
|
||||||
|
public String updateByExampleSelective(Map<String, Object> parameter) { |
||||||
|
BsMealTableOrderChildProduct record = (BsMealTableOrderChildProduct) parameter.get("record"); |
||||||
|
BsMealTableOrderChildProductExample example = (BsMealTableOrderChildProductExample) parameter.get("example"); |
||||||
|
|
||||||
|
SQL sql = new SQL(); |
||||||
|
sql.UPDATE("bs_meal_table_order_child_product"); |
||||||
|
|
||||||
|
if (record.getId() != null) { |
||||||
|
sql.SET("id = #{record.id,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getStoreId() != null) { |
||||||
|
sql.SET("store_id = #{record.storeId,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getStoreName() != null) { |
||||||
|
sql.SET("store_name = #{record.storeName,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getChildOrderId() != null) { |
||||||
|
sql.SET("child_order_id = #{record.childOrderId,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getChildOrderNo() != null) { |
||||||
|
sql.SET("child_order_no = #{record.childOrderNo,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductCategoryId() != null) { |
||||||
|
sql.SET("product_category_id = #{record.productCategoryId,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductCategoryName() != null) { |
||||||
|
sql.SET("product_category_name = #{record.productCategoryName,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductId() != null) { |
||||||
|
sql.SET("product_id = #{record.productId,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductImg() != null) { |
||||||
|
sql.SET("product_img = #{record.productImg,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductName() != null) { |
||||||
|
sql.SET("product_name = #{record.productName,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductSpec() != null) { |
||||||
|
sql.SET("product_spec = #{record.productSpec,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductPrice() != null) { |
||||||
|
sql.SET("product_price = #{record.productPrice,jdbcType=DECIMAL}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductNum() != null) { |
||||||
|
sql.SET("product_num = #{record.productNum,jdbcType=INTEGER}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductTotalPrice() != null) { |
||||||
|
sql.SET("product_total_price = #{record.productTotalPrice,jdbcType=DECIMAL}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getStatus() != null) { |
||||||
|
sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getCreateTime() != null) { |
||||||
|
sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getUpdateTime() != null) { |
||||||
|
sql.SET("update_time = #{record.updateTime,jdbcType=TIMESTAMP}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getExt1() != null) { |
||||||
|
sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getExt2() != null) { |
||||||
|
sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getExt3() != null) { |
||||||
|
sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
applyWhere(sql, example, true); |
||||||
|
return sql.toString(); |
||||||
|
} |
||||||
|
|
||||||
|
public String updateByExample(Map<String, Object> parameter) { |
||||||
|
SQL sql = new SQL(); |
||||||
|
sql.UPDATE("bs_meal_table_order_child_product"); |
||||||
|
|
||||||
|
sql.SET("id = #{record.id,jdbcType=BIGINT}"); |
||||||
|
sql.SET("store_id = #{record.storeId,jdbcType=BIGINT}"); |
||||||
|
sql.SET("store_name = #{record.storeName,jdbcType=VARCHAR}"); |
||||||
|
sql.SET("child_order_id = #{record.childOrderId,jdbcType=BIGINT}"); |
||||||
|
sql.SET("child_order_no = #{record.childOrderNo,jdbcType=VARCHAR}"); |
||||||
|
sql.SET("product_category_id = #{record.productCategoryId,jdbcType=BIGINT}"); |
||||||
|
sql.SET("product_category_name = #{record.productCategoryName,jdbcType=VARCHAR}"); |
||||||
|
sql.SET("product_id = #{record.productId,jdbcType=BIGINT}"); |
||||||
|
sql.SET("product_img = #{record.productImg,jdbcType=VARCHAR}"); |
||||||
|
sql.SET("product_name = #{record.productName,jdbcType=VARCHAR}"); |
||||||
|
sql.SET("product_spec = #{record.productSpec,jdbcType=VARCHAR}"); |
||||||
|
sql.SET("product_price = #{record.productPrice,jdbcType=DECIMAL}"); |
||||||
|
sql.SET("product_num = #{record.productNum,jdbcType=INTEGER}"); |
||||||
|
sql.SET("product_total_price = #{record.productTotalPrice,jdbcType=DECIMAL}"); |
||||||
|
sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); |
||||||
|
sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); |
||||||
|
sql.SET("update_time = #{record.updateTime,jdbcType=TIMESTAMP}"); |
||||||
|
sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); |
||||||
|
sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); |
||||||
|
sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); |
||||||
|
|
||||||
|
BsMealTableOrderChildProductExample example = (BsMealTableOrderChildProductExample) parameter.get("example"); |
||||||
|
applyWhere(sql, example, true); |
||||||
|
return sql.toString(); |
||||||
|
} |
||||||
|
|
||||||
|
public String updateByPrimaryKeySelective(BsMealTableOrderChildProduct record) { |
||||||
|
SQL sql = new SQL(); |
||||||
|
sql.UPDATE("bs_meal_table_order_child_product"); |
||||||
|
|
||||||
|
if (record.getStoreId() != null) { |
||||||
|
sql.SET("store_id = #{storeId,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getStoreName() != null) { |
||||||
|
sql.SET("store_name = #{storeName,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getChildOrderId() != null) { |
||||||
|
sql.SET("child_order_id = #{childOrderId,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getChildOrderNo() != null) { |
||||||
|
sql.SET("child_order_no = #{childOrderNo,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductCategoryId() != null) { |
||||||
|
sql.SET("product_category_id = #{productCategoryId,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductCategoryName() != null) { |
||||||
|
sql.SET("product_category_name = #{productCategoryName,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductId() != null) { |
||||||
|
sql.SET("product_id = #{productId,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductImg() != null) { |
||||||
|
sql.SET("product_img = #{productImg,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductName() != null) { |
||||||
|
sql.SET("product_name = #{productName,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductSpec() != null) { |
||||||
|
sql.SET("product_spec = #{productSpec,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductPrice() != null) { |
||||||
|
sql.SET("product_price = #{productPrice,jdbcType=DECIMAL}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductNum() != null) { |
||||||
|
sql.SET("product_num = #{productNum,jdbcType=INTEGER}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductTotalPrice() != null) { |
||||||
|
sql.SET("product_total_price = #{productTotalPrice,jdbcType=DECIMAL}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getStatus() != null) { |
||||||
|
sql.SET("`status` = #{status,jdbcType=INTEGER}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getCreateTime() != null) { |
||||||
|
sql.SET("create_time = #{createTime,jdbcType=TIMESTAMP}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getUpdateTime() != null) { |
||||||
|
sql.SET("update_time = #{updateTime,jdbcType=TIMESTAMP}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getExt1() != null) { |
||||||
|
sql.SET("ext_1 = #{ext1,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getExt2() != null) { |
||||||
|
sql.SET("ext_2 = #{ext2,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getExt3() != null) { |
||||||
|
sql.SET("ext_3 = #{ext3,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
sql.WHERE("id = #{id,jdbcType=BIGINT}"); |
||||||
|
|
||||||
|
return sql.toString(); |
||||||
|
} |
||||||
|
|
||||||
|
protected void applyWhere(SQL sql, BsMealTableOrderChildProductExample example, boolean includeExamplePhrase) { |
||||||
|
if (example == null) { |
||||||
|
return; |
||||||
|
} |
||||||
|
|
||||||
|
String parmPhrase1; |
||||||
|
String parmPhrase1_th; |
||||||
|
String parmPhrase2; |
||||||
|
String parmPhrase2_th; |
||||||
|
String parmPhrase3; |
||||||
|
String parmPhrase3_th; |
||||||
|
if (includeExamplePhrase) { |
||||||
|
parmPhrase1 = "%s #{example.oredCriteria[%d].allCriteria[%d].value}"; |
||||||
|
parmPhrase1_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; |
||||||
|
parmPhrase2 = "%s #{example.oredCriteria[%d].allCriteria[%d].value} and #{example.oredCriteria[%d].criteria[%d].secondValue}"; |
||||||
|
parmPhrase2_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{example.oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; |
||||||
|
parmPhrase3 = "#{example.oredCriteria[%d].allCriteria[%d].value[%d]}"; |
||||||
|
parmPhrase3_th = "#{example.oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; |
||||||
|
} else { |
||||||
|
parmPhrase1 = "%s #{oredCriteria[%d].allCriteria[%d].value}"; |
||||||
|
parmPhrase1_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; |
||||||
|
parmPhrase2 = "%s #{oredCriteria[%d].allCriteria[%d].value} and #{oredCriteria[%d].criteria[%d].secondValue}"; |
||||||
|
parmPhrase2_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; |
||||||
|
parmPhrase3 = "#{oredCriteria[%d].allCriteria[%d].value[%d]}"; |
||||||
|
parmPhrase3_th = "#{oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; |
||||||
|
} |
||||||
|
|
||||||
|
StringBuilder sb = new StringBuilder(); |
||||||
|
List<Criteria> oredCriteria = example.getOredCriteria(); |
||||||
|
boolean firstCriteria = true; |
||||||
|
for (int i = 0; i < oredCriteria.size(); i++) { |
||||||
|
Criteria criteria = oredCriteria.get(i); |
||||||
|
if (criteria.isValid()) { |
||||||
|
if (firstCriteria) { |
||||||
|
firstCriteria = false; |
||||||
|
} else { |
||||||
|
sb.append(" or "); |
||||||
|
} |
||||||
|
|
||||||
|
sb.append('('); |
||||||
|
List<Criterion> criterions = criteria.getAllCriteria(); |
||||||
|
boolean firstCriterion = true; |
||||||
|
for (int j = 0; j < criterions.size(); j++) { |
||||||
|
Criterion criterion = criterions.get(j); |
||||||
|
if (firstCriterion) { |
||||||
|
firstCriterion = false; |
||||||
|
} else { |
||||||
|
sb.append(" and "); |
||||||
|
} |
||||||
|
|
||||||
|
if (criterion.isNoValue()) { |
||||||
|
sb.append(criterion.getCondition()); |
||||||
|
} else if (criterion.isSingleValue()) { |
||||||
|
if (criterion.getTypeHandler() == null) { |
||||||
|
sb.append(String.format(parmPhrase1, criterion.getCondition(), i, j)); |
||||||
|
} else { |
||||||
|
sb.append(String.format(parmPhrase1_th, criterion.getCondition(), i, j,criterion.getTypeHandler())); |
||||||
|
} |
||||||
|
} else if (criterion.isBetweenValue()) { |
||||||
|
if (criterion.getTypeHandler() == null) { |
||||||
|
sb.append(String.format(parmPhrase2, criterion.getCondition(), i, j, i, j)); |
||||||
|
} else { |
||||||
|
sb.append(String.format(parmPhrase2_th, criterion.getCondition(), i, j, criterion.getTypeHandler(), i, j, criterion.getTypeHandler())); |
||||||
|
} |
||||||
|
} else if (criterion.isListValue()) { |
||||||
|
sb.append(criterion.getCondition()); |
||||||
|
sb.append(" ("); |
||||||
|
List<?> listItems = (List<?>) criterion.getValue(); |
||||||
|
boolean comma = false; |
||||||
|
for (int k = 0; k < listItems.size(); k++) { |
||||||
|
if (comma) { |
||||||
|
sb.append(", "); |
||||||
|
} else { |
||||||
|
comma = true; |
||||||
|
} |
||||||
|
if (criterion.getTypeHandler() == null) { |
||||||
|
sb.append(String.format(parmPhrase3, i, j, k)); |
||||||
|
} else { |
||||||
|
sb.append(String.format(parmPhrase3_th, i, j, k, criterion.getTypeHandler())); |
||||||
|
} |
||||||
|
} |
||||||
|
sb.append(')'); |
||||||
|
} |
||||||
|
} |
||||||
|
sb.append(')'); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
if (sb.length() > 0) { |
||||||
|
sql.WHERE(sb.toString()); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,150 @@ |
|||||||
|
package com.hfkj.dao; |
||||||
|
|
||||||
|
import com.hfkj.entity.BsMealTableOrderProduct; |
||||||
|
import com.hfkj.entity.BsMealTableOrderProductExample; |
||||||
|
import java.util.List; |
||||||
|
import org.apache.ibatis.annotations.Delete; |
||||||
|
import org.apache.ibatis.annotations.DeleteProvider; |
||||||
|
import org.apache.ibatis.annotations.Insert; |
||||||
|
import org.apache.ibatis.annotations.InsertProvider; |
||||||
|
import org.apache.ibatis.annotations.Options; |
||||||
|
import org.apache.ibatis.annotations.Param; |
||||||
|
import org.apache.ibatis.annotations.Result; |
||||||
|
import org.apache.ibatis.annotations.Results; |
||||||
|
import org.apache.ibatis.annotations.Select; |
||||||
|
import org.apache.ibatis.annotations.SelectProvider; |
||||||
|
import org.apache.ibatis.annotations.Update; |
||||||
|
import org.apache.ibatis.annotations.UpdateProvider; |
||||||
|
import org.apache.ibatis.type.JdbcType; |
||||||
|
import org.springframework.stereotype.Repository; |
||||||
|
|
||||||
|
/** |
||||||
|
* |
||||||
|
* 代码由工具生成,请勿修改!!! |
||||||
|
* 如果需要扩展请在其父类进行扩展 |
||||||
|
* |
||||||
|
**/ |
||||||
|
@Repository |
||||||
|
public interface BsMealTableOrderProductMapper extends BsMealTableOrderProductMapperExt { |
||||||
|
@SelectProvider(type=BsMealTableOrderProductSqlProvider.class, method="countByExample") |
||||||
|
long countByExample(BsMealTableOrderProductExample example); |
||||||
|
|
||||||
|
@DeleteProvider(type=BsMealTableOrderProductSqlProvider.class, method="deleteByExample") |
||||||
|
int deleteByExample(BsMealTableOrderProductExample example); |
||||||
|
|
||||||
|
@Delete({ |
||||||
|
"delete from bs_meal_table_order_product", |
||||||
|
"where id = #{id,jdbcType=BIGINT}" |
||||||
|
}) |
||||||
|
int deleteByPrimaryKey(Long id); |
||||||
|
|
||||||
|
@Insert({ |
||||||
|
"insert into bs_meal_table_order_product (order_id, order_no, ", |
||||||
|
"product_category_id, product_category_name, ", |
||||||
|
"product_id, product_img, ", |
||||||
|
"product_name, product_spec, ", |
||||||
|
"product_price, product_num, ", |
||||||
|
"product_total_price, `status`, ", |
||||||
|
"create_time, update_time, ", |
||||||
|
"ext_1, ext_2, ext_3)", |
||||||
|
"values (#{orderId,jdbcType=BIGINT}, #{orderNo,jdbcType=VARCHAR}, ", |
||||||
|
"#{productCategoryId,jdbcType=BIGINT}, #{productCategoryName,jdbcType=VARCHAR}, ", |
||||||
|
"#{productId,jdbcType=BIGINT}, #{productImg,jdbcType=VARCHAR}, ", |
||||||
|
"#{productName,jdbcType=VARCHAR}, #{productSpec,jdbcType=VARCHAR}, ", |
||||||
|
"#{productPrice,jdbcType=DECIMAL}, #{productNum,jdbcType=INTEGER}, ", |
||||||
|
"#{productTotalPrice,jdbcType=DECIMAL}, #{status,jdbcType=INTEGER}, ", |
||||||
|
"#{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}, ", |
||||||
|
"#{ext1,jdbcType=VARCHAR}, #{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})" |
||||||
|
}) |
||||||
|
@Options(useGeneratedKeys=true,keyProperty="id") |
||||||
|
int insert(BsMealTableOrderProduct record); |
||||||
|
|
||||||
|
@InsertProvider(type=BsMealTableOrderProductSqlProvider.class, method="insertSelective") |
||||||
|
@Options(useGeneratedKeys=true,keyProperty="id") |
||||||
|
int insertSelective(BsMealTableOrderProduct record); |
||||||
|
|
||||||
|
@SelectProvider(type=BsMealTableOrderProductSqlProvider.class, method="selectByExample") |
||||||
|
@Results({ |
||||||
|
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), |
||||||
|
@Result(column="order_id", property="orderId", jdbcType=JdbcType.BIGINT), |
||||||
|
@Result(column="order_no", property="orderNo", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="product_category_id", property="productCategoryId", jdbcType=JdbcType.BIGINT), |
||||||
|
@Result(column="product_category_name", property="productCategoryName", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="product_id", property="productId", jdbcType=JdbcType.BIGINT), |
||||||
|
@Result(column="product_img", property="productImg", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="product_name", property="productName", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="product_spec", property="productSpec", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="product_price", property="productPrice", jdbcType=JdbcType.DECIMAL), |
||||||
|
@Result(column="product_num", property="productNum", jdbcType=JdbcType.INTEGER), |
||||||
|
@Result(column="product_total_price", property="productTotalPrice", jdbcType=JdbcType.DECIMAL), |
||||||
|
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER), |
||||||
|
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), |
||||||
|
@Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP), |
||||||
|
@Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) |
||||||
|
}) |
||||||
|
List<BsMealTableOrderProduct> selectByExample(BsMealTableOrderProductExample example); |
||||||
|
|
||||||
|
@Select({ |
||||||
|
"select", |
||||||
|
"id, order_id, order_no, product_category_id, product_category_name, product_id, ", |
||||||
|
"product_img, product_name, product_spec, product_price, product_num, product_total_price, ", |
||||||
|
"`status`, create_time, update_time, ext_1, ext_2, ext_3", |
||||||
|
"from bs_meal_table_order_product", |
||||||
|
"where id = #{id,jdbcType=BIGINT}" |
||||||
|
}) |
||||||
|
@Results({ |
||||||
|
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), |
||||||
|
@Result(column="order_id", property="orderId", jdbcType=JdbcType.BIGINT), |
||||||
|
@Result(column="order_no", property="orderNo", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="product_category_id", property="productCategoryId", jdbcType=JdbcType.BIGINT), |
||||||
|
@Result(column="product_category_name", property="productCategoryName", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="product_id", property="productId", jdbcType=JdbcType.BIGINT), |
||||||
|
@Result(column="product_img", property="productImg", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="product_name", property="productName", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="product_spec", property="productSpec", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="product_price", property="productPrice", jdbcType=JdbcType.DECIMAL), |
||||||
|
@Result(column="product_num", property="productNum", jdbcType=JdbcType.INTEGER), |
||||||
|
@Result(column="product_total_price", property="productTotalPrice", jdbcType=JdbcType.DECIMAL), |
||||||
|
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER), |
||||||
|
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), |
||||||
|
@Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP), |
||||||
|
@Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), |
||||||
|
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) |
||||||
|
}) |
||||||
|
BsMealTableOrderProduct selectByPrimaryKey(Long id); |
||||||
|
|
||||||
|
@UpdateProvider(type=BsMealTableOrderProductSqlProvider.class, method="updateByExampleSelective") |
||||||
|
int updateByExampleSelective(@Param("record") BsMealTableOrderProduct record, @Param("example") BsMealTableOrderProductExample example); |
||||||
|
|
||||||
|
@UpdateProvider(type=BsMealTableOrderProductSqlProvider.class, method="updateByExample") |
||||||
|
int updateByExample(@Param("record") BsMealTableOrderProduct record, @Param("example") BsMealTableOrderProductExample example); |
||||||
|
|
||||||
|
@UpdateProvider(type=BsMealTableOrderProductSqlProvider.class, method="updateByPrimaryKeySelective") |
||||||
|
int updateByPrimaryKeySelective(BsMealTableOrderProduct record); |
||||||
|
|
||||||
|
@Update({ |
||||||
|
"update bs_meal_table_order_product", |
||||||
|
"set order_id = #{orderId,jdbcType=BIGINT},", |
||||||
|
"order_no = #{orderNo,jdbcType=VARCHAR},", |
||||||
|
"product_category_id = #{productCategoryId,jdbcType=BIGINT},", |
||||||
|
"product_category_name = #{productCategoryName,jdbcType=VARCHAR},", |
||||||
|
"product_id = #{productId,jdbcType=BIGINT},", |
||||||
|
"product_img = #{productImg,jdbcType=VARCHAR},", |
||||||
|
"product_name = #{productName,jdbcType=VARCHAR},", |
||||||
|
"product_spec = #{productSpec,jdbcType=VARCHAR},", |
||||||
|
"product_price = #{productPrice,jdbcType=DECIMAL},", |
||||||
|
"product_num = #{productNum,jdbcType=INTEGER},", |
||||||
|
"product_total_price = #{productTotalPrice,jdbcType=DECIMAL},", |
||||||
|
"`status` = #{status,jdbcType=INTEGER},", |
||||||
|
"create_time = #{createTime,jdbcType=TIMESTAMP},", |
||||||
|
"update_time = #{updateTime,jdbcType=TIMESTAMP},", |
||||||
|
"ext_1 = #{ext1,jdbcType=VARCHAR},", |
||||||
|
"ext_2 = #{ext2,jdbcType=VARCHAR},", |
||||||
|
"ext_3 = #{ext3,jdbcType=VARCHAR}", |
||||||
|
"where id = #{id,jdbcType=BIGINT}" |
||||||
|
}) |
||||||
|
int updateByPrimaryKey(BsMealTableOrderProduct record); |
||||||
|
} |
@ -0,0 +1,7 @@ |
|||||||
|
package com.hfkj.dao; |
||||||
|
|
||||||
|
/** |
||||||
|
* mapper扩展类 |
||||||
|
*/ |
||||||
|
public interface BsMealTableOrderProductMapperExt { |
||||||
|
} |
@ -0,0 +1,416 @@ |
|||||||
|
package com.hfkj.dao; |
||||||
|
|
||||||
|
import com.hfkj.entity.BsMealTableOrderProduct; |
||||||
|
import com.hfkj.entity.BsMealTableOrderProductExample.Criteria; |
||||||
|
import com.hfkj.entity.BsMealTableOrderProductExample.Criterion; |
||||||
|
import com.hfkj.entity.BsMealTableOrderProductExample; |
||||||
|
import java.util.List; |
||||||
|
import java.util.Map; |
||||||
|
import org.apache.ibatis.jdbc.SQL; |
||||||
|
|
||||||
|
public class BsMealTableOrderProductSqlProvider { |
||||||
|
|
||||||
|
public String countByExample(BsMealTableOrderProductExample example) { |
||||||
|
SQL sql = new SQL(); |
||||||
|
sql.SELECT("count(*)").FROM("bs_meal_table_order_product"); |
||||||
|
applyWhere(sql, example, false); |
||||||
|
return sql.toString(); |
||||||
|
} |
||||||
|
|
||||||
|
public String deleteByExample(BsMealTableOrderProductExample example) { |
||||||
|
SQL sql = new SQL(); |
||||||
|
sql.DELETE_FROM("bs_meal_table_order_product"); |
||||||
|
applyWhere(sql, example, false); |
||||||
|
return sql.toString(); |
||||||
|
} |
||||||
|
|
||||||
|
public String insertSelective(BsMealTableOrderProduct record) { |
||||||
|
SQL sql = new SQL(); |
||||||
|
sql.INSERT_INTO("bs_meal_table_order_product"); |
||||||
|
|
||||||
|
if (record.getOrderId() != null) { |
||||||
|
sql.VALUES("order_id", "#{orderId,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getOrderNo() != null) { |
||||||
|
sql.VALUES("order_no", "#{orderNo,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductCategoryId() != null) { |
||||||
|
sql.VALUES("product_category_id", "#{productCategoryId,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductCategoryName() != null) { |
||||||
|
sql.VALUES("product_category_name", "#{productCategoryName,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductId() != null) { |
||||||
|
sql.VALUES("product_id", "#{productId,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductImg() != null) { |
||||||
|
sql.VALUES("product_img", "#{productImg,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductName() != null) { |
||||||
|
sql.VALUES("product_name", "#{productName,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductSpec() != null) { |
||||||
|
sql.VALUES("product_spec", "#{productSpec,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductPrice() != null) { |
||||||
|
sql.VALUES("product_price", "#{productPrice,jdbcType=DECIMAL}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductNum() != null) { |
||||||
|
sql.VALUES("product_num", "#{productNum,jdbcType=INTEGER}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductTotalPrice() != null) { |
||||||
|
sql.VALUES("product_total_price", "#{productTotalPrice,jdbcType=DECIMAL}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getStatus() != null) { |
||||||
|
sql.VALUES("`status`", "#{status,jdbcType=INTEGER}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getCreateTime() != null) { |
||||||
|
sql.VALUES("create_time", "#{createTime,jdbcType=TIMESTAMP}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getUpdateTime() != null) { |
||||||
|
sql.VALUES("update_time", "#{updateTime,jdbcType=TIMESTAMP}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getExt1() != null) { |
||||||
|
sql.VALUES("ext_1", "#{ext1,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getExt2() != null) { |
||||||
|
sql.VALUES("ext_2", "#{ext2,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getExt3() != null) { |
||||||
|
sql.VALUES("ext_3", "#{ext3,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
return sql.toString(); |
||||||
|
} |
||||||
|
|
||||||
|
public String selectByExample(BsMealTableOrderProductExample example) { |
||||||
|
SQL sql = new SQL(); |
||||||
|
if (example != null && example.isDistinct()) { |
||||||
|
sql.SELECT_DISTINCT("id"); |
||||||
|
} else { |
||||||
|
sql.SELECT("id"); |
||||||
|
} |
||||||
|
sql.SELECT("order_id"); |
||||||
|
sql.SELECT("order_no"); |
||||||
|
sql.SELECT("product_category_id"); |
||||||
|
sql.SELECT("product_category_name"); |
||||||
|
sql.SELECT("product_id"); |
||||||
|
sql.SELECT("product_img"); |
||||||
|
sql.SELECT("product_name"); |
||||||
|
sql.SELECT("product_spec"); |
||||||
|
sql.SELECT("product_price"); |
||||||
|
sql.SELECT("product_num"); |
||||||
|
sql.SELECT("product_total_price"); |
||||||
|
sql.SELECT("`status`"); |
||||||
|
sql.SELECT("create_time"); |
||||||
|
sql.SELECT("update_time"); |
||||||
|
sql.SELECT("ext_1"); |
||||||
|
sql.SELECT("ext_2"); |
||||||
|
sql.SELECT("ext_3"); |
||||||
|
sql.FROM("bs_meal_table_order_product"); |
||||||
|
applyWhere(sql, example, false); |
||||||
|
|
||||||
|
if (example != null && example.getOrderByClause() != null) { |
||||||
|
sql.ORDER_BY(example.getOrderByClause()); |
||||||
|
} |
||||||
|
|
||||||
|
return sql.toString(); |
||||||
|
} |
||||||
|
|
||||||
|
public String updateByExampleSelective(Map<String, Object> parameter) { |
||||||
|
BsMealTableOrderProduct record = (BsMealTableOrderProduct) parameter.get("record"); |
||||||
|
BsMealTableOrderProductExample example = (BsMealTableOrderProductExample) parameter.get("example"); |
||||||
|
|
||||||
|
SQL sql = new SQL(); |
||||||
|
sql.UPDATE("bs_meal_table_order_product"); |
||||||
|
|
||||||
|
if (record.getId() != null) { |
||||||
|
sql.SET("id = #{record.id,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getOrderId() != null) { |
||||||
|
sql.SET("order_id = #{record.orderId,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getOrderNo() != null) { |
||||||
|
sql.SET("order_no = #{record.orderNo,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductCategoryId() != null) { |
||||||
|
sql.SET("product_category_id = #{record.productCategoryId,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductCategoryName() != null) { |
||||||
|
sql.SET("product_category_name = #{record.productCategoryName,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductId() != null) { |
||||||
|
sql.SET("product_id = #{record.productId,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductImg() != null) { |
||||||
|
sql.SET("product_img = #{record.productImg,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductName() != null) { |
||||||
|
sql.SET("product_name = #{record.productName,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductSpec() != null) { |
||||||
|
sql.SET("product_spec = #{record.productSpec,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductPrice() != null) { |
||||||
|
sql.SET("product_price = #{record.productPrice,jdbcType=DECIMAL}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductNum() != null) { |
||||||
|
sql.SET("product_num = #{record.productNum,jdbcType=INTEGER}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductTotalPrice() != null) { |
||||||
|
sql.SET("product_total_price = #{record.productTotalPrice,jdbcType=DECIMAL}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getStatus() != null) { |
||||||
|
sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getCreateTime() != null) { |
||||||
|
sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getUpdateTime() != null) { |
||||||
|
sql.SET("update_time = #{record.updateTime,jdbcType=TIMESTAMP}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getExt1() != null) { |
||||||
|
sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getExt2() != null) { |
||||||
|
sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getExt3() != null) { |
||||||
|
sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
applyWhere(sql, example, true); |
||||||
|
return sql.toString(); |
||||||
|
} |
||||||
|
|
||||||
|
public String updateByExample(Map<String, Object> parameter) { |
||||||
|
SQL sql = new SQL(); |
||||||
|
sql.UPDATE("bs_meal_table_order_product"); |
||||||
|
|
||||||
|
sql.SET("id = #{record.id,jdbcType=BIGINT}"); |
||||||
|
sql.SET("order_id = #{record.orderId,jdbcType=BIGINT}"); |
||||||
|
sql.SET("order_no = #{record.orderNo,jdbcType=VARCHAR}"); |
||||||
|
sql.SET("product_category_id = #{record.productCategoryId,jdbcType=BIGINT}"); |
||||||
|
sql.SET("product_category_name = #{record.productCategoryName,jdbcType=VARCHAR}"); |
||||||
|
sql.SET("product_id = #{record.productId,jdbcType=BIGINT}"); |
||||||
|
sql.SET("product_img = #{record.productImg,jdbcType=VARCHAR}"); |
||||||
|
sql.SET("product_name = #{record.productName,jdbcType=VARCHAR}"); |
||||||
|
sql.SET("product_spec = #{record.productSpec,jdbcType=VARCHAR}"); |
||||||
|
sql.SET("product_price = #{record.productPrice,jdbcType=DECIMAL}"); |
||||||
|
sql.SET("product_num = #{record.productNum,jdbcType=INTEGER}"); |
||||||
|
sql.SET("product_total_price = #{record.productTotalPrice,jdbcType=DECIMAL}"); |
||||||
|
sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); |
||||||
|
sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); |
||||||
|
sql.SET("update_time = #{record.updateTime,jdbcType=TIMESTAMP}"); |
||||||
|
sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); |
||||||
|
sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); |
||||||
|
sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); |
||||||
|
|
||||||
|
BsMealTableOrderProductExample example = (BsMealTableOrderProductExample) parameter.get("example"); |
||||||
|
applyWhere(sql, example, true); |
||||||
|
return sql.toString(); |
||||||
|
} |
||||||
|
|
||||||
|
public String updateByPrimaryKeySelective(BsMealTableOrderProduct record) { |
||||||
|
SQL sql = new SQL(); |
||||||
|
sql.UPDATE("bs_meal_table_order_product"); |
||||||
|
|
||||||
|
if (record.getOrderId() != null) { |
||||||
|
sql.SET("order_id = #{orderId,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getOrderNo() != null) { |
||||||
|
sql.SET("order_no = #{orderNo,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductCategoryId() != null) { |
||||||
|
sql.SET("product_category_id = #{productCategoryId,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductCategoryName() != null) { |
||||||
|
sql.SET("product_category_name = #{productCategoryName,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductId() != null) { |
||||||
|
sql.SET("product_id = #{productId,jdbcType=BIGINT}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductImg() != null) { |
||||||
|
sql.SET("product_img = #{productImg,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductName() != null) { |
||||||
|
sql.SET("product_name = #{productName,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductSpec() != null) { |
||||||
|
sql.SET("product_spec = #{productSpec,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductPrice() != null) { |
||||||
|
sql.SET("product_price = #{productPrice,jdbcType=DECIMAL}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductNum() != null) { |
||||||
|
sql.SET("product_num = #{productNum,jdbcType=INTEGER}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getProductTotalPrice() != null) { |
||||||
|
sql.SET("product_total_price = #{productTotalPrice,jdbcType=DECIMAL}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getStatus() != null) { |
||||||
|
sql.SET("`status` = #{status,jdbcType=INTEGER}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getCreateTime() != null) { |
||||||
|
sql.SET("create_time = #{createTime,jdbcType=TIMESTAMP}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getUpdateTime() != null) { |
||||||
|
sql.SET("update_time = #{updateTime,jdbcType=TIMESTAMP}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getExt1() != null) { |
||||||
|
sql.SET("ext_1 = #{ext1,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getExt2() != null) { |
||||||
|
sql.SET("ext_2 = #{ext2,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
if (record.getExt3() != null) { |
||||||
|
sql.SET("ext_3 = #{ext3,jdbcType=VARCHAR}"); |
||||||
|
} |
||||||
|
|
||||||
|
sql.WHERE("id = #{id,jdbcType=BIGINT}"); |
||||||
|
|
||||||
|
return sql.toString(); |
||||||
|
} |
||||||
|
|
||||||
|
protected void applyWhere(SQL sql, BsMealTableOrderProductExample example, boolean includeExamplePhrase) { |
||||||
|
if (example == null) { |
||||||
|
return; |
||||||
|
} |
||||||
|
|
||||||
|
String parmPhrase1; |
||||||
|
String parmPhrase1_th; |
||||||
|
String parmPhrase2; |
||||||
|
String parmPhrase2_th; |
||||||
|
String parmPhrase3; |
||||||
|
String parmPhrase3_th; |
||||||
|
if (includeExamplePhrase) { |
||||||
|
parmPhrase1 = "%s #{example.oredCriteria[%d].allCriteria[%d].value}"; |
||||||
|
parmPhrase1_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; |
||||||
|
parmPhrase2 = "%s #{example.oredCriteria[%d].allCriteria[%d].value} and #{example.oredCriteria[%d].criteria[%d].secondValue}"; |
||||||
|
parmPhrase2_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{example.oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; |
||||||
|
parmPhrase3 = "#{example.oredCriteria[%d].allCriteria[%d].value[%d]}"; |
||||||
|
parmPhrase3_th = "#{example.oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; |
||||||
|
} else { |
||||||
|
parmPhrase1 = "%s #{oredCriteria[%d].allCriteria[%d].value}"; |
||||||
|
parmPhrase1_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; |
||||||
|
parmPhrase2 = "%s #{oredCriteria[%d].allCriteria[%d].value} and #{oredCriteria[%d].criteria[%d].secondValue}"; |
||||||
|
parmPhrase2_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; |
||||||
|
parmPhrase3 = "#{oredCriteria[%d].allCriteria[%d].value[%d]}"; |
||||||
|
parmPhrase3_th = "#{oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; |
||||||
|
} |
||||||
|
|
||||||
|
StringBuilder sb = new StringBuilder(); |
||||||
|
List<Criteria> oredCriteria = example.getOredCriteria(); |
||||||
|
boolean firstCriteria = true; |
||||||
|
for (int i = 0; i < oredCriteria.size(); i++) { |
||||||
|
Criteria criteria = oredCriteria.get(i); |
||||||
|
if (criteria.isValid()) { |
||||||
|
if (firstCriteria) { |
||||||
|
firstCriteria = false; |
||||||
|
} else { |
||||||
|
sb.append(" or "); |
||||||
|
} |
||||||
|
|
||||||
|
sb.append('('); |
||||||
|
List<Criterion> criterions = criteria.getAllCriteria(); |
||||||
|
boolean firstCriterion = true; |
||||||
|
for (int j = 0; j < criterions.size(); j++) { |
||||||
|
Criterion criterion = criterions.get(j); |
||||||
|
if (firstCriterion) { |
||||||
|
firstCriterion = false; |
||||||
|
} else { |
||||||
|
sb.append(" and "); |
||||||
|
} |
||||||
|
|
||||||
|
if (criterion.isNoValue()) { |
||||||
|
sb.append(criterion.getCondition()); |
||||||
|
} else if (criterion.isSingleValue()) { |
||||||
|
if (criterion.getTypeHandler() == null) { |
||||||
|
sb.append(String.format(parmPhrase1, criterion.getCondition(), i, j)); |
||||||
|
} else { |
||||||
|
sb.append(String.format(parmPhrase1_th, criterion.getCondition(), i, j,criterion.getTypeHandler())); |
||||||
|
} |
||||||
|
} else if (criterion.isBetweenValue()) { |
||||||
|
if (criterion.getTypeHandler() == null) { |
||||||
|
sb.append(String.format(parmPhrase2, criterion.getCondition(), i, j, i, j)); |
||||||
|
} else { |
||||||
|
sb.append(String.format(parmPhrase2_th, criterion.getCondition(), i, j, criterion.getTypeHandler(), i, j, criterion.getTypeHandler())); |
||||||
|
} |
||||||
|
} else if (criterion.isListValue()) { |
||||||
|
sb.append(criterion.getCondition()); |
||||||
|
sb.append(" ("); |
||||||
|
List<?> listItems = (List<?>) criterion.getValue(); |
||||||
|
boolean comma = false; |
||||||
|
for (int k = 0; k < listItems.size(); k++) { |
||||||
|
if (comma) { |
||||||
|
sb.append(", "); |
||||||
|
} else { |
||||||
|
comma = true; |
||||||
|
} |
||||||
|
if (criterion.getTypeHandler() == null) { |
||||||
|
sb.append(String.format(parmPhrase3, i, j, k)); |
||||||
|
} else { |
||||||
|
sb.append(String.format(parmPhrase3_th, i, j, k, criterion.getTypeHandler())); |
||||||
|
} |
||||||
|
} |
||||||
|
sb.append(')'); |
||||||
|
} |
||||||
|
} |
||||||
|
sb.append(')'); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
if (sb.length() > 0) { |
||||||
|
sql.WHERE(sb.toString()); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,358 @@ |
|||||||
|
package com.hfkj.entity; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.math.BigDecimal; |
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
/** |
||||||
|
* bs_meal_table_order_child_product |
||||||
|
* @author |
||||||
|
*/ |
||||||
|
/** |
||||||
|
* |
||||||
|
* 代码由工具生成 |
||||||
|
* |
||||||
|
**/ |
||||||
|
public class BsMealTableOrderChildProduct implements Serializable { |
||||||
|
private Long id; |
||||||
|
|
||||||
|
/** |
||||||
|
* 门店id |
||||||
|
*/ |
||||||
|
private Long storeId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 门店名称 |
||||||
|
*/ |
||||||
|
private String storeName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 子订单id |
||||||
|
*/ |
||||||
|
private Long childOrderId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 子订单号 |
||||||
|
*/ |
||||||
|
private String childOrderNo; |
||||||
|
|
||||||
|
/** |
||||||
|
* 产品分类id |
||||||
|
*/ |
||||||
|
private Long productCategoryId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 产品分类名称 |
||||||
|
*/ |
||||||
|
private String productCategoryName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 产品id |
||||||
|
*/ |
||||||
|
private Long productId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 产品图片 |
||||||
|
*/ |
||||||
|
private String productImg; |
||||||
|
|
||||||
|
/** |
||||||
|
* 产品名称 |
||||||
|
*/ |
||||||
|
private String productName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 产品规格 |
||||||
|
*/ |
||||||
|
private String productSpec; |
||||||
|
|
||||||
|
/** |
||||||
|
* 产品单价 |
||||||
|
*/ |
||||||
|
private BigDecimal productPrice; |
||||||
|
|
||||||
|
/** |
||||||
|
* 产品数量 |
||||||
|
*/ |
||||||
|
private Integer productNum; |
||||||
|
|
||||||
|
/** |
||||||
|
* 产品总价 |
||||||
|
*/ |
||||||
|
private BigDecimal productTotalPrice; |
||||||
|
|
||||||
|
/** |
||||||
|
* 状态 0:删除 1:正常 |
||||||
|
*/ |
||||||
|
private Integer status; |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建时间 |
||||||
|
*/ |
||||||
|
private Date createTime; |
||||||
|
|
||||||
|
/** |
||||||
|
* 更新时间 |
||||||
|
*/ |
||||||
|
private Date updateTime; |
||||||
|
|
||||||
|
private String ext1; |
||||||
|
|
||||||
|
private String ext2; |
||||||
|
|
||||||
|
private String ext3; |
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
public Long getId() { |
||||||
|
return id; |
||||||
|
} |
||||||
|
|
||||||
|
public void setId(Long id) { |
||||||
|
this.id = id; |
||||||
|
} |
||||||
|
|
||||||
|
public Long getStoreId() { |
||||||
|
return storeId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setStoreId(Long storeId) { |
||||||
|
this.storeId = storeId; |
||||||
|
} |
||||||
|
|
||||||
|
public String getStoreName() { |
||||||
|
return storeName; |
||||||
|
} |
||||||
|
|
||||||
|
public void setStoreName(String storeName) { |
||||||
|
this.storeName = storeName; |
||||||
|
} |
||||||
|
|
||||||
|
public Long getChildOrderId() { |
||||||
|
return childOrderId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setChildOrderId(Long childOrderId) { |
||||||
|
this.childOrderId = childOrderId; |
||||||
|
} |
||||||
|
|
||||||
|
public String getChildOrderNo() { |
||||||
|
return childOrderNo; |
||||||
|
} |
||||||
|
|
||||||
|
public void setChildOrderNo(String childOrderNo) { |
||||||
|
this.childOrderNo = childOrderNo; |
||||||
|
} |
||||||
|
|
||||||
|
public Long getProductCategoryId() { |
||||||
|
return productCategoryId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProductCategoryId(Long productCategoryId) { |
||||||
|
this.productCategoryId = productCategoryId; |
||||||
|
} |
||||||
|
|
||||||
|
public String getProductCategoryName() { |
||||||
|
return productCategoryName; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProductCategoryName(String productCategoryName) { |
||||||
|
this.productCategoryName = productCategoryName; |
||||||
|
} |
||||||
|
|
||||||
|
public Long getProductId() { |
||||||
|
return productId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProductId(Long productId) { |
||||||
|
this.productId = productId; |
||||||
|
} |
||||||
|
|
||||||
|
public String getProductImg() { |
||||||
|
return productImg; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProductImg(String productImg) { |
||||||
|
this.productImg = productImg; |
||||||
|
} |
||||||
|
|
||||||
|
public String getProductName() { |
||||||
|
return productName; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProductName(String productName) { |
||||||
|
this.productName = productName; |
||||||
|
} |
||||||
|
|
||||||
|
public String getProductSpec() { |
||||||
|
return productSpec; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProductSpec(String productSpec) { |
||||||
|
this.productSpec = productSpec; |
||||||
|
} |
||||||
|
|
||||||
|
public BigDecimal getProductPrice() { |
||||||
|
return productPrice; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProductPrice(BigDecimal productPrice) { |
||||||
|
this.productPrice = productPrice; |
||||||
|
} |
||||||
|
|
||||||
|
public Integer getProductNum() { |
||||||
|
return productNum; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProductNum(Integer productNum) { |
||||||
|
this.productNum = productNum; |
||||||
|
} |
||||||
|
|
||||||
|
public BigDecimal getProductTotalPrice() { |
||||||
|
return productTotalPrice; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProductTotalPrice(BigDecimal productTotalPrice) { |
||||||
|
this.productTotalPrice = productTotalPrice; |
||||||
|
} |
||||||
|
|
||||||
|
public Integer getStatus() { |
||||||
|
return status; |
||||||
|
} |
||||||
|
|
||||||
|
public void setStatus(Integer status) { |
||||||
|
this.status = status; |
||||||
|
} |
||||||
|
|
||||||
|
public Date getCreateTime() { |
||||||
|
return createTime; |
||||||
|
} |
||||||
|
|
||||||
|
public void setCreateTime(Date createTime) { |
||||||
|
this.createTime = createTime; |
||||||
|
} |
||||||
|
|
||||||
|
public Date getUpdateTime() { |
||||||
|
return updateTime; |
||||||
|
} |
||||||
|
|
||||||
|
public void setUpdateTime(Date updateTime) { |
||||||
|
this.updateTime = updateTime; |
||||||
|
} |
||||||
|
|
||||||
|
public String getExt1() { |
||||||
|
return ext1; |
||||||
|
} |
||||||
|
|
||||||
|
public void setExt1(String ext1) { |
||||||
|
this.ext1 = ext1; |
||||||
|
} |
||||||
|
|
||||||
|
public String getExt2() { |
||||||
|
return ext2; |
||||||
|
} |
||||||
|
|
||||||
|
public void setExt2(String ext2) { |
||||||
|
this.ext2 = ext2; |
||||||
|
} |
||||||
|
|
||||||
|
public String getExt3() { |
||||||
|
return ext3; |
||||||
|
} |
||||||
|
|
||||||
|
public void setExt3(String ext3) { |
||||||
|
this.ext3 = ext3; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public boolean equals(Object that) { |
||||||
|
if (this == that) { |
||||||
|
return true; |
||||||
|
} |
||||||
|
if (that == null) { |
||||||
|
return false; |
||||||
|
} |
||||||
|
if (getClass() != that.getClass()) { |
||||||
|
return false; |
||||||
|
} |
||||||
|
BsMealTableOrderChildProduct other = (BsMealTableOrderChildProduct) that; |
||||||
|
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) |
||||||
|
&& (this.getStoreId() == null ? other.getStoreId() == null : this.getStoreId().equals(other.getStoreId())) |
||||||
|
&& (this.getStoreName() == null ? other.getStoreName() == null : this.getStoreName().equals(other.getStoreName())) |
||||||
|
&& (this.getChildOrderId() == null ? other.getChildOrderId() == null : this.getChildOrderId().equals(other.getChildOrderId())) |
||||||
|
&& (this.getChildOrderNo() == null ? other.getChildOrderNo() == null : this.getChildOrderNo().equals(other.getChildOrderNo())) |
||||||
|
&& (this.getProductCategoryId() == null ? other.getProductCategoryId() == null : this.getProductCategoryId().equals(other.getProductCategoryId())) |
||||||
|
&& (this.getProductCategoryName() == null ? other.getProductCategoryName() == null : this.getProductCategoryName().equals(other.getProductCategoryName())) |
||||||
|
&& (this.getProductId() == null ? other.getProductId() == null : this.getProductId().equals(other.getProductId())) |
||||||
|
&& (this.getProductImg() == null ? other.getProductImg() == null : this.getProductImg().equals(other.getProductImg())) |
||||||
|
&& (this.getProductName() == null ? other.getProductName() == null : this.getProductName().equals(other.getProductName())) |
||||||
|
&& (this.getProductSpec() == null ? other.getProductSpec() == null : this.getProductSpec().equals(other.getProductSpec())) |
||||||
|
&& (this.getProductPrice() == null ? other.getProductPrice() == null : this.getProductPrice().equals(other.getProductPrice())) |
||||||
|
&& (this.getProductNum() == null ? other.getProductNum() == null : this.getProductNum().equals(other.getProductNum())) |
||||||
|
&& (this.getProductTotalPrice() == null ? other.getProductTotalPrice() == null : this.getProductTotalPrice().equals(other.getProductTotalPrice())) |
||||||
|
&& (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus())) |
||||||
|
&& (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime())) |
||||||
|
&& (this.getUpdateTime() == null ? other.getUpdateTime() == null : this.getUpdateTime().equals(other.getUpdateTime())) |
||||||
|
&& (this.getExt1() == null ? other.getExt1() == null : this.getExt1().equals(other.getExt1())) |
||||||
|
&& (this.getExt2() == null ? other.getExt2() == null : this.getExt2().equals(other.getExt2())) |
||||||
|
&& (this.getExt3() == null ? other.getExt3() == null : this.getExt3().equals(other.getExt3())); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public int hashCode() { |
||||||
|
final int prime = 31; |
||||||
|
int result = 1; |
||||||
|
result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); |
||||||
|
result = prime * result + ((getStoreId() == null) ? 0 : getStoreId().hashCode()); |
||||||
|
result = prime * result + ((getStoreName() == null) ? 0 : getStoreName().hashCode()); |
||||||
|
result = prime * result + ((getChildOrderId() == null) ? 0 : getChildOrderId().hashCode()); |
||||||
|
result = prime * result + ((getChildOrderNo() == null) ? 0 : getChildOrderNo().hashCode()); |
||||||
|
result = prime * result + ((getProductCategoryId() == null) ? 0 : getProductCategoryId().hashCode()); |
||||||
|
result = prime * result + ((getProductCategoryName() == null) ? 0 : getProductCategoryName().hashCode()); |
||||||
|
result = prime * result + ((getProductId() == null) ? 0 : getProductId().hashCode()); |
||||||
|
result = prime * result + ((getProductImg() == null) ? 0 : getProductImg().hashCode()); |
||||||
|
result = prime * result + ((getProductName() == null) ? 0 : getProductName().hashCode()); |
||||||
|
result = prime * result + ((getProductSpec() == null) ? 0 : getProductSpec().hashCode()); |
||||||
|
result = prime * result + ((getProductPrice() == null) ? 0 : getProductPrice().hashCode()); |
||||||
|
result = prime * result + ((getProductNum() == null) ? 0 : getProductNum().hashCode()); |
||||||
|
result = prime * result + ((getProductTotalPrice() == null) ? 0 : getProductTotalPrice().hashCode()); |
||||||
|
result = prime * result + ((getStatus() == null) ? 0 : getStatus().hashCode()); |
||||||
|
result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); |
||||||
|
result = prime * result + ((getUpdateTime() == null) ? 0 : getUpdateTime().hashCode()); |
||||||
|
result = prime * result + ((getExt1() == null) ? 0 : getExt1().hashCode()); |
||||||
|
result = prime * result + ((getExt2() == null) ? 0 : getExt2().hashCode()); |
||||||
|
result = prime * result + ((getExt3() == null) ? 0 : getExt3().hashCode()); |
||||||
|
return result; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public String toString() { |
||||||
|
StringBuilder sb = new StringBuilder(); |
||||||
|
sb.append(getClass().getSimpleName()); |
||||||
|
sb.append(" ["); |
||||||
|
sb.append("Hash = ").append(hashCode()); |
||||||
|
sb.append(", id=").append(id); |
||||||
|
sb.append(", storeId=").append(storeId); |
||||||
|
sb.append(", storeName=").append(storeName); |
||||||
|
sb.append(", childOrderId=").append(childOrderId); |
||||||
|
sb.append(", childOrderNo=").append(childOrderNo); |
||||||
|
sb.append(", productCategoryId=").append(productCategoryId); |
||||||
|
sb.append(", productCategoryName=").append(productCategoryName); |
||||||
|
sb.append(", productId=").append(productId); |
||||||
|
sb.append(", productImg=").append(productImg); |
||||||
|
sb.append(", productName=").append(productName); |
||||||
|
sb.append(", productSpec=").append(productSpec); |
||||||
|
sb.append(", productPrice=").append(productPrice); |
||||||
|
sb.append(", productNum=").append(productNum); |
||||||
|
sb.append(", productTotalPrice=").append(productTotalPrice); |
||||||
|
sb.append(", status=").append(status); |
||||||
|
sb.append(", createTime=").append(createTime); |
||||||
|
sb.append(", updateTime=").append(updateTime); |
||||||
|
sb.append(", ext1=").append(ext1); |
||||||
|
sb.append(", ext2=").append(ext2); |
||||||
|
sb.append(", ext3=").append(ext3); |
||||||
|
sb.append(", serialVersionUID=").append(serialVersionUID); |
||||||
|
sb.append("]"); |
||||||
|
return sb.toString(); |
||||||
|
} |
||||||
|
} |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,326 @@ |
|||||||
|
package com.hfkj.entity; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.math.BigDecimal; |
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
/** |
||||||
|
* bs_meal_table_order_product |
||||||
|
* @author |
||||||
|
*/ |
||||||
|
/** |
||||||
|
* |
||||||
|
* 代码由工具生成 |
||||||
|
* |
||||||
|
**/ |
||||||
|
public class BsMealTableOrderProduct implements Serializable { |
||||||
|
private Long id; |
||||||
|
|
||||||
|
/** |
||||||
|
* 交易单号id |
||||||
|
*/ |
||||||
|
private Long orderId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 交易单号 |
||||||
|
*/ |
||||||
|
private String orderNo; |
||||||
|
|
||||||
|
/** |
||||||
|
* 产品分类id |
||||||
|
*/ |
||||||
|
private Long productCategoryId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 产品分类名称 |
||||||
|
*/ |
||||||
|
private String productCategoryName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 产品id |
||||||
|
*/ |
||||||
|
private Long productId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 产品图片 |
||||||
|
*/ |
||||||
|
private String productImg; |
||||||
|
|
||||||
|
/** |
||||||
|
* 产品名称 |
||||||
|
*/ |
||||||
|
private String productName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 产品规格 |
||||||
|
*/ |
||||||
|
private String productSpec; |
||||||
|
|
||||||
|
/** |
||||||
|
* 产品单价 |
||||||
|
*/ |
||||||
|
private BigDecimal productPrice; |
||||||
|
|
||||||
|
/** |
||||||
|
* 产品数量 |
||||||
|
*/ |
||||||
|
private Integer productNum; |
||||||
|
|
||||||
|
/** |
||||||
|
* 产品总价 |
||||||
|
*/ |
||||||
|
private BigDecimal productTotalPrice; |
||||||
|
|
||||||
|
/** |
||||||
|
* 状态 0:删除 1:正常 |
||||||
|
*/ |
||||||
|
private Integer status; |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建时间 |
||||||
|
*/ |
||||||
|
private Date createTime; |
||||||
|
|
||||||
|
/** |
||||||
|
* 更新时间 |
||||||
|
*/ |
||||||
|
private Date updateTime; |
||||||
|
|
||||||
|
private String ext1; |
||||||
|
|
||||||
|
private String ext2; |
||||||
|
|
||||||
|
private String ext3; |
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
public Long getId() { |
||||||
|
return id; |
||||||
|
} |
||||||
|
|
||||||
|
public void setId(Long id) { |
||||||
|
this.id = id; |
||||||
|
} |
||||||
|
|
||||||
|
public Long getOrderId() { |
||||||
|
return orderId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setOrderId(Long orderId) { |
||||||
|
this.orderId = orderId; |
||||||
|
} |
||||||
|
|
||||||
|
public String getOrderNo() { |
||||||
|
return orderNo; |
||||||
|
} |
||||||
|
|
||||||
|
public void setOrderNo(String orderNo) { |
||||||
|
this.orderNo = orderNo; |
||||||
|
} |
||||||
|
|
||||||
|
public Long getProductCategoryId() { |
||||||
|
return productCategoryId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProductCategoryId(Long productCategoryId) { |
||||||
|
this.productCategoryId = productCategoryId; |
||||||
|
} |
||||||
|
|
||||||
|
public String getProductCategoryName() { |
||||||
|
return productCategoryName; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProductCategoryName(String productCategoryName) { |
||||||
|
this.productCategoryName = productCategoryName; |
||||||
|
} |
||||||
|
|
||||||
|
public Long getProductId() { |
||||||
|
return productId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProductId(Long productId) { |
||||||
|
this.productId = productId; |
||||||
|
} |
||||||
|
|
||||||
|
public String getProductImg() { |
||||||
|
return productImg; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProductImg(String productImg) { |
||||||
|
this.productImg = productImg; |
||||||
|
} |
||||||
|
|
||||||
|
public String getProductName() { |
||||||
|
return productName; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProductName(String productName) { |
||||||
|
this.productName = productName; |
||||||
|
} |
||||||
|
|
||||||
|
public String getProductSpec() { |
||||||
|
return productSpec; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProductSpec(String productSpec) { |
||||||
|
this.productSpec = productSpec; |
||||||
|
} |
||||||
|
|
||||||
|
public BigDecimal getProductPrice() { |
||||||
|
return productPrice; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProductPrice(BigDecimal productPrice) { |
||||||
|
this.productPrice = productPrice; |
||||||
|
} |
||||||
|
|
||||||
|
public Integer getProductNum() { |
||||||
|
return productNum; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProductNum(Integer productNum) { |
||||||
|
this.productNum = productNum; |
||||||
|
} |
||||||
|
|
||||||
|
public BigDecimal getProductTotalPrice() { |
||||||
|
return productTotalPrice; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProductTotalPrice(BigDecimal productTotalPrice) { |
||||||
|
this.productTotalPrice = productTotalPrice; |
||||||
|
} |
||||||
|
|
||||||
|
public Integer getStatus() { |
||||||
|
return status; |
||||||
|
} |
||||||
|
|
||||||
|
public void setStatus(Integer status) { |
||||||
|
this.status = status; |
||||||
|
} |
||||||
|
|
||||||
|
public Date getCreateTime() { |
||||||
|
return createTime; |
||||||
|
} |
||||||
|
|
||||||
|
public void setCreateTime(Date createTime) { |
||||||
|
this.createTime = createTime; |
||||||
|
} |
||||||
|
|
||||||
|
public Date getUpdateTime() { |
||||||
|
return updateTime; |
||||||
|
} |
||||||
|
|
||||||
|
public void setUpdateTime(Date updateTime) { |
||||||
|
this.updateTime = updateTime; |
||||||
|
} |
||||||
|
|
||||||
|
public String getExt1() { |
||||||
|
return ext1; |
||||||
|
} |
||||||
|
|
||||||
|
public void setExt1(String ext1) { |
||||||
|
this.ext1 = ext1; |
||||||
|
} |
||||||
|
|
||||||
|
public String getExt2() { |
||||||
|
return ext2; |
||||||
|
} |
||||||
|
|
||||||
|
public void setExt2(String ext2) { |
||||||
|
this.ext2 = ext2; |
||||||
|
} |
||||||
|
|
||||||
|
public String getExt3() { |
||||||
|
return ext3; |
||||||
|
} |
||||||
|
|
||||||
|
public void setExt3(String ext3) { |
||||||
|
this.ext3 = ext3; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public boolean equals(Object that) { |
||||||
|
if (this == that) { |
||||||
|
return true; |
||||||
|
} |
||||||
|
if (that == null) { |
||||||
|
return false; |
||||||
|
} |
||||||
|
if (getClass() != that.getClass()) { |
||||||
|
return false; |
||||||
|
} |
||||||
|
BsMealTableOrderProduct other = (BsMealTableOrderProduct) that; |
||||||
|
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) |
||||||
|
&& (this.getOrderId() == null ? other.getOrderId() == null : this.getOrderId().equals(other.getOrderId())) |
||||||
|
&& (this.getOrderNo() == null ? other.getOrderNo() == null : this.getOrderNo().equals(other.getOrderNo())) |
||||||
|
&& (this.getProductCategoryId() == null ? other.getProductCategoryId() == null : this.getProductCategoryId().equals(other.getProductCategoryId())) |
||||||
|
&& (this.getProductCategoryName() == null ? other.getProductCategoryName() == null : this.getProductCategoryName().equals(other.getProductCategoryName())) |
||||||
|
&& (this.getProductId() == null ? other.getProductId() == null : this.getProductId().equals(other.getProductId())) |
||||||
|
&& (this.getProductImg() == null ? other.getProductImg() == null : this.getProductImg().equals(other.getProductImg())) |
||||||
|
&& (this.getProductName() == null ? other.getProductName() == null : this.getProductName().equals(other.getProductName())) |
||||||
|
&& (this.getProductSpec() == null ? other.getProductSpec() == null : this.getProductSpec().equals(other.getProductSpec())) |
||||||
|
&& (this.getProductPrice() == null ? other.getProductPrice() == null : this.getProductPrice().equals(other.getProductPrice())) |
||||||
|
&& (this.getProductNum() == null ? other.getProductNum() == null : this.getProductNum().equals(other.getProductNum())) |
||||||
|
&& (this.getProductTotalPrice() == null ? other.getProductTotalPrice() == null : this.getProductTotalPrice().equals(other.getProductTotalPrice())) |
||||||
|
&& (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus())) |
||||||
|
&& (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime())) |
||||||
|
&& (this.getUpdateTime() == null ? other.getUpdateTime() == null : this.getUpdateTime().equals(other.getUpdateTime())) |
||||||
|
&& (this.getExt1() == null ? other.getExt1() == null : this.getExt1().equals(other.getExt1())) |
||||||
|
&& (this.getExt2() == null ? other.getExt2() == null : this.getExt2().equals(other.getExt2())) |
||||||
|
&& (this.getExt3() == null ? other.getExt3() == null : this.getExt3().equals(other.getExt3())); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public int hashCode() { |
||||||
|
final int prime = 31; |
||||||
|
int result = 1; |
||||||
|
result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); |
||||||
|
result = prime * result + ((getOrderId() == null) ? 0 : getOrderId().hashCode()); |
||||||
|
result = prime * result + ((getOrderNo() == null) ? 0 : getOrderNo().hashCode()); |
||||||
|
result = prime * result + ((getProductCategoryId() == null) ? 0 : getProductCategoryId().hashCode()); |
||||||
|
result = prime * result + ((getProductCategoryName() == null) ? 0 : getProductCategoryName().hashCode()); |
||||||
|
result = prime * result + ((getProductId() == null) ? 0 : getProductId().hashCode()); |
||||||
|
result = prime * result + ((getProductImg() == null) ? 0 : getProductImg().hashCode()); |
||||||
|
result = prime * result + ((getProductName() == null) ? 0 : getProductName().hashCode()); |
||||||
|
result = prime * result + ((getProductSpec() == null) ? 0 : getProductSpec().hashCode()); |
||||||
|
result = prime * result + ((getProductPrice() == null) ? 0 : getProductPrice().hashCode()); |
||||||
|
result = prime * result + ((getProductNum() == null) ? 0 : getProductNum().hashCode()); |
||||||
|
result = prime * result + ((getProductTotalPrice() == null) ? 0 : getProductTotalPrice().hashCode()); |
||||||
|
result = prime * result + ((getStatus() == null) ? 0 : getStatus().hashCode()); |
||||||
|
result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); |
||||||
|
result = prime * result + ((getUpdateTime() == null) ? 0 : getUpdateTime().hashCode()); |
||||||
|
result = prime * result + ((getExt1() == null) ? 0 : getExt1().hashCode()); |
||||||
|
result = prime * result + ((getExt2() == null) ? 0 : getExt2().hashCode()); |
||||||
|
result = prime * result + ((getExt3() == null) ? 0 : getExt3().hashCode()); |
||||||
|
return result; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public String toString() { |
||||||
|
StringBuilder sb = new StringBuilder(); |
||||||
|
sb.append(getClass().getSimpleName()); |
||||||
|
sb.append(" ["); |
||||||
|
sb.append("Hash = ").append(hashCode()); |
||||||
|
sb.append(", id=").append(id); |
||||||
|
sb.append(", orderId=").append(orderId); |
||||||
|
sb.append(", orderNo=").append(orderNo); |
||||||
|
sb.append(", productCategoryId=").append(productCategoryId); |
||||||
|
sb.append(", productCategoryName=").append(productCategoryName); |
||||||
|
sb.append(", productId=").append(productId); |
||||||
|
sb.append(", productImg=").append(productImg); |
||||||
|
sb.append(", productName=").append(productName); |
||||||
|
sb.append(", productSpec=").append(productSpec); |
||||||
|
sb.append(", productPrice=").append(productPrice); |
||||||
|
sb.append(", productNum=").append(productNum); |
||||||
|
sb.append(", productTotalPrice=").append(productTotalPrice); |
||||||
|
sb.append(", status=").append(status); |
||||||
|
sb.append(", createTime=").append(createTime); |
||||||
|
sb.append(", updateTime=").append(updateTime); |
||||||
|
sb.append(", ext1=").append(ext1); |
||||||
|
sb.append(", ext2=").append(ext2); |
||||||
|
sb.append(", ext3=").append(ext3); |
||||||
|
sb.append(", serialVersionUID=").append(serialVersionUID); |
||||||
|
sb.append("]"); |
||||||
|
return sb.toString(); |
||||||
|
} |
||||||
|
} |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,18 @@ |
|||||||
|
package com.hfkj.service.meal; |
||||||
|
|
||||||
|
import com.hfkj.entity.BsMealTableOrderChild; |
||||||
|
|
||||||
|
/** |
||||||
|
* @className: BsMealTableOrderChildProductService |
||||||
|
* @author: HuRui |
||||||
|
* @date: 2023/12/5 |
||||||
|
**/ |
||||||
|
public interface BsMealTableOrderChildProductService { |
||||||
|
|
||||||
|
/** |
||||||
|
* 编辑数据 |
||||||
|
* @param data |
||||||
|
*/ |
||||||
|
void editData(BsMealTableOrderChild data); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,18 @@ |
|||||||
|
package com.hfkj.service.meal; |
||||||
|
|
||||||
|
import com.hfkj.entity.BsMealTableOrderChild; |
||||||
|
|
||||||
|
/** |
||||||
|
* @className: BsMealTableOrderChildService |
||||||
|
* @author: HuRui |
||||||
|
* @date: 2023/12/5 |
||||||
|
**/ |
||||||
|
public interface BsMealTableOrderChildService { |
||||||
|
|
||||||
|
/** |
||||||
|
* 编辑数据 |
||||||
|
* @param data |
||||||
|
*/ |
||||||
|
void editData(BsMealTableOrderChild data); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,17 @@ |
|||||||
|
package com.hfkj.service.meal; |
||||||
|
|
||||||
|
import com.hfkj.entity.BsMealTableOrderChild; |
||||||
|
|
||||||
|
/** |
||||||
|
* @className: BsMealTableOrderProductService |
||||||
|
* @author: HuRui |
||||||
|
* @date: 2023/12/5 |
||||||
|
**/ |
||||||
|
public interface BsMealTableOrderProductService { |
||||||
|
|
||||||
|
/** |
||||||
|
* 编辑数据 |
||||||
|
* @param data |
||||||
|
*/ |
||||||
|
void editData(BsMealTableOrderChild data); |
||||||
|
} |
@ -0,0 +1,33 @@ |
|||||||
|
package com.hfkj.service.meal.impl; |
||||||
|
|
||||||
|
import com.hfkj.dao.BsMealTableOrderChildMapper; |
||||||
|
import com.hfkj.entity.BsMealTableOrderChild; |
||||||
|
import com.hfkj.service.meal.BsMealTableOrderChildService; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
/** |
||||||
|
* @className: BsMealTableOrderChildServiceImpl |
||||||
|
* @author: HuRui |
||||||
|
* @date: 2023/12/5 |
||||||
|
**/ |
||||||
|
@Service("mealTableOrderChildService") |
||||||
|
public class BsMealTableOrderChildServiceImpl implements BsMealTableOrderChildService { |
||||||
|
|
||||||
|
@Resource |
||||||
|
private BsMealTableOrderChildMapper mealTableOrderChildMapper; |
||||||
|
|
||||||
|
@Override |
||||||
|
public void editData(BsMealTableOrderChild data) { |
||||||
|
if (data.getId() == null) { |
||||||
|
data.setCreateTime(new Date()); |
||||||
|
data.setUpdateTime(new Date()); |
||||||
|
mealTableOrderChildMapper.insert(data); |
||||||
|
} else { |
||||||
|
data.setUpdateTime(new Date()); |
||||||
|
mealTableOrderChildMapper.updateByPrimaryKey(data); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue