diff --git a/food-pdm-tools/food-pdm-tools.iml b/food-pdm-tools/food-pdm-tools.iml new file mode 100644 index 0000000..4a27b9d --- /dev/null +++ b/food-pdm-tools/food-pdm-tools.iml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/food-pdm-tools/pom.xml b/food-pdm-tools/pom.xml new file mode 100644 index 0000000..d702df5 --- /dev/null +++ b/food-pdm-tools/pom.xml @@ -0,0 +1,33 @@ + + + 4.0.0 + + com.jwsaas + food-parent + 2.0.0 + + food-pdm-tools + food-pdm-tools + http://maven.apache.org + + + UTF-8 + 2.3.23 + + + + + org.apache.commons + commons-lang3 + + + + org.freemarker + freemarker + ${freemarker.version} + + + + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AdjustPriceProductDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AdjustPriceProductDaoImpl.java new file mode 100644 index 0000000..079b92b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AdjustPriceProductDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.AdjustPriceProductDao; +import com.jwsaas.entity.food.AdjustPriceProduct; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 调价商品数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "AdjustPriceProductDaoImpl") +public class AdjustPriceProductDaoImpl extends BaseDaoImpl implements AdjustPriceProductDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AdjustPriceStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AdjustPriceStoreDaoImpl.java new file mode 100644 index 0000000..7720e6b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AdjustPriceStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.AdjustPriceStoreDao; +import com.jwsaas.entity.food.AdjustPriceStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 调价单门店明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "AdjustPriceStoreDaoImpl") +public class AdjustPriceStoreDaoImpl extends BaseDaoImpl implements AdjustPriceStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AdjustPriceTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AdjustPriceTicketDaoImpl.java new file mode 100644 index 0000000..bca2da7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AdjustPriceTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.AdjustPriceTicketDao; +import com.jwsaas.entity.food.AdjustPriceTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店商品调价单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "AdjustPriceTicketDaoImpl") +public class AdjustPriceTicketDaoImpl extends BaseDaoImpl implements AdjustPriceTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AdvertCaptionDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AdvertCaptionDaoImpl.java new file mode 100644 index 0000000..e5ca606 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AdvertCaptionDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.AdvertCaptionDao; +import com.jwsaas.entity.food.AdvertCaption; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 双屏广告字幕数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "AdvertCaptionDaoImpl") +public class AdvertCaptionDaoImpl extends BaseDaoImpl implements AdvertCaptionDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AdvertCaptionStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AdvertCaptionStoreDaoImpl.java new file mode 100644 index 0000000..9e948b0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AdvertCaptionStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.AdvertCaptionStoreDao; +import com.jwsaas.entity.food.AdvertCaptionStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 双屏广告字幕门店关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "AdvertCaptionStoreDaoImpl") +public class AdvertCaptionStoreDaoImpl extends BaseDaoImpl implements AdvertCaptionStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AdvertPictureDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AdvertPictureDaoImpl.java new file mode 100644 index 0000000..32158b2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AdvertPictureDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.AdvertPictureDao; +import com.jwsaas.entity.food.AdvertPicture; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 双屏广告图片数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "AdvertPictureDaoImpl") +public class AdvertPictureDaoImpl extends BaseDaoImpl implements AdvertPictureDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AdvertPictureStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AdvertPictureStoreDaoImpl.java new file mode 100644 index 0000000..a45ab94 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AdvertPictureStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.AdvertPictureStoreDao; +import com.jwsaas.entity.food.AdvertPictureStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 双屏广告图片门店关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "AdvertPictureStoreDaoImpl") +public class AdvertPictureStoreDaoImpl extends BaseDaoImpl implements AdvertPictureStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AgentDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AgentDaoImpl.java new file mode 100644 index 0000000..0626fe8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AgentDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.AgentDao; +import com.jwsaas.entity.food.Agent; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 总部代理商信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "AgentDaoImpl") +public class AgentDaoImpl extends BaseDaoImpl implements AgentDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AgentStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AgentStoreDaoImpl.java new file mode 100644 index 0000000..29283f1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AgentStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.AgentStoreDao; +import com.jwsaas.entity.food.AgentStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 总部代理商门店关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "AgentStoreDaoImpl") +public class AgentStoreDaoImpl extends BaseDaoImpl implements AgentStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsDetailDaoImpl.java new file mode 100644 index 0000000..1455446 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.AskGoodsDetailDao; +import com.jwsaas.entity.food.AskGoodsDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 要货单明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "AskGoodsDetailDaoImpl") +public class AskGoodsDetailDaoImpl extends BaseDaoImpl implements AskGoodsDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsSuitDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsSuitDaoImpl.java new file mode 100644 index 0000000..3da45b9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsSuitDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.AskGoodsSuitDao; +import com.jwsaas.entity.food.AskGoodsSuit; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 要货商品套餐数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "AskGoodsSuitDaoImpl") +public class AskGoodsSuitDaoImpl extends BaseDaoImpl implements AskGoodsSuitDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsSuitDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsSuitDetailDaoImpl.java new file mode 100644 index 0000000..d9c38e3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsSuitDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.AskGoodsSuitDetailDao; +import com.jwsaas.entity.food.AskGoodsSuitDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 要货商品套餐明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "AskGoodsSuitDetailDaoImpl") +public class AskGoodsSuitDetailDaoImpl extends BaseDaoImpl implements AskGoodsSuitDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsTemplateDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsTemplateDaoImpl.java new file mode 100644 index 0000000..49eea30 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsTemplateDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.AskGoodsTemplateDao; +import com.jwsaas.entity.food.AskGoodsTemplate; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 要货单模板数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "AskGoodsTemplateDaoImpl") +public class AskGoodsTemplateDaoImpl extends BaseDaoImpl implements AskGoodsTemplateDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsTemplateDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsTemplateDetailDaoImpl.java new file mode 100644 index 0000000..191c08e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsTemplateDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.AskGoodsTemplateDetailDao; +import com.jwsaas.entity.food.AskGoodsTemplateDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 要货单模板明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "AskGoodsTemplateDetailDaoImpl") +public class AskGoodsTemplateDetailDaoImpl extends BaseDaoImpl implements AskGoodsTemplateDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsTemplateStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsTemplateStoreDaoImpl.java new file mode 100644 index 0000000..499fb03 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsTemplateStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.AskGoodsTemplateStoreDao; +import com.jwsaas.entity.food.AskGoodsTemplateStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 要货单模板门店关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "AskGoodsTemplateStoreDaoImpl") +public class AskGoodsTemplateStoreDaoImpl extends BaseDaoImpl implements AskGoodsTemplateStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsTicketDaoImpl.java new file mode 100644 index 0000000..5133b9c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.AskGoodsTicketDao; +import com.jwsaas.entity.food.AskGoodsTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 要货单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "AskGoodsTicketDaoImpl") +public class AskGoodsTicketDaoImpl extends BaseDaoImpl implements AskGoodsTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsTicketLogDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsTicketLogDaoImpl.java new file mode 100644 index 0000000..66ba913 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsTicketLogDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.AskGoodsTicketLogDao; +import com.jwsaas.entity.food.AskGoodsTicketLog; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 要货操作记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "AskGoodsTicketLogDaoImpl") +public class AskGoodsTicketLogDaoImpl extends BaseDaoImpl implements AskGoodsTicketLogDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsTicketPayDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsTicketPayDaoImpl.java new file mode 100644 index 0000000..0babe89 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/AskGoodsTicketPayDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.AskGoodsTicketPayDao; +import com.jwsaas.entity.food.AskGoodsTicketPay; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 要货单付款明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "AskGoodsTicketPayDaoImpl") +public class AskGoodsTicketPayDaoImpl extends BaseDaoImpl implements AskGoodsTicketPayDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/BaiduFoodDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/BaiduFoodDaoImpl.java new file mode 100644 index 0000000..6d07e54 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/BaiduFoodDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.BaiduFoodDao; +import com.jwsaas.entity.food.BaiduFood; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 百度菜品信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "BaiduFoodDaoImpl") +public class BaiduFoodDaoImpl extends BaseDaoImpl implements BaiduFoodDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/BaiduOrderDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/BaiduOrderDaoImpl.java new file mode 100644 index 0000000..3bd1ac9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/BaiduOrderDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.BaiduOrderDao; +import com.jwsaas.entity.food.BaiduOrder; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 百度外卖订单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "BaiduOrderDaoImpl") +public class BaiduOrderDaoImpl extends BaseDaoImpl implements BaiduOrderDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/BaiduOrderProductDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/BaiduOrderProductDaoImpl.java new file mode 100644 index 0000000..079615a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/BaiduOrderProductDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.BaiduOrderProductDao; +import com.jwsaas.entity.food.BaiduOrderProduct; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 百度外卖订单商品信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "BaiduOrderProductDaoImpl") +public class BaiduOrderProductDaoImpl extends BaseDaoImpl implements BaiduOrderProductDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/BrandDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/BrandDaoImpl.java new file mode 100644 index 0000000..030b427 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/BrandDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.BrandDao; +import com.jwsaas.entity.food.Brand; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 品牌管理数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "BrandDaoImpl") +public class BrandDaoImpl extends BaseDaoImpl implements BrandDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/BusinessPlanDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/BusinessPlanDaoImpl.java new file mode 100644 index 0000000..cf09ba9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/BusinessPlanDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.BusinessPlanDao; +import com.jwsaas.entity.food.BusinessPlan; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 营业日方案数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "BusinessPlanDaoImpl") +public class BusinessPlanDaoImpl extends BaseDaoImpl implements BusinessPlanDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/BusinessPlanDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/BusinessPlanDetailDaoImpl.java new file mode 100644 index 0000000..380ba15 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/BusinessPlanDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.BusinessPlanDetailDao; +import com.jwsaas.entity.food.BusinessPlanDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 营业日方案班次数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "BusinessPlanDetailDaoImpl") +public class BusinessPlanDetailDaoImpl extends BaseDaoImpl implements BusinessPlanDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/BusinessPlanStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/BusinessPlanStoreDaoImpl.java new file mode 100644 index 0000000..bc6d557 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/BusinessPlanStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.BusinessPlanStoreDao; +import com.jwsaas.entity.food.BusinessPlanStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 营业日方案门店关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "BusinessPlanStoreDaoImpl") +public class BusinessPlanStoreDaoImpl extends BaseDaoImpl implements BusinessPlanStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CandaoProductDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CandaoProductDaoImpl.java new file mode 100644 index 0000000..1c10d97 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CandaoProductDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CandaoProductDao; +import com.jwsaas.entity.food.CandaoProduct; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 餐道商品信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CandaoProductDaoImpl") +public class CandaoProductDaoImpl extends BaseDaoImpl implements CandaoProductDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CandaoProductPropertyDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CandaoProductPropertyDaoImpl.java new file mode 100644 index 0000000..4d641bb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CandaoProductPropertyDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CandaoProductPropertyDao; +import com.jwsaas.entity.food.CandaoProductProperty; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 餐道商品属性信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CandaoProductPropertyDaoImpl") +public class CandaoProductPropertyDaoImpl extends BaseDaoImpl implements CandaoProductPropertyDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CandaoProductSpecDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CandaoProductSpecDaoImpl.java new file mode 100644 index 0000000..0ab550f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CandaoProductSpecDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CandaoProductSpecDao; +import com.jwsaas.entity.food.CandaoProductSpec; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 餐道商品规格信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CandaoProductSpecDaoImpl") +public class CandaoProductSpecDaoImpl extends BaseDaoImpl implements CandaoProductSpecDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CandaoProductSuitDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CandaoProductSuitDaoImpl.java new file mode 100644 index 0000000..da980bf --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CandaoProductSuitDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CandaoProductSuitDao; +import com.jwsaas.entity.food.CandaoProductSuit; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 餐道商品套餐信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CandaoProductSuitDaoImpl") +public class CandaoProductSuitDaoImpl extends BaseDaoImpl implements CandaoProductSuitDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CandaoStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CandaoStoreDaoImpl.java new file mode 100644 index 0000000..e3cec1e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CandaoStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CandaoStoreDao; +import com.jwsaas.entity.food.CandaoStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 餐道门店信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CandaoStoreDaoImpl") +public class CandaoStoreDaoImpl extends BaseDaoImpl implements CandaoStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CategoryDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CategoryDaoImpl.java new file mode 100644 index 0000000..856e5a5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CategoryDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CategoryDao; +import com.jwsaas.entity.food.Category; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 数据字典数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CategoryDaoImpl") +public class CategoryDaoImpl extends BaseDaoImpl implements CategoryDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CheckTemplateDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CheckTemplateDaoImpl.java new file mode 100644 index 0000000..bb85d4b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CheckTemplateDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CheckTemplateDao; +import com.jwsaas.entity.food.CheckTemplate; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 总部库存盘点模板数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CheckTemplateDaoImpl") +public class CheckTemplateDaoImpl extends BaseDaoImpl implements CheckTemplateDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CheckTemplateDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CheckTemplateDetailDaoImpl.java new file mode 100644 index 0000000..45f5c03 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CheckTemplateDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CheckTemplateDetailDao; +import com.jwsaas.entity.food.CheckTemplateDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 总部库存盘点模板明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CheckTemplateDetailDaoImpl") +public class CheckTemplateDetailDaoImpl extends BaseDaoImpl implements CheckTemplateDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CheckTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CheckTicketDaoImpl.java new file mode 100644 index 0000000..9f43a31 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CheckTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CheckTicketDao; +import com.jwsaas.entity.food.CheckTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 总部库存盘点单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CheckTicketDaoImpl") +public class CheckTicketDaoImpl extends BaseDaoImpl implements CheckTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CheckTicketDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CheckTicketDetailDaoImpl.java new file mode 100644 index 0000000..6f86ce7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CheckTicketDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CheckTicketDetailDao; +import com.jwsaas.entity.food.CheckTicketDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 总部库存盘点单明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CheckTicketDetailDaoImpl") +public class CheckTicketDetailDaoImpl extends BaseDaoImpl implements CheckTicketDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CheckTicketLogDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CheckTicketLogDaoImpl.java new file mode 100644 index 0000000..0770626 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CheckTicketLogDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CheckTicketLogDao; +import com.jwsaas.entity.food.CheckTicketLog; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 总部盘点单操作记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CheckTicketLogDaoImpl") +public class CheckTicketLogDaoImpl extends BaseDaoImpl implements CheckTicketLogDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostFeeItemDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostFeeItemDaoImpl.java new file mode 100644 index 0000000..862caeb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostFeeItemDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CostFeeItemDao; +import com.jwsaas.entity.food.CostFeeItem; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 成本费用项目数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CostFeeItemDaoImpl") +public class CostFeeItemDaoImpl extends BaseDaoImpl implements CostFeeItemDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostFeeTypeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostFeeTypeDaoImpl.java new file mode 100644 index 0000000..189e599 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostFeeTypeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CostFeeTypeDao; +import com.jwsaas.entity.food.CostFeeType; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 成本费用项目分类数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CostFeeTypeDaoImpl") +public class CostFeeTypeDaoImpl extends BaseDaoImpl implements CostFeeTypeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketDaoImpl.java new file mode 100644 index 0000000..d9ffa70 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CostTicketDao; +import com.jwsaas.entity.food.CostTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 经营会计报表主单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CostTicketDaoImpl") +public class CostTicketDaoImpl extends BaseDaoImpl implements CostTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketPayTypeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketPayTypeDaoImpl.java new file mode 100644 index 0000000..cac1d7c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketPayTypeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CostTicketPayTypeDao; +import com.jwsaas.entity.food.CostTicketPayType; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 经营会计报表支付方式统计数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CostTicketPayTypeDaoImpl") +public class CostTicketPayTypeDaoImpl extends BaseDaoImpl implements CostTicketPayTypeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketProductChangeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketProductChangeDaoImpl.java new file mode 100644 index 0000000..4142036 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketProductChangeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CostTicketProductChangeDao; +import com.jwsaas.entity.food.CostTicketProductChange; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 经营会计报表生产变动费数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CostTicketProductChangeDaoImpl") +public class CostTicketProductChangeDaoImpl extends BaseDaoImpl implements CostTicketProductChangeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketProductFixedChangeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketProductFixedChangeDaoImpl.java new file mode 100644 index 0000000..cd82044 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketProductFixedChangeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CostTicketProductFixedChangeDao; +import com.jwsaas.entity.food.CostTicketProductFixedChange; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 经营会计报表固定费数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CostTicketProductFixedChangeDaoImpl") +public class CostTicketProductFixedChangeDaoImpl extends BaseDaoImpl implements CostTicketProductFixedChangeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketProductMoreChangeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketProductMoreChangeDaoImpl.java new file mode 100644 index 0000000..0c7b3d7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketProductMoreChangeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CostTicketProductMoreChangeDao; +import com.jwsaas.entity.food.CostTicketProductMoreChange; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 经营会计报表辅助生产变动费数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CostTicketProductMoreChangeDaoImpl") +public class CostTicketProductMoreChangeDaoImpl extends BaseDaoImpl implements CostTicketProductMoreChangeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketProductOtherChangeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketProductOtherChangeDaoImpl.java new file mode 100644 index 0000000..c702e3f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketProductOtherChangeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CostTicketProductOtherChangeDao; +import com.jwsaas.entity.food.CostTicketProductOtherChange; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 经营会计报表其他变动费数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CostTicketProductOtherChangeDaoImpl") +public class CostTicketProductOtherChangeDaoImpl extends BaseDaoImpl implements CostTicketProductOtherChangeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketProductTypeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketProductTypeDaoImpl.java new file mode 100644 index 0000000..c9e3c6c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketProductTypeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CostTicketProductTypeDao; +import com.jwsaas.entity.food.CostTicketProductType; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 经营会计报表分类统计数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CostTicketProductTypeDaoImpl") +public class CostTicketProductTypeDaoImpl extends BaseDaoImpl implements CostTicketProductTypeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketTemplateDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketTemplateDaoImpl.java new file mode 100644 index 0000000..d3a41bc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketTemplateDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CostTicketTemplateDao; +import com.jwsaas.entity.food.CostTicketTemplate; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 经营会计报表模板数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CostTicketTemplateDaoImpl") +public class CostTicketTemplateDaoImpl extends BaseDaoImpl implements CostTicketTemplateDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketTemplateProductChangeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketTemplateProductChangeDaoImpl.java new file mode 100644 index 0000000..fe019ea --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketTemplateProductChangeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CostTicketTemplateProductChangeDao; +import com.jwsaas.entity.food.CostTicketTemplateProductChange; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 经营会计报表生产变动费模板数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CostTicketTemplateProductChangeDaoImpl") +public class CostTicketTemplateProductChangeDaoImpl extends BaseDaoImpl implements CostTicketTemplateProductChangeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketTemplateProductFixedChangeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketTemplateProductFixedChangeDaoImpl.java new file mode 100644 index 0000000..3617d92 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketTemplateProductFixedChangeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CostTicketTemplateProductFixedChangeDao; +import com.jwsaas.entity.food.CostTicketTemplateProductFixedChange; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 经营会计报表固定费模板数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CostTicketTemplateProductFixedChangeDaoImpl") +public class CostTicketTemplateProductFixedChangeDaoImpl extends BaseDaoImpl implements CostTicketTemplateProductFixedChangeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketTemplateProductMoreChangeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketTemplateProductMoreChangeDaoImpl.java new file mode 100644 index 0000000..9b3ca2f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketTemplateProductMoreChangeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CostTicketTemplateProductMoreChangeDao; +import com.jwsaas.entity.food.CostTicketTemplateProductMoreChange; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 经营会计报表辅助生产变动费模板数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CostTicketTemplateProductMoreChangeDaoImpl") +public class CostTicketTemplateProductMoreChangeDaoImpl extends BaseDaoImpl implements CostTicketTemplateProductMoreChangeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketTemplateProductOtherChangeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketTemplateProductOtherChangeDaoImpl.java new file mode 100644 index 0000000..1fd5ebe --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketTemplateProductOtherChangeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CostTicketTemplateProductOtherChangeDao; +import com.jwsaas.entity.food.CostTicketTemplateProductOtherChange; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 经营会计报表其他变动费模板数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CostTicketTemplateProductOtherChangeDaoImpl") +public class CostTicketTemplateProductOtherChangeDaoImpl extends BaseDaoImpl implements CostTicketTemplateProductOtherChangeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketTemplateStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketTemplateStoreDaoImpl.java new file mode 100644 index 0000000..665a3c5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CostTicketTemplateStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CostTicketTemplateStoreDao; +import com.jwsaas.entity.food.CostTicketTemplateStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 经营会计报表模板门店关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CostTicketTemplateStoreDaoImpl") +public class CostTicketTemplateStoreDaoImpl extends BaseDaoImpl implements CostTicketTemplateStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CouponCodeDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CouponCodeDetailDaoImpl.java new file mode 100644 index 0000000..5588f68 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CouponCodeDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CouponCodeDetailDao; +import com.jwsaas.entity.food.CouponCodeDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 优惠券券码信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CouponCodeDetailDaoImpl") +public class CouponCodeDetailDaoImpl extends BaseDaoImpl implements CouponCodeDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CouponDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CouponDaoImpl.java new file mode 100644 index 0000000..32591e6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CouponDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CouponDao; +import com.jwsaas.entity.food.Coupon; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 优惠券信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CouponDaoImpl") +public class CouponDaoImpl extends BaseDaoImpl implements CouponDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CouponStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CouponStoreDaoImpl.java new file mode 100644 index 0000000..511c009 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CouponStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CouponStoreDao; +import com.jwsaas.entity.food.CouponStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 优惠券门店关联表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CouponStoreDaoImpl") +public class CouponStoreDaoImpl extends BaseDaoImpl implements CouponStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CouponTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CouponTicketDaoImpl.java new file mode 100644 index 0000000..d000d77 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CouponTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CouponTicketDao; +import com.jwsaas.entity.food.CouponTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 商品优惠券单据数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CouponTicketDaoImpl") +public class CouponTicketDaoImpl extends BaseDaoImpl implements CouponTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CouponTicketProductDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CouponTicketProductDaoImpl.java new file mode 100644 index 0000000..2bf614c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CouponTicketProductDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CouponTicketProductDao; +import com.jwsaas.entity.food.CouponTicketProduct; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 商品优惠券菜品信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CouponTicketProductDaoImpl") +public class CouponTicketProductDaoImpl extends BaseDaoImpl implements CouponTicketProductDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CouponTicketStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CouponTicketStoreDaoImpl.java new file mode 100644 index 0000000..30a6f2b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/CouponTicketStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.CouponTicketStoreDao; +import com.jwsaas.entity.food.CouponTicketStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 商品优惠券门店数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "CouponTicketStoreDaoImpl") +public class CouponTicketStoreDaoImpl extends BaseDaoImpl implements CouponTicketStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DeliverDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DeliverDaoImpl.java new file mode 100644 index 0000000..7805175 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DeliverDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.DeliverDao; +import com.jwsaas.entity.food.Deliver; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 配送员信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "DeliverDaoImpl") +public class DeliverDaoImpl extends BaseDaoImpl implements DeliverDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DeliverStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DeliverStoreDaoImpl.java new file mode 100644 index 0000000..540601a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DeliverStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.DeliverStoreDao; +import com.jwsaas.entity.food.DeliverStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 配送员门店关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "DeliverStoreDaoImpl") +public class DeliverStoreDaoImpl extends BaseDaoImpl implements DeliverStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchSettlePlanDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchSettlePlanDaoImpl.java new file mode 100644 index 0000000..7452dc5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchSettlePlanDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.DispatchSettlePlanDao; +import com.jwsaas.entity.food.DispatchSettlePlan; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 配送结算方案数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "DispatchSettlePlanDaoImpl") +public class DispatchSettlePlanDaoImpl extends BaseDaoImpl implements DispatchSettlePlanDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchSettlePlanPayModeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchSettlePlanPayModeDaoImpl.java new file mode 100644 index 0000000..7d2e65d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchSettlePlanPayModeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.DispatchSettlePlanPayModeDao; +import com.jwsaas.entity.food.DispatchSettlePlanPayMode; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 配送结算方案收银方式关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "DispatchSettlePlanPayModeDaoImpl") +public class DispatchSettlePlanPayModeDaoImpl extends BaseDaoImpl implements DispatchSettlePlanPayModeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchSettlePlanStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchSettlePlanStoreDaoImpl.java new file mode 100644 index 0000000..5e346cd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchSettlePlanStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.DispatchSettlePlanStoreDao; +import com.jwsaas.entity.food.DispatchSettlePlanStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 配送结算方案门店关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "DispatchSettlePlanStoreDaoImpl") +public class DispatchSettlePlanStoreDaoImpl extends BaseDaoImpl implements DispatchSettlePlanStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchTicketDaoImpl.java new file mode 100644 index 0000000..aff6f30 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.DispatchTicketDao; +import com.jwsaas.entity.food.DispatchTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 配送单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "DispatchTicketDaoImpl") +public class DispatchTicketDaoImpl extends BaseDaoImpl implements DispatchTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchTicketDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchTicketDetailDaoImpl.java new file mode 100644 index 0000000..0142e54 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchTicketDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.DispatchTicketDetailDao; +import com.jwsaas.entity.food.DispatchTicketDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 配送单明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "DispatchTicketDetailDaoImpl") +public class DispatchTicketDetailDaoImpl extends BaseDaoImpl implements DispatchTicketDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchTicketLogDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchTicketLogDaoImpl.java new file mode 100644 index 0000000..3bbc18a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchTicketLogDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.DispatchTicketLogDao; +import com.jwsaas.entity.food.DispatchTicketLog; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 配送单操作记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "DispatchTicketLogDaoImpl") +public class DispatchTicketLogDaoImpl extends BaseDaoImpl implements DispatchTicketLogDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchpriceTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchpriceTicketDaoImpl.java new file mode 100644 index 0000000..0e9b8c5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchpriceTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.DispatchpriceTicketDao; +import com.jwsaas.entity.food.DispatchpriceTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 配送价格管理单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "DispatchpriceTicketDaoImpl") +public class DispatchpriceTicketDaoImpl extends BaseDaoImpl implements DispatchpriceTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchpriceTicketMaterialDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchpriceTicketMaterialDaoImpl.java new file mode 100644 index 0000000..0f3c9bc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchpriceTicketMaterialDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.DispatchpriceTicketMaterialDao; +import com.jwsaas.entity.food.DispatchpriceTicketMaterial; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 配送价格单原料数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "DispatchpriceTicketMaterialDaoImpl") +public class DispatchpriceTicketMaterialDaoImpl extends BaseDaoImpl implements DispatchpriceTicketMaterialDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchpriceTicketStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchpriceTicketStoreDaoImpl.java new file mode 100644 index 0000000..ea16c56 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/DispatchpriceTicketStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.DispatchpriceTicketStoreDao; +import com.jwsaas.entity.food.DispatchpriceTicketStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 配送价格单门店数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "DispatchpriceTicketStoreDaoImpl") +public class DispatchpriceTicketStoreDaoImpl extends BaseDaoImpl implements DispatchpriceTicketStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ElemeCategoryFoodDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ElemeCategoryFoodDaoImpl.java new file mode 100644 index 0000000..57d64ae --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ElemeCategoryFoodDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ElemeCategoryFoodDao; +import com.jwsaas.entity.food.ElemeCategoryFood; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 饿了么分类菜品信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ElemeCategoryFoodDaoImpl") +public class ElemeCategoryFoodDaoImpl extends BaseDaoImpl implements ElemeCategoryFoodDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ElemeFoodCategoryDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ElemeFoodCategoryDaoImpl.java new file mode 100644 index 0000000..ff128f5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ElemeFoodCategoryDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ElemeFoodCategoryDao; +import com.jwsaas.entity.food.ElemeFoodCategory; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 饿了么菜品分类数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ElemeFoodCategoryDaoImpl") +public class ElemeFoodCategoryDaoImpl extends BaseDaoImpl implements ElemeFoodCategoryDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ElemeOrderDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ElemeOrderDetailDaoImpl.java new file mode 100644 index 0000000..0db1ab0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ElemeOrderDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ElemeOrderDetailDao; +import com.jwsaas.entity.food.ElemeOrderDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 饿了么订单信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ElemeOrderDetailDaoImpl") +public class ElemeOrderDetailDaoImpl extends BaseDaoImpl implements ElemeOrderDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ElemeOrderDetailGroupDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ElemeOrderDetailGroupDaoImpl.java new file mode 100644 index 0000000..fbb8763 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ElemeOrderDetailGroupDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ElemeOrderDetailGroupDao; +import com.jwsaas.entity.food.ElemeOrderDetailGroup; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 饿了么订单篮子明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ElemeOrderDetailGroupDaoImpl") +public class ElemeOrderDetailGroupDaoImpl extends BaseDaoImpl implements ElemeOrderDetailGroupDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ErpPosSetDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ErpPosSetDaoImpl.java new file mode 100644 index 0000000..8fac49b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ErpPosSetDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ErpPosSetDao; +import com.jwsaas.entity.food.ErpPosSet; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * ERP方POS设置数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ErpPosSetDaoImpl") +public class ErpPosSetDaoImpl extends BaseDaoImpl implements ErpPosSetDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/FeeItemDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/FeeItemDaoImpl.java new file mode 100644 index 0000000..089869b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/FeeItemDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.FeeItemDao; +import com.jwsaas.entity.food.FeeItem; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 费用项目数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "FeeItemDaoImpl") +public class FeeItemDaoImpl extends BaseDaoImpl implements FeeItemDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/KdsPlanDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/KdsPlanDaoImpl.java new file mode 100644 index 0000000..df6cf7f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/KdsPlanDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.KdsPlanDao; +import com.jwsaas.entity.food.KdsPlan; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 厨房显示方案数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "KdsPlanDaoImpl") +public class KdsPlanDaoImpl extends BaseDaoImpl implements KdsPlanDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/KdsPlanStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/KdsPlanStoreDaoImpl.java new file mode 100644 index 0000000..07f0140 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/KdsPlanStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.KdsPlanStoreDao; +import com.jwsaas.entity.food.KdsPlanStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 厨房显示方案门店关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "KdsPlanStoreDaoImpl") +public class KdsPlanStoreDaoImpl extends BaseDaoImpl implements KdsPlanStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/KitPlanDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/KitPlanDaoImpl.java new file mode 100644 index 0000000..34216d3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/KitPlanDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.KitPlanDao; +import com.jwsaas.entity.food.KitPlan; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 厨房打印方案数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "KitPlanDaoImpl") +public class KitPlanDaoImpl extends BaseDaoImpl implements KitPlanDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/KitPlanStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/KitPlanStoreDaoImpl.java new file mode 100644 index 0000000..a76da32 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/KitPlanStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.KitPlanStoreDao; +import com.jwsaas.entity.food.KitPlanStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 厨房打印方案门店关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "KitPlanStoreDaoImpl") +public class KitPlanStoreDaoImpl extends BaseDaoImpl implements KitPlanStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MakeBurdenDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MakeBurdenDaoImpl.java new file mode 100644 index 0000000..93ed24b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MakeBurdenDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.MakeBurdenDao; +import com.jwsaas.entity.food.MakeBurden; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 做法配料BOM表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "MakeBurdenDaoImpl") +public class MakeBurdenDaoImpl extends BaseDaoImpl implements MakeBurdenDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MakeDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MakeDetailDaoImpl.java new file mode 100644 index 0000000..a3ed800 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MakeDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.MakeDetailDao; +import com.jwsaas.entity.food.MakeDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 菜品做法数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "MakeDetailDaoImpl") +public class MakeDetailDaoImpl extends BaseDaoImpl implements MakeDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MakeTypeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MakeTypeDaoImpl.java new file mode 100644 index 0000000..c2eff94 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MakeTypeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.MakeTypeDao; +import com.jwsaas.entity.food.MakeType; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 做法分类数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "MakeTypeDaoImpl") +public class MakeTypeDaoImpl extends BaseDaoImpl implements MakeTypeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MeituanFoodCategoryDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MeituanFoodCategoryDaoImpl.java new file mode 100644 index 0000000..5a30fc1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MeituanFoodCategoryDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.MeituanFoodCategoryDao; +import com.jwsaas.entity.food.MeituanFoodCategory; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 美团菜品分类数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "MeituanFoodCategoryDaoImpl") +public class MeituanFoodCategoryDaoImpl extends BaseDaoImpl implements MeituanFoodCategoryDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MeituanFoodDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MeituanFoodDaoImpl.java new file mode 100644 index 0000000..84b9cd1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MeituanFoodDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.MeituanFoodDao; +import com.jwsaas.entity.food.MeituanFood; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 美团菜品信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "MeituanFoodDaoImpl") +public class MeituanFoodDaoImpl extends BaseDaoImpl implements MeituanFoodDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MeituanOrderDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MeituanOrderDaoImpl.java new file mode 100644 index 0000000..9c7bb09 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MeituanOrderDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.MeituanOrderDao; +import com.jwsaas.entity.food.MeituanOrder; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 美团订单表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "MeituanOrderDaoImpl") +public class MeituanOrderDaoImpl extends BaseDaoImpl implements MeituanOrderDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MeituanOrderExtraDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MeituanOrderExtraDaoImpl.java new file mode 100644 index 0000000..0a72995 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MeituanOrderExtraDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.MeituanOrderExtraDao; +import com.jwsaas.entity.food.MeituanOrderExtra; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 美团订单优惠信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "MeituanOrderExtraDaoImpl") +public class MeituanOrderExtraDaoImpl extends BaseDaoImpl implements MeituanOrderExtraDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MeituanOrderItemDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MeituanOrderItemDaoImpl.java new file mode 100644 index 0000000..69ef6db --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/MeituanOrderItemDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.MeituanOrderItemDao; +import com.jwsaas.entity.food.MeituanOrderItem; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 美团订单明细表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "MeituanOrderItemDaoImpl") +public class MeituanOrderItemDaoImpl extends BaseDaoImpl implements MeituanOrderItemDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/OtherStorageOutTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/OtherStorageOutTicketDaoImpl.java new file mode 100644 index 0000000..6e4dfd1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/OtherStorageOutTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.OtherStorageOutTicketDao; +import com.jwsaas.entity.food.OtherStorageOutTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 其他出库单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "OtherStorageOutTicketDaoImpl") +public class OtherStorageOutTicketDaoImpl extends BaseDaoImpl implements OtherStorageOutTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/OtherStorageOutTicketDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/OtherStorageOutTicketDetailDaoImpl.java new file mode 100644 index 0000000..e08115f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/OtherStorageOutTicketDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.OtherStorageOutTicketDetailDao; +import com.jwsaas.entity.food.OtherStorageOutTicketDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 其他出库单明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "OtherStorageOutTicketDetailDaoImpl") +public class OtherStorageOutTicketDetailDaoImpl extends BaseDaoImpl implements OtherStorageOutTicketDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/OtherStorageOutTicketLogDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/OtherStorageOutTicketLogDaoImpl.java new file mode 100644 index 0000000..021c8a1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/OtherStorageOutTicketLogDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.OtherStorageOutTicketLogDao; +import com.jwsaas.entity.food.OtherStorageOutTicketLog; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 其他出库单操作记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "OtherStorageOutTicketLogDaoImpl") +public class OtherStorageOutTicketLogDaoImpl extends BaseDaoImpl implements OtherStorageOutTicketLogDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/OtherStorageTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/OtherStorageTicketDaoImpl.java new file mode 100644 index 0000000..056d219 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/OtherStorageTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.OtherStorageTicketDao; +import com.jwsaas.entity.food.OtherStorageTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 其他入库单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "OtherStorageTicketDaoImpl") +public class OtherStorageTicketDaoImpl extends BaseDaoImpl implements OtherStorageTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/OtherStorageTicketDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/OtherStorageTicketDetailDaoImpl.java new file mode 100644 index 0000000..2e41421 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/OtherStorageTicketDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.OtherStorageTicketDetailDao; +import com.jwsaas.entity.food.OtherStorageTicketDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 其他入库单明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "OtherStorageTicketDetailDaoImpl") +public class OtherStorageTicketDetailDaoImpl extends BaseDaoImpl implements OtherStorageTicketDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/OtherStorageTicketLogDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/OtherStorageTicketLogDaoImpl.java new file mode 100644 index 0000000..153c804 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/OtherStorageTicketLogDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.OtherStorageTicketLogDao; +import com.jwsaas.entity.food.OtherStorageTicketLog; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 其他入库单操作记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "OtherStorageTicketLogDaoImpl") +public class OtherStorageTicketLogDaoImpl extends BaseDaoImpl implements OtherStorageTicketLogDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PayModeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PayModeDaoImpl.java new file mode 100644 index 0000000..4c48ce3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PayModeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PayModeDao; +import com.jwsaas.entity.food.PayMode; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 收银方式数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PayModeDaoImpl") +public class PayModeDaoImpl extends BaseDaoImpl implements PayModeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PayModeSeriesDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PayModeSeriesDaoImpl.java new file mode 100644 index 0000000..a829dda --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PayModeSeriesDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PayModeSeriesDao; +import com.jwsaas.entity.food.PayModeSeries; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 档口支付方式数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PayModeSeriesDaoImpl") +public class PayModeSeriesDaoImpl extends BaseDaoImpl implements PayModeSeriesDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PayModeStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PayModeStoreDaoImpl.java new file mode 100644 index 0000000..3f4ab8d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PayModeStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PayModeStoreDao; +import com.jwsaas.entity.food.PayModeStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店支付方式数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PayModeStoreDaoImpl") +public class PayModeStoreDaoImpl extends BaseDaoImpl implements PayModeStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PayTypeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PayTypeDaoImpl.java new file mode 100644 index 0000000..ae14b43 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PayTypeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PayTypeDao; +import com.jwsaas.entity.food.PayType; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 付款类型数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PayTypeDaoImpl") +public class PayTypeDaoImpl extends BaseDaoImpl implements PayTypeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PaymentParameterDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PaymentParameterDaoImpl.java new file mode 100644 index 0000000..10baab7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PaymentParameterDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PaymentParameterDao; +import com.jwsaas.entity.food.PaymentParameter; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 支付参数方案数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PaymentParameterDaoImpl") +public class PaymentParameterDaoImpl extends BaseDaoImpl implements PaymentParameterDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PaymentParameterStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PaymentParameterStoreDaoImpl.java new file mode 100644 index 0000000..0a643ab --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PaymentParameterStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PaymentParameterStoreDao; +import com.jwsaas.entity.food.PaymentParameterStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 支付参数门店关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PaymentParameterStoreDaoImpl") +public class PaymentParameterStoreDaoImpl extends BaseDaoImpl implements PaymentParameterStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosInfoDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosInfoDaoImpl.java new file mode 100644 index 0000000..d934cf6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosInfoDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PosInfoDao; +import com.jwsaas.entity.food.PosInfo; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * POS终端信息表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PosInfoDaoImpl") +public class PosInfoDaoImpl extends BaseDaoImpl implements PosInfoDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosPollcodeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosPollcodeDaoImpl.java new file mode 100644 index 0000000..d6dbc16 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosPollcodeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PosPollcodeDao; +import com.jwsaas.entity.food.PosPollcode; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * POS终端注册码数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PosPollcodeDaoImpl") +public class PosPollcodeDaoImpl extends BaseDaoImpl implements PosPollcodeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosRoleDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosRoleDaoImpl.java new file mode 100644 index 0000000..74a1646 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosRoleDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PosRoleDao; +import com.jwsaas.entity.food.PosRole; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 前台角色数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PosRoleDaoImpl") +public class PosRoleDaoImpl extends BaseDaoImpl implements PosRoleDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosRoleModuleDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosRoleModuleDaoImpl.java new file mode 100644 index 0000000..96b56d1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosRoleModuleDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PosRoleModuleDao; +import com.jwsaas.entity.food.PosRoleModule; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 前台角色模块数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PosRoleModuleDaoImpl") +public class PosRoleModuleDaoImpl extends BaseDaoImpl implements PosRoleModuleDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosSetPlanConfigDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosSetPlanConfigDaoImpl.java new file mode 100644 index 0000000..a7f4467 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosSetPlanConfigDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PosSetPlanConfigDao; +import com.jwsaas.entity.food.PosSetPlanConfig; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * POS下载方案设置数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PosSetPlanConfigDaoImpl") +public class PosSetPlanConfigDaoImpl extends BaseDaoImpl implements PosSetPlanConfigDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosSetPlanDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosSetPlanDaoImpl.java new file mode 100644 index 0000000..55bb6be --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosSetPlanDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PosSetPlanDao; +import com.jwsaas.entity.food.PosSetPlan; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * POS下载方案数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PosSetPlanDaoImpl") +public class PosSetPlanDaoImpl extends BaseDaoImpl implements PosSetPlanDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosSetPlanModuleDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosSetPlanModuleDaoImpl.java new file mode 100644 index 0000000..ca98705 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosSetPlanModuleDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PosSetPlanModuleDao; +import com.jwsaas.entity.food.PosSetPlanModule; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * POS下载方案模块数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PosSetPlanModuleDaoImpl") +public class PosSetPlanModuleDaoImpl extends BaseDaoImpl implements PosSetPlanModuleDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosSetPlanResourcesDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosSetPlanResourcesDaoImpl.java new file mode 100644 index 0000000..3788e6e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosSetPlanResourcesDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PosSetPlanResourcesDao; +import com.jwsaas.entity.food.PosSetPlanResources; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * POS下载方案资源数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PosSetPlanResourcesDaoImpl") +public class PosSetPlanResourcesDaoImpl extends BaseDaoImpl implements PosSetPlanResourcesDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosSetPlanShortcutDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosSetPlanShortcutDaoImpl.java new file mode 100644 index 0000000..e64bc5d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosSetPlanShortcutDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PosSetPlanShortcutDao; +import com.jwsaas.entity.food.PosSetPlanShortcut; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * POS下载方案快捷操作数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PosSetPlanShortcutDaoImpl") +public class PosSetPlanShortcutDaoImpl extends BaseDaoImpl implements PosSetPlanShortcutDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosSetPlanStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosSetPlanStoreDaoImpl.java new file mode 100644 index 0000000..aeb0b15 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PosSetPlanStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PosSetPlanStoreDao; +import com.jwsaas.entity.food.PosSetPlanStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * POS下载方案门店关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PosSetPlanStoreDaoImpl") +public class PosSetPlanStoreDaoImpl extends BaseDaoImpl implements PosSetPlanStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PrintImageDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PrintImageDaoImpl.java new file mode 100644 index 0000000..73ed37c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PrintImageDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PrintImageDao; +import com.jwsaas.entity.food.PrintImage; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小票打印图片数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PrintImageDaoImpl") +public class PrintImageDaoImpl extends BaseDaoImpl implements PrintImageDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PrintImageStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PrintImageStoreDaoImpl.java new file mode 100644 index 0000000..878337d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PrintImageStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PrintImageStoreDao; +import com.jwsaas.entity.food.PrintImageStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小票打印图片门店关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PrintImageStoreDaoImpl") +public class PrintImageStoreDaoImpl extends BaseDaoImpl implements PrintImageStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductBatchNegativeStockDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductBatchNegativeStockDaoImpl.java new file mode 100644 index 0000000..1813abc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductBatchNegativeStockDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductBatchNegativeStockDao; +import com.jwsaas.entity.food.ProductBatchNegativeStock; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 负库存出库记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductBatchNegativeStockDaoImpl") +public class ProductBatchNegativeStockDaoImpl extends BaseDaoImpl implements ProductBatchNegativeStockDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductBatchNegativeStockDifferDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductBatchNegativeStockDifferDaoImpl.java new file mode 100644 index 0000000..6fa9cd0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductBatchNegativeStockDifferDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductBatchNegativeStockDifferDao; +import com.jwsaas.entity.food.ProductBatchNegativeStockDiffer; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 负库存出库差异数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductBatchNegativeStockDifferDaoImpl") +public class ProductBatchNegativeStockDifferDaoImpl extends BaseDaoImpl implements ProductBatchNegativeStockDifferDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductBatchNumberDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductBatchNumberDaoImpl.java new file mode 100644 index 0000000..b6410cf --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductBatchNumberDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductBatchNumberDao; +import com.jwsaas.entity.food.ProductBatchNumber; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 产品批次数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductBatchNumberDaoImpl") +public class ProductBatchNumberDaoImpl extends BaseDaoImpl implements ProductBatchNumberDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductBatchStockChangeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductBatchStockChangeDaoImpl.java new file mode 100644 index 0000000..1e41cdb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductBatchStockChangeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductBatchStockChangeDao; +import com.jwsaas.entity.food.ProductBatchStockChange; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 产品批次冲减记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductBatchStockChangeDaoImpl") +public class ProductBatchStockChangeDaoImpl extends BaseDaoImpl implements ProductBatchStockChangeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductBatchStockDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductBatchStockDaoImpl.java new file mode 100644 index 0000000..74fec75 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductBatchStockDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductBatchStockDao; +import com.jwsaas.entity.food.ProductBatchStock; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 产品批次库存数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductBatchStockDaoImpl") +public class ProductBatchStockDaoImpl extends BaseDaoImpl implements ProductBatchStockDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductBurdenDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductBurdenDaoImpl.java new file mode 100644 index 0000000..0a7372b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductBurdenDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductBurdenDao; +import com.jwsaas.entity.food.ProductBurden; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 产品配料BOM表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductBurdenDaoImpl") +public class ProductBurdenDaoImpl extends BaseDaoImpl implements ProductBurdenDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductDaoImpl.java new file mode 100644 index 0000000..8aef0c6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductDao; +import com.jwsaas.entity.food.Product; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 商品资料数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductDaoImpl") +public class ProductDaoImpl extends BaseDaoImpl implements ProductDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductImageDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductImageDaoImpl.java new file mode 100644 index 0000000..09a0b86 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductImageDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductImageDao; +import com.jwsaas.entity.food.ProductImage; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 商品图片表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductImageDaoImpl") +public class ProductImageDaoImpl extends BaseDaoImpl implements ProductImageDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductKdsPlanDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductKdsPlanDaoImpl.java new file mode 100644 index 0000000..8721d10 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductKdsPlanDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductKdsPlanDao; +import com.jwsaas.entity.food.ProductKdsPlan; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 商品厨房显示方案设置数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductKdsPlanDaoImpl") +public class ProductKdsPlanDaoImpl extends BaseDaoImpl implements ProductKdsPlanDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductKitPlanDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductKitPlanDaoImpl.java new file mode 100644 index 0000000..331e27e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductKitPlanDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductKitPlanDao; +import com.jwsaas.entity.food.ProductKitPlan; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 商品厨房打印方案设置数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductKitPlanDaoImpl") +public class ProductKitPlanDaoImpl extends BaseDaoImpl implements ProductKitPlanDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductMakeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductMakeDaoImpl.java new file mode 100644 index 0000000..86a4d03 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductMakeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductMakeDao; +import com.jwsaas.entity.food.ProductMake; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 产品私有做法数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductMakeDaoImpl") +public class ProductMakeDaoImpl extends BaseDaoImpl implements ProductMakeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductMakeStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductMakeStoreDaoImpl.java new file mode 100644 index 0000000..5bc8379 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductMakeStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductMakeStoreDao; +import com.jwsaas.entity.food.ProductMakeStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店做法数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductMakeStoreDaoImpl") +public class ProductMakeStoreDaoImpl extends BaseDaoImpl implements ProductMakeStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductMakeTemplateDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductMakeTemplateDaoImpl.java new file mode 100644 index 0000000..5cd288c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductMakeTemplateDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductMakeTemplateDao; +import com.jwsaas.entity.food.ProductMakeTemplate; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 做法模板数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductMakeTemplateDaoImpl") +public class ProductMakeTemplateDaoImpl extends BaseDaoImpl implements ProductMakeTemplateDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductMakeTemplateDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductMakeTemplateDetailDaoImpl.java new file mode 100644 index 0000000..0701778 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductMakeTemplateDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductMakeTemplateDetailDao; +import com.jwsaas.entity.food.ProductMakeTemplateDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 做法模板明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductMakeTemplateDetailDaoImpl") +public class ProductMakeTemplateDetailDaoImpl extends BaseDaoImpl implements ProductMakeTemplateDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductRatioDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductRatioDaoImpl.java new file mode 100644 index 0000000..581a3d5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductRatioDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductRatioDao; +import com.jwsaas.entity.food.ProductRatio; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 商品库存系数数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductRatioDaoImpl") +public class ProductRatioDaoImpl extends BaseDaoImpl implements ProductRatioDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductSpecDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductSpecDaoImpl.java new file mode 100644 index 0000000..f99917a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductSpecDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductSpecDao; +import com.jwsaas.entity.food.ProductSpec; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 商品规格信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductSpecDaoImpl") +public class ProductSpecDaoImpl extends BaseDaoImpl implements ProductSpecDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductStockDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductStockDaoImpl.java new file mode 100644 index 0000000..f4174c3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductStockDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductStockDao; +import com.jwsaas.entity.food.ProductStock; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 总部原料库存数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductStockDaoImpl") +public class ProductStockDaoImpl extends BaseDaoImpl implements ProductStockDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductStockLogDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductStockLogDaoImpl.java new file mode 100644 index 0000000..f9d648b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductStockLogDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductStockLogDao; +import com.jwsaas.entity.food.ProductStockLog; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 总部库存流水数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductStockLogDaoImpl") +public class ProductStockLogDaoImpl extends BaseDaoImpl implements ProductStockLogDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductStoreOutCollectDayDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductStoreOutCollectDayDaoImpl.java new file mode 100644 index 0000000..beb9e69 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductStoreOutCollectDayDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductStoreOutCollectDayDao; +import com.jwsaas.entity.food.ProductStoreOutCollectDay; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店销售出库汇总-按天汇总数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductStoreOutCollectDayDaoImpl") +public class ProductStoreOutCollectDayDaoImpl extends BaseDaoImpl implements ProductStoreOutCollectDayDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductStoreStockDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductStoreStockDaoImpl.java new file mode 100644 index 0000000..4a4f57d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductStoreStockDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductStoreStockDao; +import com.jwsaas.entity.food.ProductStoreStock; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店原料库存数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductStoreStockDaoImpl") +public class ProductStoreStockDaoImpl extends BaseDaoImpl implements ProductStoreStockDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductStoreStockLogDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductStoreStockLogDaoImpl.java new file mode 100644 index 0000000..4c08e29 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductStoreStockLogDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductStoreStockLogDao; +import com.jwsaas.entity.food.ProductStoreStockLog; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店库存流水数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductStoreStockLogDaoImpl") +public class ProductStoreStockLogDaoImpl extends BaseDaoImpl implements ProductStoreStockLogDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductSuitDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductSuitDaoImpl.java new file mode 100644 index 0000000..95c6c54 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductSuitDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductSuitDao; +import com.jwsaas.entity.food.ProductSuit; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 套餐道菜数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductSuitDaoImpl") +public class ProductSuitDaoImpl extends BaseDaoImpl implements ProductSuitDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductSuitDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductSuitDetailDaoImpl.java new file mode 100644 index 0000000..4994cee --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductSuitDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductSuitDetailDao; +import com.jwsaas.entity.food.ProductSuitDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 道菜明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductSuitDetailDaoImpl") +public class ProductSuitDetailDaoImpl extends BaseDaoImpl implements ProductSuitDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductTemplateDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductTemplateDaoImpl.java new file mode 100644 index 0000000..80f7d95 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductTemplateDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductTemplateDao; +import com.jwsaas.entity.food.ProductTemplate; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 商品模板数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductTemplateDaoImpl") +public class ProductTemplateDaoImpl extends BaseDaoImpl implements ProductTemplateDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductTemplateDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductTemplateDetailDaoImpl.java new file mode 100644 index 0000000..a716f17 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductTemplateDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductTemplateDetailDao; +import com.jwsaas.entity.food.ProductTemplateDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 商品模板明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductTemplateDetailDaoImpl") +public class ProductTemplateDetailDaoImpl extends BaseDaoImpl implements ProductTemplateDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductTypeBrandDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductTypeBrandDaoImpl.java new file mode 100644 index 0000000..fb63d1a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductTypeBrandDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductTypeBrandDao; +import com.jwsaas.entity.food.ProductTypeBrand; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 商品分类品牌数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductTypeBrandDaoImpl") +public class ProductTypeBrandDaoImpl extends BaseDaoImpl implements ProductTypeBrandDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductTypeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductTypeDaoImpl.java new file mode 100644 index 0000000..c9e0449 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductTypeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductTypeDao; +import com.jwsaas.entity.food.ProductType; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 商品类别数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductTypeDaoImpl") +public class ProductTypeDaoImpl extends BaseDaoImpl implements ProductTypeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductTypeLabelDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductTypeLabelDaoImpl.java new file mode 100644 index 0000000..bb7694d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductTypeLabelDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductTypeLabelDao; +import com.jwsaas.entity.food.ProductTypeLabel; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 商品类别标签管联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductTypeLabelDaoImpl") +public class ProductTypeLabelDaoImpl extends BaseDaoImpl implements ProductTypeLabelDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductTypeLabelInfoDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductTypeLabelInfoDaoImpl.java new file mode 100644 index 0000000..abd3e2d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductTypeLabelInfoDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductTypeLabelInfoDao; +import com.jwsaas.entity.food.ProductTypeLabelInfo; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 商品类别标签数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductTypeLabelInfoDaoImpl") +public class ProductTypeLabelInfoDaoImpl extends BaseDaoImpl implements ProductTypeLabelInfoDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductUnitDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductUnitDaoImpl.java new file mode 100644 index 0000000..bac8034 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProductUnitDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProductUnitDao; +import com.jwsaas.entity.food.ProductUnit; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 商品单位数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProductUnitDaoImpl") +public class ProductUnitDaoImpl extends BaseDaoImpl implements ProductUnitDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramAdPictureDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramAdPictureDaoImpl.java new file mode 100644 index 0000000..e772eeb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramAdPictureDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramAdPictureDao; +import com.jwsaas.entity.food.ProgramAdPicture; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序广告图片数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramAdPictureDaoImpl") +public class ProgramAdPictureDaoImpl extends BaseDaoImpl implements ProgramAdPictureDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramAdjustPriceProductDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramAdjustPriceProductDaoImpl.java new file mode 100644 index 0000000..439560a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramAdjustPriceProductDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramAdjustPriceProductDao; +import com.jwsaas.entity.food.ProgramAdjustPriceProduct; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序调价单商品明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramAdjustPriceProductDaoImpl") +public class ProgramAdjustPriceProductDaoImpl extends BaseDaoImpl implements ProgramAdjustPriceProductDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramAdjustPriceStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramAdjustPriceStoreDaoImpl.java new file mode 100644 index 0000000..2a09600 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramAdjustPriceStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramAdjustPriceStoreDao; +import com.jwsaas.entity.food.ProgramAdjustPriceStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序调价单门店明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramAdjustPriceStoreDaoImpl") +public class ProgramAdjustPriceStoreDaoImpl extends BaseDaoImpl implements ProgramAdjustPriceStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramAdjustPriceTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramAdjustPriceTicketDaoImpl.java new file mode 100644 index 0000000..c68ec98 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramAdjustPriceTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramAdjustPriceTicketDao; +import com.jwsaas.entity.food.ProgramAdjustPriceTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序商品调价单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramAdjustPriceTicketDaoImpl") +public class ProgramAdjustPriceTicketDaoImpl extends BaseDaoImpl implements ProgramAdjustPriceTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramDeliverAddressDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramDeliverAddressDaoImpl.java new file mode 100644 index 0000000..e588529 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramDeliverAddressDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramDeliverAddressDao; +import com.jwsaas.entity.food.ProgramDeliverAddress; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序用户配送地址数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramDeliverAddressDaoImpl") +public class ProgramDeliverAddressDaoImpl extends BaseDaoImpl implements ProgramDeliverAddressDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramEvaluateDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramEvaluateDaoImpl.java new file mode 100644 index 0000000..6b7f27c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramEvaluateDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramEvaluateDao; +import com.jwsaas.entity.food.ProgramEvaluate; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序评价表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramEvaluateDaoImpl") +public class ProgramEvaluateDaoImpl extends BaseDaoImpl implements ProgramEvaluateDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramEvaluateImageDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramEvaluateImageDaoImpl.java new file mode 100644 index 0000000..f38de1f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramEvaluateImageDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramEvaluateImageDao; +import com.jwsaas.entity.food.ProgramEvaluateImage; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序评价图片表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramEvaluateImageDaoImpl") +public class ProgramEvaluateImageDaoImpl extends BaseDaoImpl implements ProgramEvaluateImageDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramIndexPictureDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramIndexPictureDaoImpl.java new file mode 100644 index 0000000..495c677 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramIndexPictureDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramIndexPictureDao; +import com.jwsaas.entity.food.ProgramIndexPicture; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序首页图片数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramIndexPictureDaoImpl") +public class ProgramIndexPictureDaoImpl extends BaseDaoImpl implements ProgramIndexPictureDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPaymentParameterDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPaymentParameterDaoImpl.java new file mode 100644 index 0000000..c37220a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPaymentParameterDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramPaymentParameterDao; +import com.jwsaas.entity.food.ProgramPaymentParameter; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序支付参数方案数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramPaymentParameterDaoImpl") +public class ProgramPaymentParameterDaoImpl extends BaseDaoImpl implements ProgramPaymentParameterDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPaymentParameterStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPaymentParameterStoreDaoImpl.java new file mode 100644 index 0000000..ab2bfe3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPaymentParameterStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramPaymentParameterStoreDao; +import com.jwsaas.entity.food.ProgramPaymentParameterStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序支付参数门店关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramPaymentParameterStoreDaoImpl") +public class ProgramPaymentParameterStoreDaoImpl extends BaseDaoImpl implements ProgramPaymentParameterStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramProductCategoryDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramProductCategoryDaoImpl.java new file mode 100644 index 0000000..8797d14 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramProductCategoryDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramProductCategoryDao; +import com.jwsaas.entity.food.ProgramProductCategory; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序商品分类数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramProductCategoryDaoImpl") +public class ProgramProductCategoryDaoImpl extends BaseDaoImpl implements ProgramProductCategoryDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramProductMakeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramProductMakeDaoImpl.java new file mode 100644 index 0000000..85e3c5e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramProductMakeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramProductMakeDao; +import com.jwsaas.entity.food.ProgramProductMake; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序商品做法关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramProductMakeDaoImpl") +public class ProgramProductMakeDaoImpl extends BaseDaoImpl implements ProgramProductMakeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramProductTemplateDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramProductTemplateDaoImpl.java new file mode 100644 index 0000000..58e18e5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramProductTemplateDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramProductTemplateDao; +import com.jwsaas.entity.food.ProgramProductTemplate; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序商品模板数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramProductTemplateDaoImpl") +public class ProgramProductTemplateDaoImpl extends BaseDaoImpl implements ProgramProductTemplateDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramProductTemplateDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramProductTemplateDetailDaoImpl.java new file mode 100644 index 0000000..5627700 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramProductTemplateDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramProductTemplateDetailDao; +import com.jwsaas.entity.food.ProgramProductTemplateDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序商品模板明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramProductTemplateDetailDaoImpl") +public class ProgramProductTemplateDetailDaoImpl extends BaseDaoImpl implements ProgramProductTemplateDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramProductTemplateStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramProductTemplateStoreDaoImpl.java new file mode 100644 index 0000000..20e0c73 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramProductTemplateStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramProductTemplateStoreDao; +import com.jwsaas.entity.food.ProgramProductTemplateStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序商品模板门店明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramProductTemplateStoreDaoImpl") +public class ProgramProductTemplateStoreDaoImpl extends BaseDaoImpl implements ProgramProductTemplateStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionBlackListGoodsDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionBlackListGoodsDaoImpl.java new file mode 100644 index 0000000..7dc603f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionBlackListGoodsDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramPromotionBlackListGoodsDao; +import com.jwsaas.entity.food.ProgramPromotionBlackListGoods; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序促销商品黑名单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramPromotionBlackListGoodsDaoImpl") +public class ProgramPromotionBlackListGoodsDaoImpl extends BaseDaoImpl implements ProgramPromotionBlackListGoodsDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionBlackListStoreAreaDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionBlackListStoreAreaDaoImpl.java new file mode 100644 index 0000000..93bcb6a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionBlackListStoreAreaDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramPromotionBlackListStoreAreaDao; +import com.jwsaas.entity.food.ProgramPromotionBlackListStoreArea; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序促销门店区域黑名单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramPromotionBlackListStoreAreaDaoImpl") +public class ProgramPromotionBlackListStoreAreaDaoImpl extends BaseDaoImpl implements ProgramPromotionBlackListStoreAreaDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionBlackListStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionBlackListStoreDaoImpl.java new file mode 100644 index 0000000..d2d5b3a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionBlackListStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramPromotionBlackListStoreDao; +import com.jwsaas.entity.food.ProgramPromotionBlackListStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序促销门店黑名单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramPromotionBlackListStoreDaoImpl") +public class ProgramPromotionBlackListStoreDaoImpl extends BaseDaoImpl implements ProgramPromotionBlackListStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionCategoryDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionCategoryDaoImpl.java new file mode 100644 index 0000000..2d0da8c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionCategoryDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramPromotionCategoryDao; +import com.jwsaas.entity.food.ProgramPromotionCategory; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序促销品类表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramPromotionCategoryDaoImpl") +public class ProgramPromotionCategoryDaoImpl extends BaseDaoImpl implements ProgramPromotionCategoryDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionGoodsDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionGoodsDaoImpl.java new file mode 100644 index 0000000..6f6953a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionGoodsDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramPromotionGoodsDao; +import com.jwsaas.entity.food.ProgramPromotionGoods; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序促销商品明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramPromotionGoodsDaoImpl") +public class ProgramPromotionGoodsDaoImpl extends BaseDaoImpl implements ProgramPromotionGoodsDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionSchemeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionSchemeDaoImpl.java new file mode 100644 index 0000000..d3e2ee5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionSchemeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramPromotionSchemeDao; +import com.jwsaas.entity.food.ProgramPromotionScheme; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序促销方案表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramPromotionSchemeDaoImpl") +public class ProgramPromotionSchemeDaoImpl extends BaseDaoImpl implements ProgramPromotionSchemeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionStoreAreaDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionStoreAreaDaoImpl.java new file mode 100644 index 0000000..980fb00 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionStoreAreaDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramPromotionStoreAreaDao; +import com.jwsaas.entity.food.ProgramPromotionStoreArea; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序促销门店区域关联表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramPromotionStoreAreaDaoImpl") +public class ProgramPromotionStoreAreaDaoImpl extends BaseDaoImpl implements ProgramPromotionStoreAreaDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionStoreDaoImpl.java new file mode 100644 index 0000000..0af7f7e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramPromotionStoreDao; +import com.jwsaas.entity.food.ProgramPromotionStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序促销门店关联表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramPromotionStoreDaoImpl") +public class ProgramPromotionStoreDaoImpl extends BaseDaoImpl implements ProgramPromotionStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionTaskDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionTaskDaoImpl.java new file mode 100644 index 0000000..fde03bb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionTaskDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramPromotionTaskDao; +import com.jwsaas.entity.food.ProgramPromotionTask; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序促销任务表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramPromotionTaskDaoImpl") +public class ProgramPromotionTaskDaoImpl extends BaseDaoImpl implements ProgramPromotionTaskDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionTicketDaoImpl.java new file mode 100644 index 0000000..5ddef64 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramPromotionTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramPromotionTicketDao; +import com.jwsaas.entity.food.ProgramPromotionTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序促销单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramPromotionTicketDaoImpl") +public class ProgramPromotionTicketDaoImpl extends BaseDaoImpl implements ProgramPromotionTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramSettingDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramSettingDaoImpl.java new file mode 100644 index 0000000..b0b54e1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramSettingDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramSettingDao; +import com.jwsaas.entity.food.ProgramSetting; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序设置数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramSettingDaoImpl") +public class ProgramSettingDaoImpl extends BaseDaoImpl implements ProgramSettingDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreBusinessTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreBusinessTicketDaoImpl.java new file mode 100644 index 0000000..039de29 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreBusinessTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramStoreBusinessTicketDao; +import com.jwsaas.entity.food.ProgramStoreBusinessTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序销售单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramStoreBusinessTicketDaoImpl") +public class ProgramStoreBusinessTicketDaoImpl extends BaseDaoImpl implements ProgramStoreBusinessTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreBusinessTicketDeliverDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreBusinessTicketDeliverDaoImpl.java new file mode 100644 index 0000000..8e78c56 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreBusinessTicketDeliverDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramStoreBusinessTicketDeliverDao; +import com.jwsaas.entity.food.ProgramStoreBusinessTicketDeliver; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序销售单配送信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramStoreBusinessTicketDeliverDaoImpl") +public class ProgramStoreBusinessTicketDeliverDaoImpl extends BaseDaoImpl implements ProgramStoreBusinessTicketDeliverDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreBusinessTicketInfoDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreBusinessTicketInfoDaoImpl.java new file mode 100644 index 0000000..09592b5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreBusinessTicketInfoDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramStoreBusinessTicketInfoDao; +import com.jwsaas.entity.food.ProgramStoreBusinessTicketInfo; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序销售单优惠明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramStoreBusinessTicketInfoDaoImpl") +public class ProgramStoreBusinessTicketInfoDaoImpl extends BaseDaoImpl implements ProgramStoreBusinessTicketInfoDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreDaoImpl.java new file mode 100644 index 0000000..a9b0f06 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramStoreDao; +import com.jwsaas.entity.food.ProgramStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序门店信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramStoreDaoImpl") +public class ProgramStoreDaoImpl extends BaseDaoImpl implements ProgramStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreMakeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreMakeDaoImpl.java new file mode 100644 index 0000000..83e4348 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreMakeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramStoreMakeDao; +import com.jwsaas.entity.food.ProgramStoreMake; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序门店做法关联表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramStoreMakeDaoImpl") +public class ProgramStoreMakeDaoImpl extends BaseDaoImpl implements ProgramStoreMakeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreOrderProductDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreOrderProductDaoImpl.java new file mode 100644 index 0000000..daa0dfc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreOrderProductDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramStoreOrderProductDao; +import com.jwsaas.entity.food.ProgramStoreOrderProduct; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序产品销售记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramStoreOrderProductDaoImpl") +public class ProgramStoreOrderProductDaoImpl extends BaseDaoImpl implements ProgramStoreOrderProductDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreOrderProductInfoDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreOrderProductInfoDaoImpl.java new file mode 100644 index 0000000..699b977 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreOrderProductInfoDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramStoreOrderProductInfoDao; +import com.jwsaas.entity.food.ProgramStoreOrderProductInfo; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序产品销售记录优惠明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramStoreOrderProductInfoDaoImpl") +public class ProgramStoreOrderProductInfoDaoImpl extends BaseDaoImpl implements ProgramStoreOrderProductInfoDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreOrderProductMakeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreOrderProductMakeDaoImpl.java new file mode 100644 index 0000000..84b920c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreOrderProductMakeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramStoreOrderProductMakeDao; +import com.jwsaas.entity.food.ProgramStoreOrderProductMake; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序销售单做法数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramStoreOrderProductMakeDaoImpl") +public class ProgramStoreOrderProductMakeDaoImpl extends BaseDaoImpl implements ProgramStoreOrderProductMakeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStorePayDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStorePayDaoImpl.java new file mode 100644 index 0000000..2c020dc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStorePayDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramStorePayDao; +import com.jwsaas.entity.food.ProgramStorePay; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序收银流水数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramStorePayDaoImpl") +public class ProgramStorePayDaoImpl extends BaseDaoImpl implements ProgramStorePayDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreProductDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreProductDaoImpl.java new file mode 100644 index 0000000..dc3d41c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ProgramStoreProductDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ProgramStoreProductDao; +import com.jwsaas.entity.food.ProgramStoreProduct; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 小程序门店商品关联表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ProgramStoreProductDaoImpl") +public class ProgramStoreProductDaoImpl extends BaseDaoImpl implements ProgramStoreProductDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionBlackListGoodsDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionBlackListGoodsDaoImpl.java new file mode 100644 index 0000000..a66a109 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionBlackListGoodsDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PromotionBlackListGoodsDao; +import com.jwsaas.entity.food.PromotionBlackListGoods; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 促销商品黑名单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PromotionBlackListGoodsDaoImpl") +public class PromotionBlackListGoodsDaoImpl extends BaseDaoImpl implements PromotionBlackListGoodsDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionBlackListStoreAreaDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionBlackListStoreAreaDaoImpl.java new file mode 100644 index 0000000..d2f9ded --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionBlackListStoreAreaDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PromotionBlackListStoreAreaDao; +import com.jwsaas.entity.food.PromotionBlackListStoreArea; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 促销门店区域黑名单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PromotionBlackListStoreAreaDaoImpl") +public class PromotionBlackListStoreAreaDaoImpl extends BaseDaoImpl implements PromotionBlackListStoreAreaDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionBlackListStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionBlackListStoreDaoImpl.java new file mode 100644 index 0000000..ff2ba6f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionBlackListStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PromotionBlackListStoreDao; +import com.jwsaas.entity.food.PromotionBlackListStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 促销门店黑名单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PromotionBlackListStoreDaoImpl") +public class PromotionBlackListStoreDaoImpl extends BaseDaoImpl implements PromotionBlackListStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionCategoryDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionCategoryDaoImpl.java new file mode 100644 index 0000000..f2331b6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionCategoryDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PromotionCategoryDao; +import com.jwsaas.entity.food.PromotionCategory; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 促销品类表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PromotionCategoryDaoImpl") +public class PromotionCategoryDaoImpl extends BaseDaoImpl implements PromotionCategoryDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionGoodsDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionGoodsDaoImpl.java new file mode 100644 index 0000000..4e76e78 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionGoodsDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PromotionGoodsDao; +import com.jwsaas.entity.food.PromotionGoods; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 促销商品明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PromotionGoodsDaoImpl") +public class PromotionGoodsDaoImpl extends BaseDaoImpl implements PromotionGoodsDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionScheduleDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionScheduleDaoImpl.java new file mode 100644 index 0000000..307c7e7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionScheduleDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PromotionScheduleDao; +import com.jwsaas.entity.food.PromotionSchedule; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 促销档期数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PromotionScheduleDaoImpl") +public class PromotionScheduleDaoImpl extends BaseDaoImpl implements PromotionScheduleDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionSchemeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionSchemeDaoImpl.java new file mode 100644 index 0000000..2f33d2c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionSchemeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PromotionSchemeDao; +import com.jwsaas.entity.food.PromotionScheme; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 促销方案表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PromotionSchemeDaoImpl") +public class PromotionSchemeDaoImpl extends BaseDaoImpl implements PromotionSchemeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionStoreAreaDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionStoreAreaDaoImpl.java new file mode 100644 index 0000000..4f523df --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionStoreAreaDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PromotionStoreAreaDao; +import com.jwsaas.entity.food.PromotionStoreArea; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 促销门店区域关联表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PromotionStoreAreaDaoImpl") +public class PromotionStoreAreaDaoImpl extends BaseDaoImpl implements PromotionStoreAreaDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionStoreDaoImpl.java new file mode 100644 index 0000000..1521673 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PromotionStoreDao; +import com.jwsaas.entity.food.PromotionStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 促销门店关联表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PromotionStoreDaoImpl") +public class PromotionStoreDaoImpl extends BaseDaoImpl implements PromotionStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionTaskDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionTaskDaoImpl.java new file mode 100644 index 0000000..d11f4ba --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionTaskDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PromotionTaskDao; +import com.jwsaas.entity.food.PromotionTask; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 促销任务表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PromotionTaskDaoImpl") +public class PromotionTaskDaoImpl extends BaseDaoImpl implements PromotionTaskDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionTicketDaoImpl.java new file mode 100644 index 0000000..fd89bb6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PromotionTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PromotionTicketDao; +import com.jwsaas.entity.food.PromotionTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 促销单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PromotionTicketDaoImpl") +public class PromotionTicketDaoImpl extends BaseDaoImpl implements PromotionTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseStorageTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseStorageTicketDaoImpl.java new file mode 100644 index 0000000..44c1f70 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseStorageTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PurchaseStorageTicketDao; +import com.jwsaas.entity.food.PurchaseStorageTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 采购入库单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PurchaseStorageTicketDaoImpl") +public class PurchaseStorageTicketDaoImpl extends BaseDaoImpl implements PurchaseStorageTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseStorageTicketDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseStorageTicketDetailDaoImpl.java new file mode 100644 index 0000000..325d138 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseStorageTicketDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PurchaseStorageTicketDetailDao; +import com.jwsaas.entity.food.PurchaseStorageTicketDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 采购入库单明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PurchaseStorageTicketDetailDaoImpl") +public class PurchaseStorageTicketDetailDaoImpl extends BaseDaoImpl implements PurchaseStorageTicketDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseStorageTicketLogDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseStorageTicketLogDaoImpl.java new file mode 100644 index 0000000..43b6f21 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseStorageTicketLogDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PurchaseStorageTicketLogDao; +import com.jwsaas.entity.food.PurchaseStorageTicketLog; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 采购入库单操作记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PurchaseStorageTicketLogDaoImpl") +public class PurchaseStorageTicketLogDaoImpl extends BaseDaoImpl implements PurchaseStorageTicketLogDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseTemplateDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseTemplateDaoImpl.java new file mode 100644 index 0000000..90466c7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseTemplateDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PurchaseTemplateDao; +import com.jwsaas.entity.food.PurchaseTemplate; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 采购模板数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PurchaseTemplateDaoImpl") +public class PurchaseTemplateDaoImpl extends BaseDaoImpl implements PurchaseTemplateDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseTemplateDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseTemplateDetailDaoImpl.java new file mode 100644 index 0000000..641c43b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseTemplateDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PurchaseTemplateDetailDao; +import com.jwsaas.entity.food.PurchaseTemplateDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 采购模板明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PurchaseTemplateDetailDaoImpl") +public class PurchaseTemplateDetailDaoImpl extends BaseDaoImpl implements PurchaseTemplateDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseTicketDaoImpl.java new file mode 100644 index 0000000..af6ba66 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PurchaseTicketDao; +import com.jwsaas.entity.food.PurchaseTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 采购单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PurchaseTicketDaoImpl") +public class PurchaseTicketDaoImpl extends BaseDaoImpl implements PurchaseTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseTicketDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseTicketDetailDaoImpl.java new file mode 100644 index 0000000..f0c3519 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseTicketDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PurchaseTicketDetailDao; +import com.jwsaas.entity.food.PurchaseTicketDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 采购单明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PurchaseTicketDetailDaoImpl") +public class PurchaseTicketDetailDaoImpl extends BaseDaoImpl implements PurchaseTicketDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseTicketLogDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseTicketLogDaoImpl.java new file mode 100644 index 0000000..8c0612d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchaseTicketLogDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PurchaseTicketLogDao; +import com.jwsaas.entity.food.PurchaseTicketLog; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 采购订单操作记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PurchaseTicketLogDaoImpl") +public class PurchaseTicketLogDaoImpl extends BaseDaoImpl implements PurchaseTicketLogDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchasepriceDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchasepriceDaoImpl.java new file mode 100644 index 0000000..6eb2afe --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchasepriceDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PurchasepriceDao; +import com.jwsaas.entity.food.Purchaseprice; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 采购价格数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PurchasepriceDaoImpl") +public class PurchasepriceDaoImpl extends BaseDaoImpl implements PurchasepriceDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchasepriceTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchasepriceTicketDaoImpl.java new file mode 100644 index 0000000..69719a8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchasepriceTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PurchasepriceTicketDao; +import com.jwsaas.entity.food.PurchasepriceTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 采购价格管理单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PurchasepriceTicketDaoImpl") +public class PurchasepriceTicketDaoImpl extends BaseDaoImpl implements PurchasepriceTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchasepriceTicketMaterialDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchasepriceTicketMaterialDaoImpl.java new file mode 100644 index 0000000..163b60b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/PurchasepriceTicketMaterialDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.PurchasepriceTicketMaterialDao; +import com.jwsaas.entity.food.PurchasepriceTicketMaterial; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 采购价格单原料数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "PurchasepriceTicketMaterialDaoImpl") +public class PurchasepriceTicketMaterialDaoImpl extends BaseDaoImpl implements PurchasepriceTicketMaterialDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiAdjustPriceGoodsDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiAdjustPriceGoodsDaoImpl.java new file mode 100644 index 0000000..519f364 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiAdjustPriceGoodsDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.QimaiAdjustPriceGoodsDao; +import com.jwsaas.entity.food.QimaiAdjustPriceGoods; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 企迈调价单商品明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "QimaiAdjustPriceGoodsDaoImpl") +public class QimaiAdjustPriceGoodsDaoImpl extends BaseDaoImpl implements QimaiAdjustPriceGoodsDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiAdjustPriceStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiAdjustPriceStoreDaoImpl.java new file mode 100644 index 0000000..c3a5597 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiAdjustPriceStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.QimaiAdjustPriceStoreDao; +import com.jwsaas.entity.food.QimaiAdjustPriceStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 企迈调价单门店明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "QimaiAdjustPriceStoreDaoImpl") +public class QimaiAdjustPriceStoreDaoImpl extends BaseDaoImpl implements QimaiAdjustPriceStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiAdjustPriceTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiAdjustPriceTicketDaoImpl.java new file mode 100644 index 0000000..206676a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiAdjustPriceTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.QimaiAdjustPriceTicketDao; +import com.jwsaas.entity.food.QimaiAdjustPriceTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 企迈商品调价单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "QimaiAdjustPriceTicketDaoImpl") +public class QimaiAdjustPriceTicketDaoImpl extends BaseDaoImpl implements QimaiAdjustPriceTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiAttributeCategoryDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiAttributeCategoryDaoImpl.java new file mode 100644 index 0000000..586138c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiAttributeCategoryDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.QimaiAttributeCategoryDao; +import com.jwsaas.entity.food.QimaiAttributeCategory; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 企迈属性分类数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "QimaiAttributeCategoryDaoImpl") +public class QimaiAttributeCategoryDaoImpl extends BaseDaoImpl implements QimaiAttributeCategoryDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiAttributeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiAttributeDaoImpl.java new file mode 100644 index 0000000..3eb7b54 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiAttributeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.QimaiAttributeDao; +import com.jwsaas.entity.food.QimaiAttribute; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 企迈属性数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "QimaiAttributeDaoImpl") +public class QimaiAttributeDaoImpl extends BaseDaoImpl implements QimaiAttributeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiChargeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiChargeDaoImpl.java new file mode 100644 index 0000000..f6fb451 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiChargeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.QimaiChargeDao; +import com.jwsaas.entity.food.QimaiCharge; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 企迈加料信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "QimaiChargeDaoImpl") +public class QimaiChargeDaoImpl extends BaseDaoImpl implements QimaiChargeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiOrderDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiOrderDaoImpl.java new file mode 100644 index 0000000..e8f2121 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiOrderDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.QimaiOrderDao; +import com.jwsaas.entity.food.QimaiOrder; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 企迈订单表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "QimaiOrderDaoImpl") +public class QimaiOrderDaoImpl extends BaseDaoImpl implements QimaiOrderDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiOrderItemDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiOrderItemDaoImpl.java new file mode 100644 index 0000000..a5d4736 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiOrderItemDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.QimaiOrderItemDao; +import com.jwsaas.entity.food.QimaiOrderItem; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 企迈订单明细表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "QimaiOrderItemDaoImpl") +public class QimaiOrderItemDaoImpl extends BaseDaoImpl implements QimaiOrderItemDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiOrderPayDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiOrderPayDaoImpl.java new file mode 100644 index 0000000..876e2d7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiOrderPayDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.QimaiOrderPayDao; +import com.jwsaas.entity.food.QimaiOrderPay; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 企迈订单支付信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "QimaiOrderPayDaoImpl") +public class QimaiOrderPayDaoImpl extends BaseDaoImpl implements QimaiOrderPayDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductAttributeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductAttributeDaoImpl.java new file mode 100644 index 0000000..10d64a7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductAttributeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.QimaiProductAttributeDao; +import com.jwsaas.entity.food.QimaiProductAttribute; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 企迈商品属性数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "QimaiProductAttributeDaoImpl") +public class QimaiProductAttributeDaoImpl extends BaseDaoImpl implements QimaiProductAttributeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductCategoryDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductCategoryDaoImpl.java new file mode 100644 index 0000000..803d718 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductCategoryDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.QimaiProductCategoryDao; +import com.jwsaas.entity.food.QimaiProductCategory; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 企迈商品分类数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "QimaiProductCategoryDaoImpl") +public class QimaiProductCategoryDaoImpl extends BaseDaoImpl implements QimaiProductCategoryDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductChargeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductChargeDaoImpl.java new file mode 100644 index 0000000..f963b15 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductChargeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.QimaiProductChargeDao; +import com.jwsaas.entity.food.QimaiProductCharge; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 企迈商品加料信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "QimaiProductChargeDaoImpl") +public class QimaiProductChargeDaoImpl extends BaseDaoImpl implements QimaiProductChargeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductDaoImpl.java new file mode 100644 index 0000000..5afa3fb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.QimaiProductDao; +import com.jwsaas.entity.food.QimaiProduct; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 企迈商品信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "QimaiProductDaoImpl") +public class QimaiProductDaoImpl extends BaseDaoImpl implements QimaiProductDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductSpecDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductSpecDaoImpl.java new file mode 100644 index 0000000..6a20db4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductSpecDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.QimaiProductSpecDao; +import com.jwsaas.entity.food.QimaiProductSpec; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 企迈商品规格信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "QimaiProductSpecDaoImpl") +public class QimaiProductSpecDaoImpl extends BaseDaoImpl implements QimaiProductSpecDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductTemplateDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductTemplateDaoImpl.java new file mode 100644 index 0000000..1df1ce9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductTemplateDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.QimaiProductTemplateDao; +import com.jwsaas.entity.food.QimaiProductTemplate; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 企迈小程序商品模板数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "QimaiProductTemplateDaoImpl") +public class QimaiProductTemplateDaoImpl extends BaseDaoImpl implements QimaiProductTemplateDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductTemplateDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductTemplateDetailDaoImpl.java new file mode 100644 index 0000000..3699076 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductTemplateDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.QimaiProductTemplateDetailDao; +import com.jwsaas.entity.food.QimaiProductTemplateDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 企迈小程序商品模板明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "QimaiProductTemplateDetailDaoImpl") +public class QimaiProductTemplateDetailDaoImpl extends BaseDaoImpl implements QimaiProductTemplateDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductTemplateStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductTemplateStoreDaoImpl.java new file mode 100644 index 0000000..d544d9a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiProductTemplateStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.QimaiProductTemplateStoreDao; +import com.jwsaas.entity.food.QimaiProductTemplateStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 企迈小程序商品模板门店明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "QimaiProductTemplateStoreDaoImpl") +public class QimaiProductTemplateStoreDaoImpl extends BaseDaoImpl implements QimaiProductTemplateStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiStoreDaoImpl.java new file mode 100644 index 0000000..82892c7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.QimaiStoreDao; +import com.jwsaas.entity.food.QimaiStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 企迈门店表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "QimaiStoreDaoImpl") +public class QimaiStoreDaoImpl extends BaseDaoImpl implements QimaiStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiStoreLableDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiStoreLableDaoImpl.java new file mode 100644 index 0000000..ff0373e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiStoreLableDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.QimaiStoreLableDao; +import com.jwsaas.entity.food.QimaiStoreLable; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 企迈门店标签数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "QimaiStoreLableDaoImpl") +public class QimaiStoreLableDaoImpl extends BaseDaoImpl implements QimaiStoreLableDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiStoreProductDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiStoreProductDaoImpl.java new file mode 100644 index 0000000..9ca6b5c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiStoreProductDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.QimaiStoreProductDao; +import com.jwsaas.entity.food.QimaiStoreProduct; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 企迈门店商品表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "QimaiStoreProductDaoImpl") +public class QimaiStoreProductDaoImpl extends BaseDaoImpl implements QimaiStoreProductDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiSuitDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiSuitDetailDaoImpl.java new file mode 100644 index 0000000..09e7f6d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/QimaiSuitDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.QimaiSuitDetailDao; +import com.jwsaas.entity.food.QimaiSuitDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 企迈套餐明细信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "QimaiSuitDetailDaoImpl") +public class QimaiSuitDetailDaoImpl extends BaseDaoImpl implements QimaiSuitDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ReceiveDifferenceDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ReceiveDifferenceDetailDaoImpl.java new file mode 100644 index 0000000..12bcc2d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ReceiveDifferenceDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ReceiveDifferenceDetailDao; +import com.jwsaas.entity.food.ReceiveDifferenceDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 收货差异明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ReceiveDifferenceDetailDaoImpl") +public class ReceiveDifferenceDetailDaoImpl extends BaseDaoImpl implements ReceiveDifferenceDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ReceiveDifferenceTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ReceiveDifferenceTicketDaoImpl.java new file mode 100644 index 0000000..4f412b2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ReceiveDifferenceTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ReceiveDifferenceTicketDao; +import com.jwsaas.entity.food.ReceiveDifferenceTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 配送收货差异单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ReceiveDifferenceTicketDaoImpl") +public class ReceiveDifferenceTicketDaoImpl extends BaseDaoImpl implements ReceiveDifferenceTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ReceiveDifferenceTicketLogDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ReceiveDifferenceTicketLogDaoImpl.java new file mode 100644 index 0000000..d8fc5ed --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ReceiveDifferenceTicketLogDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ReceiveDifferenceTicketLogDao; +import com.jwsaas.entity.food.ReceiveDifferenceTicketLog; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 配送差异单操作记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ReceiveDifferenceTicketLogDaoImpl") +public class ReceiveDifferenceTicketLogDaoImpl extends BaseDaoImpl implements ReceiveDifferenceTicketLogDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ReceiveDifferenceTicketPayDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ReceiveDifferenceTicketPayDaoImpl.java new file mode 100644 index 0000000..23de8a6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ReceiveDifferenceTicketPayDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ReceiveDifferenceTicketPayDao; +import com.jwsaas.entity.food.ReceiveDifferenceTicketPay; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 配送差异金额明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ReceiveDifferenceTicketPayDaoImpl") +public class ReceiveDifferenceTicketPayDaoImpl extends BaseDaoImpl implements ReceiveDifferenceTicketPayDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ReceiveGoodsDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ReceiveGoodsDetailDaoImpl.java new file mode 100644 index 0000000..14c2884 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ReceiveGoodsDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ReceiveGoodsDetailDao; +import com.jwsaas.entity.food.ReceiveGoodsDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 收货单明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ReceiveGoodsDetailDaoImpl") +public class ReceiveGoodsDetailDaoImpl extends BaseDaoImpl implements ReceiveGoodsDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ReceiveGoodsTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ReceiveGoodsTicketDaoImpl.java new file mode 100644 index 0000000..29a44c5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ReceiveGoodsTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ReceiveGoodsTicketDao; +import com.jwsaas.entity.food.ReceiveGoodsTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 配送收货单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ReceiveGoodsTicketDaoImpl") +public class ReceiveGoodsTicketDaoImpl extends BaseDaoImpl implements ReceiveGoodsTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/RechargeParameterDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/RechargeParameterDaoImpl.java new file mode 100644 index 0000000..8725c92 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/RechargeParameterDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.RechargeParameterDao; +import com.jwsaas.entity.food.RechargeParameter; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 充值账户方案数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "RechargeParameterDaoImpl") +public class RechargeParameterDaoImpl extends BaseDaoImpl implements RechargeParameterDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/RechargeParameterStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/RechargeParameterStoreDaoImpl.java new file mode 100644 index 0000000..10e219b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/RechargeParameterStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.RechargeParameterStoreDao; +import com.jwsaas.entity.food.RechargeParameterStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 充值账户门店关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "RechargeParameterStoreDaoImpl") +public class RechargeParameterStoreDaoImpl extends BaseDaoImpl implements RechargeParameterStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SaleClearDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SaleClearDaoImpl.java new file mode 100644 index 0000000..c563bcc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SaleClearDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.SaleClearDao; +import com.jwsaas.entity.food.SaleClear; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店估清表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "SaleClearDaoImpl") +public class SaleClearDaoImpl extends BaseDaoImpl implements SaleClearDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ServerDataVersionDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ServerDataVersionDaoImpl.java new file mode 100644 index 0000000..40513ab --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ServerDataVersionDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ServerDataVersionDao; +import com.jwsaas.entity.food.ServerDataVersion; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 数据版本数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ServerDataVersionDaoImpl") +public class ServerDataVersionDaoImpl extends BaseDaoImpl implements ServerDataVersionDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ShopMeituanOrderDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ShopMeituanOrderDaoImpl.java new file mode 100644 index 0000000..d584ebb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ShopMeituanOrderDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ShopMeituanOrderDao; +import com.jwsaas.entity.food.ShopMeituanOrder; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 美团商家订单表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ShopMeituanOrderDaoImpl") +public class ShopMeituanOrderDaoImpl extends BaseDaoImpl implements ShopMeituanOrderDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ShopMeituanOrderExtraDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ShopMeituanOrderExtraDaoImpl.java new file mode 100644 index 0000000..74763d8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ShopMeituanOrderExtraDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ShopMeituanOrderExtraDao; +import com.jwsaas.entity.food.ShopMeituanOrderExtra; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 美团商家订单优惠信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ShopMeituanOrderExtraDaoImpl") +public class ShopMeituanOrderExtraDaoImpl extends BaseDaoImpl implements ShopMeituanOrderExtraDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ShopMeituanOrderItemDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ShopMeituanOrderItemDaoImpl.java new file mode 100644 index 0000000..bfcc514 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ShopMeituanOrderItemDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ShopMeituanOrderItemDao; +import com.jwsaas.entity.food.ShopMeituanOrderItem; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 美团商家订单明细表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ShopMeituanOrderItemDaoImpl") +public class ShopMeituanOrderItemDaoImpl extends BaseDaoImpl implements ShopMeituanOrderItemDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SplitFoodAccount2DaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SplitFoodAccount2DaoImpl.java new file mode 100644 index 0000000..220347c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SplitFoodAccount2DaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.SplitFoodAccount2Dao; +import com.jwsaas.entity.food.SplitFoodAccount2; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 菜品分户账户关联表2数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "SplitFoodAccount2DaoImpl") +public class SplitFoodAccount2DaoImpl extends BaseDaoImpl implements SplitFoodAccount2Dao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SplitFoodAccountDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SplitFoodAccountDaoImpl.java new file mode 100644 index 0000000..0e23560 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SplitFoodAccountDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.SplitFoodAccountDao; +import com.jwsaas.entity.food.SplitFoodAccount; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 菜品分户账户关联表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "SplitFoodAccountDaoImpl") +public class SplitFoodAccountDaoImpl extends BaseDaoImpl implements SplitFoodAccountDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SplitPayLogDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SplitPayLogDaoImpl.java new file mode 100644 index 0000000..5a3864a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SplitPayLogDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.SplitPayLogDao; +import com.jwsaas.entity.food.SplitPayLog; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 分帐错误日志上传数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "SplitPayLogDaoImpl") +public class SplitPayLogDaoImpl extends BaseDaoImpl implements SplitPayLogDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SplitPayResultDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SplitPayResultDaoImpl.java new file mode 100644 index 0000000..90f439f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SplitPayResultDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.SplitPayResultDao; +import com.jwsaas.entity.food.SplitPayResult; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 分店分帐结果数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "SplitPayResultDaoImpl") +public class SplitPayResultDaoImpl extends BaseDaoImpl implements SplitPayResultDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SplitShopAccountDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SplitShopAccountDaoImpl.java new file mode 100644 index 0000000..cce74fe --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SplitShopAccountDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.SplitShopAccountDao; +import com.jwsaas.entity.food.SplitShopAccount; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 店铺分帐户表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "SplitShopAccountDaoImpl") +public class SplitShopAccountDaoImpl extends BaseDaoImpl implements SplitShopAccountDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SplitShopWithdrawalDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SplitShopWithdrawalDaoImpl.java new file mode 100644 index 0000000..1a9c16b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SplitShopWithdrawalDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.SplitShopWithdrawalDao; +import com.jwsaas.entity.food.SplitShopWithdrawal; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 分店提现记录表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "SplitShopWithdrawalDaoImpl") +public class SplitShopWithdrawalDaoImpl extends BaseDaoImpl implements SplitShopWithdrawalDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SplitStorePayDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SplitStorePayDaoImpl.java new file mode 100644 index 0000000..15949ba --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SplitStorePayDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.SplitStorePayDao; +import com.jwsaas.entity.food.SplitStorePay; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 分店分帐流水数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "SplitStorePayDaoImpl") +public class SplitStorePayDaoImpl extends BaseDaoImpl implements SplitStorePayDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StorageDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StorageDaoImpl.java new file mode 100644 index 0000000..6581f8f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StorageDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StorageDao; +import com.jwsaas.entity.food.Storage; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 总部库位数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StorageDaoImpl") +public class StorageDaoImpl extends BaseDaoImpl implements StorageDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StorageStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StorageStoreDaoImpl.java new file mode 100644 index 0000000..9b775d4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StorageStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StorageStoreDao; +import com.jwsaas.entity.food.StorageStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店仓库关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StorageStoreDaoImpl") +public class StorageStoreDaoImpl extends BaseDaoImpl implements StorageStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StorageTypeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StorageTypeDaoImpl.java new file mode 100644 index 0000000..5faee65 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StorageTypeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StorageTypeDao; +import com.jwsaas.entity.food.StorageType; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 总部库位类型数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StorageTypeDaoImpl") +public class StorageTypeDaoImpl extends BaseDaoImpl implements StorageTypeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreAccountDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreAccountDaoImpl.java new file mode 100644 index 0000000..209f9f8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreAccountDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreAccountDao; +import com.jwsaas.entity.food.StoreAccount; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店余额账户数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreAccountDaoImpl") +public class StoreAccountDaoImpl extends BaseDaoImpl implements StoreAccountDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreAccountDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreAccountDetailDaoImpl.java new file mode 100644 index 0000000..a12fe4f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreAccountDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreAccountDetailDao; +import com.jwsaas.entity.food.StoreAccountDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店余额账户明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreAccountDetailDaoImpl") +public class StoreAccountDetailDaoImpl extends BaseDaoImpl implements StoreAccountDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreAccountRechargeParameterDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreAccountRechargeParameterDaoImpl.java new file mode 100644 index 0000000..0a1591a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreAccountRechargeParameterDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreAccountRechargeParameterDao; +import com.jwsaas.entity.food.StoreAccountRechargeParameter; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店账户充值参数方案数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreAccountRechargeParameterDaoImpl") +public class StoreAccountRechargeParameterDaoImpl extends BaseDaoImpl implements StoreAccountRechargeParameterDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreAccountRechargeRecordDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreAccountRechargeRecordDaoImpl.java new file mode 100644 index 0000000..c1cff5b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreAccountRechargeRecordDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreAccountRechargeRecordDao; +import com.jwsaas.entity.food.StoreAccountRechargeRecord; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店账户充值记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreAccountRechargeRecordDaoImpl") +public class StoreAccountRechargeRecordDaoImpl extends BaseDaoImpl implements StoreAccountRechargeRecordDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreAreaDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreAreaDaoImpl.java new file mode 100644 index 0000000..c35735f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreAreaDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreAreaDao; +import com.jwsaas.entity.food.StoreArea; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店区域数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreAreaDaoImpl") +public class StoreAreaDaoImpl extends BaseDaoImpl implements StoreAreaDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBrandDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBrandDaoImpl.java new file mode 100644 index 0000000..97858d1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBrandDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreBrandDao; +import com.jwsaas.entity.food.StoreBrand; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 加盟品牌数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreBrandDaoImpl") +public class StoreBrandDaoImpl extends BaseDaoImpl implements StoreBrandDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBusinessTicketCheckDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBusinessTicketCheckDaoImpl.java new file mode 100644 index 0000000..fcbed28 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBusinessTicketCheckDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreBusinessTicketCheckDao; +import com.jwsaas.entity.food.StoreBusinessTicketCheck; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 前台销售单上传校验数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreBusinessTicketCheckDaoImpl") +public class StoreBusinessTicketCheckDaoImpl extends BaseDaoImpl implements StoreBusinessTicketCheckDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBusinessTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBusinessTicketDaoImpl.java new file mode 100644 index 0000000..57bade5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBusinessTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreBusinessTicketDao; +import com.jwsaas.entity.food.StoreBusinessTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 前台销售单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreBusinessTicketDaoImpl") +public class StoreBusinessTicketDaoImpl extends BaseDaoImpl implements StoreBusinessTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBusinessTicketDaysummaryDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBusinessTicketDaysummaryDaoImpl.java new file mode 100644 index 0000000..6567539 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBusinessTicketDaysummaryDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreBusinessTicketDaysummaryDao; +import com.jwsaas.entity.food.StoreBusinessTicketDaysummary; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 前台销售日汇总数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreBusinessTicketDaysummaryDaoImpl") +public class StoreBusinessTicketDaysummaryDaoImpl extends BaseDaoImpl implements StoreBusinessTicketDaysummaryDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBusinessTicketDeliveryDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBusinessTicketDeliveryDaoImpl.java new file mode 100644 index 0000000..a68c5f9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBusinessTicketDeliveryDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreBusinessTicketDeliveryDao; +import com.jwsaas.entity.food.StoreBusinessTicketDelivery; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 前台销售单外送信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreBusinessTicketDeliveryDaoImpl") +public class StoreBusinessTicketDeliveryDaoImpl extends BaseDaoImpl implements StoreBusinessTicketDeliveryDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBusinessTicketInfoDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBusinessTicketInfoDaoImpl.java new file mode 100644 index 0000000..72c9085 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBusinessTicketInfoDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreBusinessTicketInfoDao; +import com.jwsaas.entity.food.StoreBusinessTicketInfo; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 前台销售单优惠明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreBusinessTicketInfoDaoImpl") +public class StoreBusinessTicketInfoDaoImpl extends BaseDaoImpl implements StoreBusinessTicketInfoDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBusinessTicketInfoDaysummaryDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBusinessTicketInfoDaysummaryDaoImpl.java new file mode 100644 index 0000000..b6f18f3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBusinessTicketInfoDaysummaryDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreBusinessTicketInfoDaysummaryDao; +import com.jwsaas.entity.food.StoreBusinessTicketInfoDaysummary; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 前台销售单优惠日汇总数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreBusinessTicketInfoDaysummaryDaoImpl") +public class StoreBusinessTicketInfoDaysummaryDaoImpl extends BaseDaoImpl implements StoreBusinessTicketInfoDaysummaryDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBusinessTicketTableDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBusinessTicketTableDaoImpl.java new file mode 100644 index 0000000..24c50c2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreBusinessTicketTableDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreBusinessTicketTableDao; +import com.jwsaas.entity.food.StoreBusinessTicketTable; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 前台销售单桌台信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreBusinessTicketTableDaoImpl") +public class StoreBusinessTicketTableDaoImpl extends BaseDaoImpl implements StoreBusinessTicketTableDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreCostManageDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreCostManageDaoImpl.java new file mode 100644 index 0000000..70cde33 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreCostManageDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreCostManageDao; +import com.jwsaas.entity.food.StoreCostManage; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店费用管理数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreCostManageDaoImpl") +public class StoreCostManageDaoImpl extends BaseDaoImpl implements StoreCostManageDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreCostManageLogDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreCostManageLogDaoImpl.java new file mode 100644 index 0000000..c0a6619 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreCostManageLogDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreCostManageLogDao; +import com.jwsaas.entity.food.StoreCostManageLog; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店费用扣款操作记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreCostManageLogDaoImpl") +public class StoreCostManageLogDaoImpl extends BaseDaoImpl implements StoreCostManageLogDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreCostManageStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreCostManageStoreDaoImpl.java new file mode 100644 index 0000000..0eb906b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreCostManageStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreCostManageStoreDao; +import com.jwsaas.entity.food.StoreCostManageStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 扣款费用门店关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreCostManageStoreDaoImpl") +public class StoreCostManageStoreDaoImpl extends BaseDaoImpl implements StoreCostManageStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreCostRevenueDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreCostRevenueDaoImpl.java new file mode 100644 index 0000000..644b7ac --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreCostRevenueDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreCostRevenueDao; +import com.jwsaas.entity.food.StoreCostRevenue; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 非营业收入支出登记数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreCostRevenueDaoImpl") +public class StoreCostRevenueDaoImpl extends BaseDaoImpl implements StoreCostRevenueDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreDaoImpl.java new file mode 100644 index 0000000..0bdabf1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreDao; +import com.jwsaas.entity.food.Store; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreDaoImpl") +public class StoreDaoImpl extends BaseDaoImpl implements StoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreDeliveryOrderDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreDeliveryOrderDaoImpl.java new file mode 100644 index 0000000..df0f1d9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreDeliveryOrderDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreDeliveryOrderDao; +import com.jwsaas.entity.food.StoreDeliveryOrder; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 前台外送单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreDeliveryOrderDaoImpl") +public class StoreDeliveryOrderDaoImpl extends BaseDaoImpl implements StoreDeliveryOrderDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreDeliveryOrderItemDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreDeliveryOrderItemDaoImpl.java new file mode 100644 index 0000000..dc23957 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreDeliveryOrderItemDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreDeliveryOrderItemDao; +import com.jwsaas.entity.food.StoreDeliveryOrderItem; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 前台外送单明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreDeliveryOrderItemDaoImpl") +public class StoreDeliveryOrderItemDaoImpl extends BaseDaoImpl implements StoreDeliveryOrderItemDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreDepartmentDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreDepartmentDaoImpl.java new file mode 100644 index 0000000..0ca3cbd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreDepartmentDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreDepartmentDao; +import com.jwsaas.entity.food.StoreDepartment; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店部门数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreDepartmentDaoImpl") +public class StoreDepartmentDaoImpl extends BaseDaoImpl implements StoreDepartmentDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreDispatchAccountDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreDispatchAccountDaoImpl.java new file mode 100644 index 0000000..591b566 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreDispatchAccountDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreDispatchAccountDao; +import com.jwsaas.entity.food.StoreDispatchAccount; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 配送结算账号数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreDispatchAccountDaoImpl") +public class StoreDispatchAccountDaoImpl extends BaseDaoImpl implements StoreDispatchAccountDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreDispatchAccountLogDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreDispatchAccountLogDaoImpl.java new file mode 100644 index 0000000..aac0285 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreDispatchAccountLogDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreDispatchAccountLogDao; +import com.jwsaas.entity.food.StoreDispatchAccountLog; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 配送结算账号金额变动明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreDispatchAccountLogDaoImpl") +public class StoreDispatchAccountLogDaoImpl extends BaseDaoImpl implements StoreDispatchAccountLogDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreEnchashmentRecordDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreEnchashmentRecordDaoImpl.java new file mode 100644 index 0000000..4ba47ce --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreEnchashmentRecordDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreEnchashmentRecordDao; +import com.jwsaas.entity.food.StoreEnchashmentRecord; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店余额提现记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreEnchashmentRecordDaoImpl") +public class StoreEnchashmentRecordDaoImpl extends BaseDaoImpl implements StoreEnchashmentRecordDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreEnchashmentRecordLogDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreEnchashmentRecordLogDaoImpl.java new file mode 100644 index 0000000..4dae576 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreEnchashmentRecordLogDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreEnchashmentRecordLogDao; +import com.jwsaas.entity.food.StoreEnchashmentRecordLog; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店余额提现操作记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreEnchashmentRecordLogDaoImpl") +public class StoreEnchashmentRecordLogDaoImpl extends BaseDaoImpl implements StoreEnchashmentRecordLogDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreFeeCutLogDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreFeeCutLogDaoImpl.java new file mode 100644 index 0000000..db0c3fb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreFeeCutLogDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreFeeCutLogDao; +import com.jwsaas.entity.food.StoreFeeCutLog; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店费用扣款记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreFeeCutLogDaoImpl") +public class StoreFeeCutLogDaoImpl extends BaseDaoImpl implements StoreFeeCutLogDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreHandoverDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreHandoverDaoImpl.java new file mode 100644 index 0000000..df6c13a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreHandoverDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreHandoverDao; +import com.jwsaas.entity.food.StoreHandover; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店交班主表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreHandoverDaoImpl") +public class StoreHandoverDaoImpl extends BaseDaoImpl implements StoreHandoverDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreHandoverDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreHandoverDetailDaoImpl.java new file mode 100644 index 0000000..1071909 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreHandoverDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreHandoverDetailDao; +import com.jwsaas.entity.food.StoreHandoverDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店交班明细表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreHandoverDetailDaoImpl") +public class StoreHandoverDetailDaoImpl extends BaseDaoImpl implements StoreHandoverDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreHandoverDetailPartDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreHandoverDetailPartDaoImpl.java new file mode 100644 index 0000000..a76ece4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreHandoverDetailPartDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreHandoverDetailPartDao; +import com.jwsaas.entity.food.StoreHandoverDetailPart; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店交班明细表(杯子/碗数)数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreHandoverDetailPartDaoImpl") +public class StoreHandoverDetailPartDaoImpl extends BaseDaoImpl implements StoreHandoverDetailPartDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreHandoverDetailPayDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreHandoverDetailPayDaoImpl.java new file mode 100644 index 0000000..0479780 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreHandoverDetailPayDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreHandoverDetailPayDao; +import com.jwsaas.entity.food.StoreHandoverDetailPay; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店交班支付方式明细表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreHandoverDetailPayDaoImpl") +public class StoreHandoverDetailPayDaoImpl extends BaseDaoImpl implements StoreHandoverDetailPayDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreLoginLogDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreLoginLogDaoImpl.java new file mode 100644 index 0000000..4222729 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreLoginLogDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreLoginLogDao; +import com.jwsaas.entity.food.StoreLoginLog; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店登录日志数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreLoginLogDaoImpl") +public class StoreLoginLogDaoImpl extends BaseDaoImpl implements StoreLoginLogDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreOperationLogDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreOperationLogDaoImpl.java new file mode 100644 index 0000000..383ec5e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreOperationLogDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreOperationLogDao; +import com.jwsaas.entity.food.StoreOperationLog; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 前台操作日志记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreOperationLogDaoImpl") +public class StoreOperationLogDaoImpl extends BaseDaoImpl implements StoreOperationLogDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreOrderProductDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreOrderProductDaoImpl.java new file mode 100644 index 0000000..2ad613e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreOrderProductDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreOrderProductDao; +import com.jwsaas.entity.food.StoreOrderProduct; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店产品销售记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreOrderProductDaoImpl") +public class StoreOrderProductDaoImpl extends BaseDaoImpl implements StoreOrderProductDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreOrderProductDaysummaryDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreOrderProductDaysummaryDaoImpl.java new file mode 100644 index 0000000..909e8dd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreOrderProductDaysummaryDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreOrderProductDaysummaryDao; +import com.jwsaas.entity.food.StoreOrderProductDaysummary; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 前台单品销售日汇总数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreOrderProductDaysummaryDaoImpl") +public class StoreOrderProductDaysummaryDaoImpl extends BaseDaoImpl implements StoreOrderProductDaysummaryDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreOrderProductInfoDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreOrderProductInfoDaoImpl.java new file mode 100644 index 0000000..b639bce --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreOrderProductInfoDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreOrderProductInfoDao; +import com.jwsaas.entity.food.StoreOrderProductInfo; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店产品销售记录优惠明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreOrderProductInfoDaoImpl") +public class StoreOrderProductInfoDaoImpl extends BaseDaoImpl implements StoreOrderProductInfoDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreOrderProductInfoDaysummaryDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreOrderProductInfoDaysummaryDaoImpl.java new file mode 100644 index 0000000..1e1afed --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreOrderProductInfoDaysummaryDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreOrderProductInfoDaysummaryDao; +import com.jwsaas.entity.food.StoreOrderProductInfoDaysummary; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 前台产品销售优惠日汇总数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreOrderProductInfoDaysummaryDaoImpl") +public class StoreOrderProductInfoDaysummaryDaoImpl extends BaseDaoImpl implements StoreOrderProductInfoDaysummaryDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreOrderProductMakeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreOrderProductMakeDaoImpl.java new file mode 100644 index 0000000..7569555 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreOrderProductMakeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreOrderProductMakeDao; +import com.jwsaas.entity.food.StoreOrderProductMake; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店销售单做法数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreOrderProductMakeDaoImpl") +public class StoreOrderProductMakeDaoImpl extends BaseDaoImpl implements StoreOrderProductMakeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreOrderProductMakeDaysummaryDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreOrderProductMakeDaysummaryDaoImpl.java new file mode 100644 index 0000000..2a7ceac --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreOrderProductMakeDaysummaryDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreOrderProductMakeDaysummaryDao; +import com.jwsaas.entity.food.StoreOrderProductMakeDaysummary; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 前台销售单做法日汇总数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreOrderProductMakeDaysummaryDaoImpl") +public class StoreOrderProductMakeDaysummaryDaoImpl extends BaseDaoImpl implements StoreOrderProductMakeDaysummaryDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StorePayDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StorePayDaoImpl.java new file mode 100644 index 0000000..bec1cda --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StorePayDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StorePayDao; +import com.jwsaas.entity.food.StorePay; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店收银流水数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StorePayDaoImpl") +public class StorePayDaoImpl extends BaseDaoImpl implements StorePayDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StorePayDaysummaryDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StorePayDaysummaryDaoImpl.java new file mode 100644 index 0000000..803b64f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StorePayDaysummaryDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StorePayDaysummaryDao; +import com.jwsaas.entity.food.StorePayDaysummary; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 前台支付日汇总数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StorePayDaysummaryDaoImpl") +public class StorePayDaysummaryDaoImpl extends BaseDaoImpl implements StorePayDaysummaryDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreProductDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreProductDaoImpl.java new file mode 100644 index 0000000..4fda20d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreProductDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreProductDao; +import com.jwsaas.entity.food.StoreProduct; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店商品关联表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreProductDaoImpl") +public class StoreProductDaoImpl extends BaseDaoImpl implements StoreProductDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreProductSaleStockDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreProductSaleStockDaoImpl.java new file mode 100644 index 0000000..c5fa669 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreProductSaleStockDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreProductSaleStockDao; +import com.jwsaas.entity.food.StoreProductSaleStock; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店商品规格库存数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreProductSaleStockDaoImpl") +public class StoreProductSaleStockDaoImpl extends BaseDaoImpl implements StoreProductSaleStockDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStockCheckTemplateDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStockCheckTemplateDaoImpl.java new file mode 100644 index 0000000..2033ed7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStockCheckTemplateDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreStockCheckTemplateDao; +import com.jwsaas.entity.food.StoreStockCheckTemplate; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 总部门店库存盘点模板数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreStockCheckTemplateDaoImpl") +public class StoreStockCheckTemplateDaoImpl extends BaseDaoImpl implements StoreStockCheckTemplateDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStockCheckTemplateDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStockCheckTemplateDetailDaoImpl.java new file mode 100644 index 0000000..74e27ce --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStockCheckTemplateDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreStockCheckTemplateDetailDao; +import com.jwsaas.entity.food.StoreStockCheckTemplateDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 总部门店库存盘点模块明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreStockCheckTemplateDetailDaoImpl") +public class StoreStockCheckTemplateDetailDaoImpl extends BaseDaoImpl implements StoreStockCheckTemplateDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStockCheckTemplateStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStockCheckTemplateStoreDaoImpl.java new file mode 100644 index 0000000..b3f0a74 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStockCheckTemplateStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreStockCheckTemplateStoreDao; +import com.jwsaas.entity.food.StoreStockCheckTemplateStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 总部门店库存盘点模板门店关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreStockCheckTemplateStoreDaoImpl") +public class StoreStockCheckTemplateStoreDaoImpl extends BaseDaoImpl implements StoreStockCheckTemplateStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStockCheckTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStockCheckTicketDaoImpl.java new file mode 100644 index 0000000..144c5bf --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStockCheckTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreStockCheckTicketDao; +import com.jwsaas.entity.food.StoreStockCheckTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店库存盘点单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreStockCheckTicketDaoImpl") +public class StoreStockCheckTicketDaoImpl extends BaseDaoImpl implements StoreStockCheckTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStockCheckTicketDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStockCheckTicketDetailDaoImpl.java new file mode 100644 index 0000000..1a49a01 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStockCheckTicketDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreStockCheckTicketDetailDao; +import com.jwsaas.entity.food.StoreStockCheckTicketDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店库存盘点单明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreStockCheckTicketDetailDaoImpl") +public class StoreStockCheckTicketDetailDaoImpl extends BaseDaoImpl implements StoreStockCheckTicketDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStockCheckTicketLogDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStockCheckTicketLogDaoImpl.java new file mode 100644 index 0000000..8b813d3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStockCheckTicketLogDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreStockCheckTicketLogDao; +import com.jwsaas.entity.food.StoreStockCheckTicketLog; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店库存盘点单操作记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreStockCheckTicketLogDaoImpl") +public class StoreStockCheckTicketLogDaoImpl extends BaseDaoImpl implements StoreStockCheckTicketLogDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStorageDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStorageDaoImpl.java new file mode 100644 index 0000000..d3a3903 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStorageDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreStorageDao; +import com.jwsaas.entity.food.StoreStorage; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店仓库数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreStorageDaoImpl") +public class StoreStorageDaoImpl extends BaseDaoImpl implements StoreStorageDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStorageOutTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStorageOutTicketDaoImpl.java new file mode 100644 index 0000000..9e6a8f8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStorageOutTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreStorageOutTicketDao; +import com.jwsaas.entity.food.StoreStorageOutTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店出库单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreStorageOutTicketDaoImpl") +public class StoreStorageOutTicketDaoImpl extends BaseDaoImpl implements StoreStorageOutTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStorageOutTicketDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStorageOutTicketDetailDaoImpl.java new file mode 100644 index 0000000..aa42122 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStorageOutTicketDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreStorageOutTicketDetailDao; +import com.jwsaas.entity.food.StoreStorageOutTicketDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店出库单明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreStorageOutTicketDetailDaoImpl") +public class StoreStorageOutTicketDetailDaoImpl extends BaseDaoImpl implements StoreStorageOutTicketDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStorageOutTicketLogDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStorageOutTicketLogDaoImpl.java new file mode 100644 index 0000000..c6e17da --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStorageOutTicketLogDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreStorageOutTicketLogDao; +import com.jwsaas.entity.food.StoreStorageOutTicketLog; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店出库单操作记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreStorageOutTicketLogDaoImpl") +public class StoreStorageOutTicketLogDaoImpl extends BaseDaoImpl implements StoreStorageOutTicketLogDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStorageTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStorageTicketDaoImpl.java new file mode 100644 index 0000000..86efc2c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStorageTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreStorageTicketDao; +import com.jwsaas.entity.food.StoreStorageTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店入库单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreStorageTicketDaoImpl") +public class StoreStorageTicketDaoImpl extends BaseDaoImpl implements StoreStorageTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStorageTicketDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStorageTicketDetailDaoImpl.java new file mode 100644 index 0000000..96e83f0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStorageTicketDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreStorageTicketDetailDao; +import com.jwsaas.entity.food.StoreStorageTicketDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店入库单明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreStorageTicketDetailDaoImpl") +public class StoreStorageTicketDetailDaoImpl extends BaseDaoImpl implements StoreStorageTicketDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStorageTicketLogDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStorageTicketLogDaoImpl.java new file mode 100644 index 0000000..c06eb5e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreStorageTicketLogDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreStorageTicketLogDao; +import com.jwsaas.entity.food.StoreStorageTicketLog; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店入库单操作记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreStorageTicketLogDaoImpl") +public class StoreStorageTicketLogDaoImpl extends BaseDaoImpl implements StoreStorageTicketLogDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreTypeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreTypeDaoImpl.java new file mode 100644 index 0000000..015ab87 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreTypeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreTypeDao; +import com.jwsaas.entity.food.StoreType; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店类型数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreTypeDaoImpl") +public class StoreTypeDaoImpl extends BaseDaoImpl implements StoreTypeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreWorkerDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreWorkerDaoImpl.java new file mode 100644 index 0000000..400de25 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreWorkerDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreWorkerDao; +import com.jwsaas.entity.food.StoreWorker; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店员工管理数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreWorkerDaoImpl") +public class StoreWorkerDaoImpl extends BaseDaoImpl implements StoreWorkerDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreWorkerExtDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreWorkerExtDaoImpl.java new file mode 100644 index 0000000..6fc6d1a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreWorkerExtDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreWorkerExtDao; +import com.jwsaas.entity.food.StoreWorkerExt; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店员工扩展信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreWorkerExtDaoImpl") +public class StoreWorkerExtDaoImpl extends BaseDaoImpl implements StoreWorkerExtDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreWorkerRoleDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreWorkerRoleDaoImpl.java new file mode 100644 index 0000000..3869805 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoreWorkerRoleDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoreWorkerRoleDao; +import com.jwsaas.entity.food.StoreWorkerRole; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 员工前台角色表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoreWorkerRoleDaoImpl") +public class StoreWorkerRoleDaoImpl extends BaseDaoImpl implements StoreWorkerRoleDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoretableAreaDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoretableAreaDaoImpl.java new file mode 100644 index 0000000..db42491 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoretableAreaDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoretableAreaDao; +import com.jwsaas.entity.food.StoretableArea; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 餐桌区域数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoretableAreaDaoImpl") +public class StoretableAreaDaoImpl extends BaseDaoImpl implements StoretableAreaDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoretableDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoretableDaoImpl.java new file mode 100644 index 0000000..49952bd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoretableDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoretableDao; +import com.jwsaas.entity.food.Storetable; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 餐桌资料数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoretableDaoImpl") +public class StoretableDaoImpl extends BaseDaoImpl implements StoretableDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoretableTypeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoretableTypeDaoImpl.java new file mode 100644 index 0000000..cc8ef78 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/StoretableTypeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.StoretableTypeDao; +import com.jwsaas.entity.food.StoretableType; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 餐桌类型数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "StoretableTypeDaoImpl") +public class StoretableTypeDaoImpl extends BaseDaoImpl implements StoretableTypeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SupplierDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SupplierDaoImpl.java new file mode 100644 index 0000000..78d23a9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SupplierDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.SupplierDao; +import com.jwsaas.entity.food.Supplier; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 供应商信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "SupplierDaoImpl") +public class SupplierDaoImpl extends BaseDaoImpl implements SupplierDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SupplierTypeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SupplierTypeDaoImpl.java new file mode 100644 index 0000000..441b352 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/SupplierTypeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.SupplierTypeDao; +import com.jwsaas.entity.food.SupplierType; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 供应商类别数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "SupplierTypeDaoImpl") +public class SupplierTypeDaoImpl extends BaseDaoImpl implements SupplierTypeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/TaskScheduleDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/TaskScheduleDaoImpl.java new file mode 100644 index 0000000..9fff08d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/TaskScheduleDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.TaskScheduleDao; +import com.jwsaas.entity.food.TaskSchedule; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 任务管理数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "TaskScheduleDaoImpl") +public class TaskScheduleDaoImpl extends BaseDaoImpl implements TaskScheduleDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ThuselevelTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ThuselevelTicketDaoImpl.java new file mode 100644 index 0000000..9fddc63 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ThuselevelTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ThuselevelTicketDao; +import com.jwsaas.entity.food.ThuselevelTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 万元用量管理数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ThuselevelTicketDaoImpl") +public class ThuselevelTicketDaoImpl extends BaseDaoImpl implements ThuselevelTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ThuselevelTicketMaterialDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ThuselevelTicketMaterialDaoImpl.java new file mode 100644 index 0000000..a06fede --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ThuselevelTicketMaterialDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ThuselevelTicketMaterialDao; +import com.jwsaas.entity.food.ThuselevelTicketMaterial; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 万元用量原料数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ThuselevelTicketMaterialDaoImpl") +public class ThuselevelTicketMaterialDaoImpl extends BaseDaoImpl implements ThuselevelTicketMaterialDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ThuselevelTicketStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ThuselevelTicketStoreDaoImpl.java new file mode 100644 index 0000000..ec19a31 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/ThuselevelTicketStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.ThuselevelTicketStoreDao; +import com.jwsaas.entity.food.ThuselevelTicketStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 万元用量单门店数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "ThuselevelTicketStoreDaoImpl") +public class ThuselevelTicketStoreDaoImpl extends BaseDaoImpl implements ThuselevelTicketStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/TicketPrintSettingDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/TicketPrintSettingDaoImpl.java new file mode 100644 index 0000000..273bc6a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/TicketPrintSettingDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.TicketPrintSettingDao; +import com.jwsaas.entity.food.TicketPrintSetting; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 单据打印设置数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "TicketPrintSettingDaoImpl") +public class TicketPrintSettingDaoImpl extends BaseDaoImpl implements TicketPrintSettingDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/TidianOrderDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/TidianOrderDaoImpl.java new file mode 100644 index 0000000..0e5d67b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/TidianOrderDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.TidianOrderDao; +import com.jwsaas.entity.food.TidianOrder; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 提点订单表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "TidianOrderDaoImpl") +public class TidianOrderDaoImpl extends BaseDaoImpl implements TidianOrderDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/TidianOrderDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/TidianOrderDetailDaoImpl.java new file mode 100644 index 0000000..471e4c5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/TidianOrderDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.TidianOrderDetailDao; +import com.jwsaas.entity.food.TidianOrderDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 提点订单详情数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "TidianOrderDetailDaoImpl") +public class TidianOrderDetailDaoImpl extends BaseDaoImpl implements TidianOrderDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/TidianOrderPayDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/TidianOrderPayDaoImpl.java new file mode 100644 index 0000000..4a43d29 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/TidianOrderPayDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.TidianOrderPayDao; +import com.jwsaas.entity.food.TidianOrderPay; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 提点订单支付数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "TidianOrderPayDaoImpl") +public class TidianOrderPayDaoImpl extends BaseDaoImpl implements TidianOrderPayDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/TidianStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/TidianStoreDaoImpl.java new file mode 100644 index 0000000..dfe8ee5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/TidianStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.TidianStoreDao; +import com.jwsaas.entity.food.TidianStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 提点门店表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "TidianStoreDaoImpl") +public class TidianStoreDaoImpl extends BaseDaoImpl implements TidianStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VisitorAddressDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VisitorAddressDaoImpl.java new file mode 100644 index 0000000..fbe0a50 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VisitorAddressDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.VisitorAddressDao; +import com.jwsaas.entity.food.VisitorAddress; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 熟客常用地址数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "VisitorAddressDaoImpl") +public class VisitorAddressDaoImpl extends BaseDaoImpl implements VisitorAddressDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VisitorDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VisitorDaoImpl.java new file mode 100644 index 0000000..5aaa964 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VisitorDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.VisitorDao; +import com.jwsaas.entity.food.Visitor; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 熟客信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "VisitorDaoImpl") +public class VisitorDaoImpl extends BaseDaoImpl implements VisitorDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VisitorTagDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VisitorTagDaoImpl.java new file mode 100644 index 0000000..10bcc2b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VisitorTagDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.VisitorTagDao; +import com.jwsaas.entity.food.VisitorTag; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 熟客标签数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "VisitorTagDaoImpl") +public class VisitorTagDaoImpl extends BaseDaoImpl implements VisitorTagDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposAdPictureDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposAdPictureDaoImpl.java new file mode 100644 index 0000000..d4f6369 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposAdPictureDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.VposAdPictureDao; +import com.jwsaas.entity.food.VposAdPicture; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 广告图片数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "VposAdPictureDaoImpl") +public class VposAdPictureDaoImpl extends BaseDaoImpl implements VposAdPictureDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposCcbfzAccountDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposCcbfzAccountDaoImpl.java new file mode 100644 index 0000000..3d73e1e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposCcbfzAccountDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.VposCcbfzAccountDao; +import com.jwsaas.entity.food.VposCcbfzAccount; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 档口商户建行分账账户信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "VposCcbfzAccountDaoImpl") +public class VposCcbfzAccountDaoImpl extends BaseDaoImpl implements VposCcbfzAccountDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposProductEvaluateDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposProductEvaluateDaoImpl.java new file mode 100644 index 0000000..2f5ff1c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposProductEvaluateDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.VposProductEvaluateDao; +import com.jwsaas.entity.food.VposProductEvaluate; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 商品评价表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "VposProductEvaluateDaoImpl") +public class VposProductEvaluateDaoImpl extends BaseDaoImpl implements VposProductEvaluateDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposProductEvaluateImageDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposProductEvaluateImageDaoImpl.java new file mode 100644 index 0000000..813f57b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposProductEvaluateImageDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.VposProductEvaluateImageDao; +import com.jwsaas.entity.food.VposProductEvaluateImage; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 商品评价图片表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "VposProductEvaluateImageDaoImpl") +public class VposProductEvaluateImageDaoImpl extends BaseDaoImpl implements VposProductEvaluateImageDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposStoreBusinessTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposStoreBusinessTicketDaoImpl.java new file mode 100644 index 0000000..8007c94 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposStoreBusinessTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.VposStoreBusinessTicketDao; +import com.jwsaas.entity.food.VposStoreBusinessTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 移动端销售单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "VposStoreBusinessTicketDaoImpl") +public class VposStoreBusinessTicketDaoImpl extends BaseDaoImpl implements VposStoreBusinessTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposStoreBusinessTicketInfoDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposStoreBusinessTicketInfoDaoImpl.java new file mode 100644 index 0000000..76e73d8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposStoreBusinessTicketInfoDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.VposStoreBusinessTicketInfoDao; +import com.jwsaas.entity.food.VposStoreBusinessTicketInfo; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 移动端销售单优惠明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "VposStoreBusinessTicketInfoDaoImpl") +public class VposStoreBusinessTicketInfoDaoImpl extends BaseDaoImpl implements VposStoreBusinessTicketInfoDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposStoreOrderProductDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposStoreOrderProductDaoImpl.java new file mode 100644 index 0000000..74d4c0d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposStoreOrderProductDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.VposStoreOrderProductDao; +import com.jwsaas.entity.food.VposStoreOrderProduct; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 移动端产品销售记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "VposStoreOrderProductDaoImpl") +public class VposStoreOrderProductDaoImpl extends BaseDaoImpl implements VposStoreOrderProductDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposStoreOrderProductInfoDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposStoreOrderProductInfoDaoImpl.java new file mode 100644 index 0000000..41e5708 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposStoreOrderProductInfoDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.VposStoreOrderProductInfoDao; +import com.jwsaas.entity.food.VposStoreOrderProductInfo; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 移动端产品销售记录优惠明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "VposStoreOrderProductInfoDaoImpl") +public class VposStoreOrderProductInfoDaoImpl extends BaseDaoImpl implements VposStoreOrderProductInfoDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposStoreOrderProductMakeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposStoreOrderProductMakeDaoImpl.java new file mode 100644 index 0000000..24b1580 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposStoreOrderProductMakeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.VposStoreOrderProductMakeDao; +import com.jwsaas.entity.food.VposStoreOrderProductMake; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 移动端销售单做法数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "VposStoreOrderProductMakeDaoImpl") +public class VposStoreOrderProductMakeDaoImpl extends BaseDaoImpl implements VposStoreOrderProductMakeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposStorePayDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposStorePayDaoImpl.java new file mode 100644 index 0000000..9906fb8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposStorePayDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.VposStorePayDao; +import com.jwsaas.entity.food.VposStorePay; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 移动端收银流水数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "VposStorePayDaoImpl") +public class VposStorePayDaoImpl extends BaseDaoImpl implements VposStorePayDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposUserDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposUserDaoImpl.java new file mode 100644 index 0000000..18d78ae --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposUserDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.VposUserDao; +import com.jwsaas.entity.food.VposUser; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 档口商户信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "VposUserDaoImpl") +public class VposUserDaoImpl extends BaseDaoImpl implements VposUserDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposUserSeriesDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposUserSeriesDaoImpl.java new file mode 100644 index 0000000..237311a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/VposUserSeriesDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.VposUserSeriesDao; +import com.jwsaas.entity.food.VposUserSeries; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 档口商户分类关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "VposUserSeriesDaoImpl") +public class VposUserSeriesDaoImpl extends BaseDaoImpl implements VposUserSeriesDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WorkerStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WorkerStoreDaoImpl.java new file mode 100644 index 0000000..cc35be1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WorkerStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WorkerStoreDao; +import com.jwsaas.entity.food.WorkerStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 员工可登陆门店数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WorkerStoreDaoImpl") +public class WorkerStoreDaoImpl extends BaseDaoImpl implements WorkerStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxAdPictureDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxAdPictureDaoImpl.java new file mode 100644 index 0000000..d11d5c4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxAdPictureDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxAdPictureDao; +import com.jwsaas.entity.food.WxAdPicture; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信广告图片数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxAdPictureDaoImpl") +public class WxAdPictureDaoImpl extends BaseDaoImpl implements WxAdPictureDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxAdjustPriceGoodsDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxAdjustPriceGoodsDaoImpl.java new file mode 100644 index 0000000..0ca4f09 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxAdjustPriceGoodsDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxAdjustPriceGoodsDao; +import com.jwsaas.entity.food.WxAdjustPriceGoods; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信调价单商品明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxAdjustPriceGoodsDaoImpl") +public class WxAdjustPriceGoodsDaoImpl extends BaseDaoImpl implements WxAdjustPriceGoodsDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxAdjustPriceStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxAdjustPriceStoreDaoImpl.java new file mode 100644 index 0000000..4eccbd3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxAdjustPriceStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxAdjustPriceStoreDao; +import com.jwsaas.entity.food.WxAdjustPriceStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信调价单门店明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxAdjustPriceStoreDaoImpl") +public class WxAdjustPriceStoreDaoImpl extends BaseDaoImpl implements WxAdjustPriceStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxAdjustPriceTicketDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxAdjustPriceTicketDaoImpl.java new file mode 100644 index 0000000..f4dfc1b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxAdjustPriceTicketDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxAdjustPriceTicketDao; +import com.jwsaas.entity.food.WxAdjustPriceTicket; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信商品调价单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxAdjustPriceTicketDaoImpl") +public class WxAdjustPriceTicketDaoImpl extends BaseDaoImpl implements WxAdjustPriceTicketDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxGoodsCategoryDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxGoodsCategoryDaoImpl.java new file mode 100644 index 0000000..31d895d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxGoodsCategoryDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxGoodsCategoryDao; +import com.jwsaas.entity.food.WxGoodsCategory; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信商品分类数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxGoodsCategoryDaoImpl") +public class WxGoodsCategoryDaoImpl extends BaseDaoImpl implements WxGoodsCategoryDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxGoodsDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxGoodsDaoImpl.java new file mode 100644 index 0000000..3c5316b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxGoodsDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxGoodsDao; +import com.jwsaas.entity.food.WxGoods; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信商品信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxGoodsDaoImpl") +public class WxGoodsDaoImpl extends BaseDaoImpl implements WxGoodsDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxGoodsMakeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxGoodsMakeDaoImpl.java new file mode 100644 index 0000000..412afaf --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxGoodsMakeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxGoodsMakeDao; +import com.jwsaas.entity.food.WxGoodsMake; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信商品做法关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxGoodsMakeDaoImpl") +public class WxGoodsMakeDaoImpl extends BaseDaoImpl implements WxGoodsMakeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxGoodsTemplateDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxGoodsTemplateDaoImpl.java new file mode 100644 index 0000000..54ab251 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxGoodsTemplateDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxGoodsTemplateDao; +import com.jwsaas.entity.food.WxGoodsTemplate; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信商品模板数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxGoodsTemplateDaoImpl") +public class WxGoodsTemplateDaoImpl extends BaseDaoImpl implements WxGoodsTemplateDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxGoodsTemplateDetailDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxGoodsTemplateDetailDaoImpl.java new file mode 100644 index 0000000..44acf52 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxGoodsTemplateDetailDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxGoodsTemplateDetailDao; +import com.jwsaas.entity.food.WxGoodsTemplateDetail; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信商品模板明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxGoodsTemplateDetailDaoImpl") +public class WxGoodsTemplateDetailDaoImpl extends BaseDaoImpl implements WxGoodsTemplateDetailDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxGoodsTemplateStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxGoodsTemplateStoreDaoImpl.java new file mode 100644 index 0000000..f193671 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxGoodsTemplateStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxGoodsTemplateStoreDao; +import com.jwsaas.entity.food.WxGoodsTemplateStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信商品模板门店明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxGoodsTemplateStoreDaoImpl") +public class WxGoodsTemplateStoreDaoImpl extends BaseDaoImpl implements WxGoodsTemplateStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxPaymentParameterDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxPaymentParameterDaoImpl.java new file mode 100644 index 0000000..1cf0c8d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxPaymentParameterDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxPaymentParameterDao; +import com.jwsaas.entity.food.WxPaymentParameter; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信点餐支付参数方案数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxPaymentParameterDaoImpl") +public class WxPaymentParameterDaoImpl extends BaseDaoImpl implements WxPaymentParameterDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxPaymentParameterStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxPaymentParameterStoreDaoImpl.java new file mode 100644 index 0000000..70ea3ec --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxPaymentParameterStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxPaymentParameterStoreDao; +import com.jwsaas.entity.food.WxPaymentParameterStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信点餐支付参数门店关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxPaymentParameterStoreDaoImpl") +public class WxPaymentParameterStoreDaoImpl extends BaseDaoImpl implements WxPaymentParameterStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxQrcodeSettingDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxQrcodeSettingDaoImpl.java new file mode 100644 index 0000000..65368e7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxQrcodeSettingDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxQrcodeSettingDao; +import com.jwsaas.entity.food.WxQrcodeSetting; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信二维码图片设置数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxQrcodeSettingDaoImpl") +public class WxQrcodeSettingDaoImpl extends BaseDaoImpl implements WxQrcodeSettingDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxSalesDiscountInfoDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxSalesDiscountInfoDaoImpl.java new file mode 100644 index 0000000..6dfe8ab --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxSalesDiscountInfoDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxSalesDiscountInfoDao; +import com.jwsaas.entity.food.WxSalesDiscountInfo; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信销售订单优惠明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxSalesDiscountInfoDaoImpl") +public class WxSalesDiscountInfoDaoImpl extends BaseDaoImpl implements WxSalesDiscountInfoDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxSalesOrderDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxSalesOrderDaoImpl.java new file mode 100644 index 0000000..a43f9c6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxSalesOrderDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxSalesOrderDao; +import com.jwsaas.entity.food.WxSalesOrder; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信销售订单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxSalesOrderDaoImpl") +public class WxSalesOrderDaoImpl extends BaseDaoImpl implements WxSalesOrderDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxSalesOrderItemDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxSalesOrderItemDaoImpl.java new file mode 100644 index 0000000..754456c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxSalesOrderItemDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxSalesOrderItemDao; +import com.jwsaas.entity.food.WxSalesOrderItem; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信销售订单明细数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxSalesOrderItemDaoImpl") +public class WxSalesOrderItemDaoImpl extends BaseDaoImpl implements WxSalesOrderItemDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxSalesOrderItemMakeDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxSalesOrderItemMakeDaoImpl.java new file mode 100644 index 0000000..b5f8778 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxSalesOrderItemMakeDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxSalesOrderItemMakeDao; +import com.jwsaas.entity.food.WxSalesOrderItemMake; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信销售订单明细项做法信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxSalesOrderItemMakeDaoImpl") +public class WxSalesOrderItemMakeDaoImpl extends BaseDaoImpl implements WxSalesOrderItemMakeDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxSalesOrderItemPromoDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxSalesOrderItemPromoDaoImpl.java new file mode 100644 index 0000000..7878967 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxSalesOrderItemPromoDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxSalesOrderItemPromoDao; +import com.jwsaas.entity.food.WxSalesOrderItemPromo; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信销售订单明细项优惠信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxSalesOrderItemPromoDaoImpl") +public class WxSalesOrderItemPromoDaoImpl extends BaseDaoImpl implements WxSalesOrderItemPromoDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxSalesOrderLogDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxSalesOrderLogDaoImpl.java new file mode 100644 index 0000000..9aade80 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxSalesOrderLogDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxSalesOrderLogDao; +import com.jwsaas.entity.food.WxSalesOrderLog; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信销售订单操作记录数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxSalesOrderLogDaoImpl") +public class WxSalesOrderLogDaoImpl extends BaseDaoImpl implements WxSalesOrderLogDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxSalesPaymentDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxSalesPaymentDaoImpl.java new file mode 100644 index 0000000..acaf538 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxSalesPaymentDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxSalesPaymentDao; +import com.jwsaas.entity.food.WxSalesPayment; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信订单付款信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxSalesPaymentDaoImpl") +public class WxSalesPaymentDaoImpl extends BaseDaoImpl implements WxSalesPaymentDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxStoreDaoImpl.java new file mode 100644 index 0000000..d12c688 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxStoreDao; +import com.jwsaas.entity.food.WxStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信门店信息数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxStoreDaoImpl") +public class WxStoreDaoImpl extends BaseDaoImpl implements WxStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxStoreGoodsDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxStoreGoodsDaoImpl.java new file mode 100644 index 0000000..9ec3c3c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxStoreGoodsDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxStoreGoodsDao; +import com.jwsaas.entity.food.WxStoreGoods; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信门店商品关联表数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxStoreGoodsDaoImpl") +public class WxStoreGoodsDaoImpl extends BaseDaoImpl implements WxStoreGoodsDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxdcDistributionAddressDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxdcDistributionAddressDaoImpl.java new file mode 100644 index 0000000..e1c6eab --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxdcDistributionAddressDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxdcDistributionAddressDao; +import com.jwsaas.entity.food.WxdcDistributionAddress; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信点餐饮配送地址数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxdcDistributionAddressDaoImpl") +public class WxdcDistributionAddressDaoImpl extends BaseDaoImpl implements WxdcDistributionAddressDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxdcRechargeOrderDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxdcRechargeOrderDaoImpl.java new file mode 100644 index 0000000..a05738a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/WxdcRechargeOrderDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.WxdcRechargeOrderDao; +import com.jwsaas.entity.food.WxdcRechargeOrder; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 微信点餐会员卡充值订单数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "WxdcRechargeOrderDaoImpl") +public class WxdcRechargeOrderDaoImpl extends BaseDaoImpl implements WxdcRechargeOrderDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/YunposSetDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/YunposSetDaoImpl.java new file mode 100644 index 0000000..fa69766 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/YunposSetDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.YunposSetDao; +import com.jwsaas.entity.food.YunposSet; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店云参数设置数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "YunposSetDaoImpl") +public class YunposSetDaoImpl extends BaseDaoImpl implements YunposSetDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/YunposSetStoreDaoImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/YunposSetStoreDaoImpl.java new file mode 100644 index 0000000..7acff4a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food.impl/YunposSetStoreDaoImpl.java @@ -0,0 +1,14 @@ +package com.jwsaas.dao.food.impl; + +import com.jwsaas.dao.food.YunposSetStoreDao; +import com.jwsaas.entity.food.YunposSetStore; +import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * 门店云参数设置门店关联数据接口实现 + */ +@Repository(com.jwsaas.Constants.FOOD_SIGN + "YunposSetStoreDaoImpl") +public class YunposSetStoreDaoImpl extends BaseDaoImpl implements YunposSetStoreDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AdjustPriceProductDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AdjustPriceProductDao.java new file mode 100644 index 0000000..5ba1939 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AdjustPriceProductDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.AdjustPriceProduct; +import com.jwsaas.dao.BaseDao; + +public interface AdjustPriceProductDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AdjustPriceStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AdjustPriceStoreDao.java new file mode 100644 index 0000000..89cd346 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AdjustPriceStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.AdjustPriceStore; +import com.jwsaas.dao.BaseDao; + +public interface AdjustPriceStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AdjustPriceTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AdjustPriceTicketDao.java new file mode 100644 index 0000000..f0fea5c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AdjustPriceTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.AdjustPriceTicket; +import com.jwsaas.dao.BaseDao; + +public interface AdjustPriceTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AdvertCaptionDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AdvertCaptionDao.java new file mode 100644 index 0000000..9de1e67 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AdvertCaptionDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.AdvertCaption; +import com.jwsaas.dao.BaseDao; + +public interface AdvertCaptionDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AdvertCaptionStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AdvertCaptionStoreDao.java new file mode 100644 index 0000000..b7dcc2a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AdvertCaptionStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.AdvertCaptionStore; +import com.jwsaas.dao.BaseDao; + +public interface AdvertCaptionStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AdvertPictureDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AdvertPictureDao.java new file mode 100644 index 0000000..799438f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AdvertPictureDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.AdvertPicture; +import com.jwsaas.dao.BaseDao; + +public interface AdvertPictureDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AdvertPictureStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AdvertPictureStoreDao.java new file mode 100644 index 0000000..d6b113d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AdvertPictureStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.AdvertPictureStore; +import com.jwsaas.dao.BaseDao; + +public interface AdvertPictureStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AgentDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AgentDao.java new file mode 100644 index 0000000..c36ef5e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AgentDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.Agent; +import com.jwsaas.dao.BaseDao; + +public interface AgentDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AgentStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AgentStoreDao.java new file mode 100644 index 0000000..6a6ac53 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AgentStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.AgentStore; +import com.jwsaas.dao.BaseDao; + +public interface AgentStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsDetailDao.java new file mode 100644 index 0000000..a4a4043 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.AskGoodsDetail; +import com.jwsaas.dao.BaseDao; + +public interface AskGoodsDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsSuitDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsSuitDao.java new file mode 100644 index 0000000..f4bc945 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsSuitDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.AskGoodsSuit; +import com.jwsaas.dao.BaseDao; + +public interface AskGoodsSuitDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsSuitDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsSuitDetailDao.java new file mode 100644 index 0000000..9d288b0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsSuitDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.AskGoodsSuitDetail; +import com.jwsaas.dao.BaseDao; + +public interface AskGoodsSuitDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsTemplateDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsTemplateDao.java new file mode 100644 index 0000000..47b90b0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsTemplateDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.AskGoodsTemplate; +import com.jwsaas.dao.BaseDao; + +public interface AskGoodsTemplateDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsTemplateDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsTemplateDetailDao.java new file mode 100644 index 0000000..11d93ac --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsTemplateDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.AskGoodsTemplateDetail; +import com.jwsaas.dao.BaseDao; + +public interface AskGoodsTemplateDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsTemplateStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsTemplateStoreDao.java new file mode 100644 index 0000000..d2ec780 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsTemplateStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.AskGoodsTemplateStore; +import com.jwsaas.dao.BaseDao; + +public interface AskGoodsTemplateStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsTicketDao.java new file mode 100644 index 0000000..0cb759a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.AskGoodsTicket; +import com.jwsaas.dao.BaseDao; + +public interface AskGoodsTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsTicketLogDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsTicketLogDao.java new file mode 100644 index 0000000..ead34de --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsTicketLogDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.AskGoodsTicketLog; +import com.jwsaas.dao.BaseDao; + +public interface AskGoodsTicketLogDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsTicketPayDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsTicketPayDao.java new file mode 100644 index 0000000..e3255c7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/AskGoodsTicketPayDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.AskGoodsTicketPay; +import com.jwsaas.dao.BaseDao; + +public interface AskGoodsTicketPayDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/BaiduFoodDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/BaiduFoodDao.java new file mode 100644 index 0000000..4749e9d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/BaiduFoodDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.BaiduFood; +import com.jwsaas.dao.BaseDao; + +public interface BaiduFoodDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/BaiduOrderDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/BaiduOrderDao.java new file mode 100644 index 0000000..0c19bb6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/BaiduOrderDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.BaiduOrder; +import com.jwsaas.dao.BaseDao; + +public interface BaiduOrderDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/BaiduOrderProductDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/BaiduOrderProductDao.java new file mode 100644 index 0000000..e2f2779 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/BaiduOrderProductDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.BaiduOrderProduct; +import com.jwsaas.dao.BaseDao; + +public interface BaiduOrderProductDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/BrandDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/BrandDao.java new file mode 100644 index 0000000..9b05733 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/BrandDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.Brand; +import com.jwsaas.dao.BaseDao; + +public interface BrandDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/BusinessPlanDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/BusinessPlanDao.java new file mode 100644 index 0000000..75eea3c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/BusinessPlanDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.BusinessPlan; +import com.jwsaas.dao.BaseDao; + +public interface BusinessPlanDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/BusinessPlanDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/BusinessPlanDetailDao.java new file mode 100644 index 0000000..e77f54b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/BusinessPlanDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.BusinessPlanDetail; +import com.jwsaas.dao.BaseDao; + +public interface BusinessPlanDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/BusinessPlanStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/BusinessPlanStoreDao.java new file mode 100644 index 0000000..c02cad4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/BusinessPlanStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.BusinessPlanStore; +import com.jwsaas.dao.BaseDao; + +public interface BusinessPlanStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CandaoProductDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CandaoProductDao.java new file mode 100644 index 0000000..d0d2da8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CandaoProductDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CandaoProduct; +import com.jwsaas.dao.BaseDao; + +public interface CandaoProductDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CandaoProductPropertyDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CandaoProductPropertyDao.java new file mode 100644 index 0000000..924b372 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CandaoProductPropertyDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CandaoProductProperty; +import com.jwsaas.dao.BaseDao; + +public interface CandaoProductPropertyDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CandaoProductSpecDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CandaoProductSpecDao.java new file mode 100644 index 0000000..38a0d93 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CandaoProductSpecDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CandaoProductSpec; +import com.jwsaas.dao.BaseDao; + +public interface CandaoProductSpecDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CandaoProductSuitDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CandaoProductSuitDao.java new file mode 100644 index 0000000..44fe0ac --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CandaoProductSuitDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CandaoProductSuit; +import com.jwsaas.dao.BaseDao; + +public interface CandaoProductSuitDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CandaoStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CandaoStoreDao.java new file mode 100644 index 0000000..63206fc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CandaoStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CandaoStore; +import com.jwsaas.dao.BaseDao; + +public interface CandaoStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CategoryDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CategoryDao.java new file mode 100644 index 0000000..6622bca --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CategoryDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.Category; +import com.jwsaas.dao.BaseDao; + +public interface CategoryDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CheckTemplateDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CheckTemplateDao.java new file mode 100644 index 0000000..2ebdf5d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CheckTemplateDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CheckTemplate; +import com.jwsaas.dao.BaseDao; + +public interface CheckTemplateDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CheckTemplateDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CheckTemplateDetailDao.java new file mode 100644 index 0000000..32d847a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CheckTemplateDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CheckTemplateDetail; +import com.jwsaas.dao.BaseDao; + +public interface CheckTemplateDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CheckTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CheckTicketDao.java new file mode 100644 index 0000000..e4ce20d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CheckTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CheckTicket; +import com.jwsaas.dao.BaseDao; + +public interface CheckTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CheckTicketDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CheckTicketDetailDao.java new file mode 100644 index 0000000..80a4017 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CheckTicketDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CheckTicketDetail; +import com.jwsaas.dao.BaseDao; + +public interface CheckTicketDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CheckTicketLogDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CheckTicketLogDao.java new file mode 100644 index 0000000..e0819d5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CheckTicketLogDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CheckTicketLog; +import com.jwsaas.dao.BaseDao; + +public interface CheckTicketLogDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostFeeItemDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostFeeItemDao.java new file mode 100644 index 0000000..6cd98bd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostFeeItemDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CostFeeItem; +import com.jwsaas.dao.BaseDao; + +public interface CostFeeItemDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostFeeTypeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostFeeTypeDao.java new file mode 100644 index 0000000..639c416 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostFeeTypeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CostFeeType; +import com.jwsaas.dao.BaseDao; + +public interface CostFeeTypeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketDao.java new file mode 100644 index 0000000..6d0de74 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CostTicket; +import com.jwsaas.dao.BaseDao; + +public interface CostTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketPayTypeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketPayTypeDao.java new file mode 100644 index 0000000..5d43270 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketPayTypeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CostTicketPayType; +import com.jwsaas.dao.BaseDao; + +public interface CostTicketPayTypeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketProductChangeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketProductChangeDao.java new file mode 100644 index 0000000..058a412 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketProductChangeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CostTicketProductChange; +import com.jwsaas.dao.BaseDao; + +public interface CostTicketProductChangeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketProductFixedChangeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketProductFixedChangeDao.java new file mode 100644 index 0000000..fc4cedd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketProductFixedChangeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CostTicketProductFixedChange; +import com.jwsaas.dao.BaseDao; + +public interface CostTicketProductFixedChangeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketProductMoreChangeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketProductMoreChangeDao.java new file mode 100644 index 0000000..33a2ee5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketProductMoreChangeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CostTicketProductMoreChange; +import com.jwsaas.dao.BaseDao; + +public interface CostTicketProductMoreChangeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketProductOtherChangeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketProductOtherChangeDao.java new file mode 100644 index 0000000..1e0f6f7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketProductOtherChangeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CostTicketProductOtherChange; +import com.jwsaas.dao.BaseDao; + +public interface CostTicketProductOtherChangeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketProductTypeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketProductTypeDao.java new file mode 100644 index 0000000..7ce57da --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketProductTypeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CostTicketProductType; +import com.jwsaas.dao.BaseDao; + +public interface CostTicketProductTypeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketTemplateDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketTemplateDao.java new file mode 100644 index 0000000..7e19746 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketTemplateDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CostTicketTemplate; +import com.jwsaas.dao.BaseDao; + +public interface CostTicketTemplateDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketTemplateProductChangeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketTemplateProductChangeDao.java new file mode 100644 index 0000000..cee341f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketTemplateProductChangeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CostTicketTemplateProductChange; +import com.jwsaas.dao.BaseDao; + +public interface CostTicketTemplateProductChangeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketTemplateProductFixedChangeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketTemplateProductFixedChangeDao.java new file mode 100644 index 0000000..741b532 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketTemplateProductFixedChangeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CostTicketTemplateProductFixedChange; +import com.jwsaas.dao.BaseDao; + +public interface CostTicketTemplateProductFixedChangeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketTemplateProductMoreChangeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketTemplateProductMoreChangeDao.java new file mode 100644 index 0000000..c33b805 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketTemplateProductMoreChangeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CostTicketTemplateProductMoreChange; +import com.jwsaas.dao.BaseDao; + +public interface CostTicketTemplateProductMoreChangeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketTemplateProductOtherChangeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketTemplateProductOtherChangeDao.java new file mode 100644 index 0000000..69e0c67 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketTemplateProductOtherChangeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CostTicketTemplateProductOtherChange; +import com.jwsaas.dao.BaseDao; + +public interface CostTicketTemplateProductOtherChangeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketTemplateStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketTemplateStoreDao.java new file mode 100644 index 0000000..7d5068d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CostTicketTemplateStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CostTicketTemplateStore; +import com.jwsaas.dao.BaseDao; + +public interface CostTicketTemplateStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CouponCodeDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CouponCodeDetailDao.java new file mode 100644 index 0000000..2b02805 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CouponCodeDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CouponCodeDetail; +import com.jwsaas.dao.BaseDao; + +public interface CouponCodeDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CouponDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CouponDao.java new file mode 100644 index 0000000..4d2c0be --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CouponDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.Coupon; +import com.jwsaas.dao.BaseDao; + +public interface CouponDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CouponStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CouponStoreDao.java new file mode 100644 index 0000000..daa1712 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CouponStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CouponStore; +import com.jwsaas.dao.BaseDao; + +public interface CouponStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CouponTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CouponTicketDao.java new file mode 100644 index 0000000..f0162b7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CouponTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CouponTicket; +import com.jwsaas.dao.BaseDao; + +public interface CouponTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CouponTicketProductDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CouponTicketProductDao.java new file mode 100644 index 0000000..49e3783 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CouponTicketProductDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CouponTicketProduct; +import com.jwsaas.dao.BaseDao; + +public interface CouponTicketProductDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CouponTicketStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CouponTicketStoreDao.java new file mode 100644 index 0000000..129765f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/CouponTicketStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.CouponTicketStore; +import com.jwsaas.dao.BaseDao; + +public interface CouponTicketStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DeliverDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DeliverDao.java new file mode 100644 index 0000000..7f6f4cc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DeliverDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.Deliver; +import com.jwsaas.dao.BaseDao; + +public interface DeliverDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DeliverStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DeliverStoreDao.java new file mode 100644 index 0000000..0da63a3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DeliverStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.DeliverStore; +import com.jwsaas.dao.BaseDao; + +public interface DeliverStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchSettlePlanDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchSettlePlanDao.java new file mode 100644 index 0000000..75eb0cd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchSettlePlanDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.DispatchSettlePlan; +import com.jwsaas.dao.BaseDao; + +public interface DispatchSettlePlanDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchSettlePlanPayModeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchSettlePlanPayModeDao.java new file mode 100644 index 0000000..7e8059a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchSettlePlanPayModeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.DispatchSettlePlanPayMode; +import com.jwsaas.dao.BaseDao; + +public interface DispatchSettlePlanPayModeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchSettlePlanStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchSettlePlanStoreDao.java new file mode 100644 index 0000000..a3b7130 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchSettlePlanStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.DispatchSettlePlanStore; +import com.jwsaas.dao.BaseDao; + +public interface DispatchSettlePlanStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchTicketDao.java new file mode 100644 index 0000000..08ad8b1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.DispatchTicket; +import com.jwsaas.dao.BaseDao; + +public interface DispatchTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchTicketDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchTicketDetailDao.java new file mode 100644 index 0000000..aeb4d89 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchTicketDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.DispatchTicketDetail; +import com.jwsaas.dao.BaseDao; + +public interface DispatchTicketDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchTicketLogDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchTicketLogDao.java new file mode 100644 index 0000000..60b45d7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchTicketLogDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.DispatchTicketLog; +import com.jwsaas.dao.BaseDao; + +public interface DispatchTicketLogDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchpriceTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchpriceTicketDao.java new file mode 100644 index 0000000..99dbcba --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchpriceTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.DispatchpriceTicket; +import com.jwsaas.dao.BaseDao; + +public interface DispatchpriceTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchpriceTicketMaterialDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchpriceTicketMaterialDao.java new file mode 100644 index 0000000..0dc4ff2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchpriceTicketMaterialDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.DispatchpriceTicketMaterial; +import com.jwsaas.dao.BaseDao; + +public interface DispatchpriceTicketMaterialDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchpriceTicketStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchpriceTicketStoreDao.java new file mode 100644 index 0000000..147d055 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/DispatchpriceTicketStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.DispatchpriceTicketStore; +import com.jwsaas.dao.BaseDao; + +public interface DispatchpriceTicketStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ElemeCategoryFoodDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ElemeCategoryFoodDao.java new file mode 100644 index 0000000..1c45d77 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ElemeCategoryFoodDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ElemeCategoryFood; +import com.jwsaas.dao.BaseDao; + +public interface ElemeCategoryFoodDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ElemeFoodCategoryDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ElemeFoodCategoryDao.java new file mode 100644 index 0000000..ce30c08 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ElemeFoodCategoryDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ElemeFoodCategory; +import com.jwsaas.dao.BaseDao; + +public interface ElemeFoodCategoryDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ElemeOrderDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ElemeOrderDetailDao.java new file mode 100644 index 0000000..e3ffbeb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ElemeOrderDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ElemeOrderDetail; +import com.jwsaas.dao.BaseDao; + +public interface ElemeOrderDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ElemeOrderDetailGroupDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ElemeOrderDetailGroupDao.java new file mode 100644 index 0000000..268f499 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ElemeOrderDetailGroupDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ElemeOrderDetailGroup; +import com.jwsaas.dao.BaseDao; + +public interface ElemeOrderDetailGroupDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ErpPosSetDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ErpPosSetDao.java new file mode 100644 index 0000000..2f15ff6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ErpPosSetDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ErpPosSet; +import com.jwsaas.dao.BaseDao; + +public interface ErpPosSetDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/FeeItemDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/FeeItemDao.java new file mode 100644 index 0000000..6303122 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/FeeItemDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.FeeItem; +import com.jwsaas.dao.BaseDao; + +public interface FeeItemDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/KdsPlanDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/KdsPlanDao.java new file mode 100644 index 0000000..70816de --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/KdsPlanDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.KdsPlan; +import com.jwsaas.dao.BaseDao; + +public interface KdsPlanDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/KdsPlanStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/KdsPlanStoreDao.java new file mode 100644 index 0000000..5110ff0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/KdsPlanStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.KdsPlanStore; +import com.jwsaas.dao.BaseDao; + +public interface KdsPlanStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/KitPlanDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/KitPlanDao.java new file mode 100644 index 0000000..bd31f29 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/KitPlanDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.KitPlan; +import com.jwsaas.dao.BaseDao; + +public interface KitPlanDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/KitPlanStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/KitPlanStoreDao.java new file mode 100644 index 0000000..b7900ea --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/KitPlanStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.KitPlanStore; +import com.jwsaas.dao.BaseDao; + +public interface KitPlanStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MakeBurdenDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MakeBurdenDao.java new file mode 100644 index 0000000..d7a404f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MakeBurdenDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.MakeBurden; +import com.jwsaas.dao.BaseDao; + +public interface MakeBurdenDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MakeDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MakeDetailDao.java new file mode 100644 index 0000000..e9356cd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MakeDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.MakeDetail; +import com.jwsaas.dao.BaseDao; + +public interface MakeDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MakeTypeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MakeTypeDao.java new file mode 100644 index 0000000..74c0009 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MakeTypeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.MakeType; +import com.jwsaas.dao.BaseDao; + +public interface MakeTypeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MeituanFoodCategoryDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MeituanFoodCategoryDao.java new file mode 100644 index 0000000..1f4069a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MeituanFoodCategoryDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.MeituanFoodCategory; +import com.jwsaas.dao.BaseDao; + +public interface MeituanFoodCategoryDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MeituanFoodDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MeituanFoodDao.java new file mode 100644 index 0000000..0bdffa0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MeituanFoodDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.MeituanFood; +import com.jwsaas.dao.BaseDao; + +public interface MeituanFoodDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MeituanOrderDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MeituanOrderDao.java new file mode 100644 index 0000000..52f7eeb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MeituanOrderDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.MeituanOrder; +import com.jwsaas.dao.BaseDao; + +public interface MeituanOrderDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MeituanOrderExtraDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MeituanOrderExtraDao.java new file mode 100644 index 0000000..33ddd10 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MeituanOrderExtraDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.MeituanOrderExtra; +import com.jwsaas.dao.BaseDao; + +public interface MeituanOrderExtraDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MeituanOrderItemDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MeituanOrderItemDao.java new file mode 100644 index 0000000..d4a612f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/MeituanOrderItemDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.MeituanOrderItem; +import com.jwsaas.dao.BaseDao; + +public interface MeituanOrderItemDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/OtherStorageOutTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/OtherStorageOutTicketDao.java new file mode 100644 index 0000000..6626802 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/OtherStorageOutTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.OtherStorageOutTicket; +import com.jwsaas.dao.BaseDao; + +public interface OtherStorageOutTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/OtherStorageOutTicketDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/OtherStorageOutTicketDetailDao.java new file mode 100644 index 0000000..ba79332 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/OtherStorageOutTicketDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.OtherStorageOutTicketDetail; +import com.jwsaas.dao.BaseDao; + +public interface OtherStorageOutTicketDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/OtherStorageOutTicketLogDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/OtherStorageOutTicketLogDao.java new file mode 100644 index 0000000..6ec74be --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/OtherStorageOutTicketLogDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.OtherStorageOutTicketLog; +import com.jwsaas.dao.BaseDao; + +public interface OtherStorageOutTicketLogDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/OtherStorageTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/OtherStorageTicketDao.java new file mode 100644 index 0000000..51dba01 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/OtherStorageTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.OtherStorageTicket; +import com.jwsaas.dao.BaseDao; + +public interface OtherStorageTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/OtherStorageTicketDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/OtherStorageTicketDetailDao.java new file mode 100644 index 0000000..b0b413c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/OtherStorageTicketDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.OtherStorageTicketDetail; +import com.jwsaas.dao.BaseDao; + +public interface OtherStorageTicketDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/OtherStorageTicketLogDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/OtherStorageTicketLogDao.java new file mode 100644 index 0000000..9b2d9c1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/OtherStorageTicketLogDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.OtherStorageTicketLog; +import com.jwsaas.dao.BaseDao; + +public interface OtherStorageTicketLogDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PayModeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PayModeDao.java new file mode 100644 index 0000000..1dd4feb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PayModeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PayMode; +import com.jwsaas.dao.BaseDao; + +public interface PayModeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PayModeSeriesDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PayModeSeriesDao.java new file mode 100644 index 0000000..1483ca9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PayModeSeriesDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PayModeSeries; +import com.jwsaas.dao.BaseDao; + +public interface PayModeSeriesDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PayModeStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PayModeStoreDao.java new file mode 100644 index 0000000..9e628f3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PayModeStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PayModeStore; +import com.jwsaas.dao.BaseDao; + +public interface PayModeStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PayTypeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PayTypeDao.java new file mode 100644 index 0000000..c1e304d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PayTypeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PayType; +import com.jwsaas.dao.BaseDao; + +public interface PayTypeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PaymentParameterDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PaymentParameterDao.java new file mode 100644 index 0000000..274d2d3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PaymentParameterDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PaymentParameter; +import com.jwsaas.dao.BaseDao; + +public interface PaymentParameterDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PaymentParameterStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PaymentParameterStoreDao.java new file mode 100644 index 0000000..02f8dc8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PaymentParameterStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PaymentParameterStore; +import com.jwsaas.dao.BaseDao; + +public interface PaymentParameterStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosInfoDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosInfoDao.java new file mode 100644 index 0000000..6218874 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosInfoDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PosInfo; +import com.jwsaas.dao.BaseDao; + +public interface PosInfoDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosPollcodeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosPollcodeDao.java new file mode 100644 index 0000000..d7ac62c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosPollcodeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PosPollcode; +import com.jwsaas.dao.BaseDao; + +public interface PosPollcodeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosRoleDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosRoleDao.java new file mode 100644 index 0000000..23bd855 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosRoleDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PosRole; +import com.jwsaas.dao.BaseDao; + +public interface PosRoleDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosRoleModuleDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosRoleModuleDao.java new file mode 100644 index 0000000..7d970e0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosRoleModuleDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PosRoleModule; +import com.jwsaas.dao.BaseDao; + +public interface PosRoleModuleDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosSetPlanConfigDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosSetPlanConfigDao.java new file mode 100644 index 0000000..70c9e24 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosSetPlanConfigDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PosSetPlanConfig; +import com.jwsaas.dao.BaseDao; + +public interface PosSetPlanConfigDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosSetPlanDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosSetPlanDao.java new file mode 100644 index 0000000..12e3447 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosSetPlanDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PosSetPlan; +import com.jwsaas.dao.BaseDao; + +public interface PosSetPlanDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosSetPlanModuleDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosSetPlanModuleDao.java new file mode 100644 index 0000000..2fe46e5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosSetPlanModuleDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PosSetPlanModule; +import com.jwsaas.dao.BaseDao; + +public interface PosSetPlanModuleDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosSetPlanResourcesDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosSetPlanResourcesDao.java new file mode 100644 index 0000000..5a0bbeb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosSetPlanResourcesDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PosSetPlanResources; +import com.jwsaas.dao.BaseDao; + +public interface PosSetPlanResourcesDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosSetPlanShortcutDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosSetPlanShortcutDao.java new file mode 100644 index 0000000..7987b8a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosSetPlanShortcutDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PosSetPlanShortcut; +import com.jwsaas.dao.BaseDao; + +public interface PosSetPlanShortcutDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosSetPlanStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosSetPlanStoreDao.java new file mode 100644 index 0000000..8693c14 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PosSetPlanStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PosSetPlanStore; +import com.jwsaas.dao.BaseDao; + +public interface PosSetPlanStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PrintImageDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PrintImageDao.java new file mode 100644 index 0000000..b86e0e3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PrintImageDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PrintImage; +import com.jwsaas.dao.BaseDao; + +public interface PrintImageDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PrintImageStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PrintImageStoreDao.java new file mode 100644 index 0000000..463f80e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PrintImageStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PrintImageStore; +import com.jwsaas.dao.BaseDao; + +public interface PrintImageStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductBatchNegativeStockDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductBatchNegativeStockDao.java new file mode 100644 index 0000000..41442af --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductBatchNegativeStockDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductBatchNegativeStock; +import com.jwsaas.dao.BaseDao; + +public interface ProductBatchNegativeStockDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductBatchNegativeStockDifferDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductBatchNegativeStockDifferDao.java new file mode 100644 index 0000000..08baec6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductBatchNegativeStockDifferDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductBatchNegativeStockDiffer; +import com.jwsaas.dao.BaseDao; + +public interface ProductBatchNegativeStockDifferDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductBatchNumberDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductBatchNumberDao.java new file mode 100644 index 0000000..d718d91 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductBatchNumberDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductBatchNumber; +import com.jwsaas.dao.BaseDao; + +public interface ProductBatchNumberDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductBatchStockChangeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductBatchStockChangeDao.java new file mode 100644 index 0000000..db7cf52 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductBatchStockChangeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductBatchStockChange; +import com.jwsaas.dao.BaseDao; + +public interface ProductBatchStockChangeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductBatchStockDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductBatchStockDao.java new file mode 100644 index 0000000..f59689f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductBatchStockDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductBatchStock; +import com.jwsaas.dao.BaseDao; + +public interface ProductBatchStockDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductBurdenDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductBurdenDao.java new file mode 100644 index 0000000..67d8859 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductBurdenDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductBurden; +import com.jwsaas.dao.BaseDao; + +public interface ProductBurdenDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductDao.java new file mode 100644 index 0000000..2f6b042 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.Product; +import com.jwsaas.dao.BaseDao; + +public interface ProductDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductImageDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductImageDao.java new file mode 100644 index 0000000..91b6abf --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductImageDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductImage; +import com.jwsaas.dao.BaseDao; + +public interface ProductImageDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductKdsPlanDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductKdsPlanDao.java new file mode 100644 index 0000000..1ae8dc0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductKdsPlanDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductKdsPlan; +import com.jwsaas.dao.BaseDao; + +public interface ProductKdsPlanDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductKitPlanDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductKitPlanDao.java new file mode 100644 index 0000000..4b822a1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductKitPlanDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductKitPlan; +import com.jwsaas.dao.BaseDao; + +public interface ProductKitPlanDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductMakeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductMakeDao.java new file mode 100644 index 0000000..0662b71 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductMakeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductMake; +import com.jwsaas.dao.BaseDao; + +public interface ProductMakeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductMakeStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductMakeStoreDao.java new file mode 100644 index 0000000..545db80 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductMakeStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductMakeStore; +import com.jwsaas.dao.BaseDao; + +public interface ProductMakeStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductMakeTemplateDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductMakeTemplateDao.java new file mode 100644 index 0000000..f9688bc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductMakeTemplateDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductMakeTemplate; +import com.jwsaas.dao.BaseDao; + +public interface ProductMakeTemplateDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductMakeTemplateDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductMakeTemplateDetailDao.java new file mode 100644 index 0000000..a7a754c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductMakeTemplateDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductMakeTemplateDetail; +import com.jwsaas.dao.BaseDao; + +public interface ProductMakeTemplateDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductRatioDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductRatioDao.java new file mode 100644 index 0000000..dc4004e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductRatioDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductRatio; +import com.jwsaas.dao.BaseDao; + +public interface ProductRatioDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductSpecDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductSpecDao.java new file mode 100644 index 0000000..dcb5410 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductSpecDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductSpec; +import com.jwsaas.dao.BaseDao; + +public interface ProductSpecDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductStockDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductStockDao.java new file mode 100644 index 0000000..13772ae --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductStockDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductStock; +import com.jwsaas.dao.BaseDao; + +public interface ProductStockDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductStockLogDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductStockLogDao.java new file mode 100644 index 0000000..abb7bd7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductStockLogDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductStockLog; +import com.jwsaas.dao.BaseDao; + +public interface ProductStockLogDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductStoreOutCollectDayDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductStoreOutCollectDayDao.java new file mode 100644 index 0000000..303a4ff --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductStoreOutCollectDayDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductStoreOutCollectDay; +import com.jwsaas.dao.BaseDao; + +public interface ProductStoreOutCollectDayDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductStoreStockDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductStoreStockDao.java new file mode 100644 index 0000000..566013e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductStoreStockDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductStoreStock; +import com.jwsaas.dao.BaseDao; + +public interface ProductStoreStockDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductStoreStockLogDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductStoreStockLogDao.java new file mode 100644 index 0000000..3401bcf --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductStoreStockLogDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductStoreStockLog; +import com.jwsaas.dao.BaseDao; + +public interface ProductStoreStockLogDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductSuitDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductSuitDao.java new file mode 100644 index 0000000..f7d6b81 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductSuitDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductSuit; +import com.jwsaas.dao.BaseDao; + +public interface ProductSuitDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductSuitDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductSuitDetailDao.java new file mode 100644 index 0000000..c9f3e91 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductSuitDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductSuitDetail; +import com.jwsaas.dao.BaseDao; + +public interface ProductSuitDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductTemplateDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductTemplateDao.java new file mode 100644 index 0000000..4b52dde --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductTemplateDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductTemplate; +import com.jwsaas.dao.BaseDao; + +public interface ProductTemplateDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductTemplateDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductTemplateDetailDao.java new file mode 100644 index 0000000..e9c8f9b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductTemplateDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductTemplateDetail; +import com.jwsaas.dao.BaseDao; + +public interface ProductTemplateDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductTypeBrandDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductTypeBrandDao.java new file mode 100644 index 0000000..6e8f8a6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductTypeBrandDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductTypeBrand; +import com.jwsaas.dao.BaseDao; + +public interface ProductTypeBrandDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductTypeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductTypeDao.java new file mode 100644 index 0000000..f143c70 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductTypeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductType; +import com.jwsaas.dao.BaseDao; + +public interface ProductTypeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductTypeLabelDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductTypeLabelDao.java new file mode 100644 index 0000000..83b129d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductTypeLabelDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductTypeLabel; +import com.jwsaas.dao.BaseDao; + +public interface ProductTypeLabelDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductTypeLabelInfoDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductTypeLabelInfoDao.java new file mode 100644 index 0000000..c9e0d7c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductTypeLabelInfoDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductTypeLabelInfo; +import com.jwsaas.dao.BaseDao; + +public interface ProductTypeLabelInfoDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductUnitDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductUnitDao.java new file mode 100644 index 0000000..f22ee6d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProductUnitDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProductUnit; +import com.jwsaas.dao.BaseDao; + +public interface ProductUnitDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramAdPictureDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramAdPictureDao.java new file mode 100644 index 0000000..5dddcb0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramAdPictureDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramAdPicture; +import com.jwsaas.dao.BaseDao; + +public interface ProgramAdPictureDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramAdjustPriceProductDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramAdjustPriceProductDao.java new file mode 100644 index 0000000..7f70e16 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramAdjustPriceProductDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramAdjustPriceProduct; +import com.jwsaas.dao.BaseDao; + +public interface ProgramAdjustPriceProductDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramAdjustPriceStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramAdjustPriceStoreDao.java new file mode 100644 index 0000000..ae19c02 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramAdjustPriceStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramAdjustPriceStore; +import com.jwsaas.dao.BaseDao; + +public interface ProgramAdjustPriceStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramAdjustPriceTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramAdjustPriceTicketDao.java new file mode 100644 index 0000000..2810d36 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramAdjustPriceTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramAdjustPriceTicket; +import com.jwsaas.dao.BaseDao; + +public interface ProgramAdjustPriceTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramDeliverAddressDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramDeliverAddressDao.java new file mode 100644 index 0000000..1e4fe95 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramDeliverAddressDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramDeliverAddress; +import com.jwsaas.dao.BaseDao; + +public interface ProgramDeliverAddressDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramEvaluateDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramEvaluateDao.java new file mode 100644 index 0000000..b86e0d9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramEvaluateDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramEvaluate; +import com.jwsaas.dao.BaseDao; + +public interface ProgramEvaluateDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramEvaluateImageDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramEvaluateImageDao.java new file mode 100644 index 0000000..7dfe569 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramEvaluateImageDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramEvaluateImage; +import com.jwsaas.dao.BaseDao; + +public interface ProgramEvaluateImageDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramIndexPictureDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramIndexPictureDao.java new file mode 100644 index 0000000..06d753a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramIndexPictureDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramIndexPicture; +import com.jwsaas.dao.BaseDao; + +public interface ProgramIndexPictureDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPaymentParameterDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPaymentParameterDao.java new file mode 100644 index 0000000..3d97698 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPaymentParameterDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramPaymentParameter; +import com.jwsaas.dao.BaseDao; + +public interface ProgramPaymentParameterDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPaymentParameterStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPaymentParameterStoreDao.java new file mode 100644 index 0000000..fe26771 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPaymentParameterStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramPaymentParameterStore; +import com.jwsaas.dao.BaseDao; + +public interface ProgramPaymentParameterStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramProductCategoryDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramProductCategoryDao.java new file mode 100644 index 0000000..bcf1273 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramProductCategoryDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramProductCategory; +import com.jwsaas.dao.BaseDao; + +public interface ProgramProductCategoryDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramProductMakeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramProductMakeDao.java new file mode 100644 index 0000000..a302c43 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramProductMakeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramProductMake; +import com.jwsaas.dao.BaseDao; + +public interface ProgramProductMakeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramProductTemplateDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramProductTemplateDao.java new file mode 100644 index 0000000..ab4d412 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramProductTemplateDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramProductTemplate; +import com.jwsaas.dao.BaseDao; + +public interface ProgramProductTemplateDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramProductTemplateDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramProductTemplateDetailDao.java new file mode 100644 index 0000000..6e3295b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramProductTemplateDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramProductTemplateDetail; +import com.jwsaas.dao.BaseDao; + +public interface ProgramProductTemplateDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramProductTemplateStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramProductTemplateStoreDao.java new file mode 100644 index 0000000..4ee192e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramProductTemplateStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramProductTemplateStore; +import com.jwsaas.dao.BaseDao; + +public interface ProgramProductTemplateStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionBlackListGoodsDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionBlackListGoodsDao.java new file mode 100644 index 0000000..0e8087d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionBlackListGoodsDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramPromotionBlackListGoods; +import com.jwsaas.dao.BaseDao; + +public interface ProgramPromotionBlackListGoodsDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionBlackListStoreAreaDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionBlackListStoreAreaDao.java new file mode 100644 index 0000000..fd266ed --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionBlackListStoreAreaDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramPromotionBlackListStoreArea; +import com.jwsaas.dao.BaseDao; + +public interface ProgramPromotionBlackListStoreAreaDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionBlackListStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionBlackListStoreDao.java new file mode 100644 index 0000000..1c70576 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionBlackListStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramPromotionBlackListStore; +import com.jwsaas.dao.BaseDao; + +public interface ProgramPromotionBlackListStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionCategoryDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionCategoryDao.java new file mode 100644 index 0000000..3f0f650 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionCategoryDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramPromotionCategory; +import com.jwsaas.dao.BaseDao; + +public interface ProgramPromotionCategoryDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionGoodsDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionGoodsDao.java new file mode 100644 index 0000000..d4e425f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionGoodsDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramPromotionGoods; +import com.jwsaas.dao.BaseDao; + +public interface ProgramPromotionGoodsDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionSchemeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionSchemeDao.java new file mode 100644 index 0000000..046d29a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionSchemeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramPromotionScheme; +import com.jwsaas.dao.BaseDao; + +public interface ProgramPromotionSchemeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionStoreAreaDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionStoreAreaDao.java new file mode 100644 index 0000000..69d6715 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionStoreAreaDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramPromotionStoreArea; +import com.jwsaas.dao.BaseDao; + +public interface ProgramPromotionStoreAreaDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionStoreDao.java new file mode 100644 index 0000000..640426d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramPromotionStore; +import com.jwsaas.dao.BaseDao; + +public interface ProgramPromotionStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionTaskDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionTaskDao.java new file mode 100644 index 0000000..29203f3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionTaskDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramPromotionTask; +import com.jwsaas.dao.BaseDao; + +public interface ProgramPromotionTaskDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionTicketDao.java new file mode 100644 index 0000000..71a77b8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramPromotionTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramPromotionTicket; +import com.jwsaas.dao.BaseDao; + +public interface ProgramPromotionTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramSettingDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramSettingDao.java new file mode 100644 index 0000000..a58a12b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramSettingDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramSetting; +import com.jwsaas.dao.BaseDao; + +public interface ProgramSettingDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreBusinessTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreBusinessTicketDao.java new file mode 100644 index 0000000..004309d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreBusinessTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramStoreBusinessTicket; +import com.jwsaas.dao.BaseDao; + +public interface ProgramStoreBusinessTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreBusinessTicketDeliverDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreBusinessTicketDeliverDao.java new file mode 100644 index 0000000..a401988 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreBusinessTicketDeliverDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramStoreBusinessTicketDeliver; +import com.jwsaas.dao.BaseDao; + +public interface ProgramStoreBusinessTicketDeliverDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreBusinessTicketInfoDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreBusinessTicketInfoDao.java new file mode 100644 index 0000000..5909427 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreBusinessTicketInfoDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramStoreBusinessTicketInfo; +import com.jwsaas.dao.BaseDao; + +public interface ProgramStoreBusinessTicketInfoDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreDao.java new file mode 100644 index 0000000..7c9e433 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramStore; +import com.jwsaas.dao.BaseDao; + +public interface ProgramStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreMakeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreMakeDao.java new file mode 100644 index 0000000..c6d8a25 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreMakeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramStoreMake; +import com.jwsaas.dao.BaseDao; + +public interface ProgramStoreMakeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreOrderProductDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreOrderProductDao.java new file mode 100644 index 0000000..a1dbca6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreOrderProductDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramStoreOrderProduct; +import com.jwsaas.dao.BaseDao; + +public interface ProgramStoreOrderProductDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreOrderProductInfoDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreOrderProductInfoDao.java new file mode 100644 index 0000000..88bd5b4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreOrderProductInfoDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramStoreOrderProductInfo; +import com.jwsaas.dao.BaseDao; + +public interface ProgramStoreOrderProductInfoDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreOrderProductMakeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreOrderProductMakeDao.java new file mode 100644 index 0000000..379be62 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreOrderProductMakeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramStoreOrderProductMake; +import com.jwsaas.dao.BaseDao; + +public interface ProgramStoreOrderProductMakeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStorePayDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStorePayDao.java new file mode 100644 index 0000000..ce53b26 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStorePayDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramStorePay; +import com.jwsaas.dao.BaseDao; + +public interface ProgramStorePayDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreProductDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreProductDao.java new file mode 100644 index 0000000..cfc8b0e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ProgramStoreProductDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ProgramStoreProduct; +import com.jwsaas.dao.BaseDao; + +public interface ProgramStoreProductDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionBlackListGoodsDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionBlackListGoodsDao.java new file mode 100644 index 0000000..d087ba8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionBlackListGoodsDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PromotionBlackListGoods; +import com.jwsaas.dao.BaseDao; + +public interface PromotionBlackListGoodsDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionBlackListStoreAreaDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionBlackListStoreAreaDao.java new file mode 100644 index 0000000..8f5a477 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionBlackListStoreAreaDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PromotionBlackListStoreArea; +import com.jwsaas.dao.BaseDao; + +public interface PromotionBlackListStoreAreaDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionBlackListStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionBlackListStoreDao.java new file mode 100644 index 0000000..5e4724e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionBlackListStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PromotionBlackListStore; +import com.jwsaas.dao.BaseDao; + +public interface PromotionBlackListStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionCategoryDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionCategoryDao.java new file mode 100644 index 0000000..eacf871 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionCategoryDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PromotionCategory; +import com.jwsaas.dao.BaseDao; + +public interface PromotionCategoryDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionGoodsDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionGoodsDao.java new file mode 100644 index 0000000..dbeb308 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionGoodsDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PromotionGoods; +import com.jwsaas.dao.BaseDao; + +public interface PromotionGoodsDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionScheduleDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionScheduleDao.java new file mode 100644 index 0000000..c2831a0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionScheduleDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PromotionSchedule; +import com.jwsaas.dao.BaseDao; + +public interface PromotionScheduleDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionSchemeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionSchemeDao.java new file mode 100644 index 0000000..0ec7724 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionSchemeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PromotionScheme; +import com.jwsaas.dao.BaseDao; + +public interface PromotionSchemeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionStoreAreaDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionStoreAreaDao.java new file mode 100644 index 0000000..2b60157 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionStoreAreaDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PromotionStoreArea; +import com.jwsaas.dao.BaseDao; + +public interface PromotionStoreAreaDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionStoreDao.java new file mode 100644 index 0000000..a231b4c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PromotionStore; +import com.jwsaas.dao.BaseDao; + +public interface PromotionStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionTaskDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionTaskDao.java new file mode 100644 index 0000000..7432ba6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionTaskDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PromotionTask; +import com.jwsaas.dao.BaseDao; + +public interface PromotionTaskDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionTicketDao.java new file mode 100644 index 0000000..432f50b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PromotionTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PromotionTicket; +import com.jwsaas.dao.BaseDao; + +public interface PromotionTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseStorageTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseStorageTicketDao.java new file mode 100644 index 0000000..642da6f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseStorageTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PurchaseStorageTicket; +import com.jwsaas.dao.BaseDao; + +public interface PurchaseStorageTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseStorageTicketDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseStorageTicketDetailDao.java new file mode 100644 index 0000000..9569b87 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseStorageTicketDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PurchaseStorageTicketDetail; +import com.jwsaas.dao.BaseDao; + +public interface PurchaseStorageTicketDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseStorageTicketLogDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseStorageTicketLogDao.java new file mode 100644 index 0000000..1af0a0d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseStorageTicketLogDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PurchaseStorageTicketLog; +import com.jwsaas.dao.BaseDao; + +public interface PurchaseStorageTicketLogDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseTemplateDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseTemplateDao.java new file mode 100644 index 0000000..5998277 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseTemplateDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PurchaseTemplate; +import com.jwsaas.dao.BaseDao; + +public interface PurchaseTemplateDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseTemplateDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseTemplateDetailDao.java new file mode 100644 index 0000000..406bbe8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseTemplateDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PurchaseTemplateDetail; +import com.jwsaas.dao.BaseDao; + +public interface PurchaseTemplateDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseTicketDao.java new file mode 100644 index 0000000..a3b6028 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PurchaseTicket; +import com.jwsaas.dao.BaseDao; + +public interface PurchaseTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseTicketDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseTicketDetailDao.java new file mode 100644 index 0000000..71cb7d4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseTicketDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PurchaseTicketDetail; +import com.jwsaas.dao.BaseDao; + +public interface PurchaseTicketDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseTicketLogDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseTicketLogDao.java new file mode 100644 index 0000000..e3cf79d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchaseTicketLogDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PurchaseTicketLog; +import com.jwsaas.dao.BaseDao; + +public interface PurchaseTicketLogDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchasepriceDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchasepriceDao.java new file mode 100644 index 0000000..6db1333 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchasepriceDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.Purchaseprice; +import com.jwsaas.dao.BaseDao; + +public interface PurchasepriceDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchasepriceTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchasepriceTicketDao.java new file mode 100644 index 0000000..76187a2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchasepriceTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PurchasepriceTicket; +import com.jwsaas.dao.BaseDao; + +public interface PurchasepriceTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchasepriceTicketMaterialDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchasepriceTicketMaterialDao.java new file mode 100644 index 0000000..5b1a51d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/PurchasepriceTicketMaterialDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.PurchasepriceTicketMaterial; +import com.jwsaas.dao.BaseDao; + +public interface PurchasepriceTicketMaterialDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiAdjustPriceGoodsDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiAdjustPriceGoodsDao.java new file mode 100644 index 0000000..1bc8e53 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiAdjustPriceGoodsDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.QimaiAdjustPriceGoods; +import com.jwsaas.dao.BaseDao; + +public interface QimaiAdjustPriceGoodsDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiAdjustPriceStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiAdjustPriceStoreDao.java new file mode 100644 index 0000000..d1dd110 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiAdjustPriceStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.QimaiAdjustPriceStore; +import com.jwsaas.dao.BaseDao; + +public interface QimaiAdjustPriceStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiAdjustPriceTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiAdjustPriceTicketDao.java new file mode 100644 index 0000000..0deb929 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiAdjustPriceTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.QimaiAdjustPriceTicket; +import com.jwsaas.dao.BaseDao; + +public interface QimaiAdjustPriceTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiAttributeCategoryDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiAttributeCategoryDao.java new file mode 100644 index 0000000..9ea20b4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiAttributeCategoryDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.QimaiAttributeCategory; +import com.jwsaas.dao.BaseDao; + +public interface QimaiAttributeCategoryDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiAttributeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiAttributeDao.java new file mode 100644 index 0000000..b9aa711 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiAttributeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.QimaiAttribute; +import com.jwsaas.dao.BaseDao; + +public interface QimaiAttributeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiChargeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiChargeDao.java new file mode 100644 index 0000000..f7e9917 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiChargeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.QimaiCharge; +import com.jwsaas.dao.BaseDao; + +public interface QimaiChargeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiOrderDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiOrderDao.java new file mode 100644 index 0000000..42d6e30 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiOrderDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.QimaiOrder; +import com.jwsaas.dao.BaseDao; + +public interface QimaiOrderDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiOrderItemDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiOrderItemDao.java new file mode 100644 index 0000000..9174b5d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiOrderItemDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.QimaiOrderItem; +import com.jwsaas.dao.BaseDao; + +public interface QimaiOrderItemDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiOrderPayDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiOrderPayDao.java new file mode 100644 index 0000000..8c5be62 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiOrderPayDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.QimaiOrderPay; +import com.jwsaas.dao.BaseDao; + +public interface QimaiOrderPayDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductAttributeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductAttributeDao.java new file mode 100644 index 0000000..a109664 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductAttributeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.QimaiProductAttribute; +import com.jwsaas.dao.BaseDao; + +public interface QimaiProductAttributeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductCategoryDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductCategoryDao.java new file mode 100644 index 0000000..de93f4e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductCategoryDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.QimaiProductCategory; +import com.jwsaas.dao.BaseDao; + +public interface QimaiProductCategoryDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductChargeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductChargeDao.java new file mode 100644 index 0000000..b197238 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductChargeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.QimaiProductCharge; +import com.jwsaas.dao.BaseDao; + +public interface QimaiProductChargeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductDao.java new file mode 100644 index 0000000..107d610 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.QimaiProduct; +import com.jwsaas.dao.BaseDao; + +public interface QimaiProductDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductSpecDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductSpecDao.java new file mode 100644 index 0000000..2581ac5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductSpecDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.QimaiProductSpec; +import com.jwsaas.dao.BaseDao; + +public interface QimaiProductSpecDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductTemplateDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductTemplateDao.java new file mode 100644 index 0000000..1caa371 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductTemplateDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.QimaiProductTemplate; +import com.jwsaas.dao.BaseDao; + +public interface QimaiProductTemplateDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductTemplateDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductTemplateDetailDao.java new file mode 100644 index 0000000..80ce1d0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductTemplateDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.QimaiProductTemplateDetail; +import com.jwsaas.dao.BaseDao; + +public interface QimaiProductTemplateDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductTemplateStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductTemplateStoreDao.java new file mode 100644 index 0000000..afda132 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiProductTemplateStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.QimaiProductTemplateStore; +import com.jwsaas.dao.BaseDao; + +public interface QimaiProductTemplateStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiStoreDao.java new file mode 100644 index 0000000..d9d70d1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.QimaiStore; +import com.jwsaas.dao.BaseDao; + +public interface QimaiStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiStoreLableDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiStoreLableDao.java new file mode 100644 index 0000000..7a97be6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiStoreLableDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.QimaiStoreLable; +import com.jwsaas.dao.BaseDao; + +public interface QimaiStoreLableDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiStoreProductDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiStoreProductDao.java new file mode 100644 index 0000000..7eee282 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiStoreProductDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.QimaiStoreProduct; +import com.jwsaas.dao.BaseDao; + +public interface QimaiStoreProductDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiSuitDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiSuitDetailDao.java new file mode 100644 index 0000000..8e847bf --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/QimaiSuitDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.QimaiSuitDetail; +import com.jwsaas.dao.BaseDao; + +public interface QimaiSuitDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ReceiveDifferenceDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ReceiveDifferenceDetailDao.java new file mode 100644 index 0000000..b54f6eb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ReceiveDifferenceDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ReceiveDifferenceDetail; +import com.jwsaas.dao.BaseDao; + +public interface ReceiveDifferenceDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ReceiveDifferenceTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ReceiveDifferenceTicketDao.java new file mode 100644 index 0000000..d16484c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ReceiveDifferenceTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ReceiveDifferenceTicket; +import com.jwsaas.dao.BaseDao; + +public interface ReceiveDifferenceTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ReceiveDifferenceTicketLogDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ReceiveDifferenceTicketLogDao.java new file mode 100644 index 0000000..4b24421 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ReceiveDifferenceTicketLogDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ReceiveDifferenceTicketLog; +import com.jwsaas.dao.BaseDao; + +public interface ReceiveDifferenceTicketLogDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ReceiveDifferenceTicketPayDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ReceiveDifferenceTicketPayDao.java new file mode 100644 index 0000000..db34b06 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ReceiveDifferenceTicketPayDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ReceiveDifferenceTicketPay; +import com.jwsaas.dao.BaseDao; + +public interface ReceiveDifferenceTicketPayDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ReceiveGoodsDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ReceiveGoodsDetailDao.java new file mode 100644 index 0000000..9654eed --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ReceiveGoodsDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ReceiveGoodsDetail; +import com.jwsaas.dao.BaseDao; + +public interface ReceiveGoodsDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ReceiveGoodsTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ReceiveGoodsTicketDao.java new file mode 100644 index 0000000..42c1140 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ReceiveGoodsTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ReceiveGoodsTicket; +import com.jwsaas.dao.BaseDao; + +public interface ReceiveGoodsTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/RechargeParameterDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/RechargeParameterDao.java new file mode 100644 index 0000000..0bea2f2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/RechargeParameterDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.RechargeParameter; +import com.jwsaas.dao.BaseDao; + +public interface RechargeParameterDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/RechargeParameterStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/RechargeParameterStoreDao.java new file mode 100644 index 0000000..1f2db89 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/RechargeParameterStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.RechargeParameterStore; +import com.jwsaas.dao.BaseDao; + +public interface RechargeParameterStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SaleClearDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SaleClearDao.java new file mode 100644 index 0000000..81a8e01 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SaleClearDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.SaleClear; +import com.jwsaas.dao.BaseDao; + +public interface SaleClearDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ServerDataVersionDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ServerDataVersionDao.java new file mode 100644 index 0000000..e02c8c2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ServerDataVersionDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ServerDataVersion; +import com.jwsaas.dao.BaseDao; + +public interface ServerDataVersionDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ShopMeituanOrderDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ShopMeituanOrderDao.java new file mode 100644 index 0000000..cb5e59a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ShopMeituanOrderDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ShopMeituanOrder; +import com.jwsaas.dao.BaseDao; + +public interface ShopMeituanOrderDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ShopMeituanOrderExtraDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ShopMeituanOrderExtraDao.java new file mode 100644 index 0000000..e7beae9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ShopMeituanOrderExtraDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ShopMeituanOrderExtra; +import com.jwsaas.dao.BaseDao; + +public interface ShopMeituanOrderExtraDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ShopMeituanOrderItemDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ShopMeituanOrderItemDao.java new file mode 100644 index 0000000..f4f5d87 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ShopMeituanOrderItemDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ShopMeituanOrderItem; +import com.jwsaas.dao.BaseDao; + +public interface ShopMeituanOrderItemDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SplitFoodAccount2Dao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SplitFoodAccount2Dao.java new file mode 100644 index 0000000..7dd0287 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SplitFoodAccount2Dao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.SplitFoodAccount2; +import com.jwsaas.dao.BaseDao; + +public interface SplitFoodAccount2Dao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SplitFoodAccountDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SplitFoodAccountDao.java new file mode 100644 index 0000000..b96fe44 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SplitFoodAccountDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.SplitFoodAccount; +import com.jwsaas.dao.BaseDao; + +public interface SplitFoodAccountDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SplitPayLogDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SplitPayLogDao.java new file mode 100644 index 0000000..2573be0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SplitPayLogDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.SplitPayLog; +import com.jwsaas.dao.BaseDao; + +public interface SplitPayLogDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SplitPayResultDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SplitPayResultDao.java new file mode 100644 index 0000000..069ad36 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SplitPayResultDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.SplitPayResult; +import com.jwsaas.dao.BaseDao; + +public interface SplitPayResultDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SplitShopAccountDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SplitShopAccountDao.java new file mode 100644 index 0000000..ec13151 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SplitShopAccountDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.SplitShopAccount; +import com.jwsaas.dao.BaseDao; + +public interface SplitShopAccountDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SplitShopWithdrawalDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SplitShopWithdrawalDao.java new file mode 100644 index 0000000..6a6689c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SplitShopWithdrawalDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.SplitShopWithdrawal; +import com.jwsaas.dao.BaseDao; + +public interface SplitShopWithdrawalDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SplitStorePayDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SplitStorePayDao.java new file mode 100644 index 0000000..2d5b41b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SplitStorePayDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.SplitStorePay; +import com.jwsaas.dao.BaseDao; + +public interface SplitStorePayDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StorageDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StorageDao.java new file mode 100644 index 0000000..43fa567 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StorageDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.Storage; +import com.jwsaas.dao.BaseDao; + +public interface StorageDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StorageStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StorageStoreDao.java new file mode 100644 index 0000000..3c18922 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StorageStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StorageStore; +import com.jwsaas.dao.BaseDao; + +public interface StorageStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StorageTypeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StorageTypeDao.java new file mode 100644 index 0000000..8e342ac --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StorageTypeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StorageType; +import com.jwsaas.dao.BaseDao; + +public interface StorageTypeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreAccountDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreAccountDao.java new file mode 100644 index 0000000..7475b40 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreAccountDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreAccount; +import com.jwsaas.dao.BaseDao; + +public interface StoreAccountDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreAccountDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreAccountDetailDao.java new file mode 100644 index 0000000..e8900cd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreAccountDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreAccountDetail; +import com.jwsaas.dao.BaseDao; + +public interface StoreAccountDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreAccountRechargeParameterDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreAccountRechargeParameterDao.java new file mode 100644 index 0000000..57d3d82 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreAccountRechargeParameterDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreAccountRechargeParameter; +import com.jwsaas.dao.BaseDao; + +public interface StoreAccountRechargeParameterDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreAccountRechargeRecordDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreAccountRechargeRecordDao.java new file mode 100644 index 0000000..9e679cb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreAccountRechargeRecordDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreAccountRechargeRecord; +import com.jwsaas.dao.BaseDao; + +public interface StoreAccountRechargeRecordDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreAreaDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreAreaDao.java new file mode 100644 index 0000000..86c74e9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreAreaDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreArea; +import com.jwsaas.dao.BaseDao; + +public interface StoreAreaDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBrandDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBrandDao.java new file mode 100644 index 0000000..ceb8acc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBrandDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreBrand; +import com.jwsaas.dao.BaseDao; + +public interface StoreBrandDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBusinessTicketCheckDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBusinessTicketCheckDao.java new file mode 100644 index 0000000..4a03cd3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBusinessTicketCheckDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreBusinessTicketCheck; +import com.jwsaas.dao.BaseDao; + +public interface StoreBusinessTicketCheckDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBusinessTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBusinessTicketDao.java new file mode 100644 index 0000000..b09b8b2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBusinessTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreBusinessTicket; +import com.jwsaas.dao.BaseDao; + +public interface StoreBusinessTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBusinessTicketDaysummaryDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBusinessTicketDaysummaryDao.java new file mode 100644 index 0000000..46514cc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBusinessTicketDaysummaryDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreBusinessTicketDaysummary; +import com.jwsaas.dao.BaseDao; + +public interface StoreBusinessTicketDaysummaryDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBusinessTicketDeliveryDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBusinessTicketDeliveryDao.java new file mode 100644 index 0000000..78dda51 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBusinessTicketDeliveryDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreBusinessTicketDelivery; +import com.jwsaas.dao.BaseDao; + +public interface StoreBusinessTicketDeliveryDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBusinessTicketInfoDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBusinessTicketInfoDao.java new file mode 100644 index 0000000..8dde114 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBusinessTicketInfoDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreBusinessTicketInfo; +import com.jwsaas.dao.BaseDao; + +public interface StoreBusinessTicketInfoDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBusinessTicketInfoDaysummaryDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBusinessTicketInfoDaysummaryDao.java new file mode 100644 index 0000000..2e858cb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBusinessTicketInfoDaysummaryDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreBusinessTicketInfoDaysummary; +import com.jwsaas.dao.BaseDao; + +public interface StoreBusinessTicketInfoDaysummaryDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBusinessTicketTableDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBusinessTicketTableDao.java new file mode 100644 index 0000000..c4a27a1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreBusinessTicketTableDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreBusinessTicketTable; +import com.jwsaas.dao.BaseDao; + +public interface StoreBusinessTicketTableDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreCostManageDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreCostManageDao.java new file mode 100644 index 0000000..deed487 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreCostManageDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreCostManage; +import com.jwsaas.dao.BaseDao; + +public interface StoreCostManageDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreCostManageLogDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreCostManageLogDao.java new file mode 100644 index 0000000..1d5e4fd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreCostManageLogDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreCostManageLog; +import com.jwsaas.dao.BaseDao; + +public interface StoreCostManageLogDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreCostManageStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreCostManageStoreDao.java new file mode 100644 index 0000000..89ec8e1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreCostManageStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreCostManageStore; +import com.jwsaas.dao.BaseDao; + +public interface StoreCostManageStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreCostRevenueDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreCostRevenueDao.java new file mode 100644 index 0000000..c113789 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreCostRevenueDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreCostRevenue; +import com.jwsaas.dao.BaseDao; + +public interface StoreCostRevenueDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreDao.java new file mode 100644 index 0000000..76c1320 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.Store; +import com.jwsaas.dao.BaseDao; + +public interface StoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreDeliveryOrderDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreDeliveryOrderDao.java new file mode 100644 index 0000000..ef2690d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreDeliveryOrderDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreDeliveryOrder; +import com.jwsaas.dao.BaseDao; + +public interface StoreDeliveryOrderDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreDeliveryOrderItemDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreDeliveryOrderItemDao.java new file mode 100644 index 0000000..09b6980 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreDeliveryOrderItemDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreDeliveryOrderItem; +import com.jwsaas.dao.BaseDao; + +public interface StoreDeliveryOrderItemDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreDepartmentDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreDepartmentDao.java new file mode 100644 index 0000000..dd49113 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreDepartmentDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreDepartment; +import com.jwsaas.dao.BaseDao; + +public interface StoreDepartmentDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreDispatchAccountDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreDispatchAccountDao.java new file mode 100644 index 0000000..eefd3de --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreDispatchAccountDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreDispatchAccount; +import com.jwsaas.dao.BaseDao; + +public interface StoreDispatchAccountDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreDispatchAccountLogDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreDispatchAccountLogDao.java new file mode 100644 index 0000000..fa03ca9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreDispatchAccountLogDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreDispatchAccountLog; +import com.jwsaas.dao.BaseDao; + +public interface StoreDispatchAccountLogDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreEnchashmentRecordDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreEnchashmentRecordDao.java new file mode 100644 index 0000000..622bfe8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreEnchashmentRecordDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreEnchashmentRecord; +import com.jwsaas.dao.BaseDao; + +public interface StoreEnchashmentRecordDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreEnchashmentRecordLogDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreEnchashmentRecordLogDao.java new file mode 100644 index 0000000..1fde513 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreEnchashmentRecordLogDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreEnchashmentRecordLog; +import com.jwsaas.dao.BaseDao; + +public interface StoreEnchashmentRecordLogDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreFeeCutLogDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreFeeCutLogDao.java new file mode 100644 index 0000000..ec28d6c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreFeeCutLogDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreFeeCutLog; +import com.jwsaas.dao.BaseDao; + +public interface StoreFeeCutLogDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreHandoverDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreHandoverDao.java new file mode 100644 index 0000000..6c022a8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreHandoverDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreHandover; +import com.jwsaas.dao.BaseDao; + +public interface StoreHandoverDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreHandoverDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreHandoverDetailDao.java new file mode 100644 index 0000000..fc82787 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreHandoverDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreHandoverDetail; +import com.jwsaas.dao.BaseDao; + +public interface StoreHandoverDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreHandoverDetailPartDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreHandoverDetailPartDao.java new file mode 100644 index 0000000..f10eb8f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreHandoverDetailPartDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreHandoverDetailPart; +import com.jwsaas.dao.BaseDao; + +public interface StoreHandoverDetailPartDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreHandoverDetailPayDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreHandoverDetailPayDao.java new file mode 100644 index 0000000..9968d03 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreHandoverDetailPayDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreHandoverDetailPay; +import com.jwsaas.dao.BaseDao; + +public interface StoreHandoverDetailPayDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreLoginLogDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreLoginLogDao.java new file mode 100644 index 0000000..02d2ded --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreLoginLogDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreLoginLog; +import com.jwsaas.dao.BaseDao; + +public interface StoreLoginLogDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreOperationLogDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreOperationLogDao.java new file mode 100644 index 0000000..a4abe64 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreOperationLogDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreOperationLog; +import com.jwsaas.dao.BaseDao; + +public interface StoreOperationLogDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreOrderProductDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreOrderProductDao.java new file mode 100644 index 0000000..d343632 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreOrderProductDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreOrderProduct; +import com.jwsaas.dao.BaseDao; + +public interface StoreOrderProductDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreOrderProductDaysummaryDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreOrderProductDaysummaryDao.java new file mode 100644 index 0000000..6cc37f2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreOrderProductDaysummaryDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreOrderProductDaysummary; +import com.jwsaas.dao.BaseDao; + +public interface StoreOrderProductDaysummaryDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreOrderProductInfoDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreOrderProductInfoDao.java new file mode 100644 index 0000000..20921d3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreOrderProductInfoDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreOrderProductInfo; +import com.jwsaas.dao.BaseDao; + +public interface StoreOrderProductInfoDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreOrderProductInfoDaysummaryDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreOrderProductInfoDaysummaryDao.java new file mode 100644 index 0000000..bc7d605 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreOrderProductInfoDaysummaryDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreOrderProductInfoDaysummary; +import com.jwsaas.dao.BaseDao; + +public interface StoreOrderProductInfoDaysummaryDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreOrderProductMakeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreOrderProductMakeDao.java new file mode 100644 index 0000000..d97780c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreOrderProductMakeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreOrderProductMake; +import com.jwsaas.dao.BaseDao; + +public interface StoreOrderProductMakeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreOrderProductMakeDaysummaryDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreOrderProductMakeDaysummaryDao.java new file mode 100644 index 0000000..36c9a1c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreOrderProductMakeDaysummaryDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreOrderProductMakeDaysummary; +import com.jwsaas.dao.BaseDao; + +public interface StoreOrderProductMakeDaysummaryDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StorePayDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StorePayDao.java new file mode 100644 index 0000000..5640d1f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StorePayDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StorePay; +import com.jwsaas.dao.BaseDao; + +public interface StorePayDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StorePayDaysummaryDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StorePayDaysummaryDao.java new file mode 100644 index 0000000..f352390 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StorePayDaysummaryDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StorePayDaysummary; +import com.jwsaas.dao.BaseDao; + +public interface StorePayDaysummaryDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreProductDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreProductDao.java new file mode 100644 index 0000000..643dea5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreProductDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreProduct; +import com.jwsaas.dao.BaseDao; + +public interface StoreProductDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreProductSaleStockDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreProductSaleStockDao.java new file mode 100644 index 0000000..5948692 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreProductSaleStockDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreProductSaleStock; +import com.jwsaas.dao.BaseDao; + +public interface StoreProductSaleStockDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStockCheckTemplateDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStockCheckTemplateDao.java new file mode 100644 index 0000000..a225d80 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStockCheckTemplateDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreStockCheckTemplate; +import com.jwsaas.dao.BaseDao; + +public interface StoreStockCheckTemplateDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStockCheckTemplateDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStockCheckTemplateDetailDao.java new file mode 100644 index 0000000..2c40c00 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStockCheckTemplateDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreStockCheckTemplateDetail; +import com.jwsaas.dao.BaseDao; + +public interface StoreStockCheckTemplateDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStockCheckTemplateStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStockCheckTemplateStoreDao.java new file mode 100644 index 0000000..c434e31 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStockCheckTemplateStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreStockCheckTemplateStore; +import com.jwsaas.dao.BaseDao; + +public interface StoreStockCheckTemplateStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStockCheckTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStockCheckTicketDao.java new file mode 100644 index 0000000..9fe66f9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStockCheckTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreStockCheckTicket; +import com.jwsaas.dao.BaseDao; + +public interface StoreStockCheckTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStockCheckTicketDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStockCheckTicketDetailDao.java new file mode 100644 index 0000000..5e301c6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStockCheckTicketDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreStockCheckTicketDetail; +import com.jwsaas.dao.BaseDao; + +public interface StoreStockCheckTicketDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStockCheckTicketLogDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStockCheckTicketLogDao.java new file mode 100644 index 0000000..c15081a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStockCheckTicketLogDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreStockCheckTicketLog; +import com.jwsaas.dao.BaseDao; + +public interface StoreStockCheckTicketLogDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStorageDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStorageDao.java new file mode 100644 index 0000000..aab5976 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStorageDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreStorage; +import com.jwsaas.dao.BaseDao; + +public interface StoreStorageDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStorageOutTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStorageOutTicketDao.java new file mode 100644 index 0000000..2e7c6ff --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStorageOutTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreStorageOutTicket; +import com.jwsaas.dao.BaseDao; + +public interface StoreStorageOutTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStorageOutTicketDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStorageOutTicketDetailDao.java new file mode 100644 index 0000000..95a323d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStorageOutTicketDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreStorageOutTicketDetail; +import com.jwsaas.dao.BaseDao; + +public interface StoreStorageOutTicketDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStorageOutTicketLogDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStorageOutTicketLogDao.java new file mode 100644 index 0000000..d0322b8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStorageOutTicketLogDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreStorageOutTicketLog; +import com.jwsaas.dao.BaseDao; + +public interface StoreStorageOutTicketLogDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStorageTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStorageTicketDao.java new file mode 100644 index 0000000..3979ace --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStorageTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreStorageTicket; +import com.jwsaas.dao.BaseDao; + +public interface StoreStorageTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStorageTicketDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStorageTicketDetailDao.java new file mode 100644 index 0000000..0d2e011 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStorageTicketDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreStorageTicketDetail; +import com.jwsaas.dao.BaseDao; + +public interface StoreStorageTicketDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStorageTicketLogDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStorageTicketLogDao.java new file mode 100644 index 0000000..b1ad790 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreStorageTicketLogDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreStorageTicketLog; +import com.jwsaas.dao.BaseDao; + +public interface StoreStorageTicketLogDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreTypeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreTypeDao.java new file mode 100644 index 0000000..0236d5e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreTypeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreType; +import com.jwsaas.dao.BaseDao; + +public interface StoreTypeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreWorkerDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreWorkerDao.java new file mode 100644 index 0000000..629a32a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreWorkerDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreWorker; +import com.jwsaas.dao.BaseDao; + +public interface StoreWorkerDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreWorkerExtDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreWorkerExtDao.java new file mode 100644 index 0000000..f5f5e65 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreWorkerExtDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreWorkerExt; +import com.jwsaas.dao.BaseDao; + +public interface StoreWorkerExtDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreWorkerRoleDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreWorkerRoleDao.java new file mode 100644 index 0000000..5ab3fad --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoreWorkerRoleDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoreWorkerRole; +import com.jwsaas.dao.BaseDao; + +public interface StoreWorkerRoleDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoretableAreaDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoretableAreaDao.java new file mode 100644 index 0000000..e716c72 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoretableAreaDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoretableArea; +import com.jwsaas.dao.BaseDao; + +public interface StoretableAreaDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoretableDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoretableDao.java new file mode 100644 index 0000000..672eb4b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoretableDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.Storetable; +import com.jwsaas.dao.BaseDao; + +public interface StoretableDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoretableTypeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoretableTypeDao.java new file mode 100644 index 0000000..a249468 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/StoretableTypeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.StoretableType; +import com.jwsaas.dao.BaseDao; + +public interface StoretableTypeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SupplierDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SupplierDao.java new file mode 100644 index 0000000..ed64262 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SupplierDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.Supplier; +import com.jwsaas.dao.BaseDao; + +public interface SupplierDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SupplierTypeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SupplierTypeDao.java new file mode 100644 index 0000000..fb0fca6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/SupplierTypeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.SupplierType; +import com.jwsaas.dao.BaseDao; + +public interface SupplierTypeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/TaskScheduleDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/TaskScheduleDao.java new file mode 100644 index 0000000..5faa156 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/TaskScheduleDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.TaskSchedule; +import com.jwsaas.dao.BaseDao; + +public interface TaskScheduleDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ThuselevelTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ThuselevelTicketDao.java new file mode 100644 index 0000000..c5d6d6a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ThuselevelTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ThuselevelTicket; +import com.jwsaas.dao.BaseDao; + +public interface ThuselevelTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ThuselevelTicketMaterialDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ThuselevelTicketMaterialDao.java new file mode 100644 index 0000000..fd034d7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ThuselevelTicketMaterialDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ThuselevelTicketMaterial; +import com.jwsaas.dao.BaseDao; + +public interface ThuselevelTicketMaterialDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ThuselevelTicketStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ThuselevelTicketStoreDao.java new file mode 100644 index 0000000..761733c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/ThuselevelTicketStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.ThuselevelTicketStore; +import com.jwsaas.dao.BaseDao; + +public interface ThuselevelTicketStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/TicketPrintSettingDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/TicketPrintSettingDao.java new file mode 100644 index 0000000..5317302 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/TicketPrintSettingDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.TicketPrintSetting; +import com.jwsaas.dao.BaseDao; + +public interface TicketPrintSettingDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/TidianOrderDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/TidianOrderDao.java new file mode 100644 index 0000000..38a24f7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/TidianOrderDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.TidianOrder; +import com.jwsaas.dao.BaseDao; + +public interface TidianOrderDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/TidianOrderDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/TidianOrderDetailDao.java new file mode 100644 index 0000000..6175cfc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/TidianOrderDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.TidianOrderDetail; +import com.jwsaas.dao.BaseDao; + +public interface TidianOrderDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/TidianOrderPayDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/TidianOrderPayDao.java new file mode 100644 index 0000000..58697aa --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/TidianOrderPayDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.TidianOrderPay; +import com.jwsaas.dao.BaseDao; + +public interface TidianOrderPayDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/TidianStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/TidianStoreDao.java new file mode 100644 index 0000000..858acf9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/TidianStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.TidianStore; +import com.jwsaas.dao.BaseDao; + +public interface TidianStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VisitorAddressDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VisitorAddressDao.java new file mode 100644 index 0000000..5de872e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VisitorAddressDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.VisitorAddress; +import com.jwsaas.dao.BaseDao; + +public interface VisitorAddressDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VisitorDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VisitorDao.java new file mode 100644 index 0000000..467c0bf --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VisitorDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.Visitor; +import com.jwsaas.dao.BaseDao; + +public interface VisitorDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VisitorTagDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VisitorTagDao.java new file mode 100644 index 0000000..f62cd82 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VisitorTagDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.VisitorTag; +import com.jwsaas.dao.BaseDao; + +public interface VisitorTagDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposAdPictureDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposAdPictureDao.java new file mode 100644 index 0000000..ae70742 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposAdPictureDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.VposAdPicture; +import com.jwsaas.dao.BaseDao; + +public interface VposAdPictureDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposCcbfzAccountDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposCcbfzAccountDao.java new file mode 100644 index 0000000..8f9e2d5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposCcbfzAccountDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.VposCcbfzAccount; +import com.jwsaas.dao.BaseDao; + +public interface VposCcbfzAccountDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposProductEvaluateDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposProductEvaluateDao.java new file mode 100644 index 0000000..9f4e568 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposProductEvaluateDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.VposProductEvaluate; +import com.jwsaas.dao.BaseDao; + +public interface VposProductEvaluateDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposProductEvaluateImageDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposProductEvaluateImageDao.java new file mode 100644 index 0000000..bb44820 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposProductEvaluateImageDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.VposProductEvaluateImage; +import com.jwsaas.dao.BaseDao; + +public interface VposProductEvaluateImageDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposStoreBusinessTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposStoreBusinessTicketDao.java new file mode 100644 index 0000000..920e61b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposStoreBusinessTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.VposStoreBusinessTicket; +import com.jwsaas.dao.BaseDao; + +public interface VposStoreBusinessTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposStoreBusinessTicketInfoDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposStoreBusinessTicketInfoDao.java new file mode 100644 index 0000000..5cfe413 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposStoreBusinessTicketInfoDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.VposStoreBusinessTicketInfo; +import com.jwsaas.dao.BaseDao; + +public interface VposStoreBusinessTicketInfoDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposStoreOrderProductDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposStoreOrderProductDao.java new file mode 100644 index 0000000..61d1734 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposStoreOrderProductDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.VposStoreOrderProduct; +import com.jwsaas.dao.BaseDao; + +public interface VposStoreOrderProductDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposStoreOrderProductInfoDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposStoreOrderProductInfoDao.java new file mode 100644 index 0000000..564fe7b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposStoreOrderProductInfoDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.VposStoreOrderProductInfo; +import com.jwsaas.dao.BaseDao; + +public interface VposStoreOrderProductInfoDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposStoreOrderProductMakeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposStoreOrderProductMakeDao.java new file mode 100644 index 0000000..778ebff --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposStoreOrderProductMakeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.VposStoreOrderProductMake; +import com.jwsaas.dao.BaseDao; + +public interface VposStoreOrderProductMakeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposStorePayDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposStorePayDao.java new file mode 100644 index 0000000..2c32057 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposStorePayDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.VposStorePay; +import com.jwsaas.dao.BaseDao; + +public interface VposStorePayDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposUserDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposUserDao.java new file mode 100644 index 0000000..89c4dfa --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposUserDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.VposUser; +import com.jwsaas.dao.BaseDao; + +public interface VposUserDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposUserSeriesDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposUserSeriesDao.java new file mode 100644 index 0000000..ffede7b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/VposUserSeriesDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.VposUserSeries; +import com.jwsaas.dao.BaseDao; + +public interface VposUserSeriesDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WorkerStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WorkerStoreDao.java new file mode 100644 index 0000000..d1287f8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WorkerStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WorkerStore; +import com.jwsaas.dao.BaseDao; + +public interface WorkerStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxAdPictureDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxAdPictureDao.java new file mode 100644 index 0000000..727214e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxAdPictureDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxAdPicture; +import com.jwsaas.dao.BaseDao; + +public interface WxAdPictureDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxAdjustPriceGoodsDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxAdjustPriceGoodsDao.java new file mode 100644 index 0000000..c76b160 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxAdjustPriceGoodsDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxAdjustPriceGoods; +import com.jwsaas.dao.BaseDao; + +public interface WxAdjustPriceGoodsDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxAdjustPriceStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxAdjustPriceStoreDao.java new file mode 100644 index 0000000..b03e797 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxAdjustPriceStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxAdjustPriceStore; +import com.jwsaas.dao.BaseDao; + +public interface WxAdjustPriceStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxAdjustPriceTicketDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxAdjustPriceTicketDao.java new file mode 100644 index 0000000..71c2aad --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxAdjustPriceTicketDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxAdjustPriceTicket; +import com.jwsaas.dao.BaseDao; + +public interface WxAdjustPriceTicketDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxGoodsCategoryDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxGoodsCategoryDao.java new file mode 100644 index 0000000..ef0a2c8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxGoodsCategoryDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxGoodsCategory; +import com.jwsaas.dao.BaseDao; + +public interface WxGoodsCategoryDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxGoodsDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxGoodsDao.java new file mode 100644 index 0000000..91a6ce1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxGoodsDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxGoods; +import com.jwsaas.dao.BaseDao; + +public interface WxGoodsDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxGoodsMakeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxGoodsMakeDao.java new file mode 100644 index 0000000..9ec53b1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxGoodsMakeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxGoodsMake; +import com.jwsaas.dao.BaseDao; + +public interface WxGoodsMakeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxGoodsTemplateDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxGoodsTemplateDao.java new file mode 100644 index 0000000..d31ff36 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxGoodsTemplateDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxGoodsTemplate; +import com.jwsaas.dao.BaseDao; + +public interface WxGoodsTemplateDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxGoodsTemplateDetailDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxGoodsTemplateDetailDao.java new file mode 100644 index 0000000..1388314 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxGoodsTemplateDetailDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxGoodsTemplateDetail; +import com.jwsaas.dao.BaseDao; + +public interface WxGoodsTemplateDetailDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxGoodsTemplateStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxGoodsTemplateStoreDao.java new file mode 100644 index 0000000..c2e43c6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxGoodsTemplateStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxGoodsTemplateStore; +import com.jwsaas.dao.BaseDao; + +public interface WxGoodsTemplateStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxPaymentParameterDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxPaymentParameterDao.java new file mode 100644 index 0000000..2531dd8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxPaymentParameterDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxPaymentParameter; +import com.jwsaas.dao.BaseDao; + +public interface WxPaymentParameterDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxPaymentParameterStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxPaymentParameterStoreDao.java new file mode 100644 index 0000000..1191ce2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxPaymentParameterStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxPaymentParameterStore; +import com.jwsaas.dao.BaseDao; + +public interface WxPaymentParameterStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxQrcodeSettingDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxQrcodeSettingDao.java new file mode 100644 index 0000000..3af3502 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxQrcodeSettingDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxQrcodeSetting; +import com.jwsaas.dao.BaseDao; + +public interface WxQrcodeSettingDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxSalesDiscountInfoDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxSalesDiscountInfoDao.java new file mode 100644 index 0000000..5325a4b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxSalesDiscountInfoDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxSalesDiscountInfo; +import com.jwsaas.dao.BaseDao; + +public interface WxSalesDiscountInfoDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxSalesOrderDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxSalesOrderDao.java new file mode 100644 index 0000000..b961e24 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxSalesOrderDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxSalesOrder; +import com.jwsaas.dao.BaseDao; + +public interface WxSalesOrderDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxSalesOrderItemDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxSalesOrderItemDao.java new file mode 100644 index 0000000..abf5c59 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxSalesOrderItemDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxSalesOrderItem; +import com.jwsaas.dao.BaseDao; + +public interface WxSalesOrderItemDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxSalesOrderItemMakeDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxSalesOrderItemMakeDao.java new file mode 100644 index 0000000..34792ee --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxSalesOrderItemMakeDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxSalesOrderItemMake; +import com.jwsaas.dao.BaseDao; + +public interface WxSalesOrderItemMakeDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxSalesOrderItemPromoDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxSalesOrderItemPromoDao.java new file mode 100644 index 0000000..11daee0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxSalesOrderItemPromoDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxSalesOrderItemPromo; +import com.jwsaas.dao.BaseDao; + +public interface WxSalesOrderItemPromoDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxSalesOrderLogDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxSalesOrderLogDao.java new file mode 100644 index 0000000..e35c9fa --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxSalesOrderLogDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxSalesOrderLog; +import com.jwsaas.dao.BaseDao; + +public interface WxSalesOrderLogDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxSalesPaymentDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxSalesPaymentDao.java new file mode 100644 index 0000000..65a2754 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxSalesPaymentDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxSalesPayment; +import com.jwsaas.dao.BaseDao; + +public interface WxSalesPaymentDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxStoreDao.java new file mode 100644 index 0000000..341e66e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxStore; +import com.jwsaas.dao.BaseDao; + +public interface WxStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxStoreGoodsDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxStoreGoodsDao.java new file mode 100644 index 0000000..add6fab --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxStoreGoodsDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxStoreGoods; +import com.jwsaas.dao.BaseDao; + +public interface WxStoreGoodsDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxdcDistributionAddressDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxdcDistributionAddressDao.java new file mode 100644 index 0000000..079b603 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxdcDistributionAddressDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxdcDistributionAddress; +import com.jwsaas.dao.BaseDao; + +public interface WxdcDistributionAddressDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxdcRechargeOrderDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxdcRechargeOrderDao.java new file mode 100644 index 0000000..1986d77 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/WxdcRechargeOrderDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.WxdcRechargeOrder; +import com.jwsaas.dao.BaseDao; + +public interface WxdcRechargeOrderDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/YunposSetDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/YunposSetDao.java new file mode 100644 index 0000000..d180f43 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/YunposSetDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.YunposSet; +import com.jwsaas.dao.BaseDao; + +public interface YunposSetDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/YunposSetStoreDao.java b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/YunposSetStoreDao.java new file mode 100644 index 0000000..c45e7c5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.dao.food/YunposSetStoreDao.java @@ -0,0 +1,8 @@ +package com.jwsaas.dao.food; + +import com.jwsaas.entity.food.YunposSetStore; +import com.jwsaas.dao.BaseDao; + +public interface YunposSetStoreDao extends BaseDao { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AdjustPriceProduct.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AdjustPriceProduct.java new file mode 100644 index 0000000..760408f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AdjustPriceProduct.java @@ -0,0 +1,387 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:调价商品 + * 表代码:cy_adjust_price_product + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"AdjustPriceProduct") +public class AdjustPriceProduct extends BaseEntity { + + private static final long serialVersionUID = 1394198226116263479L; + + /** + *单据ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String ticketNo; + + /** + *商品ID + */ + private String productId; + + /** + *商品规格ID + */ + private String specId; + + /** + *原售价 + */ + private Double oldPrice; + + /** + *原最低售价 + */ + private Double oldMinPrice; + + /** + *原会员价 + */ + private Double oldMemberPrice; + + /** + *原三方价 + */ + private Double oldOtherPrice; + + /** + *原在线售价 + */ + private Double oldWprice; + + /** + *原在线会员价 + */ + private Double oldWmemberPrice; + + /** + *新售价 + */ + private Double price; + + /** + *新低售价 + */ + private Double minPrice; + + /** + *新会员价 + */ + private Double memberPrice; + + /** + *新三方价 + */ + private Double otherPrice; + + /** + *新在线售价 + */ + private Double wprice; + + /** + *新在线会员价 + */ + private Double wmemberPrice; + + + /** + * 字段名称 :单据ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :单据ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :商品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :商品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :原售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOldPrice() { + return this.oldPrice; + } + + /** + * 字段名称 :原售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOldPrice(Double oldPrice) { + this.oldPrice = oldPrice; + } + + /** + * 字段名称 :原最低售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOldMinPrice() { + return this.oldMinPrice; + } + + /** + * 字段名称 :原最低售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOldMinPrice(Double oldMinPrice) { + this.oldMinPrice = oldMinPrice; + } + + /** + * 字段名称 :原会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOldMemberPrice() { + return this.oldMemberPrice; + } + + /** + * 字段名称 :原会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOldMemberPrice(Double oldMemberPrice) { + this.oldMemberPrice = oldMemberPrice; + } + + /** + * 字段名称 :原三方价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOldOtherPrice() { + return this.oldOtherPrice; + } + + /** + * 字段名称 :原三方价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOldOtherPrice(Double oldOtherPrice) { + this.oldOtherPrice = oldOtherPrice; + } + + /** + * 字段名称 :原在线售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getOldWprice() { + return this.oldWprice; + } + + /** + * 字段名称 :原在线售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setOldWprice(Double oldWprice) { + this.oldWprice = oldWprice; + } + + /** + * 字段名称 :原在线会员价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getOldWmemberPrice() { + return this.oldWmemberPrice; + } + + /** + * 字段名称 :原在线会员价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setOldWmemberPrice(Double oldWmemberPrice) { + this.oldWmemberPrice = oldWmemberPrice; + } + + /** + * 字段名称 :新售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :新售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :新低售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMinPrice() { + return this.minPrice; + } + + /** + * 字段名称 :新低售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMinPrice(Double minPrice) { + this.minPrice = minPrice; + } + + /** + * 字段名称 :新会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMemberPrice() { + return this.memberPrice; + } + + /** + * 字段名称 :新会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMemberPrice(Double memberPrice) { + this.memberPrice = memberPrice; + } + + /** + * 字段名称 :新三方价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOtherPrice() { + return this.otherPrice; + } + + /** + * 字段名称 :新三方价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOtherPrice(Double otherPrice) { + this.otherPrice = otherPrice; + } + + /** + * 字段名称 :新在线售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getWprice() { + return this.wprice; + } + + /** + * 字段名称 :新在线售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setWprice(Double wprice) { + this.wprice = wprice; + } + + /** + * 字段名称 :新在线会员价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getWmemberPrice() { + return this.wmemberPrice; + } + + /** + * 字段名称 :新在线会员价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setWmemberPrice(Double wmemberPrice) { + this.wmemberPrice = wmemberPrice; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AdjustPriceStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AdjustPriceStore.java new file mode 100644 index 0000000..25f5cd0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AdjustPriceStore.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:调价单门店明细 + * 表代码:cy_adjust_price_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"AdjustPriceStore") +public class AdjustPriceStore extends BaseEntity { + + private static final long serialVersionUID = 1098380033997071732L; + + /** + *单据ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String ticketNo; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + + /** + * 字段名称 :单据ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :单据ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AdjustPriceTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AdjustPriceTicket.java new file mode 100644 index 0000000..20f88e7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AdjustPriceTicket.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店商品调价单 + * 表代码:cy_adjust_price_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"AdjustPriceTicket") +public class AdjustPriceTicket extends BaseEntity { + + private static final long serialVersionUID = 1306682643562634782L; + + /** + *单据编号 + */ + private String no; + + /** + *生效时间 + */ + private Date effectDate; + + /** + *备注信息 + */ + private String description; + + /** + *单据状态 + */ + private Integer status; + + /** + *审核人 + */ + private String checkPeople; + + /** + *审核日期 + */ + private Date checkDate; + + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :生效时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getEffectDate() { + return this.effectDate; + } + + /** + * 字段名称 :生效时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setEffectDate(Date effectDate) { + this.effectDate = effectDate; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getCheckPeople() { + return this.checkPeople; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setCheckPeople(String checkPeople) { + this.checkPeople = checkPeople; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckDate() { + return this.checkDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckDate(Date checkDate) { + this.checkDate = checkDate; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AdvertCaption.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AdvertCaption.java new file mode 100644 index 0000000..64a84da --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AdvertCaption.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:双屏广告字幕 + * 表代码:cy_advert_caption + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"AdvertCaption") +public class AdvertCaption extends BaseEntity { + + private static final long serialVersionUID = 1151403078074701652L; + + /** + *字幕名称 + */ + private String name; + + /** + *字幕内容 + */ + private String content; + + /** + *停用 + */ + private Integer stopFlag; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :字幕名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :字幕名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :字幕内容 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getContent() { + return this.content; + } + + /** + * 字段名称 :字幕内容 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setContent(String content) { + this.content = content; + } + + /** + * 字段名称 :停用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStopFlag() { + return this.stopFlag; + } + + /** + * 字段名称 :停用 + * 数据类型 :int + * 是否必填 :false + */ + public void setStopFlag(Integer stopFlag) { + this.stopFlag = stopFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AdvertCaptionStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AdvertCaptionStore.java new file mode 100644 index 0000000..5246a7f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AdvertCaptionStore.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:双屏广告字幕门店关联 + * 表代码:cy_advert_caption_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"AdvertCaptionStore") +public class AdvertCaptionStore extends BaseEntity { + + private static final long serialVersionUID = 1840093438762882113L; + + /** + *门店ID + */ + private String storeId; + + /** + *字幕ID + */ + private String captionId; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :字幕ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getCaptionId() { + return this.captionId; + } + + /** + * 字段名称 :字幕ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setCaptionId(String captionId) { + this.captionId = captionId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AdvertPicture.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AdvertPicture.java new file mode 100644 index 0000000..3f59e81 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AdvertPicture.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:双屏广告图片 + * 表代码:cy_advert_picture + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"AdvertPicture") +public class AdvertPicture extends BaseEntity { + + private static final long serialVersionUID = 1643853637930302109L; + + /** + *显示序号 + */ + private String orderNo; + + /** + *图片名称 + */ + private String name; + + /** + *图片宽度 + */ + private Integer width; + + /** + *图片高度 + */ + private Integer height; + + /** + *存储组名 + */ + private String groupName; + + /** + *存储文件名 + */ + private String storageFileName; + + /** + *停用 + */ + private Integer stopFlag; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setOrderNo(String orderNo) { + this.orderNo = orderNo; + } + + /** + * 字段名称 :图片名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :图片名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getWidth() { + return this.width; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public void setWidth(Integer width) { + this.width = width; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getHeight() { + return this.height; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public void setHeight(Integer height) { + this.height = height; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getGroupName() { + return this.groupName; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getStorageFileName() { + return this.storageFileName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setStorageFileName(String storageFileName) { + this.storageFileName = storageFileName; + } + + /** + * 字段名称 :停用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStopFlag() { + return this.stopFlag; + } + + /** + * 字段名称 :停用 + * 数据类型 :int + * 是否必填 :false + */ + public void setStopFlag(Integer stopFlag) { + this.stopFlag = stopFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AdvertPictureStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AdvertPictureStore.java new file mode 100644 index 0000000..ab405a6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AdvertPictureStore.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:双屏广告图片门店关联 + * 表代码:cy_advert_picture_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"AdvertPictureStore") +public class AdvertPictureStore extends BaseEntity { + + private static final long serialVersionUID = 1808728394158412358L; + + /** + *门店ID + */ + private String storeId; + + /** + *图片ID + */ + private String pictureId; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :图片ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPictureId() { + return this.pictureId; + } + + /** + * 字段名称 :图片ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPictureId(String pictureId) { + this.pictureId = pictureId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Agent.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Agent.java new file mode 100644 index 0000000..2a3e260 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Agent.java @@ -0,0 +1,249 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:总部代理商信息 + * 表代码:cy_agent + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"Agent") +public class Agent extends BaseEntity { + + private static final long serialVersionUID = 1071236595880313563L; + + /** + *人员编号 + */ + private String no; + + /** + *人员姓名 + */ + private String name; + + /** + *性别 + */ + private Integer sex; + + /** + *出生日期 + */ + private Date birthday; + + /** + *邮箱 + */ + private String email; + + /** + *手机 + */ + private String mobile; + + /** + *是否登陆 + */ + private Integer isLogin; + + /** + *登录密码 + */ + private String passwd; + + /** + *是否启用 + */ + private Integer enable; + + /** + *备注 + */ + private String description; + + + /** + * 字段名称 :人员编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :人员编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :人员姓名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :人员姓名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :性别 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSex() { + return this.sex; + } + + /** + * 字段名称 :性别 + * 数据类型 :int + * 是否必填 :false + */ + public void setSex(Integer sex) { + this.sex = sex; + } + + /** + * 字段名称 :出生日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getBirthday() { + return this.birthday; + } + + /** + * 字段名称 :出生日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setBirthday(Date birthday) { + this.birthday = birthday; + } + + /** + * 字段名称 :邮箱 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getEmail() { + return this.email; + } + + /** + * 字段名称 :邮箱 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setEmail(String email) { + this.email = email; + } + + /** + * 字段名称 :手机 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getMobile() { + return this.mobile; + } + + /** + * 字段名称 :手机 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setMobile(String mobile) { + this.mobile = mobile; + } + + /** + * 字段名称 :是否登陆 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsLogin() { + return this.isLogin; + } + + /** + * 字段名称 :是否登陆 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsLogin(Integer isLogin) { + this.isLogin = isLogin; + } + + /** + * 字段名称 :登录密码 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getPasswd() { + return this.passwd; + } + + /** + * 字段名称 :登录密码 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setPasswd(String passwd) { + this.passwd = passwd; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnable() { + return this.enable; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setEnable(Integer enable) { + this.enable = enable; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AgentStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AgentStore.java new file mode 100644 index 0000000..9f4efe4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AgentStore.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:总部代理商门店关联 + * 表代码:cy_agent_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"AgentStore") +public class AgentStore extends BaseEntity { + + private static final long serialVersionUID = 1320212159284481448L; + + /** + *总部代理商ID + */ + private String agentId; + + /** + *值类型 + */ + private Integer valueType; + + /** + *值Id + */ + private String valueId; + + /** + *值编号 + */ + private String valueNo; + + /** + *值名称 + */ + private String valueName; + + + /** + * 字段名称 :总部代理商ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getAgentId() { + return this.agentId; + } + + /** + * 字段名称 :总部代理商ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setAgentId(String agentId) { + this.agentId = agentId; + } + + /** + * 字段名称 :值类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getValueType() { + return this.valueType; + } + + /** + * 字段名称 :值类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setValueType(Integer valueType) { + this.valueType = valueType; + } + + /** + * 字段名称 :值Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getValueId() { + return this.valueId; + } + + /** + * 字段名称 :值Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setValueId(String valueId) { + this.valueId = valueId; + } + + /** + * 字段名称 :值编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getValueNo() { + return this.valueNo; + } + + /** + * 字段名称 :值编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setValueNo(String valueNo) { + this.valueNo = valueNo; + } + + /** + * 字段名称 :值名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getValueName() { + return this.valueName; + } + + /** + * 字段名称 :值名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setValueName(String valueName) { + this.valueName = valueName; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsDetail.java new file mode 100644 index 0000000..ec01271 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsDetail.java @@ -0,0 +1,410 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:要货单明细 + * 表代码:cy_ask_goods_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"AskGoodsDetail") +public class AskGoodsDetail extends BaseEntity { + + private static final long serialVersionUID = 1447882213228601215L; + + /** + *要货单Id + */ + private String ticketId; + + /** + *要货单编号 + */ + private String ticketNo; + + /** + *原料Id + */ + private String productId; + + /** + *原料编码 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *库存单位(包装单位) + */ + private String packUnitId; + + /** + *库存单位名 + */ + private String packUnitName; + + /** + *库存数量 + */ + private Double packUnitAmount; + + /** + *配送单位 + */ + private String dispatchUnitId; + + /** + *配送单位名 + */ + private String dispatchUnitName; + + /** + *要货数量(配送单位数量) + */ + private Double amount; + + /** + *单价(配送价) + */ + private Double price; + + /** + *金额 + */ + private Double money; + + /** + *备注说明 + */ + private String description; + + + /** + * 字段名称 :要货单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :要货单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :要货单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :要货单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :原料Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :库存单位(包装单位) + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPackUnitId() { + return this.packUnitId; + } + + /** + * 字段名称 :库存单位(包装单位) + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPackUnitId(String packUnitId) { + this.packUnitId = packUnitId; + } + + /** + * 字段名称 :库存单位名 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPackUnitName() { + return this.packUnitName; + } + + /** + * 字段名称 :库存单位名 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPackUnitName(String packUnitName) { + this.packUnitName = packUnitName; + } + + /** + * 字段名称 :库存数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPackUnitAmount() { + return this.packUnitAmount; + } + + /** + * 字段名称 :库存数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPackUnitAmount(Double packUnitAmount) { + this.packUnitAmount = packUnitAmount; + } + + /** + * 字段名称 :配送单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchUnitId() { + return this.dispatchUnitId; + } + + /** + * 字段名称 :配送单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchUnitId(String dispatchUnitId) { + this.dispatchUnitId = dispatchUnitId; + } + + /** + * 字段名称 :配送单位名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDispatchUnitName() { + return this.dispatchUnitName; + } + + /** + * 字段名称 :配送单位名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDispatchUnitName(String dispatchUnitName) { + this.dispatchUnitName = dispatchUnitName; + } + + /** + * 字段名称 :要货数量(配送单位数量) + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :要货数量(配送单位数量) + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :单价(配送价) + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :单价(配送价) + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsSuit.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsSuit.java new file mode 100644 index 0000000..75de93f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsSuit.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:要货商品套餐 + * 表代码:cy_ask_goods_suit + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"AskGoodsSuit") +public class AskGoodsSuit extends BaseEntity { + + private static final long serialVersionUID = 1008678197293206581L; + + /** + *编号 + */ + private String no; + + /** + *套餐名称 + */ + private String name; + + /** + *备注信息 + */ + private String description; + + /** + *是否允许修改数量 + */ + private Integer isEdit; + + /** + *原料是否允许单独显示 + */ + private Integer isSingleDisplay; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :套餐名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :套餐名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :是否允许修改数量 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getIsEdit() { + return this.isEdit; + } + + /** + * 字段名称 :是否允许修改数量 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setIsEdit(Integer isEdit) { + this.isEdit = isEdit; + } + + /** + * 字段名称 :原料是否允许单独显示 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getIsSingleDisplay() { + return this.isSingleDisplay; + } + + /** + * 字段名称 :原料是否允许单独显示 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setIsSingleDisplay(Integer isSingleDisplay) { + this.isSingleDisplay = isSingleDisplay; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsSuitDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsSuitDetail.java new file mode 100644 index 0000000..695ef59 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsSuitDetail.java @@ -0,0 +1,272 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:要货商品套餐明细 + * 表代码:cy_ask_goods_suit_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"AskGoodsSuitDetail") +public class AskGoodsSuitDetail extends BaseEntity { + + private static final long serialVersionUID = 1271331078004709007L; + + /** + *套餐Id + */ + private String suitId; + + /** + *原料Id + */ + private String productId; + + /** + *原料编码 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *配送单位 + */ + private String dispatchUnitId; + + /** + *配送单位名称 + */ + private String dispatchUnitName; + + /** + *数量 + */ + private Double amount; + + /** + *是否主原料 + */ + private Integer isMain; + + /** + *备注说明 + */ + private String description; + + + /** + * 字段名称 :套餐Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSuitId() { + return this.suitId; + } + + /** + * 字段名称 :套餐Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSuitId(String suitId) { + this.suitId = suitId; + } + + /** + * 字段名称 :原料Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :配送单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchUnitId() { + return this.dispatchUnitId; + } + + /** + * 字段名称 :配送单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchUnitId(String dispatchUnitId) { + this.dispatchUnitId = dispatchUnitId; + } + + /** + * 字段名称 :配送单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDispatchUnitName() { + return this.dispatchUnitName; + } + + /** + * 字段名称 :配送单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDispatchUnitName(String dispatchUnitName) { + this.dispatchUnitName = dispatchUnitName; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :是否主原料 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getIsMain() { + return this.isMain; + } + + /** + * 字段名称 :是否主原料 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setIsMain(Integer isMain) { + this.isMain = isMain; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsTemplate.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsTemplate.java new file mode 100644 index 0000000..2d5e7b9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsTemplate.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:要货单模板 + * 表代码:cy_ask_goods_template + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"AskGoodsTemplate") +public class AskGoodsTemplate extends BaseEntity { + + private static final long serialVersionUID = 1116673382363132737L; + + /** + *编号 + */ + private String no; + + /** + *模板名称 + */ + private String name; + + /** + *备注信息 + */ + private String description; + + /** + *是否自建模板 + */ + private Integer selfFlag; + + /** + *自建门店 + */ + private String storeId; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :模板名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :模板名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :是否自建模板 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSelfFlag() { + return this.selfFlag; + } + + /** + * 字段名称 :是否自建模板 + * 数据类型 :int + * 是否必填 :false + */ + public void setSelfFlag(Integer selfFlag) { + this.selfFlag = selfFlag; + } + + /** + * 字段名称 :自建门店 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :自建门店 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsTemplateDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsTemplateDetail.java new file mode 100644 index 0000000..c1322cc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsTemplateDetail.java @@ -0,0 +1,249 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:要货单模板明细 + * 表代码:cy_ask_goods_template_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"AskGoodsTemplateDetail") +public class AskGoodsTemplateDetail extends BaseEntity { + + private static final long serialVersionUID = 1602332000039348306L; + + /** + *要货单模板Id + */ + private String ticketId; + + /** + *原料Id + */ + private String productId; + + /** + *原料编码 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *配送单位 + */ + private String dispatchUnitId; + + /** + *配送单位名称 + */ + private String dispatchUnitName; + + /** + *备注说明 + */ + private String description; + + + /** + * 字段名称 :要货单模板Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :要货单模板Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :原料Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :配送单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchUnitId() { + return this.dispatchUnitId; + } + + /** + * 字段名称 :配送单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchUnitId(String dispatchUnitId) { + this.dispatchUnitId = dispatchUnitId; + } + + /** + * 字段名称 :配送单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDispatchUnitName() { + return this.dispatchUnitName; + } + + /** + * 字段名称 :配送单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDispatchUnitName(String dispatchUnitName) { + this.dispatchUnitName = dispatchUnitName; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsTemplateStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsTemplateStore.java new file mode 100644 index 0000000..b207599 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsTemplateStore.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:要货单模板门店关联 + * 表代码:cy_ask_goods_template_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"AskGoodsTemplateStore") +public class AskGoodsTemplateStore extends BaseEntity { + + private static final long serialVersionUID = 1578762346455459265L; + + /** + *门店ID + */ + private String storeId; + + /** + *模板ID + */ + private String ticketId; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsTicket.java new file mode 100644 index 0000000..84a4a15 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsTicket.java @@ -0,0 +1,525 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:要货单 + * 表代码:cy_ask_goods_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"AskGoodsTicket") +public class AskGoodsTicket extends BaseEntity { + + private static final long serialVersionUID = 1662213442353368517L; + + /** + *单据编号 + */ + private String no; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *备注信息 + */ + private String description; + + /** + *单据状态 + */ + private Integer status; + + /** + *支付状态 + */ + private Integer payStatus; + + /** + *商品总额 + */ + private Double productMoney; + + /** + *配送费用 + */ + private Double dispatchMoney; + + /** + *总金额 + */ + private Double totalMoney; + + /** + *是否选用 + */ + private Integer isUse; + + /** + *制单人 + */ + private String setMan; + + /** + *制单日期 + */ + private Date setDate; + + /** + *审核人 + */ + private String checkMan; + + /** + *审核日期 + */ + private Date checkDate; + + /** + *发货日期 + */ + private Date dispatchDate; + + /** + *驳回作废原因 + */ + private String reason; + + /** + *来源标识 + */ + private String sourceSign; + + /** + *配送方式 + */ + private String deliveryMode; + + /** + *配送方式说明 + */ + private String deliveryModeDesc; + + /** + *条码标识 + */ + private String barCodeNo; + + /** + *ERP单据是否审核 + */ + private Integer erpToExamine; + + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :支付状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPayStatus() { + return this.payStatus; + } + + /** + * 字段名称 :支付状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setPayStatus(Integer payStatus) { + this.payStatus = payStatus; + } + + /** + * 字段名称 :商品总额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getProductMoney() { + return this.productMoney; + } + + /** + * 字段名称 :商品总额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setProductMoney(Double productMoney) { + this.productMoney = productMoney; + } + + /** + * 字段名称 :配送费用 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDispatchMoney() { + return this.dispatchMoney; + } + + /** + * 字段名称 :配送费用 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDispatchMoney(Double dispatchMoney) { + this.dispatchMoney = dispatchMoney; + } + + /** + * 字段名称 :总金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getTotalMoney() { + return this.totalMoney; + } + + /** + * 字段名称 :总金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setTotalMoney(Double totalMoney) { + this.totalMoney = totalMoney; + } + + /** + * 字段名称 :是否选用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsUse() { + return this.isUse; + } + + /** + * 字段名称 :是否选用 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsUse(Integer isUse) { + this.isUse = isUse; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetMan() { + return this.setMan; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetMan(String setMan) { + this.setMan = setMan; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSetDate() { + return this.setDate; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSetDate(Date setDate) { + this.setDate = setDate; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCheckMan() { + return this.checkMan; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCheckMan(String checkMan) { + this.checkMan = checkMan; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckDate() { + return this.checkDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckDate(Date checkDate) { + this.checkDate = checkDate; + } + + /** + * 字段名称 :发货日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getDispatchDate() { + return this.dispatchDate; + } + + /** + * 字段名称 :发货日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setDispatchDate(Date dispatchDate) { + this.dispatchDate = dispatchDate; + } + + /** + * 字段名称 :驳回作废原因 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getReason() { + return this.reason; + } + + /** + * 字段名称 :驳回作废原因 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setReason(String reason) { + this.reason = reason; + } + + /** + * 字段名称 :来源标识 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSourceSign() { + return this.sourceSign; + } + + /** + * 字段名称 :来源标识 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSourceSign(String sourceSign) { + this.sourceSign = sourceSign; + } + + /** + * 字段名称 :配送方式 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDeliveryMode() { + return this.deliveryMode; + } + + /** + * 字段名称 :配送方式 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDeliveryMode(String deliveryMode) { + this.deliveryMode = deliveryMode; + } + + /** + * 字段名称 :配送方式说明 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDeliveryModeDesc() { + return this.deliveryModeDesc; + } + + /** + * 字段名称 :配送方式说明 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDeliveryModeDesc(String deliveryModeDesc) { + this.deliveryModeDesc = deliveryModeDesc; + } + + /** + * 字段名称 :条码标识 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBarCodeNo() { + return this.barCodeNo; + } + + /** + * 字段名称 :条码标识 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBarCodeNo(String barCodeNo) { + this.barCodeNo = barCodeNo; + } + + /** + * 字段名称 :ERP单据是否审核 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getErpToExamine() { + return this.erpToExamine; + } + + /** + * 字段名称 :ERP单据是否审核 + * 数据类型 :int + * 是否必填 :false + */ + public void setErpToExamine(Integer erpToExamine) { + this.erpToExamine = erpToExamine; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsTicketLog.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsTicketLog.java new file mode 100644 index 0000000..9ac321e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsTicketLog.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:要货操作记录 + * 表代码:cy_ask_goods_ticket_log + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"AskGoodsTicketLog") +public class AskGoodsTicketLog extends BaseEntity { + + private static final long serialVersionUID = 1568949840209236641L; + + /** + *要货单ID + */ + private String ticketId; + + /** + *要货单编号 + */ + private String ticketNo; + + /** + *操作类型 + */ + private Integer type; + + /** + *单据状态 + */ + private Integer status; + + /** + *付款状态 + */ + private Integer payStatus; + + /** + *描述 + */ + private String description; + + + /** + * 字段名称 :要货单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :要货单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :要货单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :要货单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :付款状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPayStatus() { + return this.payStatus; + } + + /** + * 字段名称 :付款状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setPayStatus(Integer payStatus) { + this.payStatus = payStatus; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsTicketPay.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsTicketPay.java new file mode 100644 index 0000000..8d8a24e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/AskGoodsTicketPay.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:要货单付款明细 + * 表代码:cy_ask_goods_ticket_pay + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"AskGoodsTicketPay") +public class AskGoodsTicketPay extends BaseEntity { + + private static final long serialVersionUID = 1339367781044624888L; + + /** + *要货单Id + */ + private String ticketId; + + /** + *要货单编号 + */ + private String ticketNo; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *备注信息 + */ + private String description; + + /** + *类型 + */ + private Integer type; + + /** + *金额 + */ + private Double money; + + + /** + * 字段名称 :要货单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :要货单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :要货单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :要货单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/BaiduFood.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/BaiduFood.java new file mode 100644 index 0000000..46df684 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/BaiduFood.java @@ -0,0 +1,364 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:百度菜品信息 + * 表代码:cy_baidu_food + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"BaiduFood") +public class BaiduFood extends BaseEntity { + + private static final long serialVersionUID = 1929503264934927704L; + + /** + *门店ID + */ + private String storeId; + + /** + *菜品分类名称 + */ + private String categoryName; + + /** + *百度菜品ID + */ + private String dishId; + + /** + *菜品名称 + */ + private String dishName; + + /** + *规格ID + */ + private String dishSkuId; + + /** + *规格名称 + */ + private String spec; + + /** + *菜品描述 + */ + private String description; + + /** + *价格 + */ + private Double price; + + /** + *餐盒数量 + */ + private Integer boxNum; + + /** + *餐盒单价 + */ + private Double boxPrice; + + /** + *是否绑定 + */ + private Integer isBind; + + /** + *erp商品ID + */ + private String erpProductId; + + /** + *erp商品 + */ + private String erpProduct; + + /** + *erp规格ID + */ + private String erpSpecId; + + /** + *erp规格 + */ + private String erpSpec; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :菜品分类名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getCategoryName() { + return this.categoryName; + } + + /** + * 字段名称 :菜品分类名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setCategoryName(String categoryName) { + this.categoryName = categoryName; + } + + /** + * 字段名称 :百度菜品ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDishId() { + return this.dishId; + } + + /** + * 字段名称 :百度菜品ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDishId(String dishId) { + this.dishId = dishId; + } + + /** + * 字段名称 :菜品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDishName() { + return this.dishName; + } + + /** + * 字段名称 :菜品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDishName(String dishName) { + this.dishName = dishName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDishSkuId() { + return this.dishSkuId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDishSkuId(String dishSkuId) { + this.dishSkuId = dishSkuId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpec() { + return this.spec; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpec(String spec) { + this.spec = spec; + } + + /** + * 字段名称 :菜品描述 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :菜品描述 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :餐盒数量 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBoxNum() { + return this.boxNum; + } + + /** + * 字段名称 :餐盒数量 + * 数据类型 :int + * 是否必填 :false + */ + public void setBoxNum(Integer boxNum) { + this.boxNum = boxNum; + } + + /** + * 字段名称 :餐盒单价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getBoxPrice() { + return this.boxPrice; + } + + /** + * 字段名称 :餐盒单价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setBoxPrice(Double boxPrice) { + this.boxPrice = boxPrice; + } + + /** + * 字段名称 :是否绑定 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsBind() { + return this.isBind; + } + + /** + * 字段名称 :是否绑定 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsBind(Integer isBind) { + this.isBind = isBind; + } + + /** + * 字段名称 :erp商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getErpProductId() { + return this.erpProductId; + } + + /** + * 字段名称 :erp商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setErpProductId(String erpProductId) { + this.erpProductId = erpProductId; + } + + /** + * 字段名称 :erp商品 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getErpProduct() { + return this.erpProduct; + } + + /** + * 字段名称 :erp商品 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setErpProduct(String erpProduct) { + this.erpProduct = erpProduct; + } + + /** + * 字段名称 :erp规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getErpSpecId() { + return this.erpSpecId; + } + + /** + * 字段名称 :erp规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setErpSpecId(String erpSpecId) { + this.erpSpecId = erpSpecId; + } + + /** + * 字段名称 :erp规格 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getErpSpec() { + return this.erpSpec; + } + + /** + * 字段名称 :erp规格 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setErpSpec(String erpSpec) { + this.erpSpec = erpSpec; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/BaiduOrder.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/BaiduOrder.java new file mode 100644 index 0000000..e2d528a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/BaiduOrder.java @@ -0,0 +1,893 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:百度外卖订单 + * 表代码:cy_baidu_order + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"BaiduOrder") +public class BaiduOrder extends BaseEntity { + + private static final long serialVersionUID = 1442870361131644393L; + + /** + *百度应用编号 + */ + private String source; + + /** + *商户ID + */ + private String shopId; + + /** + *订单内容 + */ + private String body; + + /** + *百度商户ID + */ + private String baiduShopId; + + /** + *百度商户名称 + */ + private String baiduShopName; + + /** + *订单ID + */ + private String orderId; + + /** + *是否立即送餐 + */ + private Integer sendImmediately; + + /** + *订单当日流水号 + */ + private String orderIndex; + + /** + *订单状态 + */ + private Integer status; + + /** + *送达时间类型 + */ + private Integer expectTimeMode; + + /** + *期望送达时间 + */ + private String sendTime; + + /** + *取餐时间 + */ + private String pickupTime; + + /** + *到店时间 + */ + private String atshopTime; + + /** + *送餐时间 + */ + private String deliveryTime; + + /** + *骑士手机号 + */ + private String deliveryPhone; + + /** + *完成时间 + */ + private String finishedTime; + + /** + *确认时间 + */ + private String confirmTime; + + /** + *取消时间 + */ + private String cancelTime; + + /** + *配送费 + */ + private Integer sendFee; + + /** + *餐盒费 + */ + private Integer packageFee; + + /** + *优惠总金额 + */ + private Integer discountFee; + + /** + *商户应收金额 + */ + private Integer shopFee; + + /** + *订单总金额 + */ + private Integer totalFee; + + /** + *用户实付金额 + */ + private Integer userFee; + + /** + *付款类型 + */ + private Integer payType; + + /** + *是否需要发票 + */ + private Integer needInvoice; + + /** + *发票抬头 + */ + private String invoiceTitle; + + /** + *订单备注 + */ + private String remark; + + /** + *物流类型 + */ + private Integer deliveryParty; + + /** + *创建时间 + */ + private String createTime; + + /** + *餐具数量 + */ + private String mealNum; + + /** + *取消订单责任承担方 + */ + private String responsibleParty; + + /** + *佣金 + */ + private Integer commission; + + /** + *订单客户信息 + */ + private String user; + + /** + *商户信息 + */ + private String shop; + + /** + *订单商品信息数组 + */ + private String products; + + /** + *优惠信息 + */ + private String discount; + + /** + *部分退款 + */ + private String partRefundInfo; + + + /** + * 字段名称 :百度应用编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSource() { + return this.source; + } + + /** + * 字段名称 :百度应用编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSource(String source) { + this.source = source; + } + + /** + * 字段名称 :商户ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getShopId() { + return this.shopId; + } + + /** + * 字段名称 :商户ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setShopId(String shopId) { + this.shopId = shopId; + } + + /** + * 字段名称 :订单内容 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getBody() { + return this.body; + } + + /** + * 字段名称 :订单内容 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setBody(String body) { + this.body = body; + } + + /** + * 字段名称 :百度商户ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBaiduShopId() { + return this.baiduShopId; + } + + /** + * 字段名称 :百度商户ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBaiduShopId(String baiduShopId) { + this.baiduShopId = baiduShopId; + } + + /** + * 字段名称 :百度商户名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getBaiduShopName() { + return this.baiduShopName; + } + + /** + * 字段名称 :百度商户名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setBaiduShopName(String baiduShopName) { + this.baiduShopName = baiduShopName; + } + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderId() { + return this.orderId; + } + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderId(String orderId) { + this.orderId = orderId; + } + + /** + * 字段名称 :是否立即送餐 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSendImmediately() { + return this.sendImmediately; + } + + /** + * 字段名称 :是否立即送餐 + * 数据类型 :int + * 是否必填 :false + */ + public void setSendImmediately(Integer sendImmediately) { + this.sendImmediately = sendImmediately; + } + + /** + * 字段名称 :订单当日流水号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getOrderIndex() { + return this.orderIndex; + } + + /** + * 字段名称 :订单当日流水号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setOrderIndex(String orderIndex) { + this.orderIndex = orderIndex; + } + + /** + * 字段名称 :订单状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :订单状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :送达时间类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getExpectTimeMode() { + return this.expectTimeMode; + } + + /** + * 字段名称 :送达时间类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setExpectTimeMode(Integer expectTimeMode) { + this.expectTimeMode = expectTimeMode; + } + + /** + * 字段名称 :期望送达时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getSendTime() { + return this.sendTime; + } + + /** + * 字段名称 :期望送达时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setSendTime(String sendTime) { + this.sendTime = sendTime; + } + + /** + * 字段名称 :取餐时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getPickupTime() { + return this.pickupTime; + } + + /** + * 字段名称 :取餐时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setPickupTime(String pickupTime) { + this.pickupTime = pickupTime; + } + + /** + * 字段名称 :到店时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getAtshopTime() { + return this.atshopTime; + } + + /** + * 字段名称 :到店时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setAtshopTime(String atshopTime) { + this.atshopTime = atshopTime; + } + + /** + * 字段名称 :送餐时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDeliveryTime() { + return this.deliveryTime; + } + + /** + * 字段名称 :送餐时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDeliveryTime(String deliveryTime) { + this.deliveryTime = deliveryTime; + } + + /** + * 字段名称 :骑士手机号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDeliveryPhone() { + return this.deliveryPhone; + } + + /** + * 字段名称 :骑士手机号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDeliveryPhone(String deliveryPhone) { + this.deliveryPhone = deliveryPhone; + } + + /** + * 字段名称 :完成时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getFinishedTime() { + return this.finishedTime; + } + + /** + * 字段名称 :完成时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setFinishedTime(String finishedTime) { + this.finishedTime = finishedTime; + } + + /** + * 字段名称 :确认时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getConfirmTime() { + return this.confirmTime; + } + + /** + * 字段名称 :确认时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setConfirmTime(String confirmTime) { + this.confirmTime = confirmTime; + } + + /** + * 字段名称 :取消时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getCancelTime() { + return this.cancelTime; + } + + /** + * 字段名称 :取消时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setCancelTime(String cancelTime) { + this.cancelTime = cancelTime; + } + + /** + * 字段名称 :配送费 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSendFee() { + return this.sendFee; + } + + /** + * 字段名称 :配送费 + * 数据类型 :int + * 是否必填 :false + */ + public void setSendFee(Integer sendFee) { + this.sendFee = sendFee; + } + + /** + * 字段名称 :餐盒费 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPackageFee() { + return this.packageFee; + } + + /** + * 字段名称 :餐盒费 + * 数据类型 :int + * 是否必填 :false + */ + public void setPackageFee(Integer packageFee) { + this.packageFee = packageFee; + } + + /** + * 字段名称 :优惠总金额 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDiscountFee() { + return this.discountFee; + } + + /** + * 字段名称 :优惠总金额 + * 数据类型 :int + * 是否必填 :false + */ + public void setDiscountFee(Integer discountFee) { + this.discountFee = discountFee; + } + + /** + * 字段名称 :商户应收金额 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getShopFee() { + return this.shopFee; + } + + /** + * 字段名称 :商户应收金额 + * 数据类型 :int + * 是否必填 :false + */ + public void setShopFee(Integer shopFee) { + this.shopFee = shopFee; + } + + /** + * 字段名称 :订单总金额 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getTotalFee() { + return this.totalFee; + } + + /** + * 字段名称 :订单总金额 + * 数据类型 :int + * 是否必填 :false + */ + public void setTotalFee(Integer totalFee) { + this.totalFee = totalFee; + } + + /** + * 字段名称 :用户实付金额 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getUserFee() { + return this.userFee; + } + + /** + * 字段名称 :用户实付金额 + * 数据类型 :int + * 是否必填 :false + */ + public void setUserFee(Integer userFee) { + this.userFee = userFee; + } + + /** + * 字段名称 :付款类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPayType() { + return this.payType; + } + + /** + * 字段名称 :付款类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setPayType(Integer payType) { + this.payType = payType; + } + + /** + * 字段名称 :是否需要发票 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getNeedInvoice() { + return this.needInvoice; + } + + /** + * 字段名称 :是否需要发票 + * 数据类型 :int + * 是否必填 :false + */ + public void setNeedInvoice(Integer needInvoice) { + this.needInvoice = needInvoice; + } + + /** + * 字段名称 :发票抬头 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getInvoiceTitle() { + return this.invoiceTitle; + } + + /** + * 字段名称 :发票抬头 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setInvoiceTitle(String invoiceTitle) { + this.invoiceTitle = invoiceTitle; + } + + /** + * 字段名称 :订单备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getRemark() { + return this.remark; + } + + /** + * 字段名称 :订单备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setRemark(String remark) { + this.remark = remark; + } + + /** + * 字段名称 :物流类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeliveryParty() { + return this.deliveryParty; + } + + /** + * 字段名称 :物流类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeliveryParty(Integer deliveryParty) { + this.deliveryParty = deliveryParty; + } + + /** + * 字段名称 :创建时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getCreateTime() { + return this.createTime; + } + + /** + * 字段名称 :创建时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setCreateTime(String createTime) { + this.createTime = createTime; + } + + /** + * 字段名称 :餐具数量 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getMealNum() { + return this.mealNum; + } + + /** + * 字段名称 :餐具数量 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setMealNum(String mealNum) { + this.mealNum = mealNum; + } + + /** + * 字段名称 :取消订单责任承担方 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getResponsibleParty() { + return this.responsibleParty; + } + + /** + * 字段名称 :取消订单责任承担方 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setResponsibleParty(String responsibleParty) { + this.responsibleParty = responsibleParty; + } + + /** + * 字段名称 :佣金 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getCommission() { + return this.commission; + } + + /** + * 字段名称 :佣金 + * 数据类型 :int + * 是否必填 :false + */ + public void setCommission(Integer commission) { + this.commission = commission; + } + + /** + * 字段名称 :订单客户信息 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getUser() { + return this.user; + } + + /** + * 字段名称 :订单客户信息 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setUser(String user) { + this.user = user; + } + + /** + * 字段名称 :商户信息 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getShop() { + return this.shop; + } + + /** + * 字段名称 :商户信息 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setShop(String shop) { + this.shop = shop; + } + + /** + * 字段名称 :订单商品信息数组 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getProducts() { + return this.products; + } + + /** + * 字段名称 :订单商品信息数组 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setProducts(String products) { + this.products = products; + } + + /** + * 字段名称 :优惠信息 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getDiscount() { + return this.discount; + } + + /** + * 字段名称 :优惠信息 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setDiscount(String discount) { + this.discount = discount; + } + + /** + * 字段名称 :部分退款 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getPartRefundInfo() { + return this.partRefundInfo; + } + + /** + * 字段名称 :部分退款 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setPartRefundInfo(String partRefundInfo) { + this.partRefundInfo = partRefundInfo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/BaiduOrderProduct.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/BaiduOrderProduct.java new file mode 100644 index 0000000..186217e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/BaiduOrderProduct.java @@ -0,0 +1,525 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:百度外卖订单商品信息 + * 表代码:cy_baidu_order_product + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"BaiduOrderProduct") +public class BaiduOrderProduct extends BaseEntity { + + private static final long serialVersionUID = 1267700422943398804L; + + /** + *订单ID + */ + private String orderId; + + /** + *百度商品ID + */ + private String baiduProductId; + + /** + *第三方菜品ID + */ + private String otherDishId; + + /** + *第三方套餐ID + */ + private String productId; + + /** + *商品UPC + */ + private String upc; + + /** + *菜品类型 + */ + private Integer productType; + + /** + *商品名称 + */ + private String productName; + + /** + *商品份数 + */ + private Integer productAmount; + + /** + *价格 + */ + private Integer productPrice; + + /** + *商品规格 + */ + private String productAttr; + + /** + *百度规格ID + */ + private String baiduAttrId; + + /** + *第三方规格ID + */ + private String attrId; + + /** + *规格名称 + */ + private String option; + + /** + *商品属性 + */ + private String productFeatures; + + /** + *商品总价 + */ + private Integer productFee; + + /** + *餐盒总价 + */ + private Integer packageFee; + + /** + *餐盒单价 + */ + private Integer packagePrice; + + /** + *餐盒数量 + */ + private Integer packageAmount; + + /** + *总价 + */ + private Integer totalFee; + + /** + *商品唯一串 + */ + private String productCustomIndex; + + /** + *是否固定价格 + */ + private Integer isFixedPrice; + + /** + *套餐内组合 + */ + private String group; + + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderId() { + return this.orderId; + } + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderId(String orderId) { + this.orderId = orderId; + } + + /** + * 字段名称 :百度商品ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getBaiduProductId() { + return this.baiduProductId; + } + + /** + * 字段名称 :百度商品ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setBaiduProductId(String baiduProductId) { + this.baiduProductId = baiduProductId; + } + + /** + * 字段名称 :第三方菜品ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOtherDishId() { + return this.otherDishId; + } + + /** + * 字段名称 :第三方菜品ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOtherDishId(String otherDishId) { + this.otherDishId = otherDishId; + } + + /** + * 字段名称 :第三方套餐ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :第三方套餐ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :商品UPC + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getUpc() { + return this.upc; + } + + /** + * 字段名称 :商品UPC + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setUpc(String upc) { + this.upc = upc; + } + + /** + * 字段名称 :菜品类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getProductType() { + return this.productType; + } + + /** + * 字段名称 :菜品类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setProductType(Integer productType) { + this.productType = productType; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :商品份数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getProductAmount() { + return this.productAmount; + } + + /** + * 字段名称 :商品份数 + * 数据类型 :int + * 是否必填 :false + */ + public void setProductAmount(Integer productAmount) { + this.productAmount = productAmount; + } + + /** + * 字段名称 :价格 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getProductPrice() { + return this.productPrice; + } + + /** + * 字段名称 :价格 + * 数据类型 :int + * 是否必填 :false + */ + public void setProductPrice(Integer productPrice) { + this.productPrice = productPrice; + } + + /** + * 字段名称 :商品规格 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getProductAttr() { + return this.productAttr; + } + + /** + * 字段名称 :商品规格 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setProductAttr(String productAttr) { + this.productAttr = productAttr; + } + + /** + * 字段名称 :百度规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBaiduAttrId() { + return this.baiduAttrId; + } + + /** + * 字段名称 :百度规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBaiduAttrId(String baiduAttrId) { + this.baiduAttrId = baiduAttrId; + } + + /** + * 字段名称 :第三方规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getAttrId() { + return this.attrId; + } + + /** + * 字段名称 :第三方规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setAttrId(String attrId) { + this.attrId = attrId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOption() { + return this.option; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOption(String option) { + this.option = option; + } + + /** + * 字段名称 :商品属性 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getProductFeatures() { + return this.productFeatures; + } + + /** + * 字段名称 :商品属性 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setProductFeatures(String productFeatures) { + this.productFeatures = productFeatures; + } + + /** + * 字段名称 :商品总价 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getProductFee() { + return this.productFee; + } + + /** + * 字段名称 :商品总价 + * 数据类型 :int + * 是否必填 :false + */ + public void setProductFee(Integer productFee) { + this.productFee = productFee; + } + + /** + * 字段名称 :餐盒总价 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPackageFee() { + return this.packageFee; + } + + /** + * 字段名称 :餐盒总价 + * 数据类型 :int + * 是否必填 :false + */ + public void setPackageFee(Integer packageFee) { + this.packageFee = packageFee; + } + + /** + * 字段名称 :餐盒单价 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPackagePrice() { + return this.packagePrice; + } + + /** + * 字段名称 :餐盒单价 + * 数据类型 :int + * 是否必填 :false + */ + public void setPackagePrice(Integer packagePrice) { + this.packagePrice = packagePrice; + } + + /** + * 字段名称 :餐盒数量 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPackageAmount() { + return this.packageAmount; + } + + /** + * 字段名称 :餐盒数量 + * 数据类型 :int + * 是否必填 :false + */ + public void setPackageAmount(Integer packageAmount) { + this.packageAmount = packageAmount; + } + + /** + * 字段名称 :总价 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getTotalFee() { + return this.totalFee; + } + + /** + * 字段名称 :总价 + * 数据类型 :int + * 是否必填 :false + */ + public void setTotalFee(Integer totalFee) { + this.totalFee = totalFee; + } + + /** + * 字段名称 :商品唯一串 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getProductCustomIndex() { + return this.productCustomIndex; + } + + /** + * 字段名称 :商品唯一串 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setProductCustomIndex(String productCustomIndex) { + this.productCustomIndex = productCustomIndex; + } + + /** + * 字段名称 :是否固定价格 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsFixedPrice() { + return this.isFixedPrice; + } + + /** + * 字段名称 :是否固定价格 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsFixedPrice(Integer isFixedPrice) { + this.isFixedPrice = isFixedPrice; + } + + /** + * 字段名称 :套餐内组合 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getGroup() { + return this.group; + } + + /** + * 字段名称 :套餐内组合 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setGroup(String group) { + this.group = group; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Brand.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Brand.java new file mode 100644 index 0000000..b3dd5ea --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Brand.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:品牌管理 + * 表代码:cy_brand + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"Brand") +public class Brand extends BaseEntity { + + private static final long serialVersionUID = 1861950966283769107L; + + /** + *品牌编号 + */ + private String no; + + /** + *品牌名称 + */ + private String name; + + /** + *备注 + */ + private String description; + + /** + *删除标识 + */ + private Integer deleteFlag; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :品牌编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :品牌编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :品牌名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :品牌名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/BusinessPlan.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/BusinessPlan.java new file mode 100644 index 0000000..42666e4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/BusinessPlan.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:营业日方案 + * 表代码:cy_business_plan + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"BusinessPlan") +public class BusinessPlan extends BaseEntity { + + private static final long serialVersionUID = 1586496868957414185L; + + /** + *编号 + */ + private String no; + + /** + *名称 + */ + private String name; + + /** + *开始日 + */ + private Integer startType; + + /** + *开始时间 + */ + private Date startTime; + + /** + *结束日 + */ + private Integer endType; + + /** + *结束时间 + */ + private Date endTime; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :开始日 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStartType() { + return this.startType; + } + + /** + * 字段名称 :开始日 + * 数据类型 :int + * 是否必填 :false + */ + public void setStartType(Integer startType) { + this.startType = startType; + } + + /** + * 字段名称 :开始时间 + * 数据类型 :time + * 是否必填 :false + */ + public Date getStartTime() { + return this.startTime; + } + + /** + * 字段名称 :开始时间 + * 数据类型 :time + * 是否必填 :false + */ + public void setStartTime(Date startTime) { + this.startTime = startTime; + } + + /** + * 字段名称 :结束日 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEndType() { + return this.endType; + } + + /** + * 字段名称 :结束日 + * 数据类型 :int + * 是否必填 :false + */ + public void setEndType(Integer endType) { + this.endType = endType; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :time + * 是否必填 :false + */ + public Date getEndTime() { + return this.endTime; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :time + * 是否必填 :false + */ + public void setEndTime(Date endTime) { + this.endTime = endTime; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/BusinessPlanDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/BusinessPlanDetail.java new file mode 100644 index 0000000..5fbc4a4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/BusinessPlanDetail.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:营业日方案班次 + * 表代码:cy_business_plan_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"BusinessPlanDetail") +public class BusinessPlanDetail extends BaseEntity { + + private static final long serialVersionUID = 1607626501968495381L; + + /** + *方案ID + */ + private String planId; + + /** + *名称 + */ + private String name; + + /** + *开始日 + */ + private Integer startType; + + /** + *开始时间 + */ + private Date startTime; + + /** + *结束日 + */ + private Integer endType; + + /** + *结束时间 + */ + private Date endTime; + + + /** + * 字段名称 :方案ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPlanId() { + return this.planId; + } + + /** + * 字段名称 :方案ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPlanId(String planId) { + this.planId = planId; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :开始日 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStartType() { + return this.startType; + } + + /** + * 字段名称 :开始日 + * 数据类型 :int + * 是否必填 :false + */ + public void setStartType(Integer startType) { + this.startType = startType; + } + + /** + * 字段名称 :开始时间 + * 数据类型 :time + * 是否必填 :false + */ + public Date getStartTime() { + return this.startTime; + } + + /** + * 字段名称 :开始时间 + * 数据类型 :time + * 是否必填 :false + */ + public void setStartTime(Date startTime) { + this.startTime = startTime; + } + + /** + * 字段名称 :结束日 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEndType() { + return this.endType; + } + + /** + * 字段名称 :结束日 + * 数据类型 :int + * 是否必填 :false + */ + public void setEndType(Integer endType) { + this.endType = endType; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :time + * 是否必填 :false + */ + public Date getEndTime() { + return this.endTime; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :time + * 是否必填 :false + */ + public void setEndTime(Date endTime) { + this.endTime = endTime; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/BusinessPlanStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/BusinessPlanStore.java new file mode 100644 index 0000000..fbda134 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/BusinessPlanStore.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:营业日方案门店关联 + * 表代码:cy_business_plan_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"BusinessPlanStore") +public class BusinessPlanStore extends BaseEntity { + + private static final long serialVersionUID = 1839563207175683781L; + + /** + *方案ID + */ + private String planId; + + /** + *门店ID + */ + private String storeId; + + + /** + * 字段名称 :方案ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPlanId() { + return this.planId; + } + + /** + * 字段名称 :方案ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPlanId(String planId) { + this.planId = planId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CandaoProduct.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CandaoProduct.java new file mode 100644 index 0000000..f93b8cd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CandaoProduct.java @@ -0,0 +1,962 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:餐道商品信息 + * 表代码:cy_candao_product + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CandaoProduct") +public class CandaoProduct extends BaseEntity { + + private static final long serialVersionUID = 1828503659139933657L; + + /** + *第三方系统商家Id + */ + private String groupId; + + /** + *品牌ID + */ + private Integer brandId; + + /** + *品牌名称 + */ + private String brandName; + + /** + *统一门店ID + */ + private String storeId; + + /** + *供应商门店ID + */ + private String subStoreId; + + /** + *外卖类型 + */ + private Integer takeoutType; + + /** + *餐道同步ID + */ + private String caodaoSyncId; + + /** + *统一餐品id + */ + private String pid; + + /** + *供应商餐品id + */ + private String subPid; + + /** + *餐品upc码 + */ + private String upc; + + /** + *餐品名称 + */ + private String name; + + /** + *价格 + */ + private Double price; + + /** + *最低价 + */ + private Double startPrice; + + /** + *原价 + */ + private Double costPrice; + + /** + *描述 + */ + private String desc; + + /** + *餐品图片1 + */ + private String logo; + + /** + *餐品图片2 + */ + private String image; + + /** + *餐品图片列表 + */ + private String logoList; + + /** + *餐品类型 + */ + private Integer type; + + /** + *餐品税率 + */ + private Double taxRate; + + /** + *税收分类编码 + */ + private String taxCategoryCode; + + /** + *最小购买量 + */ + private Integer minOrderCount; + + /** + *原材料 + */ + private String material; + + /** + *餐盒数量 + */ + private Double boxNum; + + /** + *餐盒单价 + */ + private Double boxPrice; + + /** + *餐品重量 + */ + private Integer weight; + + /** + *单位 + */ + private String unit; + + /** + *是否为冷链商品 + */ + private Integer isColdchain; + + /** + *套餐适用人数 + */ + private Integer setMeal; + + /** + *是否新品 + */ + private Integer isNew; + + /** + *是否招牌 + */ + private Integer isSpecialty; + + /** + *是否辣 + */ + private Integer isSpicy; + + /** + *是否配菜 + */ + private Integer isSideDish; + + /** + *开始日期 + */ + private String beginDate; + + /** + *结束时间 + */ + private String endDate; + + /** + *餐品可售星期 + */ + private String weeks; + + /** + *餐品售卖时间段 + */ + private String saleTime; + + /** + *是否套餐 + */ + private Integer isSuit; + + /** + *组内最小必选数量 + */ + private Integer minCount; + + /** + *组内最大可选数量 + */ + private Integer maxCount; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :第三方系统商家Id + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getGroupId() { + return this.groupId; + } + + /** + * 字段名称 :第三方系统商家Id + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setGroupId(String groupId) { + this.groupId = groupId; + } + + /** + * 字段名称 :品牌ID + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBrandId() { + return this.brandId; + } + + /** + * 字段名称 :品牌ID + * 数据类型 :int + * 是否必填 :false + */ + public void setBrandId(Integer brandId) { + this.brandId = brandId; + } + + /** + * 字段名称 :品牌名称 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getBrandName() { + return this.brandName; + } + + /** + * 字段名称 :品牌名称 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setBrandName(String brandName) { + this.brandName = brandName; + } + + /** + * 字段名称 :统一门店ID + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :统一门店ID + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :供应商门店ID + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getSubStoreId() { + return this.subStoreId; + } + + /** + * 字段名称 :供应商门店ID + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setSubStoreId(String subStoreId) { + this.subStoreId = subStoreId; + } + + /** + * 字段名称 :外卖类型 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getTakeoutType() { + return this.takeoutType; + } + + /** + * 字段名称 :外卖类型 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setTakeoutType(Integer takeoutType) { + this.takeoutType = takeoutType; + } + + /** + * 字段名称 :餐道同步ID + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getCaodaoSyncId() { + return this.caodaoSyncId; + } + + /** + * 字段名称 :餐道同步ID + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setCaodaoSyncId(String caodaoSyncId) { + this.caodaoSyncId = caodaoSyncId; + } + + /** + * 字段名称 :统一餐品id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPid() { + return this.pid; + } + + /** + * 字段名称 :统一餐品id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPid(String pid) { + this.pid = pid; + } + + /** + * 字段名称 :供应商餐品id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSubPid() { + return this.subPid; + } + + /** + * 字段名称 :供应商餐品id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSubPid(String subPid) { + this.subPid = subPid; + } + + /** + * 字段名称 :餐品upc码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getUpc() { + return this.upc; + } + + /** + * 字段名称 :餐品upc码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setUpc(String upc) { + this.upc = upc; + } + + /** + * 字段名称 :餐品名称 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :餐品名称 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :最低价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getStartPrice() { + return this.startPrice; + } + + /** + * 字段名称 :最低价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setStartPrice(Double startPrice) { + this.startPrice = startPrice; + } + + /** + * 字段名称 :原价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCostPrice() { + return this.costPrice; + } + + /** + * 字段名称 :原价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCostPrice(Double costPrice) { + this.costPrice = costPrice; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDesc() { + return this.desc; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDesc(String desc) { + this.desc = desc; + } + + /** + * 字段名称 :餐品图片1 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getLogo() { + return this.logo; + } + + /** + * 字段名称 :餐品图片1 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setLogo(String logo) { + this.logo = logo; + } + + /** + * 字段名称 :餐品图片2 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getImage() { + return this.image; + } + + /** + * 字段名称 :餐品图片2 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setImage(String image) { + this.image = image; + } + + /** + * 字段名称 :餐品图片列表 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getLogoList() { + return this.logoList; + } + + /** + * 字段名称 :餐品图片列表 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setLogoList(String logoList) { + this.logoList = logoList; + } + + /** + * 字段名称 :餐品类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :餐品类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :餐品税率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTaxRate() { + return this.taxRate; + } + + /** + * 字段名称 :餐品税率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTaxRate(Double taxRate) { + this.taxRate = taxRate; + } + + /** + * 字段名称 :税收分类编码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTaxCategoryCode() { + return this.taxCategoryCode; + } + + /** + * 字段名称 :税收分类编码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTaxCategoryCode(String taxCategoryCode) { + this.taxCategoryCode = taxCategoryCode; + } + + /** + * 字段名称 :最小购买量 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getMinOrderCount() { + return this.minOrderCount; + } + + /** + * 字段名称 :最小购买量 + * 数据类型 :int + * 是否必填 :false + */ + public void setMinOrderCount(Integer minOrderCount) { + this.minOrderCount = minOrderCount; + } + + /** + * 字段名称 :原材料 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getMaterial() { + return this.material; + } + + /** + * 字段名称 :原材料 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setMaterial(String material) { + this.material = material; + } + + /** + * 字段名称 :餐盒数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getBoxNum() { + return this.boxNum; + } + + /** + * 字段名称 :餐盒数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setBoxNum(Double boxNum) { + this.boxNum = boxNum; + } + + /** + * 字段名称 :餐盒单价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getBoxPrice() { + return this.boxPrice; + } + + /** + * 字段名称 :餐盒单价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setBoxPrice(Double boxPrice) { + this.boxPrice = boxPrice; + } + + /** + * 字段名称 :餐品重量 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getWeight() { + return this.weight; + } + + /** + * 字段名称 :餐品重量 + * 数据类型 :int + * 是否必填 :false + */ + public void setWeight(Integer weight) { + this.weight = weight; + } + + /** + * 字段名称 :单位 + * 数据类型 :varchar(12) + * 是否必填 :false + */ + public String getUnit() { + return this.unit; + } + + /** + * 字段名称 :单位 + * 数据类型 :varchar(12) + * 是否必填 :false + */ + public void setUnit(String unit) { + this.unit = unit; + } + + /** + * 字段名称 :是否为冷链商品 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getIsColdchain() { + return this.isColdchain; + } + + /** + * 字段名称 :是否为冷链商品 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setIsColdchain(Integer isColdchain) { + this.isColdchain = isColdchain; + } + + /** + * 字段名称 :套餐适用人数 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getSetMeal() { + return this.setMeal; + } + + /** + * 字段名称 :套餐适用人数 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setSetMeal(Integer setMeal) { + this.setMeal = setMeal; + } + + /** + * 字段名称 :是否新品 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getIsNew() { + return this.isNew; + } + + /** + * 字段名称 :是否新品 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setIsNew(Integer isNew) { + this.isNew = isNew; + } + + /** + * 字段名称 :是否招牌 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getIsSpecialty() { + return this.isSpecialty; + } + + /** + * 字段名称 :是否招牌 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setIsSpecialty(Integer isSpecialty) { + this.isSpecialty = isSpecialty; + } + + /** + * 字段名称 :是否辣 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getIsSpicy() { + return this.isSpicy; + } + + /** + * 字段名称 :是否辣 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setIsSpicy(Integer isSpicy) { + this.isSpicy = isSpicy; + } + + /** + * 字段名称 :是否配菜 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getIsSideDish() { + return this.isSideDish; + } + + /** + * 字段名称 :是否配菜 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setIsSideDish(Integer isSideDish) { + this.isSideDish = isSideDish; + } + + /** + * 字段名称 :开始日期 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getBeginDate() { + return this.beginDate; + } + + /** + * 字段名称 :开始日期 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setBeginDate(String beginDate) { + this.beginDate = beginDate; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getEndDate() { + return this.endDate; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setEndDate(String endDate) { + this.endDate = endDate; + } + + /** + * 字段名称 :餐品可售星期 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getWeeks() { + return this.weeks; + } + + /** + * 字段名称 :餐品可售星期 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setWeeks(String weeks) { + this.weeks = weeks; + } + + /** + * 字段名称 :餐品售卖时间段 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getSaleTime() { + return this.saleTime; + } + + /** + * 字段名称 :餐品售卖时间段 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setSaleTime(String saleTime) { + this.saleTime = saleTime; + } + + /** + * 字段名称 :是否套餐 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getIsSuit() { + return this.isSuit; + } + + /** + * 字段名称 :是否套餐 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setIsSuit(Integer isSuit) { + this.isSuit = isSuit; + } + + /** + * 字段名称 :组内最小必选数量 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getMinCount() { + return this.minCount; + } + + /** + * 字段名称 :组内最小必选数量 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setMinCount(Integer minCount) { + this.minCount = minCount; + } + + /** + * 字段名称 :组内最大可选数量 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getMaxCount() { + return this.maxCount; + } + + /** + * 字段名称 :组内最大可选数量 + * 数据类型 :int + * 是否必填 :false + */ + public void setMaxCount(Integer maxCount) { + this.maxCount = maxCount; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CandaoProductProperty.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CandaoProductProperty.java new file mode 100644 index 0000000..5dc946f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CandaoProductProperty.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:餐道商品属性信息 + * 表代码:cy_candao_product_property + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CandaoProductProperty") +public class CandaoProductProperty extends BaseEntity { + + private static final long serialVersionUID = 1580886821380408822L; + + /** + *外卖商品Id + */ + private String candaoProductId; + + /** + *统一餐品id + */ + private String pid; + + /** + *供应商餐品id + */ + private String subPid; + + /** + *属性组标题 + */ + private String title; + + /** + *统一属性id + */ + private String propertyId; + + /** + *供应商属性id + */ + private String subPropertyId; + + /** + *属性值 + */ + private String name; + + /** + *特殊标签说明 + */ + private String extTag; + + + /** + * 字段名称 :外卖商品Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCandaoProductId() { + return this.candaoProductId; + } + + /** + * 字段名称 :外卖商品Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCandaoProductId(String candaoProductId) { + this.candaoProductId = candaoProductId; + } + + /** + * 字段名称 :统一餐品id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPid() { + return this.pid; + } + + /** + * 字段名称 :统一餐品id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPid(String pid) { + this.pid = pid; + } + + /** + * 字段名称 :供应商餐品id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSubPid() { + return this.subPid; + } + + /** + * 字段名称 :供应商餐品id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSubPid(String subPid) { + this.subPid = subPid; + } + + /** + * 字段名称 :属性组标题 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getTitle() { + return this.title; + } + + /** + * 字段名称 :属性组标题 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setTitle(String title) { + this.title = title; + } + + /** + * 字段名称 :统一属性id + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getPropertyId() { + return this.propertyId; + } + + /** + * 字段名称 :统一属性id + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setPropertyId(String propertyId) { + this.propertyId = propertyId; + } + + /** + * 字段名称 :供应商属性id + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getSubPropertyId() { + return this.subPropertyId; + } + + /** + * 字段名称 :供应商属性id + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setSubPropertyId(String subPropertyId) { + this.subPropertyId = subPropertyId; + } + + /** + * 字段名称 :属性值 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :属性值 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :特殊标签说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getExtTag() { + return this.extTag; + } + + /** + * 字段名称 :特殊标签说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setExtTag(String extTag) { + this.extTag = extTag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CandaoProductSpec.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CandaoProductSpec.java new file mode 100644 index 0000000..bdab715 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CandaoProductSpec.java @@ -0,0 +1,341 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:餐道商品规格信息 + * 表代码:cy_candao_product_spec + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CandaoProductSpec") +public class CandaoProductSpec extends BaseEntity { + + private static final long serialVersionUID = 1919842982873533609L; + + /** + *外卖商品Id + */ + private String candaoProductId; + + /** + *统一餐品id + */ + private String pid; + + /** + *供应商餐品id + */ + private String subPid; + + /** + *规格组标题 + */ + private String title; + + /** + *统一规格id + */ + private String skuId; + + /** + *供应商规格id + */ + private String subSkuId; + + /** + *餐品upc码 + */ + private String upc; + + /** + *规格名称 + */ + private String name; + + /** + *价格 + */ + private Double price; + + /** + *规格排序 + */ + private Integer sortIndex; + + /** + *商品数量 + */ + private Integer ladderNum; + + /** + *包装费 + */ + private Double ladderPrice; + + /** + *特殊标签说明 + */ + private String extTag; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :外卖商品Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCandaoProductId() { + return this.candaoProductId; + } + + /** + * 字段名称 :外卖商品Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCandaoProductId(String candaoProductId) { + this.candaoProductId = candaoProductId; + } + + /** + * 字段名称 :统一餐品id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPid() { + return this.pid; + } + + /** + * 字段名称 :统一餐品id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPid(String pid) { + this.pid = pid; + } + + /** + * 字段名称 :供应商餐品id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSubPid() { + return this.subPid; + } + + /** + * 字段名称 :供应商餐品id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSubPid(String subPid) { + this.subPid = subPid; + } + + /** + * 字段名称 :规格组标题 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getTitle() { + return this.title; + } + + /** + * 字段名称 :规格组标题 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setTitle(String title) { + this.title = title; + } + + /** + * 字段名称 :统一规格id + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getSkuId() { + return this.skuId; + } + + /** + * 字段名称 :统一规格id + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setSkuId(String skuId) { + this.skuId = skuId; + } + + /** + * 字段名称 :供应商规格id + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getSubSkuId() { + return this.subSkuId; + } + + /** + * 字段名称 :供应商规格id + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setSubSkuId(String subSkuId) { + this.subSkuId = subSkuId; + } + + /** + * 字段名称 :餐品upc码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getUpc() { + return this.upc; + } + + /** + * 字段名称 :餐品upc码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setUpc(String upc) { + this.upc = upc; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :规格排序 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSortIndex() { + return this.sortIndex; + } + + /** + * 字段名称 :规格排序 + * 数据类型 :int + * 是否必填 :false + */ + public void setSortIndex(Integer sortIndex) { + this.sortIndex = sortIndex; + } + + /** + * 字段名称 :商品数量 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getLadderNum() { + return this.ladderNum; + } + + /** + * 字段名称 :商品数量 + * 数据类型 :int + * 是否必填 :false + */ + public void setLadderNum(Integer ladderNum) { + this.ladderNum = ladderNum; + } + + /** + * 字段名称 :包装费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getLadderPrice() { + return this.ladderPrice; + } + + /** + * 字段名称 :包装费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setLadderPrice(Double ladderPrice) { + this.ladderPrice = ladderPrice; + } + + /** + * 字段名称 :特殊标签说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getExtTag() { + return this.extTag; + } + + /** + * 字段名称 :特殊标签说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setExtTag(String extTag) { + this.extTag = extTag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CandaoProductSuit.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CandaoProductSuit.java new file mode 100644 index 0000000..1c92411 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CandaoProductSuit.java @@ -0,0 +1,318 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:餐道商品套餐信息 + * 表代码:cy_candao_product_suit + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CandaoProductSuit") +public class CandaoProductSuit extends BaseEntity { + + private static final long serialVersionUID = 1021589285486381418L; + + /** + *外卖商品Id + */ + private String candaoProductId; + + /** + *统一餐品id + */ + private String pid; + + /** + *供应商餐品id + */ + private String subPid; + + /** + *套餐类型 + */ + private Integer suitType; + + /** + *组标题 + */ + private String title; + + /** + *名称 + */ + private String name; + + /** + *餐品在分组中的数量 + */ + private Double num; + + /** + *价格 + */ + private Double price; + + /** + *加价 + */ + private Double addPrice; + + /** + *规格排序 + */ + private Integer sortIndex; + + /** + *商品数量 + */ + private Integer ladderNum; + + /** + *包装费 + */ + private Double ladderPrice; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :外卖商品Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCandaoProductId() { + return this.candaoProductId; + } + + /** + * 字段名称 :外卖商品Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCandaoProductId(String candaoProductId) { + this.candaoProductId = candaoProductId; + } + + /** + * 字段名称 :统一餐品id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPid() { + return this.pid; + } + + /** + * 字段名称 :统一餐品id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPid(String pid) { + this.pid = pid; + } + + /** + * 字段名称 :供应商餐品id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSubPid() { + return this.subPid; + } + + /** + * 字段名称 :供应商餐品id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSubPid(String subPid) { + this.subPid = subPid; + } + + /** + * 字段名称 :套餐类型 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getSuitType() { + return this.suitType; + } + + /** + * 字段名称 :套餐类型 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setSuitType(Integer suitType) { + this.suitType = suitType; + } + + /** + * 字段名称 :组标题 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getTitle() { + return this.title; + } + + /** + * 字段名称 :组标题 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setTitle(String title) { + this.title = title; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :餐品在分组中的数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getNum() { + return this.num; + } + + /** + * 字段名称 :餐品在分组中的数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setNum(Double num) { + this.num = num; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddPrice() { + return this.addPrice; + } + + /** + * 字段名称 :加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddPrice(Double addPrice) { + this.addPrice = addPrice; + } + + /** + * 字段名称 :规格排序 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSortIndex() { + return this.sortIndex; + } + + /** + * 字段名称 :规格排序 + * 数据类型 :int + * 是否必填 :false + */ + public void setSortIndex(Integer sortIndex) { + this.sortIndex = sortIndex; + } + + /** + * 字段名称 :商品数量 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getLadderNum() { + return this.ladderNum; + } + + /** + * 字段名称 :商品数量 + * 数据类型 :int + * 是否必填 :false + */ + public void setLadderNum(Integer ladderNum) { + this.ladderNum = ladderNum; + } + + /** + * 字段名称 :包装费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getLadderPrice() { + return this.ladderPrice; + } + + /** + * 字段名称 :包装费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setLadderPrice(Double ladderPrice) { + this.ladderPrice = ladderPrice; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CandaoStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CandaoStore.java new file mode 100644 index 0000000..e9f3896 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CandaoStore.java @@ -0,0 +1,985 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:餐道门店信息 + * 表代码:cy_candao_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CandaoStore") +public class CandaoStore extends BaseEntity { + + private static final long serialVersionUID = 1811394217173405856L; + + /** + *第三方系统商家Id + */ + private String groupId; + + /** + *品牌ID + */ + private String brandId; + + /** + *品牌名称 + */ + private String brandName; + + /** + *外卖类型 + */ + private Integer waimaiType; + + /** + *统一门店ID + */ + private String storeId; + + /** + *供应商门店ID + */ + private String subStoreId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *统一省份ID + */ + private String provinceId; + + /** + *省份名称 + */ + private String provinceName; + + /** + *统一城市ID + */ + private String cityId; + + /** + *城市名称 + */ + private String cityName; + + /** + *统一行政区ID + */ + private String districtId; + + /** + *行政区名称 + */ + private String districtName; + + /** + *镇名称 + */ + private String townName; + + /** + *商圈名称 + */ + private String tradeArea; + + /** + *销售区域 + */ + private String saleArea; + + /** + *门店地址 + */ + private String address; + + /** + *纬度 + */ + private Double latitude; + + /** + *经度 + */ + private Double longitude; + + /** + *门店公告 + */ + private String announcement; + + /** + *门店logo + */ + private String logo; + + /** + *门店电话号码 + */ + private String phoneList; + + /** + *客服号码 + */ + private String customerPhone; + + /** + *联系邮箱 + */ + private String contactEmail; + + /** + *配送费 + */ + private Double deliverFee; + + /** + *营业时间 + */ + private String businessTimes; + + /** + *业务类型 + */ + private Integer orderType; + + /** + *预计备餐时长 + */ + private String avgProductTime; + + /** + *预计配送时长 + */ + private String waitTime; + + /** + *外卖预约时间 + */ + private String appointment; + + /** + *自取预约时间 + */ + private String takeSelf; + + /** + *支付类型 + */ + private String payType; + + /** + *在线支付类型 + */ + private String onLinePayType; + + /** + *是否支持开发票 + */ + private Integer isInvoice; + + /** + *是否饿了么平台配送 + */ + private Integer eleDelivery; + + /** + *是否支持平台配送自动转自配送 + */ + private Integer autoChangeDeliver; + + /** + *营业状态 + */ + private Integer busy; + + /** + *商圈共享订单模式 + */ + private Integer sharedOrder; + + /** + *是否启用 + */ + private Integer enabled; + + /** + *是否同步 + */ + private Integer isSync; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :第三方系统商家Id + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getGroupId() { + return this.groupId; + } + + /** + * 字段名称 :第三方系统商家Id + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setGroupId(String groupId) { + this.groupId = groupId; + } + + /** + * 字段名称 :品牌ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBrandId() { + return this.brandId; + } + + /** + * 字段名称 :品牌ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBrandId(String brandId) { + this.brandId = brandId; + } + + /** + * 字段名称 :品牌名称 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getBrandName() { + return this.brandName; + } + + /** + * 字段名称 :品牌名称 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setBrandName(String brandName) { + this.brandName = brandName; + } + + /** + * 字段名称 :外卖类型 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getWaimaiType() { + return this.waimaiType; + } + + /** + * 字段名称 :外卖类型 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setWaimaiType(Integer waimaiType) { + this.waimaiType = waimaiType; + } + + /** + * 字段名称 :统一门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :统一门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :供应商门店ID + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getSubStoreId() { + return this.subStoreId; + } + + /** + * 字段名称 :供应商门店ID + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setSubStoreId(String subStoreId) { + this.subStoreId = subStoreId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(12) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(12) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :统一省份ID + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProvinceId() { + return this.provinceId; + } + + /** + * 字段名称 :统一省份ID + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProvinceId(String provinceId) { + this.provinceId = provinceId; + } + + /** + * 字段名称 :省份名称 + * 数据类型 :varchar(12) + * 是否必填 :false + */ + public String getProvinceName() { + return this.provinceName; + } + + /** + * 字段名称 :省份名称 + * 数据类型 :varchar(12) + * 是否必填 :false + */ + public void setProvinceName(String provinceName) { + this.provinceName = provinceName; + } + + /** + * 字段名称 :统一城市ID + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getCityId() { + return this.cityId; + } + + /** + * 字段名称 :统一城市ID + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setCityId(String cityId) { + this.cityId = cityId; + } + + /** + * 字段名称 :城市名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCityName() { + return this.cityName; + } + + /** + * 字段名称 :城市名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCityName(String cityName) { + this.cityName = cityName; + } + + /** + * 字段名称 :统一行政区ID + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getDistrictId() { + return this.districtId; + } + + /** + * 字段名称 :统一行政区ID + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setDistrictId(String districtId) { + this.districtId = districtId; + } + + /** + * 字段名称 :行政区名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDistrictName() { + return this.districtName; + } + + /** + * 字段名称 :行政区名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDistrictName(String districtName) { + this.districtName = districtName; + } + + /** + * 字段名称 :镇名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTownName() { + return this.townName; + } + + /** + * 字段名称 :镇名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTownName(String townName) { + this.townName = townName; + } + + /** + * 字段名称 :商圈名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTradeArea() { + return this.tradeArea; + } + + /** + * 字段名称 :商圈名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTradeArea(String tradeArea) { + this.tradeArea = tradeArea; + } + + /** + * 字段名称 :销售区域 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSaleArea() { + return this.saleArea; + } + + /** + * 字段名称 :销售区域 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSaleArea(String saleArea) { + this.saleArea = saleArea; + } + + /** + * 字段名称 :门店地址 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getAddress() { + return this.address; + } + + /** + * 字段名称 :门店地址 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setAddress(String address) { + this.address = address; + } + + /** + * 字段名称 :纬度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public Double getLatitude() { + return this.latitude; + } + + /** + * 字段名称 :纬度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public void setLatitude(Double latitude) { + this.latitude = latitude; + } + + /** + * 字段名称 :经度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public Double getLongitude() { + return this.longitude; + } + + /** + * 字段名称 :经度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public void setLongitude(Double longitude) { + this.longitude = longitude; + } + + /** + * 字段名称 :门店公告 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getAnnouncement() { + return this.announcement; + } + + /** + * 字段名称 :门店公告 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setAnnouncement(String announcement) { + this.announcement = announcement; + } + + /** + * 字段名称 :门店logo + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getLogo() { + return this.logo; + } + + /** + * 字段名称 :门店logo + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setLogo(String logo) { + this.logo = logo; + } + + /** + * 字段名称 :门店电话号码 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getPhoneList() { + return this.phoneList; + } + + /** + * 字段名称 :门店电话号码 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setPhoneList(String phoneList) { + this.phoneList = phoneList; + } + + /** + * 字段名称 :客服号码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getCustomerPhone() { + return this.customerPhone; + } + + /** + * 字段名称 :客服号码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setCustomerPhone(String customerPhone) { + this.customerPhone = customerPhone; + } + + /** + * 字段名称 :联系邮箱 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getContactEmail() { + return this.contactEmail; + } + + /** + * 字段名称 :联系邮箱 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setContactEmail(String contactEmail) { + this.contactEmail = contactEmail; + } + + /** + * 字段名称 :配送费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDeliverFee() { + return this.deliverFee; + } + + /** + * 字段名称 :配送费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDeliverFee(Double deliverFee) { + this.deliverFee = deliverFee; + } + + /** + * 字段名称 :营业时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getBusinessTimes() { + return this.businessTimes; + } + + /** + * 字段名称 :营业时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setBusinessTimes(String businessTimes) { + this.businessTimes = businessTimes; + } + + /** + * 字段名称 :业务类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOrderType() { + return this.orderType; + } + + /** + * 字段名称 :业务类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setOrderType(Integer orderType) { + this.orderType = orderType; + } + + /** + * 字段名称 :预计备餐时长 + * 数据类型 :varchar(12) + * 是否必填 :false + */ + public String getAvgProductTime() { + return this.avgProductTime; + } + + /** + * 字段名称 :预计备餐时长 + * 数据类型 :varchar(12) + * 是否必填 :false + */ + public void setAvgProductTime(String avgProductTime) { + this.avgProductTime = avgProductTime; + } + + /** + * 字段名称 :预计配送时长 + * 数据类型 :varchar(12) + * 是否必填 :false + */ + public String getWaitTime() { + return this.waitTime; + } + + /** + * 字段名称 :预计配送时长 + * 数据类型 :varchar(12) + * 是否必填 :false + */ + public void setWaitTime(String waitTime) { + this.waitTime = waitTime; + } + + /** + * 字段名称 :外卖预约时间 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getAppointment() { + return this.appointment; + } + + /** + * 字段名称 :外卖预约时间 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setAppointment(String appointment) { + this.appointment = appointment; + } + + /** + * 字段名称 :自取预约时间 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getTakeSelf() { + return this.takeSelf; + } + + /** + * 字段名称 :自取预约时间 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setTakeSelf(String takeSelf) { + this.takeSelf = takeSelf; + } + + /** + * 字段名称 :支付类型 + * 数据类型 :varchar(12) + * 是否必填 :false + */ + public String getPayType() { + return this.payType; + } + + /** + * 字段名称 :支付类型 + * 数据类型 :varchar(12) + * 是否必填 :false + */ + public void setPayType(String payType) { + this.payType = payType; + } + + /** + * 字段名称 :在线支付类型 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOnLinePayType() { + return this.onLinePayType; + } + + /** + * 字段名称 :在线支付类型 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOnLinePayType(String onLinePayType) { + this.onLinePayType = onLinePayType; + } + + /** + * 字段名称 :是否支持开发票 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getIsInvoice() { + return this.isInvoice; + } + + /** + * 字段名称 :是否支持开发票 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setIsInvoice(Integer isInvoice) { + this.isInvoice = isInvoice; + } + + /** + * 字段名称 :是否饿了么平台配送 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getEleDelivery() { + return this.eleDelivery; + } + + /** + * 字段名称 :是否饿了么平台配送 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setEleDelivery(Integer eleDelivery) { + this.eleDelivery = eleDelivery; + } + + /** + * 字段名称 :是否支持平台配送自动转自配送 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getAutoChangeDeliver() { + return this.autoChangeDeliver; + } + + /** + * 字段名称 :是否支持平台配送自动转自配送 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setAutoChangeDeliver(Integer autoChangeDeliver) { + this.autoChangeDeliver = autoChangeDeliver; + } + + /** + * 字段名称 :营业状态 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getBusy() { + return this.busy; + } + + /** + * 字段名称 :营业状态 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setBusy(Integer busy) { + this.busy = busy; + } + + /** + * 字段名称 :商圈共享订单模式 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getSharedOrder() { + return this.sharedOrder; + } + + /** + * 字段名称 :商圈共享订单模式 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setSharedOrder(Integer sharedOrder) { + this.sharedOrder = sharedOrder; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getEnabled() { + return this.enabled; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setEnabled(Integer enabled) { + this.enabled = enabled; + } + + /** + * 字段名称 :是否同步 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getIsSync() { + return this.isSync; + } + + /** + * 字段名称 :是否同步 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setIsSync(Integer isSync) { + this.isSync = isSync; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Category.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Category.java new file mode 100644 index 0000000..2f107fc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Category.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:数据字典 + * 表代码:cy_category + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"Category") +public class Category extends BaseEntity { + + private static final long serialVersionUID = 1694445378669068066L; + + /** + *名称 + */ + private String name; + + /** + *是否启用 + */ + private Integer enabled; + + /** + *标识符 + */ + private String sign; + + /** + *显示序号 + */ + private String orderNo; + + /** + *父节点 + */ + private String parentId; + + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnabled() { + return this.enabled; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setEnabled(Integer enabled) { + this.enabled = enabled; + } + + /** + * 字段名称 :标识符 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSign() { + return this.sign; + } + + /** + * 字段名称 :标识符 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSign(String sign) { + this.sign = sign; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderNo(String orderNo) { + this.orderNo = orderNo; + } + + /** + * 字段名称 :父节点 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getParentId() { + return this.parentId; + } + + /** + * 字段名称 :父节点 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setParentId(String parentId) { + this.parentId = parentId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CheckTemplate.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CheckTemplate.java new file mode 100644 index 0000000..97b40fc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CheckTemplate.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:总部库存盘点模板 + * 表代码:cy_check_template + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CheckTemplate") +public class CheckTemplate extends BaseEntity { + + private static final long serialVersionUID = 1420856055007327816L; + + /** + *编号 + */ + private String no; + + /** + *名称 + */ + private String name; + + /** + *备注信息 + */ + private String description; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CheckTemplateDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CheckTemplateDetail.java new file mode 100644 index 0000000..564de29 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CheckTemplateDetail.java @@ -0,0 +1,226 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:总部库存盘点模板明细 + * 表代码:cy_check_template_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CheckTemplateDetail") +public class CheckTemplateDetail extends BaseEntity { + + private static final long serialVersionUID = 1306337883892728254L; + + /** + *盘点模板ID + */ + private String ticketId; + + /** + *商品ID + */ + private String productId; + + /** + *商品编号 + */ + private String productNo; + + /** + *商品名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *商品说明 + */ + private String productDescription; + + /** + *库存单位ID + */ + private String stockUnitId; + + /** + *库存单位名称 + */ + private String stockUnitName; + + + /** + * 字段名称 :盘点模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :盘点模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :商品说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :商品说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :库存单位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStockUnitId() { + return this.stockUnitId; + } + + /** + * 字段名称 :库存单位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStockUnitId(String stockUnitId) { + this.stockUnitId = stockUnitId; + } + + /** + * 字段名称 :库存单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStockUnitName() { + return this.stockUnitName; + } + + /** + * 字段名称 :库存单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStockUnitName(String stockUnitName) { + this.stockUnitName = stockUnitName; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CheckTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CheckTicket.java new file mode 100644 index 0000000..cfca8ed --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CheckTicket.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:总部库存盘点单 + * 表代码:cy_check_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CheckTicket") +public class CheckTicket extends BaseEntity { + + private static final long serialVersionUID = 1750658799351153714L; + + /** + *单据编号 + */ + private String no; + + /** + *单据状态 + */ + private Integer status; + + /** + *备注信息 + */ + private String description; + + /** + *制单人 + */ + private String setMan; + + /** + *制单日期 + */ + private Date setDate; + + /** + *审核人 + */ + private String checkMan; + + /** + *审核日期 + */ + private Date checkDate; + + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetMan() { + return this.setMan; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetMan(String setMan) { + this.setMan = setMan; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSetDate() { + return this.setDate; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSetDate(Date setDate) { + this.setDate = setDate; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCheckMan() { + return this.checkMan; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCheckMan(String checkMan) { + this.checkMan = checkMan; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckDate() { + return this.checkDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckDate(Date checkDate) { + this.checkDate = checkDate; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CheckTicketDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CheckTicketDetail.java new file mode 100644 index 0000000..171e0f6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CheckTicketDetail.java @@ -0,0 +1,433 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:总部库存盘点单明细 + * 表代码:cy_check_ticket_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CheckTicketDetail") +public class CheckTicketDetail extends BaseEntity { + + private static final long serialVersionUID = 1872564809849662892L; + + /** + *仓库ID + */ + private String storageId; + + /** + *仓库名称 + */ + private String storageName; + + /** + *盘点单ID + */ + private String ticketId; + + /** + *商品ID + */ + private String productId; + + /** + *商品编号 + */ + private String productNo; + + /** + *商品名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *商品说明 + */ + private String productDescription; + + /** + *库存单位ID + */ + private String stockUnitId; + + /** + *库存单位名称 + */ + private String stockUnitName; + + /** + *系统数量 + */ + private Double sysAmount; + + /** + *盘点数量 + */ + private Double checkAmount; + + /** + *差异数量 + */ + private Double differenceAmount; + + /** + *系统金额 + */ + private Double sysMoney; + + /** + *盘点金额 + */ + private Double checkMoney; + + /** + *损益金额 + */ + private Double differenceMoney; + + /** + *备注说明 + */ + private String description; + + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStorageName() { + return this.storageName; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStorageName(String storageName) { + this.storageName = storageName; + } + + /** + * 字段名称 :盘点单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :盘点单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :商品说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :商品说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :库存单位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStockUnitId() { + return this.stockUnitId; + } + + /** + * 字段名称 :库存单位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStockUnitId(String stockUnitId) { + this.stockUnitId = stockUnitId; + } + + /** + * 字段名称 :库存单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStockUnitName() { + return this.stockUnitName; + } + + /** + * 字段名称 :库存单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStockUnitName(String stockUnitName) { + this.stockUnitName = stockUnitName; + } + + /** + * 字段名称 :系统数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getSysAmount() { + return this.sysAmount; + } + + /** + * 字段名称 :系统数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setSysAmount(Double sysAmount) { + this.sysAmount = sysAmount; + } + + /** + * 字段名称 :盘点数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getCheckAmount() { + return this.checkAmount; + } + + /** + * 字段名称 :盘点数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setCheckAmount(Double checkAmount) { + this.checkAmount = checkAmount; + } + + /** + * 字段名称 :差异数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDifferenceAmount() { + return this.differenceAmount; + } + + /** + * 字段名称 :差异数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDifferenceAmount(Double differenceAmount) { + this.differenceAmount = differenceAmount; + } + + /** + * 字段名称 :系统金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getSysMoney() { + return this.sysMoney; + } + + /** + * 字段名称 :系统金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setSysMoney(Double sysMoney) { + this.sysMoney = sysMoney; + } + + /** + * 字段名称 :盘点金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getCheckMoney() { + return this.checkMoney; + } + + /** + * 字段名称 :盘点金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setCheckMoney(Double checkMoney) { + this.checkMoney = checkMoney; + } + + /** + * 字段名称 :损益金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDifferenceMoney() { + return this.differenceMoney; + } + + /** + * 字段名称 :损益金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDifferenceMoney(Double differenceMoney) { + this.differenceMoney = differenceMoney; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CheckTicketLog.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CheckTicketLog.java new file mode 100644 index 0000000..1eee762 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CheckTicketLog.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:总部盘点单操作记录 + * 表代码:cy_check_ticket_log + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CheckTicketLog") +public class CheckTicketLog extends BaseEntity { + + private static final long serialVersionUID = 1961001121066166609L; + + /** + *主单ID + */ + private String ticketId; + + /** + *主单编号 + */ + private String ticketNo; + + /** + *操作类型 + */ + private Integer type; + + /** + *操作状态 + */ + private Integer status; + + /** + *描述 + */ + private String description; + + + /** + * 字段名称 :主单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :主单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :主单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :主单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostFeeItem.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostFeeItem.java new file mode 100644 index 0000000..e0dcd6f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostFeeItem.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:成本费用项目 + * 表代码:cy_cost_fee_item + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CostFeeItem") +public class CostFeeItem extends BaseEntity { + + private static final long serialVersionUID = 1592895483139377529L; + + /** + *类别Id + */ + private String typeId; + + /** + *类别路径 + */ + private String typePath; + + /** + *项目编号 + */ + private String no; + + /** + *项目名称 + */ + private String name; + + /** + *类型 + */ + private Integer type; + + /** + *是否启用 + */ + private Integer enabled; + + /** + *显示序号 + */ + private String orderNo; + + + /** + * 字段名称 :类别Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getTypePath() { + return this.typePath; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setTypePath(String typePath) { + this.typePath = typePath; + } + + /** + * 字段名称 :项目编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :项目编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :项目名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :项目名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnabled() { + return this.enabled; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setEnabled(Integer enabled) { + this.enabled = enabled; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderNo(String orderNo) { + this.orderNo = orderNo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostFeeType.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostFeeType.java new file mode 100644 index 0000000..2b7727a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostFeeType.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:成本费用项目分类 + * 表代码:cy_cost_fee_type + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CostFeeType") +public class CostFeeType extends BaseEntity { + + private static final long serialVersionUID = 1994240148639589035L; + + /** + *父类别ID + */ + private String parentId; + + /** + *类别路径 + */ + private String path; + + /** + *编号 + */ + private String no; + + /** + *名称 + */ + private String name; + + /** + *类型 + */ + private Integer type; + + /** + *是否启用 + */ + private Integer enabled; + + /** + *显示序号 + */ + private String orderNo; + + + /** + * 字段名称 :父类别ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getParentId() { + return this.parentId; + } + + /** + * 字段名称 :父类别ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setParentId(String parentId) { + this.parentId = parentId; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getPath() { + return this.path; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setPath(String path) { + this.path = path; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnabled() { + return this.enabled; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setEnabled(Integer enabled) { + this.enabled = enabled; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderNo(String orderNo) { + this.orderNo = orderNo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicket.java new file mode 100644 index 0000000..06a80ac --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicket.java @@ -0,0 +1,525 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:经营会计报表主单 + * 表代码:cy_cost_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CostTicket") +public class CostTicket extends BaseEntity { + + private static final long serialVersionUID = 1559903291501850900L; + + /** + *单据编号 + */ + private String no; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *备注信息 + */ + private String description; + + /** + *单据状态 + */ + private Integer status; + + /** + *营业额 + */ + private Double amount; + + /** + *折扣金额 + */ + private Double discountAmount; + + /** + *应收金额 + */ + private Double receivableAmount; + + /** + *餐盒费 + */ + private Double boxAmount; + + /** + *员工餐 + */ + private Double workerAmount; + + /** + *汇总日期 + */ + private String summaryDate; + + /** + *审核人 + */ + private String checkPeople; + + /** + *审核日期 + */ + private Date checkDate; + + /** + *营业单数 + */ + private Integer ticketCount; + + /** + *客单价 + */ + private Double peoplePrice; + + /** + *纯利润 + */ + private Double profit; + + /** + *今日总成本 + */ + private Double totalCost; + + /** + *成日成本总差额 + */ + private Double difTotalCost; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :营业额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :营业额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :折扣金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountAmount() { + return this.discountAmount; + } + + /** + * 字段名称 :折扣金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountAmount(Double discountAmount) { + this.discountAmount = discountAmount; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivableAmount() { + return this.receivableAmount; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivableAmount(Double receivableAmount) { + this.receivableAmount = receivableAmount; + } + + /** + * 字段名称 :餐盒费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getBoxAmount() { + return this.boxAmount; + } + + /** + * 字段名称 :餐盒费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setBoxAmount(Double boxAmount) { + this.boxAmount = boxAmount; + } + + /** + * 字段名称 :员工餐 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getWorkerAmount() { + return this.workerAmount; + } + + /** + * 字段名称 :员工餐 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setWorkerAmount(Double workerAmount) { + this.workerAmount = workerAmount; + } + + /** + * 字段名称 :汇总日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSummaryDate() { + return this.summaryDate; + } + + /** + * 字段名称 :汇总日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSummaryDate(String summaryDate) { + this.summaryDate = summaryDate; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getCheckPeople() { + return this.checkPeople; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setCheckPeople(String checkPeople) { + this.checkPeople = checkPeople; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckDate() { + return this.checkDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckDate(Date checkDate) { + this.checkDate = checkDate; + } + + /** + * 字段名称 :营业单数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getTicketCount() { + return this.ticketCount; + } + + /** + * 字段名称 :营业单数 + * 数据类型 :int + * 是否必填 :false + */ + public void setTicketCount(Integer ticketCount) { + this.ticketCount = ticketCount; + } + + /** + * 字段名称 :客单价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPeoplePrice() { + return this.peoplePrice; + } + + /** + * 字段名称 :客单价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPeoplePrice(Double peoplePrice) { + this.peoplePrice = peoplePrice; + } + + /** + * 字段名称 :纯利润 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getProfit() { + return this.profit; + } + + /** + * 字段名称 :纯利润 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setProfit(Double profit) { + this.profit = profit; + } + + /** + * 字段名称 :今日总成本 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTotalCost() { + return this.totalCost; + } + + /** + * 字段名称 :今日总成本 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTotalCost(Double totalCost) { + this.totalCost = totalCost; + } + + /** + * 字段名称 :成日成本总差额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDifTotalCost() { + return this.difTotalCost; + } + + /** + * 字段名称 :成日成本总差额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDifTotalCost(Double difTotalCost) { + this.difTotalCost = difTotalCost; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketPayType.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketPayType.java new file mode 100644 index 0000000..2d295e2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketPayType.java @@ -0,0 +1,364 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:经营会计报表支付方式统计 + * 表代码:cy_cost_ticket_pay_type + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CostTicketPayType") +public class CostTicketPayType extends BaseEntity { + + private static final long serialVersionUID = 1322617140038572124L; + + /** + *单据ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String ticketNo; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *汇总日期 + */ + private String summaryDate; + + /** + *支付方式编号 + */ + private String payTypeNo; + + /** + *支付方式名称 + */ + private String payTypeName; + + /** + *三方扣费类型 + */ + private Integer otherRateType; + + /** + *三方费值 + */ + private Double otherRateValue; + + /** + *金额 + */ + private Double money; + + /** + *门店实得金额 + */ + private Double realMoney; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :单据ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :单据ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :汇总日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSummaryDate() { + return this.summaryDate; + } + + /** + * 字段名称 :汇总日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSummaryDate(String summaryDate) { + this.summaryDate = summaryDate; + } + + /** + * 字段名称 :支付方式编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPayTypeNo() { + return this.payTypeNo; + } + + /** + * 字段名称 :支付方式编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPayTypeNo(String payTypeNo) { + this.payTypeNo = payTypeNo; + } + + /** + * 字段名称 :支付方式名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getPayTypeName() { + return this.payTypeName; + } + + /** + * 字段名称 :支付方式名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setPayTypeName(String payTypeName) { + this.payTypeName = payTypeName; + } + + /** + * 字段名称 :三方扣费类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOtherRateType() { + return this.otherRateType; + } + + /** + * 字段名称 :三方扣费类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setOtherRateType(Integer otherRateType) { + this.otherRateType = otherRateType; + } + + /** + * 字段名称 :三方费值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOtherRateValue() { + return this.otherRateValue; + } + + /** + * 字段名称 :三方费值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOtherRateValue(Double otherRateValue) { + this.otherRateValue = otherRateValue; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :门店实得金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getRealMoney() { + return this.realMoney; + } + + /** + * 字段名称 :门店实得金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setRealMoney(Double realMoney) { + this.realMoney = realMoney; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketProductChange.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketProductChange.java new file mode 100644 index 0000000..ad5459f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketProductChange.java @@ -0,0 +1,732 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:经营会计报表生产变动费 + * 表代码:cy_cost_ticket_product_change + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CostTicketProductChange") +public class CostTicketProductChange extends BaseEntity { + + private static final long serialVersionUID = 1398012304453513723L; + + /** + *单据ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String ticketNo; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *汇总日期 + */ + private String summaryDate; + + /** + *类别ID + */ + private String typeId; + + /** + *类别编号 + */ + private String typeNo; + + /** + *类别名 + */ + private String typeName; + + /** + *商品ID + */ + private String productId; + + /** + *商品编号 + */ + private String productNo; + + /** + *商品名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *包装单位(分店库存单位) + */ + private String packUnitId; + + /** + *成本控制类型 + */ + private Integer costType; + + /** + *昨日库存 + */ + private Double yeterdayStock; + + /** + *今日入库 + */ + private Double todayIn; + + /** + *今晚库存 + */ + private Double todayStock; + + /** + *今日损耗 + */ + private Double todayLoss; + + /** + *实际用量 + */ + private Double todayUse; + + /** + *收银用量 + */ + private Double posUse; + + /** + *相差数量 + */ + private Double difUse; + + /** + *相差金额 + */ + private Double difMoney; + + /** + *单项成本 + */ + private Double cost; + + /** + *占比 + */ + private Double salePro; + + /** + *运营标准 + */ + private Double standard; + + /** + *差值 + */ + private Double difStandard; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :单据ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :单据ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :汇总日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSummaryDate() { + return this.summaryDate; + } + + /** + * 字段名称 :汇总日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSummaryDate(String summaryDate) { + this.summaryDate = summaryDate; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeNo() { + return this.typeNo; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeNo(String typeNo) { + this.typeNo = typeNo; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTypeName() { + return this.typeName; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :包装单位(分店库存单位) + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPackUnitId() { + return this.packUnitId; + } + + /** + * 字段名称 :包装单位(分店库存单位) + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPackUnitId(String packUnitId) { + this.packUnitId = packUnitId; + } + + /** + * 字段名称 :成本控制类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getCostType() { + return this.costType; + } + + /** + * 字段名称 :成本控制类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setCostType(Integer costType) { + this.costType = costType; + } + + /** + * 字段名称 :昨日库存 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getYeterdayStock() { + return this.yeterdayStock; + } + + /** + * 字段名称 :昨日库存 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setYeterdayStock(Double yeterdayStock) { + this.yeterdayStock = yeterdayStock; + } + + /** + * 字段名称 :今日入库 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTodayIn() { + return this.todayIn; + } + + /** + * 字段名称 :今日入库 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTodayIn(Double todayIn) { + this.todayIn = todayIn; + } + + /** + * 字段名称 :今晚库存 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTodayStock() { + return this.todayStock; + } + + /** + * 字段名称 :今晚库存 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTodayStock(Double todayStock) { + this.todayStock = todayStock; + } + + /** + * 字段名称 :今日损耗 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTodayLoss() { + return this.todayLoss; + } + + /** + * 字段名称 :今日损耗 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTodayLoss(Double todayLoss) { + this.todayLoss = todayLoss; + } + + /** + * 字段名称 :实际用量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTodayUse() { + return this.todayUse; + } + + /** + * 字段名称 :实际用量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTodayUse(Double todayUse) { + this.todayUse = todayUse; + } + + /** + * 字段名称 :收银用量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPosUse() { + return this.posUse; + } + + /** + * 字段名称 :收银用量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPosUse(Double posUse) { + this.posUse = posUse; + } + + /** + * 字段名称 :相差数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDifUse() { + return this.difUse; + } + + /** + * 字段名称 :相差数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDifUse(Double difUse) { + this.difUse = difUse; + } + + /** + * 字段名称 :相差金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDifMoney() { + return this.difMoney; + } + + /** + * 字段名称 :相差金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDifMoney(Double difMoney) { + this.difMoney = difMoney; + } + + /** + * 字段名称 :单项成本 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCost() { + return this.cost; + } + + /** + * 字段名称 :单项成本 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCost(Double cost) { + this.cost = cost; + } + + /** + * 字段名称 :占比 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getSalePro() { + return this.salePro; + } + + /** + * 字段名称 :占比 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setSalePro(Double salePro) { + this.salePro = salePro; + } + + /** + * 字段名称 :运营标准 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getStandard() { + return this.standard; + } + + /** + * 字段名称 :运营标准 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setStandard(Double standard) { + this.standard = standard; + } + + /** + * 字段名称 :差值 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDifStandard() { + return this.difStandard; + } + + /** + * 字段名称 :差值 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDifStandard(Double difStandard) { + this.difStandard = difStandard; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketProductFixedChange.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketProductFixedChange.java new file mode 100644 index 0000000..a73c491 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketProductFixedChange.java @@ -0,0 +1,433 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:经营会计报表固定费 + * 表代码:cy_cost_ticket_product_fixed_change + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CostTicketProductFixedChange") +public class CostTicketProductFixedChange extends BaseEntity { + + private static final long serialVersionUID = 1527527848440339399L; + + /** + *单据ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String ticketNo; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *汇总日期 + */ + private String summaryDate; + + /** + *费用类别Id + */ + private String typeId; + + /** + *费用类别路径 + */ + private String typePath; + + /** + *类别编号 + */ + private String typeNo; + + /** + *类别名 + */ + private String typeName; + + /** + *费用项目ID + */ + private String itemId; + + /** + *费用项目编号 + */ + private String no; + + /** + *费用项目名称 + */ + private String name; + + /** + *费用类型 + */ + private Integer type; + + /** + *金额 + */ + private Double money; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :单据ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :单据ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :汇总日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSummaryDate() { + return this.summaryDate; + } + + /** + * 字段名称 :汇总日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSummaryDate(String summaryDate) { + this.summaryDate = summaryDate; + } + + /** + * 字段名称 :费用类别Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :费用类别Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :费用类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getTypePath() { + return this.typePath; + } + + /** + * 字段名称 :费用类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setTypePath(String typePath) { + this.typePath = typePath; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeNo() { + return this.typeNo; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeNo(String typeNo) { + this.typeNo = typeNo; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTypeName() { + return this.typeName; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + /** + * 字段名称 :费用项目ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getItemId() { + return this.itemId; + } + + /** + * 字段名称 :费用项目ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setItemId(String itemId) { + this.itemId = itemId; + } + + /** + * 字段名称 :费用项目编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :费用项目编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :费用项目名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :费用项目名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :费用类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :费用类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketProductMoreChange.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketProductMoreChange.java new file mode 100644 index 0000000..8a5f9fc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketProductMoreChange.java @@ -0,0 +1,732 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:经营会计报表辅助生产变动费 + * 表代码:cy_cost_ticket_product_more_change + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CostTicketProductMoreChange") +public class CostTicketProductMoreChange extends BaseEntity { + + private static final long serialVersionUID = 1373384220413346775L; + + /** + *单据ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String ticketNo; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *汇总日期 + */ + private String summaryDate; + + /** + *类别ID + */ + private String typeId; + + /** + *类别编号 + */ + private String typeNo; + + /** + *类别名 + */ + private String typeName; + + /** + *商品ID + */ + private String productId; + + /** + *商品编号 + */ + private String productNo; + + /** + *商品名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *包装单位(分店库存单位) + */ + private String packUnitId; + + /** + *成本控制类型 + */ + private Integer costType; + + /** + *昨日库存 + */ + private Double yeterdayStock; + + /** + *今日入库 + */ + private Double todayIn; + + /** + *今晚库存 + */ + private Double todayStock; + + /** + *今日损耗 + */ + private Double todayLoss; + + /** + *实际用量 + */ + private Double todayUse; + + /** + *收银用量 + */ + private Double posUse; + + /** + *相差数量 + */ + private Double difUse; + + /** + *相差金额 + */ + private Double difMoney; + + /** + *单项成本 + */ + private Double cost; + + /** + *占比 + */ + private Double salePro; + + /** + *运营标准 + */ + private Double standard; + + /** + *差值 + */ + private Double difStandard; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :单据ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :单据ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :汇总日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSummaryDate() { + return this.summaryDate; + } + + /** + * 字段名称 :汇总日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSummaryDate(String summaryDate) { + this.summaryDate = summaryDate; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeNo() { + return this.typeNo; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeNo(String typeNo) { + this.typeNo = typeNo; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTypeName() { + return this.typeName; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :包装单位(分店库存单位) + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPackUnitId() { + return this.packUnitId; + } + + /** + * 字段名称 :包装单位(分店库存单位) + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPackUnitId(String packUnitId) { + this.packUnitId = packUnitId; + } + + /** + * 字段名称 :成本控制类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getCostType() { + return this.costType; + } + + /** + * 字段名称 :成本控制类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setCostType(Integer costType) { + this.costType = costType; + } + + /** + * 字段名称 :昨日库存 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getYeterdayStock() { + return this.yeterdayStock; + } + + /** + * 字段名称 :昨日库存 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setYeterdayStock(Double yeterdayStock) { + this.yeterdayStock = yeterdayStock; + } + + /** + * 字段名称 :今日入库 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTodayIn() { + return this.todayIn; + } + + /** + * 字段名称 :今日入库 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTodayIn(Double todayIn) { + this.todayIn = todayIn; + } + + /** + * 字段名称 :今晚库存 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTodayStock() { + return this.todayStock; + } + + /** + * 字段名称 :今晚库存 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTodayStock(Double todayStock) { + this.todayStock = todayStock; + } + + /** + * 字段名称 :今日损耗 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTodayLoss() { + return this.todayLoss; + } + + /** + * 字段名称 :今日损耗 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTodayLoss(Double todayLoss) { + this.todayLoss = todayLoss; + } + + /** + * 字段名称 :实际用量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTodayUse() { + return this.todayUse; + } + + /** + * 字段名称 :实际用量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTodayUse(Double todayUse) { + this.todayUse = todayUse; + } + + /** + * 字段名称 :收银用量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPosUse() { + return this.posUse; + } + + /** + * 字段名称 :收银用量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPosUse(Double posUse) { + this.posUse = posUse; + } + + /** + * 字段名称 :相差数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDifUse() { + return this.difUse; + } + + /** + * 字段名称 :相差数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDifUse(Double difUse) { + this.difUse = difUse; + } + + /** + * 字段名称 :相差金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDifMoney() { + return this.difMoney; + } + + /** + * 字段名称 :相差金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDifMoney(Double difMoney) { + this.difMoney = difMoney; + } + + /** + * 字段名称 :单项成本 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCost() { + return this.cost; + } + + /** + * 字段名称 :单项成本 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCost(Double cost) { + this.cost = cost; + } + + /** + * 字段名称 :占比 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getSalePro() { + return this.salePro; + } + + /** + * 字段名称 :占比 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setSalePro(Double salePro) { + this.salePro = salePro; + } + + /** + * 字段名称 :运营标准 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getStandard() { + return this.standard; + } + + /** + * 字段名称 :运营标准 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setStandard(Double standard) { + this.standard = standard; + } + + /** + * 字段名称 :差值 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDifStandard() { + return this.difStandard; + } + + /** + * 字段名称 :差值 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDifStandard(Double difStandard) { + this.difStandard = difStandard; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketProductOtherChange.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketProductOtherChange.java new file mode 100644 index 0000000..e26f651 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketProductOtherChange.java @@ -0,0 +1,433 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:经营会计报表其他变动费 + * 表代码:cy_cost_ticket_product_other_change + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CostTicketProductOtherChange") +public class CostTicketProductOtherChange extends BaseEntity { + + private static final long serialVersionUID = 1304528693946237187L; + + /** + *单据ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String ticketNo; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *汇总日期 + */ + private String summaryDate; + + /** + *费用类别Id + */ + private String typeId; + + /** + *费用类别路径 + */ + private String typePath; + + /** + *类别编号 + */ + private String typeNo; + + /** + *类别名 + */ + private String typeName; + + /** + *费用项目ID + */ + private String itemId; + + /** + *费用项目编号 + */ + private String no; + + /** + *费用项目名称 + */ + private String name; + + /** + *费用类型 + */ + private Integer type; + + /** + *金额 + */ + private Double money; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :单据ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :单据ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :汇总日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSummaryDate() { + return this.summaryDate; + } + + /** + * 字段名称 :汇总日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSummaryDate(String summaryDate) { + this.summaryDate = summaryDate; + } + + /** + * 字段名称 :费用类别Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :费用类别Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :费用类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getTypePath() { + return this.typePath; + } + + /** + * 字段名称 :费用类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setTypePath(String typePath) { + this.typePath = typePath; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeNo() { + return this.typeNo; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeNo(String typeNo) { + this.typeNo = typeNo; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTypeName() { + return this.typeName; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + /** + * 字段名称 :费用项目ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getItemId() { + return this.itemId; + } + + /** + * 字段名称 :费用项目ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setItemId(String itemId) { + this.itemId = itemId; + } + + /** + * 字段名称 :费用项目编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :费用项目编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :费用项目名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :费用项目名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :费用类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :费用类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketProductType.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketProductType.java new file mode 100644 index 0000000..0b120c1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketProductType.java @@ -0,0 +1,318 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:经营会计报表分类统计 + * 表代码:cy_cost_ticket_product_type + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CostTicketProductType") +public class CostTicketProductType extends BaseEntity { + + private static final long serialVersionUID = 1240302926286894896L; + + /** + *单据ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String ticketNo; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *汇总日期 + */ + private String summaryDate; + + /** + *类别ID + */ + private String typeId; + + /** + *类别编号 + */ + private String typeNo; + + /** + *类别名 + */ + private String typeName; + + /** + *金额 + */ + private Double money; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :单据ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :单据ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :汇总日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSummaryDate() { + return this.summaryDate; + } + + /** + * 字段名称 :汇总日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSummaryDate(String summaryDate) { + this.summaryDate = summaryDate; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeNo() { + return this.typeNo; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeNo(String typeNo) { + this.typeNo = typeNo; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTypeName() { + return this.typeName; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketTemplate.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketTemplate.java new file mode 100644 index 0000000..6305c25 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketTemplate.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:经营会计报表模板 + * 表代码:cy_cost_ticket_template + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CostTicketTemplate") +public class CostTicketTemplate extends BaseEntity { + + private static final long serialVersionUID = 1791113606083365220L; + + /** + *编号 + */ + private String no; + + /** + *模板名称 + */ + private String name; + + /** + *备注信息 + */ + private String description; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :模板名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :模板名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketTemplateProductChange.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketTemplateProductChange.java new file mode 100644 index 0000000..a836cbc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketTemplateProductChange.java @@ -0,0 +1,410 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:经营会计报表生产变动费模板 + * 表代码:cy_cost_ticket_template_product_change + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CostTicketTemplateProductChange") +public class CostTicketTemplateProductChange extends BaseEntity { + + private static final long serialVersionUID = 1392977297122529893L; + + /** + *模板ID + */ + private String ticketId; + + /** + *模板编号 + */ + private String ticketNo; + + /** + *类别ID + */ + private String typeId; + + /** + *类别编号 + */ + private String typeNo; + + /** + *类别名 + */ + private String typeName; + + /** + *商品ID + */ + private String productId; + + /** + *商品编号 + */ + private String productNo; + + /** + *商品名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *包装单位(分店库存单位) + */ + private String packUnitId; + + /** + *成本控制类型 + */ + private Integer costType; + + /** + *单项成本 + */ + private Double cost; + + /** + *运营标准 + */ + private Double standard; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :模板ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :模板ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :模板编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :模板编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeNo() { + return this.typeNo; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeNo(String typeNo) { + this.typeNo = typeNo; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTypeName() { + return this.typeName; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :包装单位(分店库存单位) + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPackUnitId() { + return this.packUnitId; + } + + /** + * 字段名称 :包装单位(分店库存单位) + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPackUnitId(String packUnitId) { + this.packUnitId = packUnitId; + } + + /** + * 字段名称 :成本控制类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getCostType() { + return this.costType; + } + + /** + * 字段名称 :成本控制类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setCostType(Integer costType) { + this.costType = costType; + } + + /** + * 字段名称 :单项成本 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCost() { + return this.cost; + } + + /** + * 字段名称 :单项成本 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCost(Double cost) { + this.cost = cost; + } + + /** + * 字段名称 :运营标准 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getStandard() { + return this.standard; + } + + /** + * 字段名称 :运营标准 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setStandard(Double standard) { + this.standard = standard; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketTemplateProductFixedChange.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketTemplateProductFixedChange.java new file mode 100644 index 0000000..58f1a1b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketTemplateProductFixedChange.java @@ -0,0 +1,341 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:经营会计报表固定费模板 + * 表代码:cy_cost_ticket_template_product_fixed_change + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CostTicketTemplateProductFixedChange") +public class CostTicketTemplateProductFixedChange extends BaseEntity { + + private static final long serialVersionUID = 1118214514326093208L; + + /** + *模板ID + */ + private String ticketId; + + /** + *模板编号 + */ + private String ticketNo; + + /** + *费用类别Id + */ + private String typeId; + + /** + *费用类别路径 + */ + private String typePath; + + /** + *类别编号 + */ + private String typeNo; + + /** + *类别名 + */ + private String typeName; + + /** + *费用项目ID + */ + private String itemId; + + /** + *费用项目编号 + */ + private String no; + + /** + *费用项目名称 + */ + private String name; + + /** + *费用类型 + */ + private Integer type; + + /** + *运营标准金额 + */ + private Double money; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :模板ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :模板ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :模板编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :模板编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :费用类别Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :费用类别Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :费用类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getTypePath() { + return this.typePath; + } + + /** + * 字段名称 :费用类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setTypePath(String typePath) { + this.typePath = typePath; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeNo() { + return this.typeNo; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeNo(String typeNo) { + this.typeNo = typeNo; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTypeName() { + return this.typeName; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + /** + * 字段名称 :费用项目ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getItemId() { + return this.itemId; + } + + /** + * 字段名称 :费用项目ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setItemId(String itemId) { + this.itemId = itemId; + } + + /** + * 字段名称 :费用项目编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :费用项目编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :费用项目名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :费用项目名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :费用类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :费用类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :运营标准金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :运营标准金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketTemplateProductMoreChange.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketTemplateProductMoreChange.java new file mode 100644 index 0000000..0e00db6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketTemplateProductMoreChange.java @@ -0,0 +1,410 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:经营会计报表辅助生产变动费模板 + * 表代码:cy_cost_ticket_template_product_more_change + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CostTicketTemplateProductMoreChange") +public class CostTicketTemplateProductMoreChange extends BaseEntity { + + private static final long serialVersionUID = 1205982340979971991L; + + /** + *模板ID + */ + private String ticketId; + + /** + *模板编号 + */ + private String ticketNo; + + /** + *类别ID + */ + private String typeId; + + /** + *类别编号 + */ + private String typeNo; + + /** + *类别名 + */ + private String typeName; + + /** + *商品ID + */ + private String productId; + + /** + *商品编号 + */ + private String productNo; + + /** + *商品名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *包装单位(分店库存单位) + */ + private String packUnitId; + + /** + *成本控制类型 + */ + private Integer costType; + + /** + *单项成本 + */ + private Double cost; + + /** + *运营标准 + */ + private Double standard; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :模板ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :模板ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :模板编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :模板编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeNo() { + return this.typeNo; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeNo(String typeNo) { + this.typeNo = typeNo; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTypeName() { + return this.typeName; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :包装单位(分店库存单位) + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPackUnitId() { + return this.packUnitId; + } + + /** + * 字段名称 :包装单位(分店库存单位) + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPackUnitId(String packUnitId) { + this.packUnitId = packUnitId; + } + + /** + * 字段名称 :成本控制类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getCostType() { + return this.costType; + } + + /** + * 字段名称 :成本控制类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setCostType(Integer costType) { + this.costType = costType; + } + + /** + * 字段名称 :单项成本 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCost() { + return this.cost; + } + + /** + * 字段名称 :单项成本 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCost(Double cost) { + this.cost = cost; + } + + /** + * 字段名称 :运营标准 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getStandard() { + return this.standard; + } + + /** + * 字段名称 :运营标准 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setStandard(Double standard) { + this.standard = standard; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketTemplateProductOtherChange.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketTemplateProductOtherChange.java new file mode 100644 index 0000000..65f46b2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketTemplateProductOtherChange.java @@ -0,0 +1,341 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:经营会计报表其他变动费模板 + * 表代码:cy_cost_ticket_template_product_other_change + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CostTicketTemplateProductOtherChange") +public class CostTicketTemplateProductOtherChange extends BaseEntity { + + private static final long serialVersionUID = 1443036737751298728L; + + /** + *模板ID + */ + private String ticketId; + + /** + *模板编号 + */ + private String ticketNo; + + /** + *费用类别Id + */ + private String typeId; + + /** + *费用类别路径 + */ + private String typePath; + + /** + *类别编号 + */ + private String typeNo; + + /** + *类别名 + */ + private String typeName; + + /** + *费用项目ID + */ + private String itemId; + + /** + *费用项目编号 + */ + private String no; + + /** + *费用项目名称 + */ + private String name; + + /** + *费用类型 + */ + private Integer type; + + /** + *运营标准金额 + */ + private Double money; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :模板ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :模板ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :模板编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :模板编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :费用类别Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :费用类别Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :费用类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getTypePath() { + return this.typePath; + } + + /** + * 字段名称 :费用类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setTypePath(String typePath) { + this.typePath = typePath; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeNo() { + return this.typeNo; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeNo(String typeNo) { + this.typeNo = typeNo; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTypeName() { + return this.typeName; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + /** + * 字段名称 :费用项目ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getItemId() { + return this.itemId; + } + + /** + * 字段名称 :费用项目ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setItemId(String itemId) { + this.itemId = itemId; + } + + /** + * 字段名称 :费用项目编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :费用项目编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :费用项目名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :费用项目名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :费用类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :费用类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :运营标准金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :运营标准金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketTemplateStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketTemplateStore.java new file mode 100644 index 0000000..54ed81a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CostTicketTemplateStore.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:经营会计报表模板门店关联 + * 表代码:cy_cost_ticket_template_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CostTicketTemplateStore") +public class CostTicketTemplateStore extends BaseEntity { + + private static final long serialVersionUID = 1406986867062450940L; + + /** + *门店ID + */ + private String storeId; + + /** + *模板ID + */ + private String ticketId; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Coupon.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Coupon.java new file mode 100644 index 0000000..3a20a8a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Coupon.java @@ -0,0 +1,410 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:优惠券信息 + * 表代码:cy_coupon + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"Coupon") +public class Coupon extends BaseEntity { + + private static final long serialVersionUID = 1187930366164365173L; + + /** + *优惠券名称 + */ + private String name; + + /** + *开始日期 + */ + private String startDate; + + /** + *结束日期 + */ + private String endDate; + + /** + *开始时间 + */ + private String startTime; + + /** + *结束时间 + */ + private String endTime; + + /** + *星期 + */ + private String weekDays; + + /** + *每月频率 + */ + private String validMonth; + + /** + *使用说明 + */ + private String description; + + /** + *类型 + */ + private Integer type; + + /** + *使用规则 + */ + private String rule; + + /** + *适用门店 + */ + private Integer allStore; + + /** + *适用品牌 + */ + private Integer allBrand; + + /** + *适用品类 + */ + private Integer allCategory; + + /** + *适用商品 + */ + private Integer allGoods; + + /** + *状态 + */ + private Integer status; + + /** + *是否验券 + */ + private Integer voucherFlag; + + /** + *发放数量 + */ + private Integer putNum; + + + /** + * 字段名称 :优惠券名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :优惠券名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :开始日期 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStartDate() { + return this.startDate; + } + + /** + * 字段名称 :开始日期 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStartDate(String startDate) { + this.startDate = startDate; + } + + /** + * 字段名称 :结束日期 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getEndDate() { + return this.endDate; + } + + /** + * 字段名称 :结束日期 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setEndDate(String endDate) { + this.endDate = endDate; + } + + /** + * 字段名称 :开始时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStartTime() { + return this.startTime; + } + + /** + * 字段名称 :开始时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStartTime(String startTime) { + this.startTime = startTime; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getEndTime() { + return this.endTime; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setEndTime(String endTime) { + this.endTime = endTime; + } + + /** + * 字段名称 :星期 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getWeekDays() { + return this.weekDays; + } + + /** + * 字段名称 :星期 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setWeekDays(String weekDays) { + this.weekDays = weekDays; + } + + /** + * 字段名称 :每月频率 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getValidMonth() { + return this.validMonth; + } + + /** + * 字段名称 :每月频率 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setValidMonth(String validMonth) { + this.validMonth = validMonth; + } + + /** + * 字段名称 :使用说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :使用说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :使用规则 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getRule() { + return this.rule; + } + + /** + * 字段名称 :使用规则 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setRule(String rule) { + this.rule = rule; + } + + /** + * 字段名称 :适用门店 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getAllStore() { + return this.allStore; + } + + /** + * 字段名称 :适用门店 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setAllStore(Integer allStore) { + this.allStore = allStore; + } + + /** + * 字段名称 :适用品牌 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getAllBrand() { + return this.allBrand; + } + + /** + * 字段名称 :适用品牌 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setAllBrand(Integer allBrand) { + this.allBrand = allBrand; + } + + /** + * 字段名称 :适用品类 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getAllCategory() { + return this.allCategory; + } + + /** + * 字段名称 :适用品类 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setAllCategory(Integer allCategory) { + this.allCategory = allCategory; + } + + /** + * 字段名称 :适用商品 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getAllGoods() { + return this.allGoods; + } + + /** + * 字段名称 :适用商品 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setAllGoods(Integer allGoods) { + this.allGoods = allGoods; + } + + /** + * 字段名称 :状态 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :是否验券 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getVoucherFlag() { + return this.voucherFlag; + } + + /** + * 字段名称 :是否验券 + * 数据类型 :int + * 是否必填 :false + */ + public void setVoucherFlag(Integer voucherFlag) { + this.voucherFlag = voucherFlag; + } + + /** + * 字段名称 :发放数量 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPutNum() { + return this.putNum; + } + + /** + * 字段名称 :发放数量 + * 数据类型 :int + * 是否必填 :false + */ + public void setPutNum(Integer putNum) { + this.putNum = putNum; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CouponCodeDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CouponCodeDetail.java new file mode 100644 index 0000000..404225b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CouponCodeDetail.java @@ -0,0 +1,295 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:优惠券券码信息 + * 表代码:cy_coupon_code_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CouponCodeDetail") +public class CouponCodeDetail extends BaseEntity { + + private static final long serialVersionUID = 1081050905976718839L; + + /** + *优惠券方案ID + */ + private String couponId; + + /** + *券码 + */ + private String couponCode; + + /** + *状态 + */ + private Integer status; + + /** + *开始日期 + */ + private String beginDateTime; + + /** + *结束日期 + */ + private String endDateTime; + + /** + *核销门店 + */ + private String storeId; + + /** + *核销门店名称 + */ + private String storeName; + + /** + *核销门店编号 + */ + private String storeNo; + + /** + *核销时间 + */ + private String checkTime; + + /** + *核销员工 + */ + private String workerNo; + + /** + *核销POS编号 + */ + private String posNo; + + /** + *核销单号 + */ + private String busNo; + + + /** + * 字段名称 :优惠券方案ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCouponId() { + return this.couponId; + } + + /** + * 字段名称 :优惠券方案ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCouponId(String couponId) { + this.couponId = couponId; + } + + /** + * 字段名称 :券码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCouponCode() { + return this.couponCode; + } + + /** + * 字段名称 :券码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCouponCode(String couponCode) { + this.couponCode = couponCode; + } + + /** + * 字段名称 :状态 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :开始日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBeginDateTime() { + return this.beginDateTime; + } + + /** + * 字段名称 :开始日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBeginDateTime(String beginDateTime) { + this.beginDateTime = beginDateTime; + } + + /** + * 字段名称 :结束日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getEndDateTime() { + return this.endDateTime; + } + + /** + * 字段名称 :结束日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setEndDateTime(String endDateTime) { + this.endDateTime = endDateTime; + } + + /** + * 字段名称 :核销门店 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :核销门店 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :核销门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :核销门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :核销门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :核销门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :核销时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCheckTime() { + return this.checkTime; + } + + /** + * 字段名称 :核销时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCheckTime(String checkTime) { + this.checkTime = checkTime; + } + + /** + * 字段名称 :核销员工 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getWorkerNo() { + return this.workerNo; + } + + /** + * 字段名称 :核销员工 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setWorkerNo(String workerNo) { + this.workerNo = workerNo; + } + + /** + * 字段名称 :核销POS编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :核销POS编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :核销单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :核销单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CouponStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CouponStore.java new file mode 100644 index 0000000..e2e018d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CouponStore.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:优惠券门店关联表 + * 表代码:cy_coupon_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CouponStore") +public class CouponStore extends BaseEntity { + + private static final long serialVersionUID = 1299104752961806143L; + + /** + *优惠券ID + */ + private String couponId; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + + /** + * 字段名称 :优惠券ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getCouponId() { + return this.couponId; + } + + /** + * 字段名称 :优惠券ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setCouponId(String couponId) { + this.couponId = couponId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CouponTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CouponTicket.java new file mode 100644 index 0000000..404a499 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CouponTicket.java @@ -0,0 +1,249 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:商品优惠券单据 + * 表代码:cy_coupon_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CouponTicket") +public class CouponTicket extends BaseEntity { + + private static final long serialVersionUID = 1799517544805659690L; + + /** + *单据编号 + */ + private String no; + + /** + *开始日期 + */ + private String startDate; + + /** + *结束日期 + */ + private String endDate; + + /** + *开始时间 + */ + private String startTime; + + /** + *结束时间 + */ + private String endTime; + + /** + *星期 + */ + private String weekDays; + + /** + *备注信息 + */ + private String description; + + /** + *单据状态 + */ + private Integer status; + + /** + *审核人 + */ + private String checkPeople; + + /** + *审核日期 + */ + private Date checkDate; + + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :开始日期 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStartDate() { + return this.startDate; + } + + /** + * 字段名称 :开始日期 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStartDate(String startDate) { + this.startDate = startDate; + } + + /** + * 字段名称 :结束日期 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getEndDate() { + return this.endDate; + } + + /** + * 字段名称 :结束日期 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setEndDate(String endDate) { + this.endDate = endDate; + } + + /** + * 字段名称 :开始时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStartTime() { + return this.startTime; + } + + /** + * 字段名称 :开始时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStartTime(String startTime) { + this.startTime = startTime; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getEndTime() { + return this.endTime; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setEndTime(String endTime) { + this.endTime = endTime; + } + + /** + * 字段名称 :星期 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getWeekDays() { + return this.weekDays; + } + + /** + * 字段名称 :星期 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setWeekDays(String weekDays) { + this.weekDays = weekDays; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getCheckPeople() { + return this.checkPeople; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setCheckPeople(String checkPeople) { + this.checkPeople = checkPeople; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckDate() { + return this.checkDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckDate(Date checkDate) { + this.checkDate = checkDate; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CouponTicketProduct.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CouponTicketProduct.java new file mode 100644 index 0000000..d59ce4a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CouponTicketProduct.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:商品优惠券菜品信息 + * 表代码:cy_coupon_ticket_product + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CouponTicketProduct") +public class CouponTicketProduct extends BaseEntity { + + private static final long serialVersionUID = 1589869160853727633L; + + /** + *单据ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String ticketNo; + + /** + *商品ID + */ + private String productId; + + /** + *商品规格ID + */ + private String specId; + + /** + *优惠券价 + */ + private Double couponPrice; + + + /** + * 字段名称 :单据ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :单据ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :商品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :商品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :优惠券价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCouponPrice() { + return this.couponPrice; + } + + /** + * 字段名称 :优惠券价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCouponPrice(Double couponPrice) { + this.couponPrice = couponPrice; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CouponTicketStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CouponTicketStore.java new file mode 100644 index 0000000..e4b05e2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/CouponTicketStore.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:商品优惠券门店 + * 表代码:cy_coupon_ticket_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"CouponTicketStore") +public class CouponTicketStore extends BaseEntity { + + private static final long serialVersionUID = 1281347076670286701L; + + /** + *单据ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String ticketNo; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + + /** + * 字段名称 :单据ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :单据ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Deliver.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Deliver.java new file mode 100644 index 0000000..a5870c2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Deliver.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:配送员信息 + * 表代码:cy_deliver + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"Deliver") +public class Deliver extends BaseEntity { + + private static final long serialVersionUID = 1371284149339262565L; + + /** + *编号 + */ + private String no; + + /** + *名称 + */ + private String name; + + /** + *是否在职 + */ + private Integer isJob; + + /** + *备注信息 + */ + private String description; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :是否在职 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsJob() { + return this.isJob; + } + + /** + * 字段名称 :是否在职 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsJob(Integer isJob) { + this.isJob = isJob; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DeliverStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DeliverStore.java new file mode 100644 index 0000000..d838ff4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DeliverStore.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:配送员门店关联 + * 表代码:cy_deliver_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"DeliverStore") +public class DeliverStore extends BaseEntity { + + private static final long serialVersionUID = 1818481182035542545L; + + /** + *门店ID + */ + private String storeId; + + /** + *配送员ID + */ + private String deliverId; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :配送员ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDeliverId() { + return this.deliverId; + } + + /** + * 字段名称 :配送员ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDeliverId(String deliverId) { + this.deliverId = deliverId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchSettlePlan.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchSettlePlan.java new file mode 100644 index 0000000..1c69381 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchSettlePlan.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:配送结算方案 + * 表代码:cy_dispatch_settle_plan + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"DispatchSettlePlan") +public class DispatchSettlePlan extends BaseEntity { + + private static final long serialVersionUID = 1660253052702575857L; + + /** + *方案编号 + */ + private String no; + + /** + *方案名称 + */ + private String name; + + /** + *结算模式 + */ + private Integer balanceMode; + + /** + *允许欠费 + */ + private Integer creditType; + + /** + *预付款类型 + */ + private Integer advanceType; + + /** + *预付款值 + */ + private Double advanceValue; + + /** + *微信点餐是否计入 + */ + private Integer wxdcFlag; + + + /** + * 字段名称 :方案编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :方案编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :方案名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :方案名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :结算模式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBalanceMode() { + return this.balanceMode; + } + + /** + * 字段名称 :结算模式 + * 数据类型 :int + * 是否必填 :false + */ + public void setBalanceMode(Integer balanceMode) { + this.balanceMode = balanceMode; + } + + /** + * 字段名称 :允许欠费 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getCreditType() { + return this.creditType; + } + + /** + * 字段名称 :允许欠费 + * 数据类型 :int + * 是否必填 :false + */ + public void setCreditType(Integer creditType) { + this.creditType = creditType; + } + + /** + * 字段名称 :预付款类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getAdvanceType() { + return this.advanceType; + } + + /** + * 字段名称 :预付款类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setAdvanceType(Integer advanceType) { + this.advanceType = advanceType; + } + + /** + * 字段名称 :预付款值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAdvanceValue() { + return this.advanceValue; + } + + /** + * 字段名称 :预付款值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAdvanceValue(Double advanceValue) { + this.advanceValue = advanceValue; + } + + /** + * 字段名称 :微信点餐是否计入 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getWxdcFlag() { + return this.wxdcFlag; + } + + /** + * 字段名称 :微信点餐是否计入 + * 数据类型 :int + * 是否必填 :false + */ + public void setWxdcFlag(Integer wxdcFlag) { + this.wxdcFlag = wxdcFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchSettlePlanPayMode.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchSettlePlanPayMode.java new file mode 100644 index 0000000..9ab9800 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchSettlePlanPayMode.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:配送结算方案收银方式关联 + * 表代码:cy_dispatch_settle_plan_pay_mode + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"DispatchSettlePlanPayMode") +public class DispatchSettlePlanPayMode extends BaseEntity { + + private static final long serialVersionUID = 1071853221000105163L; + + /** + *方案ID + */ + private String planId; + + /** + *编号 + */ + private String no; + + /** + *名称 + */ + private String name; + + /** + *是否计入门店余额 + */ + private Integer incomeFlag; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :方案ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPlanId() { + return this.planId; + } + + /** + * 字段名称 :方案ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPlanId(String planId) { + this.planId = planId; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :是否计入门店余额 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIncomeFlag() { + return this.incomeFlag; + } + + /** + * 字段名称 :是否计入门店余额 + * 数据类型 :int + * 是否必填 :false + */ + public void setIncomeFlag(Integer incomeFlag) { + this.incomeFlag = incomeFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchSettlePlanStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchSettlePlanStore.java new file mode 100644 index 0000000..e0425bf --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchSettlePlanStore.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:配送结算方案门店关联 + * 表代码:cy_dispatch_settle_plan_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"DispatchSettlePlanStore") +public class DispatchSettlePlanStore extends BaseEntity { + + private static final long serialVersionUID = 1605426660671566535L; + + /** + *门店ID + */ + private String storeId; + + /** + *方案ID + */ + private String planId; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :方案ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPlanId() { + return this.planId; + } + + /** + * 字段名称 :方案ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPlanId(String planId) { + this.planId = planId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchTicket.java new file mode 100644 index 0000000..51d0ba9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchTicket.java @@ -0,0 +1,525 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:配送单 + * 表代码:cy_dispatch_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"DispatchTicket") +public class DispatchTicket extends BaseEntity { + + private static final long serialVersionUID = 1922220661139707603L; + + /** + *要货单ID + */ + private String askgoodsId; + + /** + *要货单编号 + */ + private String askgoodsNo; + + /** + *要货分店ID + */ + private String storeId; + + /** + *单据编号 + */ + private String no; + + /** + *单据状态 + */ + private Integer status; + + /** + *是否选用 + */ + private Integer isUse; + + /** + *备注信息 + */ + private String description; + + /** + *制单人 + */ + private String setMan; + + /** + *制单日期 + */ + private Date setDate; + + /** + *审核人 + */ + private String checkMan; + + /** + *审核日期 + */ + private Date checkDate; + + /** + *发货日期 + */ + private Date deliveryDate; + + /** + *验收日期 + */ + private Date arrivalDate; + + /** + *联系地址 + */ + private String address; + + /** + *联系人 + */ + private String linkMan; + + /** + *联系电话 + */ + private String linkTelephone; + + /** + *物流单号 + */ + private String logisticsNo; + + /** + *物流名称 + */ + private String logisticsName; + + /** + *物流费用 + */ + private Double logisticsFee; + + /** + *原料金额 + */ + private Double orderMoney; + + /** + *其他费用 + */ + private Double otherFee; + + /** + *总金额 + */ + private Double money; + + + /** + * 字段名称 :要货单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getAskgoodsId() { + return this.askgoodsId; + } + + /** + * 字段名称 :要货单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setAskgoodsId(String askgoodsId) { + this.askgoodsId = askgoodsId; + } + + /** + * 字段名称 :要货单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getAskgoodsNo() { + return this.askgoodsNo; + } + + /** + * 字段名称 :要货单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setAskgoodsNo(String askgoodsNo) { + this.askgoodsNo = askgoodsNo; + } + + /** + * 字段名称 :要货分店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :要货分店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :是否选用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsUse() { + return this.isUse; + } + + /** + * 字段名称 :是否选用 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsUse(Integer isUse) { + this.isUse = isUse; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetMan() { + return this.setMan; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetMan(String setMan) { + this.setMan = setMan; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSetDate() { + return this.setDate; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSetDate(Date setDate) { + this.setDate = setDate; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCheckMan() { + return this.checkMan; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCheckMan(String checkMan) { + this.checkMan = checkMan; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckDate() { + return this.checkDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckDate(Date checkDate) { + this.checkDate = checkDate; + } + + /** + * 字段名称 :发货日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getDeliveryDate() { + return this.deliveryDate; + } + + /** + * 字段名称 :发货日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setDeliveryDate(Date deliveryDate) { + this.deliveryDate = deliveryDate; + } + + /** + * 字段名称 :验收日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getArrivalDate() { + return this.arrivalDate; + } + + /** + * 字段名称 :验收日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setArrivalDate(Date arrivalDate) { + this.arrivalDate = arrivalDate; + } + + /** + * 字段名称 :联系地址 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getAddress() { + return this.address; + } + + /** + * 字段名称 :联系地址 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setAddress(String address) { + this.address = address; + } + + /** + * 字段名称 :联系人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLinkMan() { + return this.linkMan; + } + + /** + * 字段名称 :联系人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLinkMan(String linkMan) { + this.linkMan = linkMan; + } + + /** + * 字段名称 :联系电话 + * 数据类型 :varchar(11) + * 是否必填 :false + */ + public String getLinkTelephone() { + return this.linkTelephone; + } + + /** + * 字段名称 :联系电话 + * 数据类型 :varchar(11) + * 是否必填 :false + */ + public void setLinkTelephone(String linkTelephone) { + this.linkTelephone = linkTelephone; + } + + /** + * 字段名称 :物流单号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getLogisticsNo() { + return this.logisticsNo; + } + + /** + * 字段名称 :物流单号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setLogisticsNo(String logisticsNo) { + this.logisticsNo = logisticsNo; + } + + /** + * 字段名称 :物流名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getLogisticsName() { + return this.logisticsName; + } + + /** + * 字段名称 :物流名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setLogisticsName(String logisticsName) { + this.logisticsName = logisticsName; + } + + /** + * 字段名称 :物流费用 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getLogisticsFee() { + return this.logisticsFee; + } + + /** + * 字段名称 :物流费用 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setLogisticsFee(Double logisticsFee) { + this.logisticsFee = logisticsFee; + } + + /** + * 字段名称 :原料金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOrderMoney() { + return this.orderMoney; + } + + /** + * 字段名称 :原料金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOrderMoney(Double orderMoney) { + this.orderMoney = orderMoney; + } + + /** + * 字段名称 :其他费用 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOtherFee() { + return this.otherFee; + } + + /** + * 字段名称 :其他费用 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOtherFee(Double otherFee) { + this.otherFee = otherFee; + } + + /** + * 字段名称 :总金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :总金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchTicketDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchTicketDetail.java new file mode 100644 index 0000000..e82ccac --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchTicketDetail.java @@ -0,0 +1,548 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:配送单明细 + * 表代码:cy_dispatch_ticket_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"DispatchTicketDetail") +public class DispatchTicketDetail extends BaseEntity { + + private static final long serialVersionUID = 1487300602564654654L; + + /** + *配送单ID + */ + private String dispatchId; + + /** + *配送单编号 + */ + private String dispatchNo; + + /** + *出库库位ID + */ + private String storageId; + + /** + *出库库位名 + */ + private String storageName; + + /** + *原料ID + */ + private String productId; + + /** + *原料编码 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *要货数量 + */ + private Double askgoodsAmount; + + /** + *配送数量 + */ + private Double dispatchAmount; + + /** + *配送单位 + */ + private String dispatchUnitId; + + /** + *配送单位名称 + */ + private String dispatchUnitName; + + /** + *配送价 + */ + private Double price; + + /** + *配送金额 + */ + private Double money; + + /** + *备注信息 + */ + private String description; + + /** + *包装单位 + */ + private String packUnitId; + + /** + *包装单位名称 + */ + private String packUnitName; + + /** + *换算比例(配送单位和包装单位) + */ + private Double dpScale; + + /** + *收货数量 + */ + private Double receiveAmount; + + /** + *差异数量 + */ + private Double differenceAmount; + + /** + *差异金额 + */ + private Double differenceMoney; + + + /** + * 字段名称 :配送单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchId() { + return this.dispatchId; + } + + /** + * 字段名称 :配送单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchId(String dispatchId) { + this.dispatchId = dispatchId; + } + + /** + * 字段名称 :配送单编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getDispatchNo() { + return this.dispatchNo; + } + + /** + * 字段名称 :配送单编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setDispatchNo(String dispatchNo) { + this.dispatchNo = dispatchNo; + } + + /** + * 字段名称 :出库库位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :出库库位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + + /** + * 字段名称 :出库库位名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStorageName() { + return this.storageName; + } + + /** + * 字段名称 :出库库位名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStorageName(String storageName) { + this.storageName = storageName; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :要货数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAskgoodsAmount() { + return this.askgoodsAmount; + } + + /** + * 字段名称 :要货数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAskgoodsAmount(Double askgoodsAmount) { + this.askgoodsAmount = askgoodsAmount; + } + + /** + * 字段名称 :配送数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDispatchAmount() { + return this.dispatchAmount; + } + + /** + * 字段名称 :配送数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDispatchAmount(Double dispatchAmount) { + this.dispatchAmount = dispatchAmount; + } + + /** + * 字段名称 :配送单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchUnitId() { + return this.dispatchUnitId; + } + + /** + * 字段名称 :配送单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchUnitId(String dispatchUnitId) { + this.dispatchUnitId = dispatchUnitId; + } + + /** + * 字段名称 :配送单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDispatchUnitName() { + return this.dispatchUnitName; + } + + /** + * 字段名称 :配送单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDispatchUnitName(String dispatchUnitName) { + this.dispatchUnitName = dispatchUnitName; + } + + /** + * 字段名称 :配送价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :配送价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :配送金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :配送金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :包装单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPackUnitId() { + return this.packUnitId; + } + + /** + * 字段名称 :包装单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPackUnitId(String packUnitId) { + this.packUnitId = packUnitId; + } + + /** + * 字段名称 :包装单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPackUnitName() { + return this.packUnitName; + } + + /** + * 字段名称 :包装单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPackUnitName(String packUnitName) { + this.packUnitName = packUnitName; + } + + /** + * 字段名称 :换算比例(配送单位和包装单位) + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDpScale() { + return this.dpScale; + } + + /** + * 字段名称 :换算比例(配送单位和包装单位) + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDpScale(Double dpScale) { + this.dpScale = dpScale; + } + + /** + * 字段名称 :收货数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getReceiveAmount() { + return this.receiveAmount; + } + + /** + * 字段名称 :收货数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setReceiveAmount(Double receiveAmount) { + this.receiveAmount = receiveAmount; + } + + /** + * 字段名称 :差异数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDifferenceAmount() { + return this.differenceAmount; + } + + /** + * 字段名称 :差异数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDifferenceAmount(Double differenceAmount) { + this.differenceAmount = differenceAmount; + } + + /** + * 字段名称 :差异金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDifferenceMoney() { + return this.differenceMoney; + } + + /** + * 字段名称 :差异金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDifferenceMoney(Double differenceMoney) { + this.differenceMoney = differenceMoney; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchTicketLog.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchTicketLog.java new file mode 100644 index 0000000..ed4dd43 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchTicketLog.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:配送单操作记录 + * 表代码:cy_dispatch_ticket_log + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"DispatchTicketLog") +public class DispatchTicketLog extends BaseEntity { + + private static final long serialVersionUID = 1562818427079321612L; + + /** + *配送单ID + */ + private String dispatchId; + + /** + *配送单编号 + */ + private String dispatchNo; + + /** + *操作类型 + */ + private Integer type; + + /** + *操作状态 + */ + private Integer status; + + /** + *描述 + */ + private String description; + + + /** + * 字段名称 :配送单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchId() { + return this.dispatchId; + } + + /** + * 字段名称 :配送单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchId(String dispatchId) { + this.dispatchId = dispatchId; + } + + /** + * 字段名称 :配送单编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getDispatchNo() { + return this.dispatchNo; + } + + /** + * 字段名称 :配送单编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setDispatchNo(String dispatchNo) { + this.dispatchNo = dispatchNo; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchpriceTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchpriceTicket.java new file mode 100644 index 0000000..0896f00 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchpriceTicket.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:配送价格管理单 + * 表代码:cy_dispatchprice_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"DispatchpriceTicket") +public class DispatchpriceTicket extends BaseEntity { + + private static final long serialVersionUID = 1639604533640178340L; + + /** + *单据编号 + */ + private String no; + + /** + *单据状态 + */ + private Integer status; + + /** + *制单人 + */ + private String makeUser; + + /** + *制单日期 + */ + private Date makeDate; + + /** + *审核人 + */ + private String checkUser; + + /** + *审核日期 + */ + private Date checkDate; + + /** + *备注说明 + */ + private String description; + + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMakeUser() { + return this.makeUser; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMakeUser(String makeUser) { + this.makeUser = makeUser; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getMakeDate() { + return this.makeDate; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setMakeDate(Date makeDate) { + this.makeDate = makeDate; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCheckUser() { + return this.checkUser; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCheckUser(String checkUser) { + this.checkUser = checkUser; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckDate() { + return this.checkDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckDate(Date checkDate) { + this.checkDate = checkDate; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchpriceTicketMaterial.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchpriceTicketMaterial.java new file mode 100644 index 0000000..466f18e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchpriceTicketMaterial.java @@ -0,0 +1,272 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:配送价格单原料 + * 表代码:cy_dispatchprice_ticket_material + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"DispatchpriceTicketMaterial") +public class DispatchpriceTicketMaterial extends BaseEntity { + + private static final long serialVersionUID = 1296518042895327232L; + + /** + *配送价格单ID + */ + private String ticketId; + + /** + *原料ID + */ + private String productId; + + /** + *原料编号 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *配送单位 + */ + private String dispatchUnitId; + + /** + *历史配送价 + */ + private Double hdispatchPrice; + + /** + *新配送价 + */ + private Double dispatchPrice; + + /** + *备注 + */ + private String description; + + + /** + * 字段名称 :配送价格单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :配送价格单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :配送单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchUnitId() { + return this.dispatchUnitId; + } + + /** + * 字段名称 :配送单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchUnitId(String dispatchUnitId) { + this.dispatchUnitId = dispatchUnitId; + } + + /** + * 字段名称 :历史配送价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getHdispatchPrice() { + return this.hdispatchPrice; + } + + /** + * 字段名称 :历史配送价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setHdispatchPrice(Double hdispatchPrice) { + this.hdispatchPrice = hdispatchPrice; + } + + /** + * 字段名称 :新配送价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDispatchPrice() { + return this.dispatchPrice; + } + + /** + * 字段名称 :新配送价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDispatchPrice(Double dispatchPrice) { + this.dispatchPrice = dispatchPrice; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchpriceTicketStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchpriceTicketStore.java new file mode 100644 index 0000000..ef7abc4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/DispatchpriceTicketStore.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:配送价格单门店 + * 表代码:cy_dispatchprice_ticket_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"DispatchpriceTicketStore") +public class DispatchpriceTicketStore extends BaseEntity { + + private static final long serialVersionUID = 1005987875416833597L; + + /** + *配送价格单ID + */ + private String ticketId; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + + /** + * 字段名称 :配送价格单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :配送价格单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ElemeCategoryFood.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ElemeCategoryFood.java new file mode 100644 index 0000000..e69d53f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ElemeCategoryFood.java @@ -0,0 +1,364 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:饿了么分类菜品信息 + * 表代码:cy_eleme_category_food + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ElemeCategoryFood") +public class ElemeCategoryFood extends BaseEntity { + + private static final long serialVersionUID = 1315816759000176670L; + + /** + *门店ID + */ + private String storeId; + + /** + *分类ID + */ + private String categoryId; + + /** + *商品ID + */ + private String foodId; + + /** + *商品名称 + */ + private String foodName; + + /** + *商品描述 + */ + private String description; + + /** + *是否有效 + */ + private Integer isValid; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *商品价格 + */ + private Double price; + + /** + *包装费 + */ + private Double packingFee; + + /** + *是否绑定 + */ + private Integer isBind; + + /** + *erp商品ID + */ + private String erpProductId; + + /** + *erp商品 + */ + private String erpProduct; + + /** + *erp规格ID + */ + private String erpSpecId; + + /** + *erp规格 + */ + private String erpSpec; + + + /** + * 字段名称 :门店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :分类ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCategoryId() { + return this.categoryId; + } + + /** + * 字段名称 :分类ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCategoryId(String categoryId) { + this.categoryId = categoryId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getFoodId() { + return this.foodId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setFoodId(String foodId) { + this.foodId = foodId; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getFoodName() { + return this.foodName; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setFoodName(String foodName) { + this.foodName = foodName; + } + + /** + * 字段名称 :商品描述 + * 数据类型 :text + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :商品描述 + * 数据类型 :text + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :是否有效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsValid() { + return this.isValid; + } + + /** + * 字段名称 :是否有效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsValid(Integer isValid) { + this.isValid = isValid; + } + + /** + * 字段名称 :规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :商品价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :商品价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :包装费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPackingFee() { + return this.packingFee; + } + + /** + * 字段名称 :包装费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPackingFee(Double packingFee) { + this.packingFee = packingFee; + } + + /** + * 字段名称 :是否绑定 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsBind() { + return this.isBind; + } + + /** + * 字段名称 :是否绑定 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsBind(Integer isBind) { + this.isBind = isBind; + } + + /** + * 字段名称 :erp商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getErpProductId() { + return this.erpProductId; + } + + /** + * 字段名称 :erp商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setErpProductId(String erpProductId) { + this.erpProductId = erpProductId; + } + + /** + * 字段名称 :erp商品 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getErpProduct() { + return this.erpProduct; + } + + /** + * 字段名称 :erp商品 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setErpProduct(String erpProduct) { + this.erpProduct = erpProduct; + } + + /** + * 字段名称 :erp规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getErpSpecId() { + return this.erpSpecId; + } + + /** + * 字段名称 :erp规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setErpSpecId(String erpSpecId) { + this.erpSpecId = erpSpecId; + } + + /** + * 字段名称 :erp规格 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getErpSpec() { + return this.erpSpec; + } + + /** + * 字段名称 :erp规格 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setErpSpec(String erpSpec) { + this.erpSpec = erpSpec; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ElemeFoodCategory.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ElemeFoodCategory.java new file mode 100644 index 0000000..2da3285 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ElemeFoodCategory.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:饿了么菜品分类 + * 表代码:cy_eleme_food_category + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ElemeFoodCategory") +public class ElemeFoodCategory extends BaseEntity { + + private static final long serialVersionUID = 1652224522713926256L; + + /** + *门店ID + */ + private String storeId; + + /** + *分类ID + */ + private String categoryId; + + /** + *分类名称 + */ + private String name; + + /** + *是否有效 + */ + private Integer isValid; + + /** + *分类描述 + */ + private String description; + + + /** + * 字段名称 :门店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :分类ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCategoryId() { + return this.categoryId; + } + + /** + * 字段名称 :分类ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCategoryId(String categoryId) { + this.categoryId = categoryId; + } + + /** + * 字段名称 :分类名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :分类名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :是否有效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsValid() { + return this.isValid; + } + + /** + * 字段名称 :是否有效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsValid(Integer isValid) { + this.isValid = isValid; + } + + /** + * 字段名称 :分类描述 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :分类描述 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ElemeOrderDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ElemeOrderDetail.java new file mode 100644 index 0000000..48adc98 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ElemeOrderDetail.java @@ -0,0 +1,801 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:饿了么订单信息 + * 表代码:cy_eleme_order_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ElemeOrderDetail") +public class ElemeOrderDetail extends BaseEntity { + + private static final long serialVersionUID = 1042474285483904645L; + + /** + *消息 + */ + private String message; + + /** + *系统门店ID + */ + private String storeId; + + /** + *饿了么订单id + */ + private String orderId; + + /** + *顾客送餐地址 + */ + private String address; + + /** + *下单时间 + */ + private String createdAt; + + /** + *订单生效时间 + */ + private String activeAt; + + /** + *配送费 + */ + private Double deliverFee; + + /** + *送餐时间 + */ + private String deliverTime; + + /** + *订单备注 + */ + private String description; + + /** + *发票抬头 + */ + private String invoice; + + /** + *是否预订单 + */ + private Integer isBook; + + /** + *是否在线支付 + */ + private Integer isOnlinePaid; + + /** + *顾客联系电话 + */ + private String phoneList; + + /** + *店铺Id + */ + private String shopId; + + /** + *店铺名称 + */ + private String shopName; + + /** + *店铺当日订单流水号 + */ + private Integer daySn; + + /** + *订单状态 + */ + private String status; + + /** + *退单状态 + */ + private String refundStatus; + + /** + *用户id + */ + private String userId; + + /** + *订单总价 + */ + private Double totalPrice; + + /** + *原始价格 + */ + private Double originalPrice; + + /** + *订单收货人 + */ + private String consignee; + + /** + *订单收货地址经纬度 + */ + private String deliveryGeo; + + /** + *顾客送餐详情地址 + */ + private String deliveryPoiAddress; + + /** + *是否需要发票 + */ + private Integer invoiced; + + /** + *店铺实收 + */ + private Double income; + + /** + *饿了么服务费率 + */ + private Double serviceRate; + + /** + *饿了么服务费 + */ + private Double serviceFee; + + /** + *订单中红包金额 + */ + private Double hongbao; + + /** + *餐盒费 + */ + private Double packageFee; + + /** + *订单活动总额 + */ + private Double activityTotal; + + /** + *店铺承担活动费用 + */ + private Double shopPart; + + /** + *饿了么承担活动费用 + */ + private Double elemePart; + + /** + *降级标识 + */ + private Integer downgraded; + + + /** + * 字段名称 :消息 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getMessage() { + return this.message; + } + + /** + * 字段名称 :消息 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setMessage(String message) { + this.message = message; + } + + /** + * 字段名称 :系统门店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :系统门店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :饿了么订单id + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOrderId() { + return this.orderId; + } + + /** + * 字段名称 :饿了么订单id + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOrderId(String orderId) { + this.orderId = orderId; + } + + /** + * 字段名称 :顾客送餐地址 + * 数据类型 :text + * 是否必填 :false + */ + public String getAddress() { + return this.address; + } + + /** + * 字段名称 :顾客送餐地址 + * 数据类型 :text + * 是否必填 :false + */ + public void setAddress(String address) { + this.address = address; + } + + /** + * 字段名称 :下单时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCreatedAt() { + return this.createdAt; + } + + /** + * 字段名称 :下单时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCreatedAt(String createdAt) { + this.createdAt = createdAt; + } + + /** + * 字段名称 :订单生效时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getActiveAt() { + return this.activeAt; + } + + /** + * 字段名称 :订单生效时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setActiveAt(String activeAt) { + this.activeAt = activeAt; + } + + /** + * 字段名称 :配送费 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDeliverFee() { + return this.deliverFee; + } + + /** + * 字段名称 :配送费 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDeliverFee(Double deliverFee) { + this.deliverFee = deliverFee; + } + + /** + * 字段名称 :送餐时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDeliverTime() { + return this.deliverTime; + } + + /** + * 字段名称 :送餐时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDeliverTime(String deliverTime) { + this.deliverTime = deliverTime; + } + + /** + * 字段名称 :订单备注 + * 数据类型 :text + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :订单备注 + * 数据类型 :text + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :发票抬头 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getInvoice() { + return this.invoice; + } + + /** + * 字段名称 :发票抬头 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setInvoice(String invoice) { + this.invoice = invoice; + } + + /** + * 字段名称 :是否预订单 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsBook() { + return this.isBook; + } + + /** + * 字段名称 :是否预订单 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsBook(Integer isBook) { + this.isBook = isBook; + } + + /** + * 字段名称 :是否在线支付 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsOnlinePaid() { + return this.isOnlinePaid; + } + + /** + * 字段名称 :是否在线支付 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsOnlinePaid(Integer isOnlinePaid) { + this.isOnlinePaid = isOnlinePaid; + } + + /** + * 字段名称 :顾客联系电话 + * 数据类型 :text + * 是否必填 :false + */ + public String getPhoneList() { + return this.phoneList; + } + + /** + * 字段名称 :顾客联系电话 + * 数据类型 :text + * 是否必填 :false + */ + public void setPhoneList(String phoneList) { + this.phoneList = phoneList; + } + + /** + * 字段名称 :店铺Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getShopId() { + return this.shopId; + } + + /** + * 字段名称 :店铺Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setShopId(String shopId) { + this.shopId = shopId; + } + + /** + * 字段名称 :店铺名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getShopName() { + return this.shopName; + } + + /** + * 字段名称 :店铺名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setShopName(String shopName) { + this.shopName = shopName; + } + + /** + * 字段名称 :店铺当日订单流水号 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDaySn() { + return this.daySn; + } + + /** + * 字段名称 :店铺当日订单流水号 + * 数据类型 :int + * 是否必填 :false + */ + public void setDaySn(Integer daySn) { + this.daySn = daySn; + } + + /** + * 字段名称 :订单状态 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStatus() { + return this.status; + } + + /** + * 字段名称 :订单状态 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStatus(String status) { + this.status = status; + } + + /** + * 字段名称 :退单状态 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getRefundStatus() { + return this.refundStatus; + } + + /** + * 字段名称 :退单状态 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setRefundStatus(String refundStatus) { + this.refundStatus = refundStatus; + } + + /** + * 字段名称 :用户id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getUserId() { + return this.userId; + } + + /** + * 字段名称 :用户id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setUserId(String userId) { + this.userId = userId; + } + + /** + * 字段名称 :订单总价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getTotalPrice() { + return this.totalPrice; + } + + /** + * 字段名称 :订单总价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setTotalPrice(Double totalPrice) { + this.totalPrice = totalPrice; + } + + /** + * 字段名称 :原始价格 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOriginalPrice() { + return this.originalPrice; + } + + /** + * 字段名称 :原始价格 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOriginalPrice(Double originalPrice) { + this.originalPrice = originalPrice; + } + + /** + * 字段名称 :订单收货人 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getConsignee() { + return this.consignee; + } + + /** + * 字段名称 :订单收货人 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setConsignee(String consignee) { + this.consignee = consignee; + } + + /** + * 字段名称 :订单收货地址经纬度 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeliveryGeo() { + return this.deliveryGeo; + } + + /** + * 字段名称 :订单收货地址经纬度 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeliveryGeo(String deliveryGeo) { + this.deliveryGeo = deliveryGeo; + } + + /** + * 字段名称 :顾客送餐详情地址 + * 数据类型 :text + * 是否必填 :false + */ + public String getDeliveryPoiAddress() { + return this.deliveryPoiAddress; + } + + /** + * 字段名称 :顾客送餐详情地址 + * 数据类型 :text + * 是否必填 :false + */ + public void setDeliveryPoiAddress(String deliveryPoiAddress) { + this.deliveryPoiAddress = deliveryPoiAddress; + } + + /** + * 字段名称 :是否需要发票 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getInvoiced() { + return this.invoiced; + } + + /** + * 字段名称 :是否需要发票 + * 数据类型 :int + * 是否必填 :false + */ + public void setInvoiced(Integer invoiced) { + this.invoiced = invoiced; + } + + /** + * 字段名称 :店铺实收 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getIncome() { + return this.income; + } + + /** + * 字段名称 :店铺实收 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setIncome(Double income) { + this.income = income; + } + + /** + * 字段名称 :饿了么服务费率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getServiceRate() { + return this.serviceRate; + } + + /** + * 字段名称 :饿了么服务费率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setServiceRate(Double serviceRate) { + this.serviceRate = serviceRate; + } + + /** + * 字段名称 :饿了么服务费 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getServiceFee() { + return this.serviceFee; + } + + /** + * 字段名称 :饿了么服务费 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setServiceFee(Double serviceFee) { + this.serviceFee = serviceFee; + } + + /** + * 字段名称 :订单中红包金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getHongbao() { + return this.hongbao; + } + + /** + * 字段名称 :订单中红包金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setHongbao(Double hongbao) { + this.hongbao = hongbao; + } + + /** + * 字段名称 :餐盒费 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPackageFee() { + return this.packageFee; + } + + /** + * 字段名称 :餐盒费 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPackageFee(Double packageFee) { + this.packageFee = packageFee; + } + + /** + * 字段名称 :订单活动总额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getActivityTotal() { + return this.activityTotal; + } + + /** + * 字段名称 :订单活动总额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setActivityTotal(Double activityTotal) { + this.activityTotal = activityTotal; + } + + /** + * 字段名称 :店铺承担活动费用 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getShopPart() { + return this.shopPart; + } + + /** + * 字段名称 :店铺承担活动费用 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setShopPart(Double shopPart) { + this.shopPart = shopPart; + } + + /** + * 字段名称 :饿了么承担活动费用 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getElemePart() { + return this.elemePart; + } + + /** + * 字段名称 :饿了么承担活动费用 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setElemePart(Double elemePart) { + this.elemePart = elemePart; + } + + /** + * 字段名称 :降级标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDowngraded() { + return this.downgraded; + } + + /** + * 字段名称 :降级标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDowngraded(Integer downgraded) { + this.downgraded = downgraded; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ElemeOrderDetailGroup.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ElemeOrderDetailGroup.java new file mode 100644 index 0000000..8c85135 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ElemeOrderDetailGroup.java @@ -0,0 +1,249 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:饿了么订单篮子明细 + * 表代码:cy_eleme_order_detail_group + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ElemeOrderDetailGroup") +public class ElemeOrderDetailGroup extends BaseEntity { + + private static final long serialVersionUID = 1795119474896415411L; + + /** + *订单ID + */ + private String orderId; + + /** + *分组名称 + */ + private String groupName; + + /** + *分组类型 + */ + private String groupType; + + /** + *规格商品Id + */ + private String specId; + + /** + *skuId + */ + private String skuId; + + /** + *商品分类Id + */ + private String categoryId; + + /** + *售品名称 + */ + private String name; + + /** + *售品价格 + */ + private Double price; + + /** + *售品数量 + */ + private Integer quantity; + + /** + *总价 + */ + private Double total; + + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOrderId() { + return this.orderId; + } + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOrderId(String orderId) { + this.orderId = orderId; + } + + /** + * 字段名称 :分组名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getGroupName() { + return this.groupName; + } + + /** + * 字段名称 :分组名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + /** + * 字段名称 :分组类型 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getGroupType() { + return this.groupType; + } + + /** + * 字段名称 :分组类型 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setGroupType(String groupType) { + this.groupType = groupType; + } + + /** + * 字段名称 :规格商品Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格商品Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :skuId + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSkuId() { + return this.skuId; + } + + /** + * 字段名称 :skuId + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSkuId(String skuId) { + this.skuId = skuId; + } + + /** + * 字段名称 :商品分类Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCategoryId() { + return this.categoryId; + } + + /** + * 字段名称 :商品分类Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCategoryId(String categoryId) { + this.categoryId = categoryId; + } + + /** + * 字段名称 :售品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :售品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :售品价格 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :售品价格 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :售品数量 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getQuantity() { + return this.quantity; + } + + /** + * 字段名称 :售品数量 + * 数据类型 :int + * 是否必填 :false + */ + public void setQuantity(Integer quantity) { + this.quantity = quantity; + } + + /** + * 字段名称 :总价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTotal() { + return this.total; + } + + /** + * 字段名称 :总价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTotal(Double total) { + this.total = total; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ErpPosSet.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ErpPosSet.java new file mode 100644 index 0000000..4350429 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ErpPosSet.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:ERP方POS设置 + * 表代码:cy_erp_pos_set + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ErpPosSet") +public class ErpPosSet extends BaseEntity { + + private static final long serialVersionUID = 1631234259626603094L; + + /** + *门店ID + */ + private String storeId; + + /** + *设备编号 + */ + private String posNo; + + /** + *设置参数 + */ + private String pbody; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :设置参数 + * 数据类型 :text + * 是否必填 :false + */ + public String getPbody() { + return this.pbody; + } + + /** + * 字段名称 :设置参数 + * 数据类型 :text + * 是否必填 :false + */ + public void setPbody(String pbody) { + this.pbody = pbody; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/FeeItem.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/FeeItem.java new file mode 100644 index 0000000..0683a14 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/FeeItem.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:费用项目 + * 表代码:cy_fee_item + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"FeeItem") +public class FeeItem extends BaseEntity { + + private static final long serialVersionUID = 1006230517618059698L; + + /** + *名称 + */ + private String name; + + /** + *类型 + */ + private Integer type; + + /** + *是否启用 + */ + private Integer enabled; + + /** + *显示序号 + */ + private String orderNo; + + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnabled() { + return this.enabled; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setEnabled(Integer enabled) { + this.enabled = enabled; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderNo(String orderNo) { + this.orderNo = orderNo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/KdsPlan.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/KdsPlan.java new file mode 100644 index 0000000..486f67c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/KdsPlan.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:厨房显示方案 + * 表代码:cy_kds_plan + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"KdsPlan") +public class KdsPlan extends BaseEntity { + + private static final long serialVersionUID = 1921171470251519991L; + + /** + *编码 + */ + private String no; + + /** + *方案名称 + */ + private String name; + + /** + *备注说明 + */ + private String description; + + + /** + * 字段名称 :编码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :方案名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :方案名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/KdsPlanStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/KdsPlanStore.java new file mode 100644 index 0000000..98aad9d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/KdsPlanStore.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:厨房显示方案门店关联 + * 表代码:cy_kds_plan_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"KdsPlanStore") +public class KdsPlanStore extends BaseEntity { + + private static final long serialVersionUID = 1455092853113564728L; + + /** + *门店ID + */ + private String storeId; + + /** + *方案ID + */ + private String planId; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :方案ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPlanId() { + return this.planId; + } + + /** + * 字段名称 :方案ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPlanId(String planId) { + this.planId = planId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/KitPlan.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/KitPlan.java new file mode 100644 index 0000000..e3bb1e3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/KitPlan.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:厨房打印方案 + * 表代码:cy_kit_plan + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"KitPlan") +public class KitPlan extends BaseEntity { + + private static final long serialVersionUID = 1139406452657952899L; + + /** + *编码 + */ + private String no; + + /** + *方案名称 + */ + private String name; + + /** + *厨打单类别 + */ + private String type; + + /** + *备注说明 + */ + private String description; + + + /** + * 字段名称 :编码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :方案名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :方案名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :厨打单类别 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getType() { + return this.type; + } + + /** + * 字段名称 :厨打单类别 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setType(String type) { + this.type = type; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/KitPlanStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/KitPlanStore.java new file mode 100644 index 0000000..b294f87 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/KitPlanStore.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:厨房打印方案门店关联 + * 表代码:cy_kit_plan_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"KitPlanStore") +public class KitPlanStore extends BaseEntity { + + private static final long serialVersionUID = 1690874201789749560L; + + /** + *门店ID + */ + private String storeId; + + /** + *方案ID + */ + private String planId; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :方案ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPlanId() { + return this.planId; + } + + /** + * 字段名称 :方案ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPlanId(String planId) { + this.planId = planId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MakeBurden.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MakeBurden.java new file mode 100644 index 0000000..dfe4734 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MakeBurden.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:做法配料BOM表 + * 表代码:cy_make_burden + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"MakeBurden") +public class MakeBurden extends BaseEntity { + + private static final long serialVersionUID = 1389513387917235339L; + + /** + *做法ID + */ + private String makeId; + + /** + *配料产品ID + */ + private String burdenProductId; + + /** + *配料产品规格ID + */ + private String burdenSpecId; + + /** + *单位ID + */ + private String salesUnitId; + + /** + *单位用量 + */ + private Double salesAmount; + + + /** + * 字段名称 :做法ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getMakeId() { + return this.makeId; + } + + /** + * 字段名称 :做法ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setMakeId(String makeId) { + this.makeId = makeId; + } + + /** + * 字段名称 :配料产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getBurdenProductId() { + return this.burdenProductId; + } + + /** + * 字段名称 :配料产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setBurdenProductId(String burdenProductId) { + this.burdenProductId = burdenProductId; + } + + /** + * 字段名称 :配料产品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getBurdenSpecId() { + return this.burdenSpecId; + } + + /** + * 字段名称 :配料产品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setBurdenSpecId(String burdenSpecId) { + this.burdenSpecId = burdenSpecId; + } + + /** + * 字段名称 :单位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSalesUnitId() { + return this.salesUnitId; + } + + /** + * 字段名称 :单位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSalesUnitId(String salesUnitId) { + this.salesUnitId = salesUnitId; + } + + /** + * 字段名称 :单位用量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getSalesAmount() { + return this.salesAmount; + } + + /** + * 字段名称 :单位用量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setSalesAmount(Double salesAmount) { + this.salesAmount = salesAmount; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MakeDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MakeDetail.java new file mode 100644 index 0000000..cf964cc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MakeDetail.java @@ -0,0 +1,272 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:菜品做法 + * 表代码:cy_make_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"MakeDetail") +public class MakeDetail extends BaseEntity { + + private static final long serialVersionUID = 1913315284453427293L; + + /** + *编号 + */ + private String no; + + /** + *做法类型 + */ + private String typeId; + + /** + *做法说明 + */ + private String description; + + /** + *拼音简码 + */ + private String spell; + + /** + *加价 + */ + private Double addPrice; + + /** + *管理数量 + */ + private Integer qtyFlag; + + /** + *显示序号 + */ + private String orderNo; + + /** + *颜色 + */ + private String color; + + /** + *是否私有 + */ + private Integer prvFlag; + + /** + *删除标识 + */ + private Integer deleteFlag; + + /** + *编号类型 + */ + private Integer noType; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :做法类型 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :做法类型 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :做法说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :做法说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :拼音简码 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getSpell() { + return this.spell; + } + + /** + * 字段名称 :拼音简码 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setSpell(String spell) { + this.spell = spell; + } + + /** + * 字段名称 :加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddPrice() { + return this.addPrice; + } + + /** + * 字段名称 :加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddPrice(Double addPrice) { + this.addPrice = addPrice; + } + + /** + * 字段名称 :管理数量 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getQtyFlag() { + return this.qtyFlag; + } + + /** + * 字段名称 :管理数量 + * 数据类型 :int + * 是否必填 :false + */ + public void setQtyFlag(Integer qtyFlag) { + this.qtyFlag = qtyFlag; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setOrderNo(String orderNo) { + this.orderNo = orderNo; + } + + /** + * 字段名称 :颜色 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getColor() { + return this.color; + } + + /** + * 字段名称 :颜色 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setColor(String color) { + this.color = color; + } + + /** + * 字段名称 :是否私有 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPrvFlag() { + return this.prvFlag; + } + + /** + * 字段名称 :是否私有 + * 数据类型 :int + * 是否必填 :false + */ + public void setPrvFlag(Integer prvFlag) { + this.prvFlag = prvFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + + /** + * 字段名称 :编号类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getNoType() { + return this.noType; + } + + /** + * 字段名称 :编号类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setNoType(Integer noType) { + this.noType = noType; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MakeType.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MakeType.java new file mode 100644 index 0000000..b71307c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MakeType.java @@ -0,0 +1,226 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:做法分类 + * 表代码:cy_make_type + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"MakeType") +public class MakeType extends BaseEntity { + + private static final long serialVersionUID = 1112148317416352079L; + + /** + *分类编号 + */ + private String no; + + /** + *分类名称 + */ + private String name; + + /** + *是否单选 + */ + private Integer isRadio; + + /** + *类型 + */ + private Integer type; + + /** + *前台顺序 + */ + private String seqNo; + + /** + *做法颜色 + */ + private String color; + + /** + *删除标识 + */ + private Integer deleteFlag; + + /** + *编号类型 + */ + private Integer noType; + + /** + *是否必选做法 + */ + private Integer isMust; + + + /** + * 字段名称 :分类编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :分类编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :分类名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :分类名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :是否单选 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsRadio() { + return this.isRadio; + } + + /** + * 字段名称 :是否单选 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsRadio(Integer isRadio) { + this.isRadio = isRadio; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :前台顺序 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSeqNo() { + return this.seqNo; + } + + /** + * 字段名称 :前台顺序 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSeqNo(String seqNo) { + this.seqNo = seqNo; + } + + /** + * 字段名称 :做法颜色 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getColor() { + return this.color; + } + + /** + * 字段名称 :做法颜色 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setColor(String color) { + this.color = color; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + + /** + * 字段名称 :编号类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getNoType() { + return this.noType; + } + + /** + * 字段名称 :编号类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setNoType(Integer noType) { + this.noType = noType; + } + + /** + * 字段名称 :是否必选做法 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getIsMust() { + return this.isMust; + } + + /** + * 字段名称 :是否必选做法 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setIsMust(Integer isMust) { + this.isMust = isMust; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MeituanFood.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MeituanFood.java new file mode 100644 index 0000000..967d3f8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MeituanFood.java @@ -0,0 +1,364 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:美团菜品信息 + * 表代码:cy_meituan_food + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"MeituanFood") +public class MeituanFood extends BaseEntity { + + private static final long serialVersionUID = 1504236173723422632L; + + /** + *门店ID + */ + private String storeId; + + /** + *菜品分类名称 + */ + private String categoryName; + + /** + *美团菜品ID + */ + private String dishId; + + /** + *菜品名称 + */ + private String dishName; + + /** + *规格ID + */ + private String dishSkuId; + + /** + *规格名称 + */ + private String spec; + + /** + *菜品描述 + */ + private String description; + + /** + *价格 + */ + private Double price; + + /** + *餐盒数量 + */ + private Integer boxNum; + + /** + *餐盒单价 + */ + private Double boxPrice; + + /** + *是否绑定 + */ + private Integer isBind; + + /** + *erp商品ID + */ + private String erpProductId; + + /** + *erp商品 + */ + private String erpProduct; + + /** + *erp规格ID + */ + private String erpSpecId; + + /** + *erp规格 + */ + private String erpSpec; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :菜品分类名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getCategoryName() { + return this.categoryName; + } + + /** + * 字段名称 :菜品分类名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setCategoryName(String categoryName) { + this.categoryName = categoryName; + } + + /** + * 字段名称 :美团菜品ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDishId() { + return this.dishId; + } + + /** + * 字段名称 :美团菜品ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDishId(String dishId) { + this.dishId = dishId; + } + + /** + * 字段名称 :菜品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDishName() { + return this.dishName; + } + + /** + * 字段名称 :菜品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDishName(String dishName) { + this.dishName = dishName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDishSkuId() { + return this.dishSkuId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDishSkuId(String dishSkuId) { + this.dishSkuId = dishSkuId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpec() { + return this.spec; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpec(String spec) { + this.spec = spec; + } + + /** + * 字段名称 :菜品描述 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :菜品描述 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :餐盒数量 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBoxNum() { + return this.boxNum; + } + + /** + * 字段名称 :餐盒数量 + * 数据类型 :int + * 是否必填 :false + */ + public void setBoxNum(Integer boxNum) { + this.boxNum = boxNum; + } + + /** + * 字段名称 :餐盒单价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getBoxPrice() { + return this.boxPrice; + } + + /** + * 字段名称 :餐盒单价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setBoxPrice(Double boxPrice) { + this.boxPrice = boxPrice; + } + + /** + * 字段名称 :是否绑定 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsBind() { + return this.isBind; + } + + /** + * 字段名称 :是否绑定 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsBind(Integer isBind) { + this.isBind = isBind; + } + + /** + * 字段名称 :erp商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getErpProductId() { + return this.erpProductId; + } + + /** + * 字段名称 :erp商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setErpProductId(String erpProductId) { + this.erpProductId = erpProductId; + } + + /** + * 字段名称 :erp商品 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getErpProduct() { + return this.erpProduct; + } + + /** + * 字段名称 :erp商品 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setErpProduct(String erpProduct) { + this.erpProduct = erpProduct; + } + + /** + * 字段名称 :erp规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getErpSpecId() { + return this.erpSpecId; + } + + /** + * 字段名称 :erp规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setErpSpecId(String erpSpecId) { + this.erpSpecId = erpSpecId; + } + + /** + * 字段名称 :erp规格 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getErpSpec() { + return this.erpSpec; + } + + /** + * 字段名称 :erp规格 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setErpSpec(String erpSpec) { + this.erpSpec = erpSpec; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MeituanFoodCategory.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MeituanFoodCategory.java new file mode 100644 index 0000000..7738957 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MeituanFoodCategory.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:美团菜品分类 + * 表代码:cy_meituan_food_category + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"MeituanFoodCategory") +public class MeituanFoodCategory extends BaseEntity { + + private static final long serialVersionUID = 1868178690414012007L; + + /** + *门店ID + */ + private String storeId; + + /** + *分类名称 + */ + private String name; + + /** + *分类序号 + */ + private Integer sequence; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :分类名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :分类名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :分类序号 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSequence() { + return this.sequence; + } + + /** + * 字段名称 :分类序号 + * 数据类型 :int + * 是否必填 :false + */ + public void setSequence(Integer sequence) { + this.sequence = sequence; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MeituanOrder.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MeituanOrder.java new file mode 100644 index 0000000..ed377b4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MeituanOrder.java @@ -0,0 +1,1261 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:美团订单表 + * 表代码:cy_meituan_order + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"MeituanOrder") +public class MeituanOrder extends BaseEntity { + + private static final long serialVersionUID = 1037568192110979378L; + + /** + *消息 + */ + private String message; + + /** + *erp方门店id + */ + private String storeId; + + /** + *订单ID + */ + private String orderId; + + /** + *订单创建时间 + */ + private String cTime; + + /** + *订单备注 + */ + private String caution; + + /** + *用户预计送达时间 + */ + private String deliveryTime; + + /** + *订单菜品详情 + */ + private String detail; + + /** + *城市Id + */ + private String cityId; + + /** + *订单扩展信息 + */ + private String extras; + + /** + *是否需要发票 + */ + private Integer hasInvoiced; + + /** + *发票抬头 + */ + private String invoiceTitle; + + /** + *是否是预定单 + */ + private Integer isPre; + + /** + *是否第三方配送 + */ + private Integer isThirdShipping; + + /** + *实际送餐地址纬度 + */ + private Double latitude; + + /** + *实际送餐地址经度 + */ + private Double longitude; + + /** + *商家对账信息 + */ + private String poiReceiveDetail; + + /** + *配送类型码 + */ + private String logisticsCode; + + /** + *配送完成时间 + */ + private String logisticsCompletedTime; + + /** + *配送单确认时间 + */ + private String logisticsConfirmTime; + + /** + *骑手电话 + */ + private String logisticsDispatcherMobile; + + /** + *骑手姓名 + */ + private String logisticsDispatcherName; + + /** + *骑手取单时间 + */ + private String logisticsFetchTime; + + /** + *配送方ID + */ + private String logisticsId; + + /** + *配送方名称 + */ + private String logisticsName; + + /** + *配送单下单时间 + */ + private String logisticsSendTime; + + /** + *配送订单状态code + */ + private String logisticsStatus; + + /** + *订单完成时间 + */ + private String orderCompletedTime; + + /** + *商户确认时间 + */ + private String orderConfirmTime; + + /** + *订单取消时间 + */ + private String orderCancelTime; + + /** + *订单展示Id + */ + private String orderIdView; + + /** + *用户下单时间 + */ + private String orderSendTime; + + /** + *订单原价 + */ + private Double originalPrice; + + /** + *订单支付类型 + */ + private Integer payType; + + /** + *订单取餐类型 + */ + private Integer pickType; + + /** + *门店地址 + */ + private String poiAddress; + + /** + *门店Id + */ + private String poiId; + + /** + *门店名称 + */ + private String poiName; + + /** + *门店服务电话 + */ + private String poiPhone; + + /** + *收货人地址 + */ + private String recipientAddress; + + /** + *收货人名称 + */ + private String recipientName; + + /** + *收货人电话 + */ + private String recipientPhone; + + /** + *配送骑手电话 + */ + private String shipperPhone; + + /** + *配送费用 + */ + private Double shippingFee; + + /** + *订单状态 + */ + private Integer status; + + /** + *总价 + */ + private Double total; + + /** + *订单更新时间 + */ + private String uTime; + + /** + *门店当天的订单流水号 + */ + private Integer daySeq; + + /** + *就餐人数 + */ + private Integer dinnersNumber; + + /** + *订单取消原因 + */ + private String cancelReason; + + /** + *订单取消code + */ + private String cancelReasonCode; + + /** + *订单退款原因 + */ + private String refundReason; + + /** + *菜品分成(分) + */ + private Double foodShareFeeChargeByPoi; + + /** + *商家应收款(分) + */ + private Double wmPoiReceiveCent; + + /** + *订单退款code + */ + private String refundReasonCode; + + + /** + * 字段名称 :消息 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getMessage() { + return this.message; + } + + /** + * 字段名称 :消息 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setMessage(String message) { + this.message = message; + } + + /** + * 字段名称 :erp方门店id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :erp方门店id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderId() { + return this.orderId; + } + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderId(String orderId) { + this.orderId = orderId; + } + + /** + * 字段名称 :订单创建时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCTime() { + return this.cTime; + } + + /** + * 字段名称 :订单创建时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCTime(String cTime) { + this.cTime = cTime; + } + + /** + * 字段名称 :订单备注 + * 数据类型 :text + * 是否必填 :false + */ + public String getCaution() { + return this.caution; + } + + /** + * 字段名称 :订单备注 + * 数据类型 :text + * 是否必填 :false + */ + public void setCaution(String caution) { + this.caution = caution; + } + + /** + * 字段名称 :用户预计送达时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDeliveryTime() { + return this.deliveryTime; + } + + /** + * 字段名称 :用户预计送达时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDeliveryTime(String deliveryTime) { + this.deliveryTime = deliveryTime; + } + + /** + * 字段名称 :订单菜品详情 + * 数据类型 :text + * 是否必填 :false + */ + public String getDetail() { + return this.detail; + } + + /** + * 字段名称 :订单菜品详情 + * 数据类型 :text + * 是否必填 :false + */ + public void setDetail(String detail) { + this.detail = detail; + } + + /** + * 字段名称 :城市Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCityId() { + return this.cityId; + } + + /** + * 字段名称 :城市Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCityId(String cityId) { + this.cityId = cityId; + } + + /** + * 字段名称 :订单扩展信息 + * 数据类型 :text + * 是否必填 :false + */ + public String getExtras() { + return this.extras; + } + + /** + * 字段名称 :订单扩展信息 + * 数据类型 :text + * 是否必填 :false + */ + public void setExtras(String extras) { + this.extras = extras; + } + + /** + * 字段名称 :是否需要发票 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getHasInvoiced() { + return this.hasInvoiced; + } + + /** + * 字段名称 :是否需要发票 + * 数据类型 :int + * 是否必填 :false + */ + public void setHasInvoiced(Integer hasInvoiced) { + this.hasInvoiced = hasInvoiced; + } + + /** + * 字段名称 :发票抬头 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getInvoiceTitle() { + return this.invoiceTitle; + } + + /** + * 字段名称 :发票抬头 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setInvoiceTitle(String invoiceTitle) { + this.invoiceTitle = invoiceTitle; + } + + /** + * 字段名称 :是否是预定单 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsPre() { + return this.isPre; + } + + /** + * 字段名称 :是否是预定单 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsPre(Integer isPre) { + this.isPre = isPre; + } + + /** + * 字段名称 :是否第三方配送 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsThirdShipping() { + return this.isThirdShipping; + } + + /** + * 字段名称 :是否第三方配送 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsThirdShipping(Integer isThirdShipping) { + this.isThirdShipping = isThirdShipping; + } + + /** + * 字段名称 :实际送餐地址纬度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public Double getLatitude() { + return this.latitude; + } + + /** + * 字段名称 :实际送餐地址纬度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public void setLatitude(Double latitude) { + this.latitude = latitude; + } + + /** + * 字段名称 :实际送餐地址经度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public Double getLongitude() { + return this.longitude; + } + + /** + * 字段名称 :实际送餐地址经度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public void setLongitude(Double longitude) { + this.longitude = longitude; + } + + /** + * 字段名称 :商家对账信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getPoiReceiveDetail() { + return this.poiReceiveDetail; + } + + /** + * 字段名称 :商家对账信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setPoiReceiveDetail(String poiReceiveDetail) { + this.poiReceiveDetail = poiReceiveDetail; + } + + /** + * 字段名称 :配送类型码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getLogisticsCode() { + return this.logisticsCode; + } + + /** + * 字段名称 :配送类型码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setLogisticsCode(String logisticsCode) { + this.logisticsCode = logisticsCode; + } + + /** + * 字段名称 :配送完成时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLogisticsCompletedTime() { + return this.logisticsCompletedTime; + } + + /** + * 字段名称 :配送完成时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLogisticsCompletedTime(String logisticsCompletedTime) { + this.logisticsCompletedTime = logisticsCompletedTime; + } + + /** + * 字段名称 :配送单确认时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLogisticsConfirmTime() { + return this.logisticsConfirmTime; + } + + /** + * 字段名称 :配送单确认时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLogisticsConfirmTime(String logisticsConfirmTime) { + this.logisticsConfirmTime = logisticsConfirmTime; + } + + /** + * 字段名称 :骑手电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getLogisticsDispatcherMobile() { + return this.logisticsDispatcherMobile; + } + + /** + * 字段名称 :骑手电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setLogisticsDispatcherMobile(String logisticsDispatcherMobile) { + this.logisticsDispatcherMobile = logisticsDispatcherMobile; + } + + /** + * 字段名称 :骑手姓名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getLogisticsDispatcherName() { + return this.logisticsDispatcherName; + } + + /** + * 字段名称 :骑手姓名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setLogisticsDispatcherName(String logisticsDispatcherName) { + this.logisticsDispatcherName = logisticsDispatcherName; + } + + /** + * 字段名称 :骑手取单时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLogisticsFetchTime() { + return this.logisticsFetchTime; + } + + /** + * 字段名称 :骑手取单时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLogisticsFetchTime(String logisticsFetchTime) { + this.logisticsFetchTime = logisticsFetchTime; + } + + /** + * 字段名称 :配送方ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLogisticsId() { + return this.logisticsId; + } + + /** + * 字段名称 :配送方ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLogisticsId(String logisticsId) { + this.logisticsId = logisticsId; + } + + /** + * 字段名称 :配送方名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getLogisticsName() { + return this.logisticsName; + } + + /** + * 字段名称 :配送方名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setLogisticsName(String logisticsName) { + this.logisticsName = logisticsName; + } + + /** + * 字段名称 :配送单下单时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLogisticsSendTime() { + return this.logisticsSendTime; + } + + /** + * 字段名称 :配送单下单时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLogisticsSendTime(String logisticsSendTime) { + this.logisticsSendTime = logisticsSendTime; + } + + /** + * 字段名称 :配送订单状态code + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getLogisticsStatus() { + return this.logisticsStatus; + } + + /** + * 字段名称 :配送订单状态code + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setLogisticsStatus(String logisticsStatus) { + this.logisticsStatus = logisticsStatus; + } + + /** + * 字段名称 :订单完成时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderCompletedTime() { + return this.orderCompletedTime; + } + + /** + * 字段名称 :订单完成时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderCompletedTime(String orderCompletedTime) { + this.orderCompletedTime = orderCompletedTime; + } + + /** + * 字段名称 :商户确认时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderConfirmTime() { + return this.orderConfirmTime; + } + + /** + * 字段名称 :商户确认时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderConfirmTime(String orderConfirmTime) { + this.orderConfirmTime = orderConfirmTime; + } + + /** + * 字段名称 :订单取消时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderCancelTime() { + return this.orderCancelTime; + } + + /** + * 字段名称 :订单取消时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderCancelTime(String orderCancelTime) { + this.orderCancelTime = orderCancelTime; + } + + /** + * 字段名称 :订单展示Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderIdView() { + return this.orderIdView; + } + + /** + * 字段名称 :订单展示Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderIdView(String orderIdView) { + this.orderIdView = orderIdView; + } + + /** + * 字段名称 :用户下单时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderSendTime() { + return this.orderSendTime; + } + + /** + * 字段名称 :用户下单时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderSendTime(String orderSendTime) { + this.orderSendTime = orderSendTime; + } + + /** + * 字段名称 :订单原价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOriginalPrice() { + return this.originalPrice; + } + + /** + * 字段名称 :订单原价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOriginalPrice(Double originalPrice) { + this.originalPrice = originalPrice; + } + + /** + * 字段名称 :订单支付类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPayType() { + return this.payType; + } + + /** + * 字段名称 :订单支付类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setPayType(Integer payType) { + this.payType = payType; + } + + /** + * 字段名称 :订单取餐类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPickType() { + return this.pickType; + } + + /** + * 字段名称 :订单取餐类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setPickType(Integer pickType) { + this.pickType = pickType; + } + + /** + * 字段名称 :门店地址 + * 数据类型 :text + * 是否必填 :false + */ + public String getPoiAddress() { + return this.poiAddress; + } + + /** + * 字段名称 :门店地址 + * 数据类型 :text + * 是否必填 :false + */ + public void setPoiAddress(String poiAddress) { + this.poiAddress = poiAddress; + } + + /** + * 字段名称 :门店Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPoiId() { + return this.poiId; + } + + /** + * 字段名称 :门店Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPoiId(String poiId) { + this.poiId = poiId; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getPoiName() { + return this.poiName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setPoiName(String poiName) { + this.poiName = poiName; + } + + /** + * 字段名称 :门店服务电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPoiPhone() { + return this.poiPhone; + } + + /** + * 字段名称 :门店服务电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPoiPhone(String poiPhone) { + this.poiPhone = poiPhone; + } + + /** + * 字段名称 :收货人地址 + * 数据类型 :text + * 是否必填 :false + */ + public String getRecipientAddress() { + return this.recipientAddress; + } + + /** + * 字段名称 :收货人地址 + * 数据类型 :text + * 是否必填 :false + */ + public void setRecipientAddress(String recipientAddress) { + this.recipientAddress = recipientAddress; + } + + /** + * 字段名称 :收货人名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getRecipientName() { + return this.recipientName; + } + + /** + * 字段名称 :收货人名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setRecipientName(String recipientName) { + this.recipientName = recipientName; + } + + /** + * 字段名称 :收货人电话 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getRecipientPhone() { + return this.recipientPhone; + } + + /** + * 字段名称 :收货人电话 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setRecipientPhone(String recipientPhone) { + this.recipientPhone = recipientPhone; + } + + /** + * 字段名称 :配送骑手电话 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getShipperPhone() { + return this.shipperPhone; + } + + /** + * 字段名称 :配送骑手电话 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setShipperPhone(String shipperPhone) { + this.shipperPhone = shipperPhone; + } + + /** + * 字段名称 :配送费用 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getShippingFee() { + return this.shippingFee; + } + + /** + * 字段名称 :配送费用 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setShippingFee(Double shippingFee) { + this.shippingFee = shippingFee; + } + + /** + * 字段名称 :订单状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :订单状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :总价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getTotal() { + return this.total; + } + + /** + * 字段名称 :总价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setTotal(Double total) { + this.total = total; + } + + /** + * 字段名称 :订单更新时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getUTime() { + return this.uTime; + } + + /** + * 字段名称 :订单更新时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setUTime(String uTime) { + this.uTime = uTime; + } + + /** + * 字段名称 :门店当天的订单流水号 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDaySeq() { + return this.daySeq; + } + + /** + * 字段名称 :门店当天的订单流水号 + * 数据类型 :int + * 是否必填 :false + */ + public void setDaySeq(Integer daySeq) { + this.daySeq = daySeq; + } + + /** + * 字段名称 :就餐人数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDinnersNumber() { + return this.dinnersNumber; + } + + /** + * 字段名称 :就餐人数 + * 数据类型 :int + * 是否必填 :false + */ + public void setDinnersNumber(Integer dinnersNumber) { + this.dinnersNumber = dinnersNumber; + } + + /** + * 字段名称 :订单取消原因 + * 数据类型 :text + * 是否必填 :false + */ + public String getCancelReason() { + return this.cancelReason; + } + + /** + * 字段名称 :订单取消原因 + * 数据类型 :text + * 是否必填 :false + */ + public void setCancelReason(String cancelReason) { + this.cancelReason = cancelReason; + } + + /** + * 字段名称 :订单取消code + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCancelReasonCode() { + return this.cancelReasonCode; + } + + /** + * 字段名称 :订单取消code + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCancelReasonCode(String cancelReasonCode) { + this.cancelReasonCode = cancelReasonCode; + } + + /** + * 字段名称 :订单退款原因 + * 数据类型 :text + * 是否必填 :false + */ + public String getRefundReason() { + return this.refundReason; + } + + /** + * 字段名称 :订单退款原因 + * 数据类型 :text + * 是否必填 :false + */ + public void setRefundReason(String refundReason) { + this.refundReason = refundReason; + } + + /** + * 字段名称 :菜品分成(分) + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getFoodShareFeeChargeByPoi() { + return this.foodShareFeeChargeByPoi; + } + + /** + * 字段名称 :菜品分成(分) + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setFoodShareFeeChargeByPoi(Double foodShareFeeChargeByPoi) { + this.foodShareFeeChargeByPoi = foodShareFeeChargeByPoi; + } + + /** + * 字段名称 :商家应收款(分) + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getWmPoiReceiveCent() { + return this.wmPoiReceiveCent; + } + + /** + * 字段名称 :商家应收款(分) + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setWmPoiReceiveCent(Double wmPoiReceiveCent) { + this.wmPoiReceiveCent = wmPoiReceiveCent; + } + + /** + * 字段名称 :订单退款code + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getRefundReasonCode() { + return this.refundReasonCode; + } + + /** + * 字段名称 :订单退款code + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setRefundReasonCode(String refundReasonCode) { + this.refundReasonCode = refundReasonCode; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MeituanOrderExtra.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MeituanOrderExtra.java new file mode 100644 index 0000000..9c71f22 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MeituanOrderExtra.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:美团订单优惠信息 + * 表代码:cy_meituan_order_extra + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"MeituanOrderExtra") +public class MeituanOrderExtra extends BaseEntity { + + private static final long serialVersionUID = 1985909160854427327L; + + /** + *订单ID + */ + private String orderId; + + /** + *优惠金额中美团承担的部分 + */ + private Double mtCharge; + + /** + *优惠金额中商家承担的部分 + */ + private Double poiCharge; + + /** + *活动优惠总金额 + */ + private Double reduceFee; + + /** + *优惠说明 + */ + private String remark; + + /** + *活动类型 + */ + private Integer type; + + /** + *活动ID + */ + private String actDetailId; + + /** + *餐厅平均送餐时间 + */ + private Double avgSendTime; + + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderId() { + return this.orderId; + } + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderId(String orderId) { + this.orderId = orderId; + } + + /** + * 字段名称 :优惠金额中美团承担的部分 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMtCharge() { + return this.mtCharge; + } + + /** + * 字段名称 :优惠金额中美团承担的部分 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMtCharge(Double mtCharge) { + this.mtCharge = mtCharge; + } + + /** + * 字段名称 :优惠金额中商家承担的部分 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPoiCharge() { + return this.poiCharge; + } + + /** + * 字段名称 :优惠金额中商家承担的部分 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPoiCharge(Double poiCharge) { + this.poiCharge = poiCharge; + } + + /** + * 字段名称 :活动优惠总金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getReduceFee() { + return this.reduceFee; + } + + /** + * 字段名称 :活动优惠总金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setReduceFee(Double reduceFee) { + this.reduceFee = reduceFee; + } + + /** + * 字段名称 :优惠说明 + * 数据类型 :text + * 是否必填 :false + */ + public String getRemark() { + return this.remark; + } + + /** + * 字段名称 :优惠说明 + * 数据类型 :text + * 是否必填 :false + */ + public void setRemark(String remark) { + this.remark = remark; + } + + /** + * 字段名称 :活动类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :活动类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :活动ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getActDetailId() { + return this.actDetailId; + } + + /** + * 字段名称 :活动ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setActDetailId(String actDetailId) { + this.actDetailId = actDetailId; + } + + /** + * 字段名称 :餐厅平均送餐时间 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAvgSendTime() { + return this.avgSendTime; + } + + /** + * 字段名称 :餐厅平均送餐时间 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAvgSendTime(Double avgSendTime) { + this.avgSendTime = avgSendTime; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MeituanOrderItem.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MeituanOrderItem.java new file mode 100644 index 0000000..cb094bf --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/MeituanOrderItem.java @@ -0,0 +1,295 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:美团订单明细表 + * 表代码:cy_meituan_order_item + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"MeituanOrderItem") +public class MeituanOrderItem extends BaseEntity { + + private static final long serialVersionUID = 1457312622575421406L; + + /** + *订单ID + */ + private String orderId; + + /** + *erp方菜品id + */ + private String eDishCode; + + /** + *餐盒数量 + */ + private Integer boxNum; + + /** + *餐盒单价 + */ + private Double boxPrice; + + /** + *菜品名 + */ + private String dishName; + + /** + *价格 + */ + private Double price; + + /** + *erp方菜品sku + */ + private String skuId; + + /** + *菜品份数 + */ + private String quantity; + + /** + *单位 + */ + private String unit; + + /** + *菜品折扣 + */ + private Double discount; + + /** + *菜品规格 + */ + private String spec; + + /** + *菜品属性 + */ + private String property; + + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderId() { + return this.orderId; + } + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderId(String orderId) { + this.orderId = orderId; + } + + /** + * 字段名称 :erp方菜品id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getEDishCode() { + return this.eDishCode; + } + + /** + * 字段名称 :erp方菜品id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setEDishCode(String eDishCode) { + this.eDishCode = eDishCode; + } + + /** + * 字段名称 :餐盒数量 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBoxNum() { + return this.boxNum; + } + + /** + * 字段名称 :餐盒数量 + * 数据类型 :int + * 是否必填 :false + */ + public void setBoxNum(Integer boxNum) { + this.boxNum = boxNum; + } + + /** + * 字段名称 :餐盒单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getBoxPrice() { + return this.boxPrice; + } + + /** + * 字段名称 :餐盒单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setBoxPrice(Double boxPrice) { + this.boxPrice = boxPrice; + } + + /** + * 字段名称 :菜品名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDishName() { + return this.dishName; + } + + /** + * 字段名称 :菜品名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDishName(String dishName) { + this.dishName = dishName; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :erp方菜品sku + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSkuId() { + return this.skuId; + } + + /** + * 字段名称 :erp方菜品sku + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSkuId(String skuId) { + this.skuId = skuId; + } + + /** + * 字段名称 :菜品份数 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getQuantity() { + return this.quantity; + } + + /** + * 字段名称 :菜品份数 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setQuantity(String quantity) { + this.quantity = quantity; + } + + /** + * 字段名称 :单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getUnit() { + return this.unit; + } + + /** + * 字段名称 :单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setUnit(String unit) { + this.unit = unit; + } + + /** + * 字段名称 :菜品折扣 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :菜品折扣 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :菜品规格 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getSpec() { + return this.spec; + } + + /** + * 字段名称 :菜品规格 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setSpec(String spec) { + this.spec = spec; + } + + /** + * 字段名称 :菜品属性 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getProperty() { + return this.property; + } + + /** + * 字段名称 :菜品属性 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setProperty(String property) { + this.property = property; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/OtherStorageOutTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/OtherStorageOutTicket.java new file mode 100644 index 0000000..7389fb7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/OtherStorageOutTicket.java @@ -0,0 +1,364 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:其他出库单 + * 表代码:cy_other_storage_out_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"OtherStorageOutTicket") +public class OtherStorageOutTicket extends BaseEntity { + + private static final long serialVersionUID = 1970190341370532661L; + + /** + *单据编号 + */ + private String no; + + /** + *出库类型 + */ + private Integer type; + + /** + *仓库ID + */ + private String storageId; + + /** + *仓库名称 + */ + private String storageName; + + /** + *备注信息 + */ + private String description; + + /** + *单据状态 + */ + private Integer status; + + /** + *仓管员 + */ + private String stockMan; + + /** + *联系人 + */ + private String linkMan; + + /** + *联系电话 + */ + private String linkTelephone; + + /** + *物流单号 + */ + private String logisticsNo; + + /** + *物流名称 + */ + private String logisticsName; + + /** + *制单人 + */ + private String setMan; + + /** + *制单日期 + */ + private Date setDate; + + /** + *审核人 + */ + private String checkMan; + + /** + *审核日期 + */ + private Date checkDate; + + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :出库类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :出库类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStorageName() { + return this.storageName; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStorageName(String storageName) { + this.storageName = storageName; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :仓管员 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStockMan() { + return this.stockMan; + } + + /** + * 字段名称 :仓管员 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStockMan(String stockMan) { + this.stockMan = stockMan; + } + + /** + * 字段名称 :联系人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLinkMan() { + return this.linkMan; + } + + /** + * 字段名称 :联系人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLinkMan(String linkMan) { + this.linkMan = linkMan; + } + + /** + * 字段名称 :联系电话 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getLinkTelephone() { + return this.linkTelephone; + } + + /** + * 字段名称 :联系电话 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setLinkTelephone(String linkTelephone) { + this.linkTelephone = linkTelephone; + } + + /** + * 字段名称 :物流单号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getLogisticsNo() { + return this.logisticsNo; + } + + /** + * 字段名称 :物流单号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setLogisticsNo(String logisticsNo) { + this.logisticsNo = logisticsNo; + } + + /** + * 字段名称 :物流名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getLogisticsName() { + return this.logisticsName; + } + + /** + * 字段名称 :物流名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setLogisticsName(String logisticsName) { + this.logisticsName = logisticsName; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetMan() { + return this.setMan; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetMan(String setMan) { + this.setMan = setMan; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSetDate() { + return this.setDate; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSetDate(Date setDate) { + this.setDate = setDate; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCheckMan() { + return this.checkMan; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCheckMan(String checkMan) { + this.checkMan = checkMan; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckDate() { + return this.checkDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckDate(Date checkDate) { + this.checkDate = checkDate; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/OtherStorageOutTicketDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/OtherStorageOutTicketDetail.java new file mode 100644 index 0000000..8634126 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/OtherStorageOutTicketDetail.java @@ -0,0 +1,341 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:其他出库单明细 + * 表代码:cy_other_storage_out_ticket_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"OtherStorageOutTicketDetail") +public class OtherStorageOutTicketDetail extends BaseEntity { + + private static final long serialVersionUID = 1034321011416608930L; + + /** + *主单ID + */ + private String ticketId; + + /** + *主单编号 + */ + private String ticketNo; + + /** + *原料ID + */ + private String productId; + + /** + *原料编号 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *库存单位 + */ + private String dispatchUnitId; + + /** + *库存单位名 + */ + private String dispatchUnitName; + + /** + *出库数量 + */ + private Double amount; + + /** + *价格 + */ + private Double price; + + /** + *金额 + */ + private Double money; + + /** + *备注说明 + */ + private String description; + + + /** + * 字段名称 :主单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :主单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :主单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :主单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchUnitId() { + return this.dispatchUnitId; + } + + /** + * 字段名称 :库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchUnitId(String dispatchUnitId) { + this.dispatchUnitId = dispatchUnitId; + } + + /** + * 字段名称 :库存单位名 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getDispatchUnitName() { + return this.dispatchUnitName; + } + + /** + * 字段名称 :库存单位名 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setDispatchUnitName(String dispatchUnitName) { + this.dispatchUnitName = dispatchUnitName; + } + + /** + * 字段名称 :出库数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :出库数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/OtherStorageOutTicketLog.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/OtherStorageOutTicketLog.java new file mode 100644 index 0000000..85c1d99 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/OtherStorageOutTicketLog.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:其他出库单操作记录 + * 表代码:cy_other_storage_out_ticket_log + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"OtherStorageOutTicketLog") +public class OtherStorageOutTicketLog extends BaseEntity { + + private static final long serialVersionUID = 1084214213789919939L; + + /** + *主单ID + */ + private String ticketId; + + /** + *主单编号 + */ + private String ticketNo; + + /** + *操作类型 + */ + private Integer type; + + /** + *操作状态 + */ + private Integer status; + + /** + *描述 + */ + private String description; + + + /** + * 字段名称 :主单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :主单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :主单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :主单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/OtherStorageTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/OtherStorageTicket.java new file mode 100644 index 0000000..500eda6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/OtherStorageTicket.java @@ -0,0 +1,272 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:其他入库单 + * 表代码:cy_other_storage_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"OtherStorageTicket") +public class OtherStorageTicket extends BaseEntity { + + private static final long serialVersionUID = 1708463335527119544L; + + /** + *单据编号 + */ + private String no; + + /** + *入库类型 + */ + private Integer type; + + /** + *仓库ID + */ + private String storageId; + + /** + *仓库名称 + */ + private String storageName; + + /** + *备注信息 + */ + private String description; + + /** + *单据状态 + */ + private Integer status; + + /** + *仓管员 + */ + private String stockMan; + + /** + *制单人 + */ + private String setMan; + + /** + *制单日期 + */ + private Date setDate; + + /** + *审核人 + */ + private String checkMan; + + /** + *审核日期 + */ + private Date checkDate; + + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :入库类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :入库类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStorageName() { + return this.storageName; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStorageName(String storageName) { + this.storageName = storageName; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :仓管员 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStockMan() { + return this.stockMan; + } + + /** + * 字段名称 :仓管员 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStockMan(String stockMan) { + this.stockMan = stockMan; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetMan() { + return this.setMan; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetMan(String setMan) { + this.setMan = setMan; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSetDate() { + return this.setDate; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSetDate(Date setDate) { + this.setDate = setDate; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCheckMan() { + return this.checkMan; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCheckMan(String checkMan) { + this.checkMan = checkMan; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckDate() { + return this.checkDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckDate(Date checkDate) { + this.checkDate = checkDate; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/OtherStorageTicketDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/OtherStorageTicketDetail.java new file mode 100644 index 0000000..df54e6e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/OtherStorageTicketDetail.java @@ -0,0 +1,387 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:其他入库单明细 + * 表代码:cy_other_storage_ticket_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"OtherStorageTicketDetail") +public class OtherStorageTicketDetail extends BaseEntity { + + private static final long serialVersionUID = 1189653729267106668L; + + /** + *主单ID + */ + private String ticketId; + + /** + *主单编号 + */ + private String ticketNo; + + /** + *生产批号 + */ + private String batchNo; + + /** + *原料ID + */ + private String productId; + + /** + *原料编号 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *库存单位 + */ + private String dispatchUnitId; + + /** + *库存单位名 + */ + private String dispatchUnitName; + + /** + *当前库存 + */ + private Double stockAmount; + + /** + *入库数量 + */ + private Double amount; + + /** + *价格 + */ + private Double price; + + /** + *金额 + */ + private Double money; + + /** + *备注说明 + */ + private String description; + + + /** + * 字段名称 :主单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :主单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :主单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :主单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :生产批号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBatchNo() { + return this.batchNo; + } + + /** + * 字段名称 :生产批号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBatchNo(String batchNo) { + this.batchNo = batchNo; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchUnitId() { + return this.dispatchUnitId; + } + + /** + * 字段名称 :库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchUnitId(String dispatchUnitId) { + this.dispatchUnitId = dispatchUnitId; + } + + /** + * 字段名称 :库存单位名 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getDispatchUnitName() { + return this.dispatchUnitName; + } + + /** + * 字段名称 :库存单位名 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setDispatchUnitName(String dispatchUnitName) { + this.dispatchUnitName = dispatchUnitName; + } + + /** + * 字段名称 :当前库存 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getStockAmount() { + return this.stockAmount; + } + + /** + * 字段名称 :当前库存 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setStockAmount(Double stockAmount) { + this.stockAmount = stockAmount; + } + + /** + * 字段名称 :入库数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :入库数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/OtherStorageTicketLog.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/OtherStorageTicketLog.java new file mode 100644 index 0000000..3363858 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/OtherStorageTicketLog.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:其他入库单操作记录 + * 表代码:cy_other_storage_ticket_log + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"OtherStorageTicketLog") +public class OtherStorageTicketLog extends BaseEntity { + + private static final long serialVersionUID = 1410976168076595939L; + + /** + *主单ID + */ + private String ticketId; + + /** + *主单编号 + */ + private String ticketNo; + + /** + *操作类型 + */ + private Integer type; + + /** + *操作状态 + */ + private Integer status; + + /** + *描述 + */ + private String description; + + + /** + * 字段名称 :主单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :主单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :主单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :主单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PayMode.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PayMode.java new file mode 100644 index 0000000..dca57fb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PayMode.java @@ -0,0 +1,364 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:收银方式 + * 表代码:cy_pay_mode + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PayMode") +public class PayMode extends BaseEntity { + + private static final long serialVersionUID = 1998016626803386424L; + + /** + *编号 + */ + private String no; + + /** + *名称 + */ + private String name; + + /** + *付款方式ID + */ + private String typeId; + + /** + *快捷键 + */ + private String shortcut; + + /** + *是否参与积分 + */ + private Integer pointFlag; + + /** + *前台是否启用 + */ + private Integer frontFlag; + + /** + *会员充值支付方式 + */ + private Integer rechargeFlag; + + /** + *固定金额 + */ + private Double fixeAmount; + + /** + *折扣率 + */ + private Double discount; + + /** + *三方扣费类型 + */ + private Integer otherRateType; + + /** + *三方费值 + */ + private Double otherRateValue; + + /** + *是否实收 + */ + private Integer incomeFlag; + + /** + *删除标识 + */ + private Integer deleteFlag; + + /** + *第三方编号 + */ + private String otherNo; + + /** + *时间扣率 + */ + private String periodDiscount; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :付款方式ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :付款方式ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :快捷键 + * 数据类型 :varchar(4) + * 是否必填 :false + */ + public String getShortcut() { + return this.shortcut; + } + + /** + * 字段名称 :快捷键 + * 数据类型 :varchar(4) + * 是否必填 :false + */ + public void setShortcut(String shortcut) { + this.shortcut = shortcut; + } + + /** + * 字段名称 :是否参与积分 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPointFlag() { + return this.pointFlag; + } + + /** + * 字段名称 :是否参与积分 + * 数据类型 :int + * 是否必填 :false + */ + public void setPointFlag(Integer pointFlag) { + this.pointFlag = pointFlag; + } + + /** + * 字段名称 :前台是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getFrontFlag() { + return this.frontFlag; + } + + /** + * 字段名称 :前台是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setFrontFlag(Integer frontFlag) { + this.frontFlag = frontFlag; + } + + /** + * 字段名称 :会员充值支付方式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getRechargeFlag() { + return this.rechargeFlag; + } + + /** + * 字段名称 :会员充值支付方式 + * 数据类型 :int + * 是否必填 :false + */ + public void setRechargeFlag(Integer rechargeFlag) { + this.rechargeFlag = rechargeFlag; + } + + /** + * 字段名称 :固定金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getFixeAmount() { + return this.fixeAmount; + } + + /** + * 字段名称 :固定金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setFixeAmount(Double fixeAmount) { + this.fixeAmount = fixeAmount; + } + + /** + * 字段名称 :折扣率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :折扣率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :三方扣费类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOtherRateType() { + return this.otherRateType; + } + + /** + * 字段名称 :三方扣费类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setOtherRateType(Integer otherRateType) { + this.otherRateType = otherRateType; + } + + /** + * 字段名称 :三方费值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOtherRateValue() { + return this.otherRateValue; + } + + /** + * 字段名称 :三方费值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOtherRateValue(Double otherRateValue) { + this.otherRateValue = otherRateValue; + } + + /** + * 字段名称 :是否实收 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIncomeFlag() { + return this.incomeFlag; + } + + /** + * 字段名称 :是否实收 + * 数据类型 :int + * 是否必填 :false + */ + public void setIncomeFlag(Integer incomeFlag) { + this.incomeFlag = incomeFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + + /** + * 字段名称 :第三方编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOtherNo() { + return this.otherNo; + } + + /** + * 字段名称 :第三方编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOtherNo(String otherNo) { + this.otherNo = otherNo; + } + + /** + * 字段名称 :时间扣率 + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public String getPeriodDiscount() { + return this.periodDiscount; + } + + /** + * 字段名称 :时间扣率 + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public void setPeriodDiscount(String periodDiscount) { + this.periodDiscount = periodDiscount; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PayModeSeries.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PayModeSeries.java new file mode 100644 index 0000000..7c54bd0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PayModeSeries.java @@ -0,0 +1,272 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:档口支付方式 + * 表代码:cy_pay_mode_series + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PayModeSeries") +public class PayModeSeries extends BaseEntity { + + private static final long serialVersionUID = 1987865653008031267L; + + /** + *门店ID + */ + private String storeId; + + /** + *档口ID + */ + private String seriesId; + + /** + *支付方式ID + */ + private String payModeId; + + /** + *快捷键 + */ + private String shortcut; + + /** + *是否参与积分 + */ + private Integer pointFlag; + + /** + *前台是否启用 + */ + private Integer frontFlag; + + /** + *固定金额 + */ + private Double fixeAmount; + + /** + *折扣率 + */ + private Double discount; + + /** + *三方扣费类型 + */ + private Integer otherRateType; + + /** + *三方费值 + */ + private Double otherRateValue; + + /** + *时间扣率 + */ + private String periodDiscount; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :档口ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSeriesId() { + return this.seriesId; + } + + /** + * 字段名称 :档口ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSeriesId(String seriesId) { + this.seriesId = seriesId; + } + + /** + * 字段名称 :支付方式ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPayModeId() { + return this.payModeId; + } + + /** + * 字段名称 :支付方式ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPayModeId(String payModeId) { + this.payModeId = payModeId; + } + + /** + * 字段名称 :快捷键 + * 数据类型 :varchar(4) + * 是否必填 :false + */ + public String getShortcut() { + return this.shortcut; + } + + /** + * 字段名称 :快捷键 + * 数据类型 :varchar(4) + * 是否必填 :false + */ + public void setShortcut(String shortcut) { + this.shortcut = shortcut; + } + + /** + * 字段名称 :是否参与积分 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPointFlag() { + return this.pointFlag; + } + + /** + * 字段名称 :是否参与积分 + * 数据类型 :int + * 是否必填 :false + */ + public void setPointFlag(Integer pointFlag) { + this.pointFlag = pointFlag; + } + + /** + * 字段名称 :前台是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getFrontFlag() { + return this.frontFlag; + } + + /** + * 字段名称 :前台是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setFrontFlag(Integer frontFlag) { + this.frontFlag = frontFlag; + } + + /** + * 字段名称 :固定金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getFixeAmount() { + return this.fixeAmount; + } + + /** + * 字段名称 :固定金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setFixeAmount(Double fixeAmount) { + this.fixeAmount = fixeAmount; + } + + /** + * 字段名称 :折扣率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :折扣率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :三方扣费类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOtherRateType() { + return this.otherRateType; + } + + /** + * 字段名称 :三方扣费类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setOtherRateType(Integer otherRateType) { + this.otherRateType = otherRateType; + } + + /** + * 字段名称 :三方费值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOtherRateValue() { + return this.otherRateValue; + } + + /** + * 字段名称 :三方费值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOtherRateValue(Double otherRateValue) { + this.otherRateValue = otherRateValue; + } + + /** + * 字段名称 :时间扣率 + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public String getPeriodDiscount() { + return this.periodDiscount; + } + + /** + * 字段名称 :时间扣率 + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public void setPeriodDiscount(String periodDiscount) { + this.periodDiscount = periodDiscount; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PayModeStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PayModeStore.java new file mode 100644 index 0000000..bdf4471 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PayModeStore.java @@ -0,0 +1,249 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店支付方式 + * 表代码:cy_pay_mode_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PayModeStore") +public class PayModeStore extends BaseEntity { + + private static final long serialVersionUID = 1254567713291459048L; + + /** + *门店ID + */ + private String storeId; + + /** + *支付方式 + */ + private String modeId; + + /** + *快捷键 + */ + private String shortcut; + + /** + *是否参与积分 + */ + private Integer pointFlag; + + /** + *前台是否启用 + */ + private Integer frontFlag; + + /** + *固定金额 + */ + private Double fixeAmount; + + /** + *折扣率 + */ + private Double discount; + + /** + *三方扣费类型 + */ + private Integer otherRateType; + + /** + *三方费值 + */ + private Double otherRateValue; + + /** + *时间扣率 + */ + private String periodDiscount; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :支付方式 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getModeId() { + return this.modeId; + } + + /** + * 字段名称 :支付方式 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setModeId(String modeId) { + this.modeId = modeId; + } + + /** + * 字段名称 :快捷键 + * 数据类型 :varchar(4) + * 是否必填 :false + */ + public String getShortcut() { + return this.shortcut; + } + + /** + * 字段名称 :快捷键 + * 数据类型 :varchar(4) + * 是否必填 :false + */ + public void setShortcut(String shortcut) { + this.shortcut = shortcut; + } + + /** + * 字段名称 :是否参与积分 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPointFlag() { + return this.pointFlag; + } + + /** + * 字段名称 :是否参与积分 + * 数据类型 :int + * 是否必填 :false + */ + public void setPointFlag(Integer pointFlag) { + this.pointFlag = pointFlag; + } + + /** + * 字段名称 :前台是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getFrontFlag() { + return this.frontFlag; + } + + /** + * 字段名称 :前台是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setFrontFlag(Integer frontFlag) { + this.frontFlag = frontFlag; + } + + /** + * 字段名称 :固定金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getFixeAmount() { + return this.fixeAmount; + } + + /** + * 字段名称 :固定金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setFixeAmount(Double fixeAmount) { + this.fixeAmount = fixeAmount; + } + + /** + * 字段名称 :折扣率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :折扣率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :三方扣费类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOtherRateType() { + return this.otherRateType; + } + + /** + * 字段名称 :三方扣费类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setOtherRateType(Integer otherRateType) { + this.otherRateType = otherRateType; + } + + /** + * 字段名称 :三方费值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOtherRateValue() { + return this.otherRateValue; + } + + /** + * 字段名称 :三方费值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOtherRateValue(Double otherRateValue) { + this.otherRateValue = otherRateValue; + } + + /** + * 字段名称 :时间扣率 + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public String getPeriodDiscount() { + return this.periodDiscount; + } + + /** + * 字段名称 :时间扣率 + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public void setPeriodDiscount(String periodDiscount) { + this.periodDiscount = periodDiscount; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PayType.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PayType.java new file mode 100644 index 0000000..3daa456 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PayType.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:付款类型 + * 表代码:cy_pay_type + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PayType") +public class PayType extends BaseEntity { + + private static final long serialVersionUID = 1906305556817500754L; + + /** + *编号 + */ + private String no; + + /** + *名称 + */ + private String name; + + /** + *标识符 + */ + private String sign; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :标识符 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSign() { + return this.sign; + } + + /** + * 字段名称 :标识符 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSign(String sign) { + this.sign = sign; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PaymentParameter.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PaymentParameter.java new file mode 100644 index 0000000..4f01dfe --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PaymentParameter.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:支付参数方案 + * 表代码:cy_payment_parameter + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PaymentParameter") +public class PaymentParameter extends BaseEntity { + + private static final long serialVersionUID = 1713395241145891340L; + + /** + *编号 + */ + private String no; + + /** + *方案名称 + */ + private String name; + + /** + *支付类型 + */ + private String sign; + + /** + *支付参数 + */ + private String pbody; + + /** + *是否启用 + */ + private Integer enabled; + + /** + *证书内容 + */ + private String certText; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :方案名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :方案名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :支付类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSign() { + return this.sign; + } + + /** + * 字段名称 :支付类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSign(String sign) { + this.sign = sign; + } + + /** + * 字段名称 :支付参数 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getPbody() { + return this.pbody; + } + + /** + * 字段名称 :支付参数 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setPbody(String pbody) { + this.pbody = pbody; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnabled() { + return this.enabled; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setEnabled(Integer enabled) { + this.enabled = enabled; + } + + /** + * 字段名称 :证书内容 + * 数据类型 :text + * 是否必填 :false + */ + public String getCertText() { + return this.certText; + } + + /** + * 字段名称 :证书内容 + * 数据类型 :text + * 是否必填 :false + */ + public void setCertText(String certText) { + this.certText = certText; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PaymentParameterStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PaymentParameterStore.java new file mode 100644 index 0000000..10e07e5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PaymentParameterStore.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:支付参数门店关联 + * 表代码:cy_payment_parameter_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PaymentParameterStore") +public class PaymentParameterStore extends BaseEntity { + + private static final long serialVersionUID = 1569896319388671831L; + + /** + *门店ID + */ + private String storeId; + + /** + *支付参数ID + */ + private String parameterId; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :支付参数ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getParameterId() { + return this.parameterId; + } + + /** + * 字段名称 :支付参数ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setParameterId(String parameterId) { + this.parameterId = parameterId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosInfo.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosInfo.java new file mode 100644 index 0000000..df95073 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosInfo.java @@ -0,0 +1,410 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:POS终端信息表 + * 表代码:cy_pos_info + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PosInfo") +public class PosInfo extends BaseEntity { + + private static final long serialVersionUID = 1883021638286262507L; + + /** + *应用标识 + */ + private String appSign; + + /** + *终端类型 + */ + private String terminalType; + + /** + *注册门店 + */ + private String storeId; + + /** + *注册门店编号 + */ + private String storeNo; + + /** + *POS编号 + */ + private String posNo; + + /** + *计算机名称 + */ + private String name; + + /** + *MAC地址 + */ + private String MACAddress; + + /** + *硬件序列号 + */ + private String serialNumber; + + /** + *CPU序列 + */ + private String cpuNumber; + + /** + *状态 + */ + private Integer status; + + /** + *注册码 + */ + private String pollCode; + + /** + *平台访问秘钥 + */ + private String appSecret; + + /** + *平台应用key + */ + private String appKey; + + /** + *备注说明 + */ + private String description; + + /** + *删除标识 + */ + private Integer deleteFlag; + + /** + *别名 + */ + private String aliasName; + + /** + *是否测试机 + */ + private Integer isTester; + + + /** + * 字段名称 :应用标识 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getAppSign() { + return this.appSign; + } + + /** + * 字段名称 :应用标识 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setAppSign(String appSign) { + this.appSign = appSign; + } + + /** + * 字段名称 :终端类型 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getTerminalType() { + return this.terminalType; + } + + /** + * 字段名称 :终端类型 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setTerminalType(String terminalType) { + this.terminalType = terminalType; + } + + /** + * 字段名称 :注册门店 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :注册门店 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :注册门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :注册门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :POS编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :POS编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :计算机名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :计算机名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :MAC地址 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getMACAddress() { + return this.MACAddress; + } + + /** + * 字段名称 :MAC地址 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setMACAddress(String MACAddress) { + this.MACAddress = MACAddress; + } + + /** + * 字段名称 :硬件序列号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getSerialNumber() { + return this.serialNumber; + } + + /** + * 字段名称 :硬件序列号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setSerialNumber(String serialNumber) { + this.serialNumber = serialNumber; + } + + /** + * 字段名称 :CPU序列 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getCpuNumber() { + return this.cpuNumber; + } + + /** + * 字段名称 :CPU序列 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setCpuNumber(String cpuNumber) { + this.cpuNumber = cpuNumber; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :注册码 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getPollCode() { + return this.pollCode; + } + + /** + * 字段名称 :注册码 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setPollCode(String pollCode) { + this.pollCode = pollCode; + } + + /** + * 字段名称 :平台访问秘钥 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getAppSecret() { + return this.appSecret; + } + + /** + * 字段名称 :平台访问秘钥 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setAppSecret(String appSecret) { + this.appSecret = appSecret; + } + + /** + * 字段名称 :平台应用key + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getAppKey() { + return this.appKey; + } + + /** + * 字段名称 :平台应用key + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setAppKey(String appKey) { + this.appKey = appKey; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + + /** + * 字段名称 :别名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getAliasName() { + return this.aliasName; + } + + /** + * 字段名称 :别名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setAliasName(String aliasName) { + this.aliasName = aliasName; + } + + /** + * 字段名称 :是否测试机 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsTester() { + return this.isTester; + } + + /** + * 字段名称 :是否测试机 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsTester(Integer isTester) { + this.isTester = isTester; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosPollcode.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosPollcode.java new file mode 100644 index 0000000..3ee53a2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosPollcode.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:POS终端注册码 + * 表代码:cy_pos_pollcode + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PosPollcode") +public class PosPollcode extends BaseEntity { + + private static final long serialVersionUID = 1651042988152267922L; + + /** + *注册码 + */ + private String pollCode; + + /** + *绑定门店 + */ + private String storeId; + + /** + *绑定门店编号 + */ + private String storeNo; + + /** + *备注说明 + */ + private String description; + + + /** + * 字段名称 :注册码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPollCode() { + return this.pollCode; + } + + /** + * 字段名称 :注册码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPollCode(String pollCode) { + this.pollCode = pollCode; + } + + /** + * 字段名称 :绑定门店 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :绑定门店 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :绑定门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :绑定门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosRole.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosRole.java new file mode 100644 index 0000000..82d1788 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosRole.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:前台角色 + * 表代码:cy_pos_role + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PosRole") +public class PosRole extends BaseEntity { + + private static final long serialVersionUID = 1799140911453488080L; + + /** + *编号 + */ + private String no; + + /** + *角色名称 + */ + private String name; + + /** + *最高折扣率 + */ + private Double discount; + + /** + *最高免单额(元) + */ + private Double free; + + /** + *角色描述 + */ + private String description; + + /** + *角色类型 + */ + private Integer type; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :角色名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :角色名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :最高折扣率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :最高折扣率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :最高免单额(元) + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getFree() { + return this.free; + } + + /** + * 字段名称 :最高免单额(元) + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setFree(Double free) { + this.free = free; + } + + /** + * 字段名称 :角色描述 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :角色描述 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :角色类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :角色类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosRoleModule.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosRoleModule.java new file mode 100644 index 0000000..8d25c88 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosRoleModule.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:前台角色模块 + * 表代码:cy_pos_role_module + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PosRoleModule") +public class PosRoleModule extends BaseEntity { + + private static final long serialVersionUID = 1295416679895232535L; + + /** + *角色Id + */ + private String roleId; + + /** + *模块编号 + */ + private String moduleNo; + + + /** + * 字段名称 :角色Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getRoleId() { + return this.roleId; + } + + /** + * 字段名称 :角色Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setRoleId(String roleId) { + this.roleId = roleId; + } + + /** + * 字段名称 :模块编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getModuleNo() { + return this.moduleNo; + } + + /** + * 字段名称 :模块编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setModuleNo(String moduleNo) { + this.moduleNo = moduleNo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosSetPlan.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosSetPlan.java new file mode 100644 index 0000000..756fffd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosSetPlan.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:POS下载方案 + * 表代码:cy_pos_set_plan + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PosSetPlan") +public class PosSetPlan extends BaseEntity { + + private static final long serialVersionUID = 1266965730821977356L; + + /** + *方案名称 + */ + private String name; + + /** + *终端版本 + */ + private String terminalType; + + /** + *备注信息 + */ + private String description; + + /** + *是否启用 + */ + private Integer enable; + + + /** + * 字段名称 :方案名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :方案名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :终端版本 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTerminalType() { + return this.terminalType; + } + + /** + * 字段名称 :终端版本 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTerminalType(String terminalType) { + this.terminalType = terminalType; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnable() { + return this.enable; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setEnable(Integer enable) { + this.enable = enable; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosSetPlanConfig.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosSetPlanConfig.java new file mode 100644 index 0000000..ac7ca63 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosSetPlanConfig.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:POS下载方案设置 + * 表代码:cy_pos_set_plan_config + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PosSetPlanConfig") +public class PosSetPlanConfig extends BaseEntity { + + private static final long serialVersionUID = 1819084222297064070L; + + /** + *方案ID + */ + private String planId; + + /** + *clientId + */ + private String clientId; + + /** + *group + */ + private String group; + + /** + *keys + */ + private String keys; + + /** + *values + */ + private String values; + + + /** + * 字段名称 :方案ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPlanId() { + return this.planId; + } + + /** + * 字段名称 :方案ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPlanId(String planId) { + this.planId = planId; + } + + /** + * 字段名称 :clientId + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :clientId + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :group + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getGroup() { + return this.group; + } + + /** + * 字段名称 :group + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setGroup(String group) { + this.group = group; + } + + /** + * 字段名称 :keys + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getKeys() { + return this.keys; + } + + /** + * 字段名称 :keys + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setKeys(String keys) { + this.keys = keys; + } + + /** + * 字段名称 :values + * 数据类型 :text + * 是否必填 :false + */ + public String getValues() { + return this.values; + } + + /** + * 字段名称 :values + * 数据类型 :text + * 是否必填 :false + */ + public void setValues(String values) { + this.values = values; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosSetPlanModule.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosSetPlanModule.java new file mode 100644 index 0000000..491ab20 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosSetPlanModule.java @@ -0,0 +1,433 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:POS下载方案模块 + * 表代码:cy_pos_set_plan_module + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PosSetPlanModule") +public class PosSetPlanModule extends BaseEntity { + + private static final long serialVersionUID = 1765911560063660462L; + + /** + *方案ID + */ + private String planId; + + /** + *clientId + */ + private String clientId; + + /** + *area + */ + private String area; + + /** + *parentId + */ + private String parentId; + + /** + *name + */ + private String name; + + /** + *alias + */ + private String alias; + + /** + *keycode + */ + private String keycode; + + /** + *keydata + */ + private String keydata; + + /** + *color1 + */ + private String color1; + + /** + *color2 + */ + private String color2; + + /** + *color3 + */ + private String color3; + + /** + *fontSize + */ + private String fontSize; + + /** + *shortcut + */ + private String shortcut; + + /** + *orderNo + */ + private Integer orderNo; + + /** + *icon + */ + private String icon; + + /** + *enable + */ + private Integer enable; + + /** + *resourceId + */ + private String resourceId; + + /** + *layout + */ + private Integer layout; + + + /** + * 字段名称 :方案ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPlanId() { + return this.planId; + } + + /** + * 字段名称 :方案ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPlanId(String planId) { + this.planId = planId; + } + + /** + * 字段名称 :clientId + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :clientId + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :area + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getArea() { + return this.area; + } + + /** + * 字段名称 :area + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setArea(String area) { + this.area = area; + } + + /** + * 字段名称 :parentId + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getParentId() { + return this.parentId; + } + + /** + * 字段名称 :parentId + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setParentId(String parentId) { + this.parentId = parentId; + } + + /** + * 字段名称 :name + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :name + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :alias + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getAlias() { + return this.alias; + } + + /** + * 字段名称 :alias + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setAlias(String alias) { + this.alias = alias; + } + + /** + * 字段名称 :keycode + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getKeycode() { + return this.keycode; + } + + /** + * 字段名称 :keycode + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setKeycode(String keycode) { + this.keycode = keycode; + } + + /** + * 字段名称 :keydata + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getKeydata() { + return this.keydata; + } + + /** + * 字段名称 :keydata + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setKeydata(String keydata) { + this.keydata = keydata; + } + + /** + * 字段名称 :color1 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getColor1() { + return this.color1; + } + + /** + * 字段名称 :color1 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setColor1(String color1) { + this.color1 = color1; + } + + /** + * 字段名称 :color2 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getColor2() { + return this.color2; + } + + /** + * 字段名称 :color2 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setColor2(String color2) { + this.color2 = color2; + } + + /** + * 字段名称 :color3 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getColor3() { + return this.color3; + } + + /** + * 字段名称 :color3 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setColor3(String color3) { + this.color3 = color3; + } + + /** + * 字段名称 :fontSize + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getFontSize() { + return this.fontSize; + } + + /** + * 字段名称 :fontSize + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setFontSize(String fontSize) { + this.fontSize = fontSize; + } + + /** + * 字段名称 :shortcut + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getShortcut() { + return this.shortcut; + } + + /** + * 字段名称 :shortcut + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setShortcut(String shortcut) { + this.shortcut = shortcut; + } + + /** + * 字段名称 :orderNo + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :orderNo + * 数据类型 :int + * 是否必填 :false + */ + public void setOrderNo(Integer orderNo) { + this.orderNo = orderNo; + } + + /** + * 字段名称 :icon + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getIcon() { + return this.icon; + } + + /** + * 字段名称 :icon + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setIcon(String icon) { + this.icon = icon; + } + + /** + * 字段名称 :enable + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnable() { + return this.enable; + } + + /** + * 字段名称 :enable + * 数据类型 :int + * 是否必填 :false + */ + public void setEnable(Integer enable) { + this.enable = enable; + } + + /** + * 字段名称 :resourceId + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getResourceId() { + return this.resourceId; + } + + /** + * 字段名称 :resourceId + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setResourceId(String resourceId) { + this.resourceId = resourceId; + } + + /** + * 字段名称 :layout + * 数据类型 :int + * 是否必填 :false + */ + public Integer getLayout() { + return this.layout; + } + + /** + * 字段名称 :layout + * 数据类型 :int + * 是否必填 :false + */ + public void setLayout(Integer layout) { + this.layout = layout; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosSetPlanResources.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosSetPlanResources.java new file mode 100644 index 0000000..3c8704a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosSetPlanResources.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:POS下载方案资源 + * 表代码:cy_pos_set_plan_resources + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PosSetPlanResources") +public class PosSetPlanResources extends BaseEntity { + + private static final long serialVersionUID = 1392943194596430685L; + + /** + *方案ID + */ + private String planId; + + /** + *clientId + */ + private String clientId; + + /** + *group + */ + private String group; + + /** + *name + */ + private String name; + + /** + *keycode + */ + private String keycode; + + /** + *keydata + */ + private String keydata; + + /** + *enable + */ + private Integer enable; + + /** + *permission + */ + private String permission; + + + /** + * 字段名称 :方案ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPlanId() { + return this.planId; + } + + /** + * 字段名称 :方案ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPlanId(String planId) { + this.planId = planId; + } + + /** + * 字段名称 :clientId + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :clientId + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :group + * 数据类型 :varchar(255) + * 是否必填 :false + */ + public String getGroup() { + return this.group; + } + + /** + * 字段名称 :group + * 数据类型 :varchar(255) + * 是否必填 :false + */ + public void setGroup(String group) { + this.group = group; + } + + /** + * 字段名称 :name + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :name + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :keycode + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getKeycode() { + return this.keycode; + } + + /** + * 字段名称 :keycode + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setKeycode(String keycode) { + this.keycode = keycode; + } + + /** + * 字段名称 :keydata + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getKeydata() { + return this.keydata; + } + + /** + * 字段名称 :keydata + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setKeydata(String keydata) { + this.keydata = keydata; + } + + /** + * 字段名称 :enable + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnable() { + return this.enable; + } + + /** + * 字段名称 :enable + * 数据类型 :int + * 是否必填 :false + */ + public void setEnable(Integer enable) { + this.enable = enable; + } + + /** + * 字段名称 :permission + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getPermission() { + return this.permission; + } + + /** + * 字段名称 :permission + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setPermission(String permission) { + this.permission = permission; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosSetPlanShortcut.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosSetPlanShortcut.java new file mode 100644 index 0000000..73a4f24 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosSetPlanShortcut.java @@ -0,0 +1,410 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:POS下载方案快捷操作 + * 表代码:cy_pos_set_plan_shortcut + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PosSetPlanShortcut") +public class PosSetPlanShortcut extends BaseEntity { + + private static final long serialVersionUID = 1142163549791721513L; + + /** + *方案ID + */ + private String planId; + + /** + *clientId + */ + private String clientId; + + /** + *area + */ + private String area; + + /** + *parentId + */ + private String parentId; + + /** + *name + */ + private String name; + + /** + *alias + */ + private String alias; + + /** + *keycode + */ + private String keycode; + + /** + *keydata + */ + private String keydata; + + /** + *color1 + */ + private String color1; + + /** + *color2 + */ + private String color2; + + /** + *color3 + */ + private String color3; + + /** + *fontSize + */ + private String fontSize; + + /** + *shortcut + */ + private String shortcut; + + /** + *orderNo + */ + private Integer orderNo; + + /** + *icon + */ + private String icon; + + /** + *enable + */ + private Integer enable; + + /** + *resourceId + */ + private String resourceId; + + + /** + * 字段名称 :方案ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPlanId() { + return this.planId; + } + + /** + * 字段名称 :方案ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPlanId(String planId) { + this.planId = planId; + } + + /** + * 字段名称 :clientId + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :clientId + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :area + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getArea() { + return this.area; + } + + /** + * 字段名称 :area + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setArea(String area) { + this.area = area; + } + + /** + * 字段名称 :parentId + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getParentId() { + return this.parentId; + } + + /** + * 字段名称 :parentId + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setParentId(String parentId) { + this.parentId = parentId; + } + + /** + * 字段名称 :name + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :name + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :alias + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getAlias() { + return this.alias; + } + + /** + * 字段名称 :alias + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setAlias(String alias) { + this.alias = alias; + } + + /** + * 字段名称 :keycode + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getKeycode() { + return this.keycode; + } + + /** + * 字段名称 :keycode + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setKeycode(String keycode) { + this.keycode = keycode; + } + + /** + * 字段名称 :keydata + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getKeydata() { + return this.keydata; + } + + /** + * 字段名称 :keydata + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setKeydata(String keydata) { + this.keydata = keydata; + } + + /** + * 字段名称 :color1 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getColor1() { + return this.color1; + } + + /** + * 字段名称 :color1 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setColor1(String color1) { + this.color1 = color1; + } + + /** + * 字段名称 :color2 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getColor2() { + return this.color2; + } + + /** + * 字段名称 :color2 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setColor2(String color2) { + this.color2 = color2; + } + + /** + * 字段名称 :color3 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getColor3() { + return this.color3; + } + + /** + * 字段名称 :color3 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setColor3(String color3) { + this.color3 = color3; + } + + /** + * 字段名称 :fontSize + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getFontSize() { + return this.fontSize; + } + + /** + * 字段名称 :fontSize + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setFontSize(String fontSize) { + this.fontSize = fontSize; + } + + /** + * 字段名称 :shortcut + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getShortcut() { + return this.shortcut; + } + + /** + * 字段名称 :shortcut + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setShortcut(String shortcut) { + this.shortcut = shortcut; + } + + /** + * 字段名称 :orderNo + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :orderNo + * 数据类型 :int + * 是否必填 :false + */ + public void setOrderNo(Integer orderNo) { + this.orderNo = orderNo; + } + + /** + * 字段名称 :icon + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getIcon() { + return this.icon; + } + + /** + * 字段名称 :icon + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setIcon(String icon) { + this.icon = icon; + } + + /** + * 字段名称 :enable + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnable() { + return this.enable; + } + + /** + * 字段名称 :enable + * 数据类型 :int + * 是否必填 :false + */ + public void setEnable(Integer enable) { + this.enable = enable; + } + + /** + * 字段名称 :resourceId + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getResourceId() { + return this.resourceId; + } + + /** + * 字段名称 :resourceId + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setResourceId(String resourceId) { + this.resourceId = resourceId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosSetPlanStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosSetPlanStore.java new file mode 100644 index 0000000..2350930 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PosSetPlanStore.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:POS下载方案门店关联 + * 表代码:cy_pos_set_plan_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PosSetPlanStore") +public class PosSetPlanStore extends BaseEntity { + + private static final long serialVersionUID = 1354294860370811546L; + + /** + *门店ID + */ + private String storeId; + + /** + *方案ID + */ + private String planId; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :方案ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPlanId() { + return this.planId; + } + + /** + * 字段名称 :方案ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPlanId(String planId) { + this.planId = planId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PrintImage.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PrintImage.java new file mode 100644 index 0000000..68f7540 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PrintImage.java @@ -0,0 +1,226 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小票打印图片 + * 表代码:cy_print_image + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PrintImage") +public class PrintImage extends BaseEntity { + + private static final long serialVersionUID = 1425499577765828931L; + + /** + *打印位置 + */ + private Integer type; + + /** + *图片名称 + */ + private String name; + + /** + *图片宽度 + */ + private Integer width; + + /** + *图片高度 + */ + private Integer height; + + /** + *存储组名 + */ + private String groupName; + + /** + *存储文件名 + */ + private String storageFileName; + + /** + *备注 + */ + private String description; + + /** + *停用 + */ + private Integer stopFlag; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :打印位置 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :打印位置 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :图片名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :图片名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getWidth() { + return this.width; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public void setWidth(Integer width) { + this.width = width; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getHeight() { + return this.height; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public void setHeight(Integer height) { + this.height = height; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getGroupName() { + return this.groupName; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getStorageFileName() { + return this.storageFileName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setStorageFileName(String storageFileName) { + this.storageFileName = storageFileName; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :停用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStopFlag() { + return this.stopFlag; + } + + /** + * 字段名称 :停用 + * 数据类型 :int + * 是否必填 :false + */ + public void setStopFlag(Integer stopFlag) { + this.stopFlag = stopFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PrintImageStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PrintImageStore.java new file mode 100644 index 0000000..afad6a7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PrintImageStore.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小票打印图片门店关联 + * 表代码:cy_print_image_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PrintImageStore") +public class PrintImageStore extends BaseEntity { + + private static final long serialVersionUID = 1301141025456284586L; + + /** + *门店ID + */ + private String storeId; + + /** + *图片ID + */ + private String imageId; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :图片ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getImageId() { + return this.imageId; + } + + /** + * 字段名称 :图片ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setImageId(String imageId) { + this.imageId = imageId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Product.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Product.java new file mode 100644 index 0000000..1c9c6e3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Product.java @@ -0,0 +1,1284 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:商品资料 + * 表代码:cy_product + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"Product") +public class Product extends BaseEntity { + + private static final long serialVersionUID = 1460095908980535013L; + + /** + *品牌Id + */ + private String brandId; + + /** + *类别Id + */ + private String typeId; + + /** + *类别路径 + */ + private String typePath; + + /** + *品项编号 + */ + private String no; + + /** + *品项名称 + */ + private String name; + + /** + *拼音简码 + */ + private String spell; + + /** + *辅助编码 + */ + private String assistNo; + + /** + *品项条码 + */ + private String barCode; + + /** + *第三方编码 + */ + private String otherNo; + + /** + *英文名称 + */ + private String english; + + /** + *商品简称 + */ + private String shortName; + + /** + *规格 + */ + private String spec; + + /** + *单位 + */ + private String unitId; + + /** + *商品说明 + */ + private String description; + + /** + *提成方式 + */ + private Integer commissionType; + + /** + *提成值 + */ + private Double commissionValue; + + /** + *可折扣 + */ + private Integer discountFlag; + + /** + *是否主食 + */ + private Integer tapleFlag; + + /** + *是否需要称重 + */ + private Integer weighFlag; + + /** + *是否可议价 + */ + private Integer currentFlag; + + /** + *打印标签 + */ + private Integer labelPrintFlag; + + /** + *是否套餐 + */ + private Integer suitFlag; + + /** + *会员折上折 + */ + private Integer mebDiscountFlag; + + /** + *允许赠送 + */ + private Integer giveFlag; + + /** + *允许促销 + */ + private Integer promotionFlag; + + /** + *商品类型 + */ + private Integer type; + + /** + *管理库存 + */ + private Integer stockFlag; + + /** + *积分类型 + */ + private Integer pointType; + + /** + *积分值 + */ + private Double pointValue; + + /** + *进项税 + */ + private Double purchaseTax; + + /** + *销项税 + */ + private Double saleTax; + + /** + *联营扣率 + */ + private Double lyRate; + + /** + *组名 + */ + private String groupName; + + /** + *图片 + */ + private String picture; + + /** + *停用 + */ + private Integer stopFlag; + + /** + *删除标识 + */ + private Integer deleteFlag; + + /** + *编号类型 + */ + private Integer noType; + + /** + *自采标识 + */ + private Integer zcFlag; + + /** + *ERP分类编码 + */ + private String erpCategoryCode; + + /** + *ERP同步标识 + */ + private Integer erpSyncFlag; + + /** + *是否自建商品 + */ + private Integer selfFlag; + + /** + *自建门店 + */ + private String storeId; + + /** + *默认库位 + */ + private String storageId; + + /** + *是否厨显 + */ + private Integer kdsFlag; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + /** + *是否在线商品 + */ + private Integer lineFlag; + + /** + *最小购买量 + */ + private Double minCount; + + /** + *显示序号 + */ + private Integer orderNo; + + /** + *是否新品 + */ + private Integer isNew; + + /** + *月基础销量 + */ + private Integer monthSaleCount; + + /** + *好评度 + */ + private Double praise; + + /** + *销售时间类型 + */ + private Integer saleTimeType; + + /** + *销售时间 + */ + private String saleTime; + + + /** + * 字段名称 :品牌Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getBrandId() { + return this.brandId; + } + + /** + * 字段名称 :品牌Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setBrandId(String brandId) { + this.brandId = brandId; + } + + /** + * 字段名称 :类别Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getTypePath() { + return this.typePath; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setTypePath(String typePath) { + this.typePath = typePath; + } + + /** + * 字段名称 :品项编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :品项编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :品项名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :品项名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :拼音简码 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getSpell() { + return this.spell; + } + + /** + * 字段名称 :拼音简码 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setSpell(String spell) { + this.spell = spell; + } + + /** + * 字段名称 :辅助编码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getAssistNo() { + return this.assistNo; + } + + /** + * 字段名称 :辅助编码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setAssistNo(String assistNo) { + this.assistNo = assistNo; + } + + /** + * 字段名称 :品项条码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBarCode() { + return this.barCode; + } + + /** + * 字段名称 :品项条码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBarCode(String barCode) { + this.barCode = barCode; + } + + /** + * 字段名称 :第三方编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOtherNo() { + return this.otherNo; + } + + /** + * 字段名称 :第三方编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOtherNo(String otherNo) { + this.otherNo = otherNo; + } + + /** + * 字段名称 :英文名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getEnglish() { + return this.english; + } + + /** + * 字段名称 :英文名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setEnglish(String english) { + this.english = english; + } + + /** + * 字段名称 :商品简称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getShortName() { + return this.shortName; + } + + /** + * 字段名称 :商品简称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setShortName(String shortName) { + this.shortName = shortName; + } + + /** + * 字段名称 :规格 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSpec() { + return this.spec; + } + + /** + * 字段名称 :规格 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSpec(String spec) { + this.spec = spec; + } + + /** + * 字段名称 :单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getUnitId() { + return this.unitId; + } + + /** + * 字段名称 :单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setUnitId(String unitId) { + this.unitId = unitId; + } + + /** + * 字段名称 :商品说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :商品说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :提成方式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getCommissionType() { + return this.commissionType; + } + + /** + * 字段名称 :提成方式 + * 数据类型 :int + * 是否必填 :false + */ + public void setCommissionType(Integer commissionType) { + this.commissionType = commissionType; + } + + /** + * 字段名称 :提成值 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCommissionValue() { + return this.commissionValue; + } + + /** + * 字段名称 :提成值 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCommissionValue(Double commissionValue) { + this.commissionValue = commissionValue; + } + + /** + * 字段名称 :可折扣 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDiscountFlag() { + return this.discountFlag; + } + + /** + * 字段名称 :可折扣 + * 数据类型 :int + * 是否必填 :false + */ + public void setDiscountFlag(Integer discountFlag) { + this.discountFlag = discountFlag; + } + + /** + * 字段名称 :是否主食 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getTapleFlag() { + return this.tapleFlag; + } + + /** + * 字段名称 :是否主食 + * 数据类型 :int + * 是否必填 :false + */ + public void setTapleFlag(Integer tapleFlag) { + this.tapleFlag = tapleFlag; + } + + /** + * 字段名称 :是否需要称重 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getWeighFlag() { + return this.weighFlag; + } + + /** + * 字段名称 :是否需要称重 + * 数据类型 :int + * 是否必填 :false + */ + public void setWeighFlag(Integer weighFlag) { + this.weighFlag = weighFlag; + } + + /** + * 字段名称 :是否可议价 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getCurrentFlag() { + return this.currentFlag; + } + + /** + * 字段名称 :是否可议价 + * 数据类型 :int + * 是否必填 :false + */ + public void setCurrentFlag(Integer currentFlag) { + this.currentFlag = currentFlag; + } + + /** + * 字段名称 :打印标签 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getLabelPrintFlag() { + return this.labelPrintFlag; + } + + /** + * 字段名称 :打印标签 + * 数据类型 :int + * 是否必填 :false + */ + public void setLabelPrintFlag(Integer labelPrintFlag) { + this.labelPrintFlag = labelPrintFlag; + } + + /** + * 字段名称 :是否套餐 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSuitFlag() { + return this.suitFlag; + } + + /** + * 字段名称 :是否套餐 + * 数据类型 :int + * 是否必填 :false + */ + public void setSuitFlag(Integer suitFlag) { + this.suitFlag = suitFlag; + } + + /** + * 字段名称 :会员折上折 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getMebDiscountFlag() { + return this.mebDiscountFlag; + } + + /** + * 字段名称 :会员折上折 + * 数据类型 :int + * 是否必填 :false + */ + public void setMebDiscountFlag(Integer mebDiscountFlag) { + this.mebDiscountFlag = mebDiscountFlag; + } + + /** + * 字段名称 :允许赠送 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getGiveFlag() { + return this.giveFlag; + } + + /** + * 字段名称 :允许赠送 + * 数据类型 :int + * 是否必填 :false + */ + public void setGiveFlag(Integer giveFlag) { + this.giveFlag = giveFlag; + } + + /** + * 字段名称 :允许促销 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPromotionFlag() { + return this.promotionFlag; + } + + /** + * 字段名称 :允许促销 + * 数据类型 :int + * 是否必填 :false + */ + public void setPromotionFlag(Integer promotionFlag) { + this.promotionFlag = promotionFlag; + } + + /** + * 字段名称 :商品类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :商品类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :管理库存 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStockFlag() { + return this.stockFlag; + } + + /** + * 字段名称 :管理库存 + * 数据类型 :int + * 是否必填 :false + */ + public void setStockFlag(Integer stockFlag) { + this.stockFlag = stockFlag; + } + + /** + * 字段名称 :积分类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPointType() { + return this.pointType; + } + + /** + * 字段名称 :积分类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setPointType(Integer pointType) { + this.pointType = pointType; + } + + /** + * 字段名称 :积分值 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPointValue() { + return this.pointValue; + } + + /** + * 字段名称 :积分值 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPointValue(Double pointValue) { + this.pointValue = pointValue; + } + + /** + * 字段名称 :进项税 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPurchaseTax() { + return this.purchaseTax; + } + + /** + * 字段名称 :进项税 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPurchaseTax(Double purchaseTax) { + this.purchaseTax = purchaseTax; + } + + /** + * 字段名称 :销项税 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getSaleTax() { + return this.saleTax; + } + + /** + * 字段名称 :销项税 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setSaleTax(Double saleTax) { + this.saleTax = saleTax; + } + + /** + * 字段名称 :联营扣率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getLyRate() { + return this.lyRate; + } + + /** + * 字段名称 :联营扣率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setLyRate(Double lyRate) { + this.lyRate = lyRate; + } + + /** + * 字段名称 :组名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getGroupName() { + return this.groupName; + } + + /** + * 字段名称 :组名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + /** + * 字段名称 :图片 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getPicture() { + return this.picture; + } + + /** + * 字段名称 :图片 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setPicture(String picture) { + this.picture = picture; + } + + /** + * 字段名称 :停用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStopFlag() { + return this.stopFlag; + } + + /** + * 字段名称 :停用 + * 数据类型 :int + * 是否必填 :false + */ + public void setStopFlag(Integer stopFlag) { + this.stopFlag = stopFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + + /** + * 字段名称 :编号类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getNoType() { + return this.noType; + } + + /** + * 字段名称 :编号类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setNoType(Integer noType) { + this.noType = noType; + } + + /** + * 字段名称 :自采标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getZcFlag() { + return this.zcFlag; + } + + /** + * 字段名称 :自采标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setZcFlag(Integer zcFlag) { + this.zcFlag = zcFlag; + } + + /** + * 字段名称 :ERP分类编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getErpCategoryCode() { + return this.erpCategoryCode; + } + + /** + * 字段名称 :ERP分类编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setErpCategoryCode(String erpCategoryCode) { + this.erpCategoryCode = erpCategoryCode; + } + + /** + * 字段名称 :ERP同步标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getErpSyncFlag() { + return this.erpSyncFlag; + } + + /** + * 字段名称 :ERP同步标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setErpSyncFlag(Integer erpSyncFlag) { + this.erpSyncFlag = erpSyncFlag; + } + + /** + * 字段名称 :是否自建商品 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSelfFlag() { + return this.selfFlag; + } + + /** + * 字段名称 :是否自建商品 + * 数据类型 :int + * 是否必填 :false + */ + public void setSelfFlag(Integer selfFlag) { + this.selfFlag = selfFlag; + } + + /** + * 字段名称 :自建门店 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :自建门店 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :默认库位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :默认库位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + + /** + * 字段名称 :是否厨显 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getKdsFlag() { + return this.kdsFlag; + } + + /** + * 字段名称 :是否厨显 + * 数据类型 :int + * 是否必填 :false + */ + public void setKdsFlag(Integer kdsFlag) { + this.kdsFlag = kdsFlag; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + + /** + * 字段名称 :是否在线商品 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getLineFlag() { + return this.lineFlag; + } + + /** + * 字段名称 :是否在线商品 + * 数据类型 :int + * 是否必填 :false + */ + public void setLineFlag(Integer lineFlag) { + this.lineFlag = lineFlag; + } + + /** + * 字段名称 :最小购买量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMinCount() { + return this.minCount; + } + + /** + * 字段名称 :最小购买量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMinCount(Double minCount) { + this.minCount = minCount; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :int + * 是否必填 :false + */ + public void setOrderNo(Integer orderNo) { + this.orderNo = orderNo; + } + + /** + * 字段名称 :是否新品 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsNew() { + return this.isNew; + } + + /** + * 字段名称 :是否新品 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsNew(Integer isNew) { + this.isNew = isNew; + } + + /** + * 字段名称 :月基础销量 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getMonthSaleCount() { + return this.monthSaleCount; + } + + /** + * 字段名称 :月基础销量 + * 数据类型 :int + * 是否必填 :false + */ + public void setMonthSaleCount(Integer monthSaleCount) { + this.monthSaleCount = monthSaleCount; + } + + /** + * 字段名称 :好评度 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPraise() { + return this.praise; + } + + /** + * 字段名称 :好评度 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPraise(Double praise) { + this.praise = praise; + } + + /** + * 字段名称 :销售时间类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSaleTimeType() { + return this.saleTimeType; + } + + /** + * 字段名称 :销售时间类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setSaleTimeType(Integer saleTimeType) { + this.saleTimeType = saleTimeType; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getSaleTime() { + return this.saleTime; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setSaleTime(String saleTime) { + this.saleTime = saleTime; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductBatchNegativeStock.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductBatchNegativeStock.java new file mode 100644 index 0000000..a667565 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductBatchNegativeStock.java @@ -0,0 +1,341 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:负库存出库记录 + * 表代码:cy_product_batch_negative_stock + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductBatchNegativeStock") +public class ProductBatchNegativeStock extends BaseEntity { + + private static final long serialVersionUID = 1436318838559472731L; + + /** + *批次号 + */ + private String batchNo; + + /** + *仓库ID + */ + private String storageId; + + /** + *单据类型 + */ + private Integer ticketType; + + /** + *单据编号 + */ + private String ticketNo; + + /** + *原料ID + */ + private String productId; + + /** + *原料编号 + */ + private String productNo; + + /** + *规格ID + */ + private String specId; + + /** + *库存单位 + */ + private String inventoryUnitId; + + /** + *库存单位名称 + */ + private String inventoryUnitName; + + /** + *暂估单价 + */ + private Double price; + + /** + *数量 + */ + private Double quantity; + + /** + *抵消批次号 + */ + private String offsetBatchNo; + + /** + *抵消单价 + */ + private Double offsetPrice; + + /** + *状态 + */ + private Integer status; + + + /** + * 字段名称 :批次号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBatchNo() { + return this.batchNo; + } + + /** + * 字段名称 :批次号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBatchNo(String batchNo) { + this.batchNo = batchNo; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + + /** + * 字段名称 :单据类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getTicketType() { + return this.ticketType; + } + + /** + * 字段名称 :单据类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setTicketType(Integer ticketType) { + this.ticketType = ticketType; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getInventoryUnitId() { + return this.inventoryUnitId; + } + + /** + * 字段名称 :库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setInventoryUnitId(String inventoryUnitId) { + this.inventoryUnitId = inventoryUnitId; + } + + /** + * 字段名称 :库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getInventoryUnitName() { + return this.inventoryUnitName; + } + + /** + * 字段名称 :库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setInventoryUnitName(String inventoryUnitName) { + this.inventoryUnitName = inventoryUnitName; + } + + /** + * 字段名称 :暂估单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :暂估单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getQuantity() { + return this.quantity; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setQuantity(Double quantity) { + this.quantity = quantity; + } + + /** + * 字段名称 :抵消批次号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOffsetBatchNo() { + return this.offsetBatchNo; + } + + /** + * 字段名称 :抵消批次号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOffsetBatchNo(String offsetBatchNo) { + this.offsetBatchNo = offsetBatchNo; + } + + /** + * 字段名称 :抵消单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOffsetPrice() { + return this.offsetPrice; + } + + /** + * 字段名称 :抵消单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOffsetPrice(Double offsetPrice) { + this.offsetPrice = offsetPrice; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductBatchNegativeStockDiffer.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductBatchNegativeStockDiffer.java new file mode 100644 index 0000000..96fb5f4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductBatchNegativeStockDiffer.java @@ -0,0 +1,272 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:负库存出库差异 + * 表代码:cy_product_batch_negative_stock_differ + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductBatchNegativeStockDiffer") +public class ProductBatchNegativeStockDiffer extends BaseEntity { + + private static final long serialVersionUID = 1881691118788854587L; + + /** + *批次号 + */ + private String batchNo; + + /** + *仓库ID + */ + private String storageId; + + /** + *原料ID + */ + private String productId; + + /** + *原料编号 + */ + private String productNo; + + /** + *规格ID + */ + private String specId; + + /** + *库存单位 + */ + private String inventoryUnitId; + + /** + *库存单位名称 + */ + private String inventoryUnitName; + + /** + *抵消批次号 + */ + private String offsetBatchNo; + + /** + *差异单价 + */ + private Double price; + + /** + *数量 + */ + private Double quantity; + + /** + *差异金额 + */ + private Double amount; + + + /** + * 字段名称 :批次号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBatchNo() { + return this.batchNo; + } + + /** + * 字段名称 :批次号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBatchNo(String batchNo) { + this.batchNo = batchNo; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getInventoryUnitId() { + return this.inventoryUnitId; + } + + /** + * 字段名称 :库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setInventoryUnitId(String inventoryUnitId) { + this.inventoryUnitId = inventoryUnitId; + } + + /** + * 字段名称 :库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getInventoryUnitName() { + return this.inventoryUnitName; + } + + /** + * 字段名称 :库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setInventoryUnitName(String inventoryUnitName) { + this.inventoryUnitName = inventoryUnitName; + } + + /** + * 字段名称 :抵消批次号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOffsetBatchNo() { + return this.offsetBatchNo; + } + + /** + * 字段名称 :抵消批次号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOffsetBatchNo(String offsetBatchNo) { + this.offsetBatchNo = offsetBatchNo; + } + + /** + * 字段名称 :差异单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :差异单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getQuantity() { + return this.quantity; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setQuantity(Double quantity) { + this.quantity = quantity; + } + + /** + * 字段名称 :差异金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :差异金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductBatchNumber.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductBatchNumber.java new file mode 100644 index 0000000..874b00c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductBatchNumber.java @@ -0,0 +1,364 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:产品批次 + * 表代码:cy_product_batch_number + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductBatchNumber") +public class ProductBatchNumber extends BaseEntity { + + private static final long serialVersionUID = 1388788983302352320L; + + /** + *批次号 + */ + private String batchNo; + + /** + *原料ID + */ + private String productId; + + /** + *原料编号 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *配送库存单位 + */ + private String dispatchUnitId; + + /** + *配送库存单位名称 + */ + private String dispatchUnitName; + + /** + *采购单位 + */ + private String purchaseUnitId; + + /** + *采购单位名称 + */ + private String purchaseUnitName; + + /** + *过期日期 + */ + private Date expiryTime; + + /** + *备注 + */ + private String remark; + + /** + *状态 + */ + private Integer status; + + /** + *生产批号 + */ + private String pNo; + + + /** + * 字段名称 :批次号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBatchNo() { + return this.batchNo; + } + + /** + * 字段名称 :批次号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBatchNo(String batchNo) { + this.batchNo = batchNo; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :配送库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchUnitId() { + return this.dispatchUnitId; + } + + /** + * 字段名称 :配送库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchUnitId(String dispatchUnitId) { + this.dispatchUnitId = dispatchUnitId; + } + + /** + * 字段名称 :配送库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDispatchUnitName() { + return this.dispatchUnitName; + } + + /** + * 字段名称 :配送库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDispatchUnitName(String dispatchUnitName) { + this.dispatchUnitName = dispatchUnitName; + } + + /** + * 字段名称 :采购单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPurchaseUnitId() { + return this.purchaseUnitId; + } + + /** + * 字段名称 :采购单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPurchaseUnitId(String purchaseUnitId) { + this.purchaseUnitId = purchaseUnitId; + } + + /** + * 字段名称 :采购单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPurchaseUnitName() { + return this.purchaseUnitName; + } + + /** + * 字段名称 :采购单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPurchaseUnitName(String purchaseUnitName) { + this.purchaseUnitName = purchaseUnitName; + } + + /** + * 字段名称 :过期日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getExpiryTime() { + return this.expiryTime; + } + + /** + * 字段名称 :过期日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setExpiryTime(Date expiryTime) { + this.expiryTime = expiryTime; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getRemark() { + return this.remark; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setRemark(String remark) { + this.remark = remark; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :生产批号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPNo() { + return this.pNo; + } + + /** + * 字段名称 :生产批号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPNo(String pNo) { + this.pNo = pNo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductBatchStock.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductBatchStock.java new file mode 100644 index 0000000..28ce435 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductBatchStock.java @@ -0,0 +1,341 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:产品批次库存 + * 表代码:cy_product_batch_stock + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductBatchStock") +public class ProductBatchStock extends BaseEntity { + + private static final long serialVersionUID = 1490624049257722697L; + + /** + *批次号 + */ + private String batchNo; + + /** + *仓库ID + */ + private String storageId; + + /** + *原料ID + */ + private String productId; + + /** + *原料编号 + */ + private String productNo; + + /** + *规格ID + */ + private String specId; + + /** + *供应商ID + */ + private String supplierId; + + /** + *单价 + */ + private Double price; + + /** + *数量 + */ + private Double quantity; + + /** + *剩余数量 + */ + private Double remainQuantity; + + /** + *单据类型 + */ + private Integer ticketType; + + /** + *单据编号 + */ + private String ticketNo; + + /** + *库存单位 + */ + private String inventoryUnitId; + + /** + *库存单位名称 + */ + private String inventoryUnitName; + + /** + *生产批号 + */ + private String pNo; + + + /** + * 字段名称 :批次号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBatchNo() { + return this.batchNo; + } + + /** + * 字段名称 :批次号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBatchNo(String batchNo) { + this.batchNo = batchNo; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :供应商ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSupplierId() { + return this.supplierId; + } + + /** + * 字段名称 :供应商ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSupplierId(String supplierId) { + this.supplierId = supplierId; + } + + /** + * 字段名称 :单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getQuantity() { + return this.quantity; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setQuantity(Double quantity) { + this.quantity = quantity; + } + + /** + * 字段名称 :剩余数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getRemainQuantity() { + return this.remainQuantity; + } + + /** + * 字段名称 :剩余数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setRemainQuantity(Double remainQuantity) { + this.remainQuantity = remainQuantity; + } + + /** + * 字段名称 :单据类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getTicketType() { + return this.ticketType; + } + + /** + * 字段名称 :单据类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setTicketType(Integer ticketType) { + this.ticketType = ticketType; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getInventoryUnitId() { + return this.inventoryUnitId; + } + + /** + * 字段名称 :库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setInventoryUnitId(String inventoryUnitId) { + this.inventoryUnitId = inventoryUnitId; + } + + /** + * 字段名称 :库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getInventoryUnitName() { + return this.inventoryUnitName; + } + + /** + * 字段名称 :库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setInventoryUnitName(String inventoryUnitName) { + this.inventoryUnitName = inventoryUnitName; + } + + /** + * 字段名称 :生产批号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPNo() { + return this.pNo; + } + + /** + * 字段名称 :生产批号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPNo(String pNo) { + this.pNo = pNo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductBatchStockChange.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductBatchStockChange.java new file mode 100644 index 0000000..f2deb6d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductBatchStockChange.java @@ -0,0 +1,410 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:产品批次冲减记录 + * 表代码:cy_product_batch_stock_change + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductBatchStockChange") +public class ProductBatchStockChange extends BaseEntity { + + private static final long serialVersionUID = 1284160842115999402L; + + /** + *批次号 + */ + private String batchNo; + + /** + *仓库ID + */ + private String storageId; + + /** + *原料ID + */ + private String productId; + + /** + *原料编号 + */ + private String productNo; + + /** + *规格ID + */ + private String specId; + + /** + *入库单价 + */ + private Double priceIn; + + /** + *出库单价 + */ + private Double price; + + /** + *数量 + */ + private Double quantity; + + /** + *单据类型 + */ + private Integer ticketType; + + /** + *单据编号 + */ + private String ticketNo; + + /** + *库存单位 + */ + private String inventoryUnitId; + + /** + *库存单位名称 + */ + private String inventoryUnitName; + + /** + *供应商ID + */ + private String supplierId; + + /** + *供应商编号 + */ + private String supplierNo; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *生产批号 + */ + private String pNo; + + + /** + * 字段名称 :批次号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBatchNo() { + return this.batchNo; + } + + /** + * 字段名称 :批次号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBatchNo(String batchNo) { + this.batchNo = batchNo; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :入库单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPriceIn() { + return this.priceIn; + } + + /** + * 字段名称 :入库单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPriceIn(Double priceIn) { + this.priceIn = priceIn; + } + + /** + * 字段名称 :出库单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :出库单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getQuantity() { + return this.quantity; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setQuantity(Double quantity) { + this.quantity = quantity; + } + + /** + * 字段名称 :单据类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getTicketType() { + return this.ticketType; + } + + /** + * 字段名称 :单据类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setTicketType(Integer ticketType) { + this.ticketType = ticketType; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getInventoryUnitId() { + return this.inventoryUnitId; + } + + /** + * 字段名称 :库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setInventoryUnitId(String inventoryUnitId) { + this.inventoryUnitId = inventoryUnitId; + } + + /** + * 字段名称 :库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getInventoryUnitName() { + return this.inventoryUnitName; + } + + /** + * 字段名称 :库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setInventoryUnitName(String inventoryUnitName) { + this.inventoryUnitName = inventoryUnitName; + } + + /** + * 字段名称 :供应商ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSupplierId() { + return this.supplierId; + } + + /** + * 字段名称 :供应商ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSupplierId(String supplierId) { + this.supplierId = supplierId; + } + + /** + * 字段名称 :供应商编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSupplierNo() { + return this.supplierNo; + } + + /** + * 字段名称 :供应商编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSupplierNo(String supplierNo) { + this.supplierNo = supplierNo; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :生产批号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPNo() { + return this.pNo; + } + + /** + * 字段名称 :生产批号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPNo(String pNo) { + this.pNo = pNo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductBurden.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductBurden.java new file mode 100644 index 0000000..d947bb9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductBurden.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:产品配料BOM表 + * 表代码:cy_product_burden + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductBurden") +public class ProductBurden extends BaseEntity { + + private static final long serialVersionUID = 1715473397390206447L; + + /** + *产品ID + */ + private String productId; + + /** + *规格ID + */ + private String specId; + + /** + *配料产品ID + */ + private String burdenProductId; + + /** + *配料产品规格ID + */ + private String burdenSpecId; + + /** + *单位ID + */ + private String salesUnitId; + + /** + *单位用量 + */ + private Double salesAmount; + + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :配料产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getBurdenProductId() { + return this.burdenProductId; + } + + /** + * 字段名称 :配料产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setBurdenProductId(String burdenProductId) { + this.burdenProductId = burdenProductId; + } + + /** + * 字段名称 :配料产品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getBurdenSpecId() { + return this.burdenSpecId; + } + + /** + * 字段名称 :配料产品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setBurdenSpecId(String burdenSpecId) { + this.burdenSpecId = burdenSpecId; + } + + /** + * 字段名称 :单位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSalesUnitId() { + return this.salesUnitId; + } + + /** + * 字段名称 :单位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSalesUnitId(String salesUnitId) { + this.salesUnitId = salesUnitId; + } + + /** + * 字段名称 :单位用量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getSalesAmount() { + return this.salesAmount; + } + + /** + * 字段名称 :单位用量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setSalesAmount(Double salesAmount) { + this.salesAmount = salesAmount; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductImage.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductImage.java new file mode 100644 index 0000000..a46830e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductImage.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:商品图片表 + * 表代码:cy_product_image + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductImage") +public class ProductImage extends BaseEntity { + + private static final long serialVersionUID = 1187706031681050517L; + + /** + *商品ID + */ + private String productId; + + /** + *图片宽度 + */ + private Integer width; + + /** + *图片高度 + */ + private Integer height; + + /** + *存储组名 + */ + private String groupName; + + /** + *存储文件名 + */ + private String storageFileName; + + /** + *文件大小 + */ + private String length; + + /** + *文件类型 + */ + private String mimeType; + + /** + *显示序号 + */ + private String orderNo; + + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getWidth() { + return this.width; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public void setWidth(Integer width) { + this.width = width; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getHeight() { + return this.height; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public void setHeight(Integer height) { + this.height = height; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getGroupName() { + return this.groupName; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getStorageFileName() { + return this.storageFileName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setStorageFileName(String storageFileName) { + this.storageFileName = storageFileName; + } + + /** + * 字段名称 :文件大小 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getLength() { + return this.length; + } + + /** + * 字段名称 :文件大小 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setLength(String length) { + this.length = length; + } + + /** + * 字段名称 :文件类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getMimeType() { + return this.mimeType; + } + + /** + * 字段名称 :文件类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setMimeType(String mimeType) { + this.mimeType = mimeType; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setOrderNo(String orderNo) { + this.orderNo = orderNo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductKdsPlan.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductKdsPlan.java new file mode 100644 index 0000000..a74e31c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductKdsPlan.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:商品厨房显示方案设置 + * 表代码:cy_product_kds_plan + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductKdsPlan") +public class ProductKdsPlan extends BaseEntity { + + private static final long serialVersionUID = 1422376453177052546L; + + /** + *门店Id + */ + private String storeId; + + /** + *商品Id + */ + private String productId; + + /** + *是否厨房显示 + */ + private Integer chuxianFlag; + + /** + *厨显设置 + */ + private String chuxian; + + /** + *厨显超时 + */ + private Integer chuxianTime; + + /** + *是否出品显示 + */ + private Integer chupinFlag; + + /** + *出品设置 + */ + private String chupin; + + /** + *出品超时 + */ + private Integer chupinTime; + + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :商品Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :是否厨房显示 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getChuxianFlag() { + return this.chuxianFlag; + } + + /** + * 字段名称 :是否厨房显示 + * 数据类型 :int + * 是否必填 :false + */ + public void setChuxianFlag(Integer chuxianFlag) { + this.chuxianFlag = chuxianFlag; + } + + /** + * 字段名称 :厨显设置 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getChuxian() { + return this.chuxian; + } + + /** + * 字段名称 :厨显设置 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setChuxian(String chuxian) { + this.chuxian = chuxian; + } + + /** + * 字段名称 :厨显超时 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getChuxianTime() { + return this.chuxianTime; + } + + /** + * 字段名称 :厨显超时 + * 数据类型 :int + * 是否必填 :false + */ + public void setChuxianTime(Integer chuxianTime) { + this.chuxianTime = chuxianTime; + } + + /** + * 字段名称 :是否出品显示 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getChupinFlag() { + return this.chupinFlag; + } + + /** + * 字段名称 :是否出品显示 + * 数据类型 :int + * 是否必填 :false + */ + public void setChupinFlag(Integer chupinFlag) { + this.chupinFlag = chupinFlag; + } + + /** + * 字段名称 :出品设置 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getChupin() { + return this.chupin; + } + + /** + * 字段名称 :出品设置 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setChupin(String chupin) { + this.chupin = chupin; + } + + /** + * 字段名称 :出品超时 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getChupinTime() { + return this.chupinTime; + } + + /** + * 字段名称 :出品超时 + * 数据类型 :int + * 是否必填 :false + */ + public void setChupinTime(Integer chupinTime) { + this.chupinTime = chupinTime; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductKitPlan.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductKitPlan.java new file mode 100644 index 0000000..89f4692 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductKitPlan.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:商品厨房打印方案设置 + * 表代码:cy_product_kit_plan + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductKitPlan") +public class ProductKitPlan extends BaseEntity { + + private static final long serialVersionUID = 1363989378691203437L; + + /** + *门店Id + */ + private String storeId; + + /** + *商品Id + */ + private String productId; + + /** + *是否厨打 + */ + private Integer chudaFlag; + + /** + *厨打设置 + */ + private String chuda; + + /** + *是否出品打印 + */ + private Integer chupinFlag; + + /** + *出品设置 + */ + private String chupin; + + /** + *是否标签打印 + */ + private Integer labelFlag; + + /** + *标签设置 + */ + private String labelValue; + + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :商品Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :是否厨打 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getChudaFlag() { + return this.chudaFlag; + } + + /** + * 字段名称 :是否厨打 + * 数据类型 :int + * 是否必填 :false + */ + public void setChudaFlag(Integer chudaFlag) { + this.chudaFlag = chudaFlag; + } + + /** + * 字段名称 :厨打设置 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getChuda() { + return this.chuda; + } + + /** + * 字段名称 :厨打设置 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setChuda(String chuda) { + this.chuda = chuda; + } + + /** + * 字段名称 :是否出品打印 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getChupinFlag() { + return this.chupinFlag; + } + + /** + * 字段名称 :是否出品打印 + * 数据类型 :int + * 是否必填 :false + */ + public void setChupinFlag(Integer chupinFlag) { + this.chupinFlag = chupinFlag; + } + + /** + * 字段名称 :出品设置 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getChupin() { + return this.chupin; + } + + /** + * 字段名称 :出品设置 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setChupin(String chupin) { + this.chupin = chupin; + } + + /** + * 字段名称 :是否标签打印 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getLabelFlag() { + return this.labelFlag; + } + + /** + * 字段名称 :是否标签打印 + * 数据类型 :int + * 是否必填 :false + */ + public void setLabelFlag(Integer labelFlag) { + this.labelFlag = labelFlag; + } + + /** + * 字段名称 :标签设置 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getLabelValue() { + return this.labelValue; + } + + /** + * 字段名称 :标签设置 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setLabelValue(String labelValue) { + this.labelValue = labelValue; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductMake.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductMake.java new file mode 100644 index 0000000..4e02160 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductMake.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:产品私有做法 + * 表代码:cy_product_make + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductMake") +public class ProductMake extends BaseEntity { + + private static final long serialVersionUID = 1591422587739009380L; + + /** + *产品ID + */ + private String productId; + + /** + *做法 + */ + private String makeId; + + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :做法 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getMakeId() { + return this.makeId; + } + + /** + * 字段名称 :做法 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setMakeId(String makeId) { + this.makeId = makeId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductMakeStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductMakeStore.java new file mode 100644 index 0000000..a1f445b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductMakeStore.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店做法 + * 表代码:cy_product_make_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductMakeStore") +public class ProductMakeStore extends BaseEntity { + + private static final long serialVersionUID = 1559888261970650854L; + + /** + *门店ID + */ + private String storeId; + + /** + *做法 + */ + private String makeId; + + /** + *加价 + */ + private Double addPrice; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :做法 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getMakeId() { + return this.makeId; + } + + /** + * 字段名称 :做法 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setMakeId(String makeId) { + this.makeId = makeId; + } + + /** + * 字段名称 :加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddPrice() { + return this.addPrice; + } + + /** + * 字段名称 :加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddPrice(Double addPrice) { + this.addPrice = addPrice; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductMakeTemplate.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductMakeTemplate.java new file mode 100644 index 0000000..3e11b3a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductMakeTemplate.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:做法模板 + * 表代码:cy_product_make_template + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductMakeTemplate") +public class ProductMakeTemplate extends BaseEntity { + + private static final long serialVersionUID = 1429603192967491918L; + + /** + *编号 + */ + private String no; + + /** + *名称 + */ + private String name; + + /** + *备注 + */ + private String description; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductMakeTemplateDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductMakeTemplateDetail.java new file mode 100644 index 0000000..745de1d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductMakeTemplateDetail.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:做法模板明细 + * 表代码:cy_product_make_template_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductMakeTemplateDetail") +public class ProductMakeTemplateDetail extends BaseEntity { + + private static final long serialVersionUID = 1433427048565263376L; + + /** + *主表ID + */ + private String templateId; + + /** + *做法 + */ + private String makeId; + + /** + *加价 + */ + private Double addPrice; + + + /** + * 字段名称 :主表ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTemplateId() { + return this.templateId; + } + + /** + * 字段名称 :主表ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTemplateId(String templateId) { + this.templateId = templateId; + } + + /** + * 字段名称 :做法 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getMakeId() { + return this.makeId; + } + + /** + * 字段名称 :做法 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setMakeId(String makeId) { + this.makeId = makeId; + } + + /** + * 字段名称 :加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddPrice() { + return this.addPrice; + } + + /** + * 字段名称 :加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddPrice(Double addPrice) { + this.addPrice = addPrice; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductRatio.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductRatio.java new file mode 100644 index 0000000..29362ce --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductRatio.java @@ -0,0 +1,341 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:商品库存系数 + * 表代码:cy_product_ratio + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductRatio") +public class ProductRatio extends BaseEntity { + + private static final long serialVersionUID = 1525870179861730050L; + + /** + *商品ID + */ + private String productId; + + /** + *配送单位(总部库存单位) + */ + private String dispatchUnitId; + + /** + *采购单位 + */ + private String purchaseUnitId; + + /** + *换算比例(采购单位和配送单位) + */ + private Double pdScale; + + /** + *包装单位(分店库存单位) + */ + private String packUnitId; + + /** + *换算比例(配送单位和包装单位) + */ + private Double dpScale; + + /** + *销售单位 + */ + private String salesUnitId; + + /** + *换算比例(包装单位和销售单位) + */ + private Double psScale; + + /** + *库存上限 + */ + private Double maxStock; + + /** + *库存下限 + */ + private Double minStock; + + /** + *理论万元用量 + */ + private Double thUseLevel; + + /** + *实际万元用量 + */ + private Double realThUseLevel; + + /** + *单项成本 + */ + private Double cost; + + /** + *成本控制类型 + */ + private Integer costType; + + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :配送单位(总部库存单位) + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchUnitId() { + return this.dispatchUnitId; + } + + /** + * 字段名称 :配送单位(总部库存单位) + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchUnitId(String dispatchUnitId) { + this.dispatchUnitId = dispatchUnitId; + } + + /** + * 字段名称 :采购单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPurchaseUnitId() { + return this.purchaseUnitId; + } + + /** + * 字段名称 :采购单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPurchaseUnitId(String purchaseUnitId) { + this.purchaseUnitId = purchaseUnitId; + } + + /** + * 字段名称 :换算比例(采购单位和配送单位) + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPdScale() { + return this.pdScale; + } + + /** + * 字段名称 :换算比例(采购单位和配送单位) + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPdScale(Double pdScale) { + this.pdScale = pdScale; + } + + /** + * 字段名称 :包装单位(分店库存单位) + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPackUnitId() { + return this.packUnitId; + } + + /** + * 字段名称 :包装单位(分店库存单位) + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPackUnitId(String packUnitId) { + this.packUnitId = packUnitId; + } + + /** + * 字段名称 :换算比例(配送单位和包装单位) + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDpScale() { + return this.dpScale; + } + + /** + * 字段名称 :换算比例(配送单位和包装单位) + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDpScale(Double dpScale) { + this.dpScale = dpScale; + } + + /** + * 字段名称 :销售单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSalesUnitId() { + return this.salesUnitId; + } + + /** + * 字段名称 :销售单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSalesUnitId(String salesUnitId) { + this.salesUnitId = salesUnitId; + } + + /** + * 字段名称 :换算比例(包装单位和销售单位) + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPsScale() { + return this.psScale; + } + + /** + * 字段名称 :换算比例(包装单位和销售单位) + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPsScale(Double psScale) { + this.psScale = psScale; + } + + /** + * 字段名称 :库存上限 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMaxStock() { + return this.maxStock; + } + + /** + * 字段名称 :库存上限 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMaxStock(Double maxStock) { + this.maxStock = maxStock; + } + + /** + * 字段名称 :库存下限 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMinStock() { + return this.minStock; + } + + /** + * 字段名称 :库存下限 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMinStock(Double minStock) { + this.minStock = minStock; + } + + /** + * 字段名称 :理论万元用量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getThUseLevel() { + return this.thUseLevel; + } + + /** + * 字段名称 :理论万元用量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setThUseLevel(Double thUseLevel) { + this.thUseLevel = thUseLevel; + } + + /** + * 字段名称 :实际万元用量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getRealThUseLevel() { + return this.realThUseLevel; + } + + /** + * 字段名称 :实际万元用量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setRealThUseLevel(Double realThUseLevel) { + this.realThUseLevel = realThUseLevel; + } + + /** + * 字段名称 :单项成本 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCost() { + return this.cost; + } + + /** + * 字段名称 :单项成本 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCost(Double cost) { + this.cost = cost; + } + + /** + * 字段名称 :成本控制类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getCostType() { + return this.costType; + } + + /** + * 字段名称 :成本控制类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setCostType(Integer costType) { + this.costType = costType; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductSpec.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductSpec.java new file mode 100644 index 0000000..9ab53f8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductSpec.java @@ -0,0 +1,502 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:商品规格信息 + * 表代码:cy_product_spec + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductSpec") +public class ProductSpec extends BaseEntity { + + private static final long serialVersionUID = 1964061666848089367L; + + /** + *商品ID + */ + private String productId; + + /** + *规格编号 + */ + private String no; + + /** + *规格名称 + */ + private String name; + + /** + *零售价 + */ + private Double price; + + /** + *最低售价 + */ + private Double minPrice; + + /** + *会员价 + */ + private Double memberPrice; + + /** + *在线售价 + */ + private Double wprice; + + /** + *在线会员价 + */ + private Double wmemberPrice; + + /** + *餐盒费 + */ + private Double boxPrice; + + /** + *第三方价 + */ + private Double otherPrice; + + /** + *成本价 + */ + private Double costPrice; + + /** + *采购参考价 + */ + private Double purchasePrice; + + /** + *批发参考价 + */ + private Double dispatchPrice; + + /** + *物耗比 + */ + private Double materialRate; + + /** + *是否默认 + */ + private Integer isdefault; + + /** + *删除标识 + */ + private Integer deleteFlag; + + /** + *ERP商品编码 + */ + private String erpCode; + + /** + *ERP同步状态 + */ + private Integer erpSyncStatus; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :规格编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :规格编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :零售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :零售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :最低售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMinPrice() { + return this.minPrice; + } + + /** + * 字段名称 :最低售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMinPrice(Double minPrice) { + this.minPrice = minPrice; + } + + /** + * 字段名称 :会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMemberPrice() { + return this.memberPrice; + } + + /** + * 字段名称 :会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMemberPrice(Double memberPrice) { + this.memberPrice = memberPrice; + } + + /** + * 字段名称 :在线售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getWprice() { + return this.wprice; + } + + /** + * 字段名称 :在线售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setWprice(Double wprice) { + this.wprice = wprice; + } + + /** + * 字段名称 :在线会员价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getWmemberPrice() { + return this.wmemberPrice; + } + + /** + * 字段名称 :在线会员价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setWmemberPrice(Double wmemberPrice) { + this.wmemberPrice = wmemberPrice; + } + + /** + * 字段名称 :餐盒费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getBoxPrice() { + return this.boxPrice; + } + + /** + * 字段名称 :餐盒费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setBoxPrice(Double boxPrice) { + this.boxPrice = boxPrice; + } + + /** + * 字段名称 :第三方价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOtherPrice() { + return this.otherPrice; + } + + /** + * 字段名称 :第三方价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOtherPrice(Double otherPrice) { + this.otherPrice = otherPrice; + } + + /** + * 字段名称 :成本价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getCostPrice() { + return this.costPrice; + } + + /** + * 字段名称 :成本价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setCostPrice(Double costPrice) { + this.costPrice = costPrice; + } + + /** + * 字段名称 :采购参考价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPurchasePrice() { + return this.purchasePrice; + } + + /** + * 字段名称 :采购参考价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPurchasePrice(Double purchasePrice) { + this.purchasePrice = purchasePrice; + } + + /** + * 字段名称 :批发参考价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDispatchPrice() { + return this.dispatchPrice; + } + + /** + * 字段名称 :批发参考价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDispatchPrice(Double dispatchPrice) { + this.dispatchPrice = dispatchPrice; + } + + /** + * 字段名称 :物耗比 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMaterialRate() { + return this.materialRate; + } + + /** + * 字段名称 :物耗比 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMaterialRate(Double materialRate) { + this.materialRate = materialRate; + } + + /** + * 字段名称 :是否默认 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsdefault() { + return this.isdefault; + } + + /** + * 字段名称 :是否默认 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsdefault(Integer isdefault) { + this.isdefault = isdefault; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + + /** + * 字段名称 :ERP商品编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getErpCode() { + return this.erpCode; + } + + /** + * 字段名称 :ERP商品编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setErpCode(String erpCode) { + this.erpCode = erpCode; + } + + /** + * 字段名称 :ERP同步状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getErpSyncStatus() { + return this.erpSyncStatus; + } + + /** + * 字段名称 :ERP同步状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setErpSyncStatus(Integer erpSyncStatus) { + this.erpSyncStatus = erpSyncStatus; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductStock.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductStock.java new file mode 100644 index 0000000..5063f4e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductStock.java @@ -0,0 +1,341 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:总部原料库存 + * 表代码:cy_product_stock + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductStock") +public class ProductStock extends BaseEntity { + + private static final long serialVersionUID = 1429170819818547964L; + + /** + *仓库ID + */ + private String storageId; + + /** + *仓库名称 + */ + private String storageName; + + /** + *原料ID + */ + private String productId; + + /** + *原料编号 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *配送库存单位 + */ + private String dispatchUnitId; + + /** + *配送库存单位名称 + */ + private String dispatchUnitName; + + /** + *采购单位 + */ + private String purchaseUnitId; + + /** + *采购单位名称 + */ + private String purchaseUnitName; + + /** + *库存量 + */ + private Double stockAmount; + + /** + *库存成本 + */ + private Double stockCost; + + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStorageName() { + return this.storageName; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStorageName(String storageName) { + this.storageName = storageName; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :配送库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchUnitId() { + return this.dispatchUnitId; + } + + /** + * 字段名称 :配送库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchUnitId(String dispatchUnitId) { + this.dispatchUnitId = dispatchUnitId; + } + + /** + * 字段名称 :配送库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDispatchUnitName() { + return this.dispatchUnitName; + } + + /** + * 字段名称 :配送库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDispatchUnitName(String dispatchUnitName) { + this.dispatchUnitName = dispatchUnitName; + } + + /** + * 字段名称 :采购单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPurchaseUnitId() { + return this.purchaseUnitId; + } + + /** + * 字段名称 :采购单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPurchaseUnitId(String purchaseUnitId) { + this.purchaseUnitId = purchaseUnitId; + } + + /** + * 字段名称 :采购单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPurchaseUnitName() { + return this.purchaseUnitName; + } + + /** + * 字段名称 :采购单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPurchaseUnitName(String purchaseUnitName) { + this.purchaseUnitName = purchaseUnitName; + } + + /** + * 字段名称 :库存量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getStockAmount() { + return this.stockAmount; + } + + /** + * 字段名称 :库存量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setStockAmount(Double stockAmount) { + this.stockAmount = stockAmount; + } + + /** + * 字段名称 :库存成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getStockCost() { + return this.stockCost; + } + + /** + * 字段名称 :库存成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setStockCost(Double stockCost) { + this.stockCost = stockCost; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductStockLog.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductStockLog.java new file mode 100644 index 0000000..8114818 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductStockLog.java @@ -0,0 +1,640 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:总部库存流水 + * 表代码:cy_product_stock_log + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductStockLog") +public class ProductStockLog extends BaseEntity { + + private static final long serialVersionUID = 1341545878895219020L; + + /** + *仓库ID + */ + private String storageId; + + /** + *仓库名称 + */ + private String storageName; + + /** + *原料ID + */ + private String productId; + + /** + *原料编号 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *操作类型 + */ + private Integer operationType; + + /** + *单据编号 + */ + private String orderNo; + + /** + *单据类型 + */ + private Integer orderType; + + /** + *单据类型名 + */ + private String orderTypeName; + + /** + *配送库存单位 + */ + private String dispatchUnitId; + + /** + *配送库存单位名称 + */ + private String dispatchUnitName; + + /** + *采购单位 + */ + private String purchaseUnitId; + + /** + *采购单位名称 + */ + private String purchaseUnitName; + + /** + *原库存数量 + */ + private Double preAmount; + + /** + *发生数量 + */ + private Double amount; + + /** + *剩余库存数量 + */ + private Double afterAmount; + + /** + *单价 + */ + private Double price; + + /** + *金额 + */ + private Double money; + + /** + *总成本 + */ + private Double costAmount; + + /** + *供应商ID + */ + private String supplierId; + + /** + *供应商编号 + */ + private String supplierNo; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *生产批号 + */ + private String pNo; + + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStorageName() { + return this.storageName; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStorageName(String storageName) { + this.storageName = storageName; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOperationType() { + return this.operationType; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setOperationType(Integer operationType) { + this.operationType = operationType; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderNo(String orderNo) { + this.orderNo = orderNo; + } + + /** + * 字段名称 :单据类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOrderType() { + return this.orderType; + } + + /** + * 字段名称 :单据类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setOrderType(Integer orderType) { + this.orderType = orderType; + } + + /** + * 字段名称 :单据类型名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderTypeName() { + return this.orderTypeName; + } + + /** + * 字段名称 :单据类型名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderTypeName(String orderTypeName) { + this.orderTypeName = orderTypeName; + } + + /** + * 字段名称 :配送库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchUnitId() { + return this.dispatchUnitId; + } + + /** + * 字段名称 :配送库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchUnitId(String dispatchUnitId) { + this.dispatchUnitId = dispatchUnitId; + } + + /** + * 字段名称 :配送库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDispatchUnitName() { + return this.dispatchUnitName; + } + + /** + * 字段名称 :配送库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDispatchUnitName(String dispatchUnitName) { + this.dispatchUnitName = dispatchUnitName; + } + + /** + * 字段名称 :采购单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPurchaseUnitId() { + return this.purchaseUnitId; + } + + /** + * 字段名称 :采购单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPurchaseUnitId(String purchaseUnitId) { + this.purchaseUnitId = purchaseUnitId; + } + + /** + * 字段名称 :采购单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPurchaseUnitName() { + return this.purchaseUnitName; + } + + /** + * 字段名称 :采购单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPurchaseUnitName(String purchaseUnitName) { + this.purchaseUnitName = purchaseUnitName; + } + + /** + * 字段名称 :原库存数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPreAmount() { + return this.preAmount; + } + + /** + * 字段名称 :原库存数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPreAmount(Double preAmount) { + this.preAmount = preAmount; + } + + /** + * 字段名称 :发生数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :发生数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :剩余库存数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAfterAmount() { + return this.afterAmount; + } + + /** + * 字段名称 :剩余库存数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAfterAmount(Double afterAmount) { + this.afterAmount = afterAmount; + } + + /** + * 字段名称 :单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :总成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getCostAmount() { + return this.costAmount; + } + + /** + * 字段名称 :总成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setCostAmount(Double costAmount) { + this.costAmount = costAmount; + } + + /** + * 字段名称 :供应商ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSupplierId() { + return this.supplierId; + } + + /** + * 字段名称 :供应商ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSupplierId(String supplierId) { + this.supplierId = supplierId; + } + + /** + * 字段名称 :供应商编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSupplierNo() { + return this.supplierNo; + } + + /** + * 字段名称 :供应商编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSupplierNo(String supplierNo) { + this.supplierNo = supplierNo; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :生产批号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPNo() { + return this.pNo; + } + + /** + * 字段名称 :生产批号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPNo(String pNo) { + this.pNo = pNo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductStoreOutCollectDay.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductStoreOutCollectDay.java new file mode 100644 index 0000000..cfb2fd4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductStoreOutCollectDay.java @@ -0,0 +1,364 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店销售出库汇总-按天汇总 + * 表代码:cy_product_store_out_collect_day + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductStoreOutCollectDay") +public class ProductStoreOutCollectDay extends BaseEntity { + + private static final long serialVersionUID = 1842092464784369562L; + + /** + *门店ID + */ + private String storeId; + + /** + *单据类型 + */ + private Integer orderType; + + /** + *原料ID + */ + private String productId; + + /** + *原料编号 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *类别Id + */ + private String typeId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *单价 + */ + private Double price; + + /** + *包装单位 + */ + private String packUnitId; + + /** + *包装单位名称 + */ + private String packUnitName; + + /** + *规格ID + */ + private String specId; + + /** + *SUM(psl.amount) + */ + private Double totalAmount; + + /** + *商品类型 + */ + private Integer type; + + /** + *品项编号 + */ + private String no; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :单据类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOrderType() { + return this.orderType; + } + + /** + * 字段名称 :单据类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setOrderType(Integer orderType) { + this.orderType = orderType; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :类别Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :包装单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPackUnitId() { + return this.packUnitId; + } + + /** + * 字段名称 :包装单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPackUnitId(String packUnitId) { + this.packUnitId = packUnitId; + } + + /** + * 字段名称 :包装单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPackUnitName() { + return this.packUnitName; + } + + /** + * 字段名称 :包装单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPackUnitName(String packUnitName) { + this.packUnitName = packUnitName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :SUM(psl.amount) + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getTotalAmount() { + return this.totalAmount; + } + + /** + * 字段名称 :SUM(psl.amount) + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setTotalAmount(Double totalAmount) { + this.totalAmount = totalAmount; + } + + /** + * 字段名称 :商品类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :商品类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :品项编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :品项编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductStoreStock.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductStoreStock.java new file mode 100644 index 0000000..03b24b3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductStoreStock.java @@ -0,0 +1,387 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店原料库存 + * 表代码:cy_product_store_stock + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductStoreStock") +public class ProductStoreStock extends BaseEntity { + + private static final long serialVersionUID = 1517158517894458315L; + + /** + *门店ID + */ + private String storeId; + + /** + *仓库ID + */ + private String storageId; + + /** + *仓库名称 + */ + private String storageName; + + /** + *原料ID + */ + private String productId; + + /** + *原料编号 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *配送库存单位 + */ + private String dispatchUnitId; + + /** + *配送库存单位名称 + */ + private String dispatchUnitName; + + /** + *包装单位 + */ + private String packUnitId; + + /** + *包装单位名称 + */ + private String packUnitName; + + /** + *库存量 + */ + private Double stockAmount; + + /** + *库存成本 + */ + private Double stockCost; + + /** + *库存下限量(安全库存量) + */ + private Double minStock; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStorageName() { + return this.storageName; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStorageName(String storageName) { + this.storageName = storageName; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :配送库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchUnitId() { + return this.dispatchUnitId; + } + + /** + * 字段名称 :配送库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchUnitId(String dispatchUnitId) { + this.dispatchUnitId = dispatchUnitId; + } + + /** + * 字段名称 :配送库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDispatchUnitName() { + return this.dispatchUnitName; + } + + /** + * 字段名称 :配送库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDispatchUnitName(String dispatchUnitName) { + this.dispatchUnitName = dispatchUnitName; + } + + /** + * 字段名称 :包装单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPackUnitId() { + return this.packUnitId; + } + + /** + * 字段名称 :包装单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPackUnitId(String packUnitId) { + this.packUnitId = packUnitId; + } + + /** + * 字段名称 :包装单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPackUnitName() { + return this.packUnitName; + } + + /** + * 字段名称 :包装单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPackUnitName(String packUnitName) { + this.packUnitName = packUnitName; + } + + /** + * 字段名称 :库存量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getStockAmount() { + return this.stockAmount; + } + + /** + * 字段名称 :库存量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setStockAmount(Double stockAmount) { + this.stockAmount = stockAmount; + } + + /** + * 字段名称 :库存成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getStockCost() { + return this.stockCost; + } + + /** + * 字段名称 :库存成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setStockCost(Double stockCost) { + this.stockCost = stockCost; + } + + /** + * 字段名称 :库存下限量(安全库存量) + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMinStock() { + return this.minStock; + } + + /** + * 字段名称 :库存下限量(安全库存量) + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMinStock(Double minStock) { + this.minStock = minStock; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductStoreStockLog.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductStoreStockLog.java new file mode 100644 index 0000000..cef604e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductStoreStockLog.java @@ -0,0 +1,502 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店库存流水 + * 表代码:cy_product_store_stock_log + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductStoreStockLog") +public class ProductStoreStockLog extends BaseEntity { + + private static final long serialVersionUID = 1032162901786575557L; + + /** + *门店ID + */ + private String storeId; + + /** + *仓库ID + */ + private String storageId; + + /** + *仓库名称 + */ + private String storageName; + + /** + *原料ID + */ + private String productId; + + /** + *原料编号 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *单据编号 + */ + private String orderNo; + + /** + *单据类型 + */ + private Integer orderType; + + /** + *单据类型名 + */ + private String orderTypeName; + + /** + *配送库存单位 + */ + private String dispatchUnitId; + + /** + *配送库存单位名称 + */ + private String dispatchUnitName; + + /** + *包装单位 + */ + private String packUnitId; + + /** + *包装单位名称 + */ + private String packUnitName; + + /** + *原库存数量 + */ + private Double preAmount; + + /** + *发生数量 + */ + private Double amount; + + /** + *剩余库存数量 + */ + private Double afterAmount; + + /** + *单价 + */ + private Double price; + + /** + *金额 + */ + private Double money; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStorageName() { + return this.storageName; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStorageName(String storageName) { + this.storageName = storageName; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderNo(String orderNo) { + this.orderNo = orderNo; + } + + /** + * 字段名称 :单据类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOrderType() { + return this.orderType; + } + + /** + * 字段名称 :单据类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setOrderType(Integer orderType) { + this.orderType = orderType; + } + + /** + * 字段名称 :单据类型名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderTypeName() { + return this.orderTypeName; + } + + /** + * 字段名称 :单据类型名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderTypeName(String orderTypeName) { + this.orderTypeName = orderTypeName; + } + + /** + * 字段名称 :配送库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchUnitId() { + return this.dispatchUnitId; + } + + /** + * 字段名称 :配送库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchUnitId(String dispatchUnitId) { + this.dispatchUnitId = dispatchUnitId; + } + + /** + * 字段名称 :配送库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDispatchUnitName() { + return this.dispatchUnitName; + } + + /** + * 字段名称 :配送库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDispatchUnitName(String dispatchUnitName) { + this.dispatchUnitName = dispatchUnitName; + } + + /** + * 字段名称 :包装单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPackUnitId() { + return this.packUnitId; + } + + /** + * 字段名称 :包装单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPackUnitId(String packUnitId) { + this.packUnitId = packUnitId; + } + + /** + * 字段名称 :包装单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPackUnitName() { + return this.packUnitName; + } + + /** + * 字段名称 :包装单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPackUnitName(String packUnitName) { + this.packUnitName = packUnitName; + } + + /** + * 字段名称 :原库存数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPreAmount() { + return this.preAmount; + } + + /** + * 字段名称 :原库存数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPreAmount(Double preAmount) { + this.preAmount = preAmount; + } + + /** + * 字段名称 :发生数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :发生数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :剩余库存数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAfterAmount() { + return this.afterAmount; + } + + /** + * 字段名称 :剩余库存数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAfterAmount(Double afterAmount) { + this.afterAmount = afterAmount; + } + + /** + * 字段名称 :单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductSuit.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductSuit.java new file mode 100644 index 0000000..0e13952 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductSuit.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:套餐道菜 + * 表代码:cy_product_suit + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductSuit") +public class ProductSuit extends BaseEntity { + + private static final long serialVersionUID = 1726605394511690649L; + + /** + *套菜ID + */ + private String productId; + + /** + *道菜编号 + */ + private String no; + + /** + *道菜名称 + */ + private String name; + + /** + *数量 + */ + private Integer quantity; + + + /** + * 字段名称 :套菜ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :套菜ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :道菜编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :道菜编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :道菜名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :道菜名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :数量 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getQuantity() { + return this.quantity; + } + + /** + * 字段名称 :数量 + * 数据类型 :int + * 是否必填 :false + */ + public void setQuantity(Integer quantity) { + this.quantity = quantity; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductSuitDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductSuitDetail.java new file mode 100644 index 0000000..809857f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductSuitDetail.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:道菜明细 + * 表代码:cy_product_suit_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductSuitDetail") +public class ProductSuitDetail extends BaseEntity { + + private static final long serialVersionUID = 1685386075856824789L; + + /** + *道菜ID + */ + private String suitId; + + /** + *产品ID + */ + private String productId; + + /** + *产品规格ID + */ + private String specId; + + /** + *数量 + */ + private Integer quantity; + + /** + *加价 + */ + private Double addPrice; + + /** + *是否默认 + */ + private Integer defaultflag; + + + /** + * 字段名称 :道菜ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSuitId() { + return this.suitId; + } + + /** + * 字段名称 :道菜ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSuitId(String suitId) { + this.suitId = suitId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :产品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :产品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :数量 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getQuantity() { + return this.quantity; + } + + /** + * 字段名称 :数量 + * 数据类型 :int + * 是否必填 :false + */ + public void setQuantity(Integer quantity) { + this.quantity = quantity; + } + + /** + * 字段名称 :加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddPrice() { + return this.addPrice; + } + + /** + * 字段名称 :加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddPrice(Double addPrice) { + this.addPrice = addPrice; + } + + /** + * 字段名称 :是否默认 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDefaultflag() { + return this.defaultflag; + } + + /** + * 字段名称 :是否默认 + * 数据类型 :int + * 是否必填 :false + */ + public void setDefaultflag(Integer defaultflag) { + this.defaultflag = defaultflag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductTemplate.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductTemplate.java new file mode 100644 index 0000000..b8fa36b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductTemplate.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:商品模板 + * 表代码:cy_product_template + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductTemplate") +public class ProductTemplate extends BaseEntity { + + private static final long serialVersionUID = 1792095569874952071L; + + /** + *编号 + */ + private String no; + + /** + *名称 + */ + private String name; + + /** + *备注 + */ + private String description; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductTemplateDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductTemplateDetail.java new file mode 100644 index 0000000..238b939 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductTemplateDetail.java @@ -0,0 +1,226 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:商品模板明细 + * 表代码:cy_product_template_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductTemplateDetail") +public class ProductTemplateDetail extends BaseEntity { + + private static final long serialVersionUID = 1737207664702670213L; + + /** + *主表ID + */ + private String templateId; + + /** + *商品ID + */ + private String productId; + + /** + *商品规格ID + */ + private String specId; + + /** + *售价 + */ + private Double price; + + /** + *低售价 + */ + private Double minPrice; + + /** + *会员价 + */ + private Double memberPrice; + + /** + *在线售价 + */ + private Double wprice; + + /** + *在线会员价 + */ + private Double wmemberPrice; + + /** + *三方价 + */ + private Double otherPrice; + + + /** + * 字段名称 :主表ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTemplateId() { + return this.templateId; + } + + /** + * 字段名称 :主表ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTemplateId(String templateId) { + this.templateId = templateId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :商品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :商品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :低售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMinPrice() { + return this.minPrice; + } + + /** + * 字段名称 :低售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMinPrice(Double minPrice) { + this.minPrice = minPrice; + } + + /** + * 字段名称 :会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMemberPrice() { + return this.memberPrice; + } + + /** + * 字段名称 :会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMemberPrice(Double memberPrice) { + this.memberPrice = memberPrice; + } + + /** + * 字段名称 :在线售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getWprice() { + return this.wprice; + } + + /** + * 字段名称 :在线售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setWprice(Double wprice) { + this.wprice = wprice; + } + + /** + * 字段名称 :在线会员价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getWmemberPrice() { + return this.wmemberPrice; + } + + /** + * 字段名称 :在线会员价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setWmemberPrice(Double wmemberPrice) { + this.wmemberPrice = wmemberPrice; + } + + /** + * 字段名称 :三方价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOtherPrice() { + return this.otherPrice; + } + + /** + * 字段名称 :三方价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOtherPrice(Double otherPrice) { + this.otherPrice = otherPrice; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductType.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductType.java new file mode 100644 index 0000000..1f64bc0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductType.java @@ -0,0 +1,387 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:商品类别 + * 表代码:cy_product_type + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductType") +public class ProductType extends BaseEntity { + + private static final long serialVersionUID = 1080798681373088453L; + + /** + *父类别ID + */ + private String parentId; + + /** + *类别路径 + */ + private String path; + + /** + *编号 + */ + private String no; + + /** + *名称 + */ + private String name; + + /** + *菜品颜色 + */ + private String color; + + /** + *删除标识 + */ + private Integer deleteFlag; + + /** + *标识符 + */ + private String sign; + + /** + *英文名称 + */ + private String english; + + /** + *停用 + */ + private Integer stopFlag; + + /** + *图片宽度 + */ + private Integer width; + + /** + *图片高度 + */ + private Integer height; + + /** + *存储组名 + */ + private String groupName; + + /** + *存储文件名 + */ + private String storageFileName; + + /** + *文件大小 + */ + private String length; + + /** + *文件类型 + */ + private String mimeType; + + /** + *显示顺序 + */ + private Integer orderNo; + + + /** + * 字段名称 :父类别ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getParentId() { + return this.parentId; + } + + /** + * 字段名称 :父类别ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setParentId(String parentId) { + this.parentId = parentId; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getPath() { + return this.path; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setPath(String path) { + this.path = path; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :菜品颜色 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getColor() { + return this.color; + } + + /** + * 字段名称 :菜品颜色 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setColor(String color) { + this.color = color; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + + /** + * 字段名称 :标识符 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSign() { + return this.sign; + } + + /** + * 字段名称 :标识符 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSign(String sign) { + this.sign = sign; + } + + /** + * 字段名称 :英文名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getEnglish() { + return this.english; + } + + /** + * 字段名称 :英文名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setEnglish(String english) { + this.english = english; + } + + /** + * 字段名称 :停用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStopFlag() { + return this.stopFlag; + } + + /** + * 字段名称 :停用 + * 数据类型 :int + * 是否必填 :false + */ + public void setStopFlag(Integer stopFlag) { + this.stopFlag = stopFlag; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getWidth() { + return this.width; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public void setWidth(Integer width) { + this.width = width; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getHeight() { + return this.height; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public void setHeight(Integer height) { + this.height = height; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getGroupName() { + return this.groupName; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getStorageFileName() { + return this.storageFileName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setStorageFileName(String storageFileName) { + this.storageFileName = storageFileName; + } + + /** + * 字段名称 :文件大小 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getLength() { + return this.length; + } + + /** + * 字段名称 :文件大小 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setLength(String length) { + this.length = length; + } + + /** + * 字段名称 :文件类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getMimeType() { + return this.mimeType; + } + + /** + * 字段名称 :文件类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setMimeType(String mimeType) { + this.mimeType = mimeType; + } + + /** + * 字段名称 :显示顺序 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :显示顺序 + * 数据类型 :int + * 是否必填 :false + */ + public void setOrderNo(Integer orderNo) { + this.orderNo = orderNo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductTypeBrand.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductTypeBrand.java new file mode 100644 index 0000000..26ca226 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductTypeBrand.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:商品分类品牌 + * 表代码:cy_product_type_brand + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductTypeBrand") +public class ProductTypeBrand extends BaseEntity { + + private static final long serialVersionUID = 1877781582481201826L; + + /** + *品牌ID + */ + private String brandId; + + /** + *分类ID + */ + private String typeId; + + + /** + * 字段名称 :品牌ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getBrandId() { + return this.brandId; + } + + /** + * 字段名称 :品牌ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setBrandId(String brandId) { + this.brandId = brandId; + } + + /** + * 字段名称 :分类ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :分类ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductTypeLabel.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductTypeLabel.java new file mode 100644 index 0000000..b2a4c30 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductTypeLabel.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:商品类别标签管联 + * 表代码:cy_product_type_label + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductTypeLabel") +public class ProductTypeLabel extends BaseEntity { + + private static final long serialVersionUID = 1346792179963432562L; + + /** + *标签ID + */ + private String labelId; + + /** + *分类ID + */ + private String typeId; + + + /** + * 字段名称 :标签ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getLabelId() { + return this.labelId; + } + + /** + * 字段名称 :标签ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setLabelId(String labelId) { + this.labelId = labelId; + } + + /** + * 字段名称 :分类ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :分类ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductTypeLabelInfo.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductTypeLabelInfo.java new file mode 100644 index 0000000..efe1c43 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductTypeLabelInfo.java @@ -0,0 +1,249 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:商品类别标签 + * 表代码:cy_product_type_label_info + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductTypeLabelInfo") +public class ProductTypeLabelInfo extends BaseEntity { + + private static final long serialVersionUID = 1883263094614555408L; + + /** + *编号 + */ + private String no; + + /** + *名称 + */ + private String name; + + /** + *字体颜色 + */ + private String color; + + /** + *图片名称 + */ + private String imageName; + + /** + *图片宽度 + */ + private Integer width; + + /** + *图片高度 + */ + private Integer height; + + /** + *存储组名 + */ + private String groupName; + + /** + *存储文件名 + */ + private String storageFileName; + + /** + *链接地址 + */ + private String linkUrl; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :字体颜色 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getColor() { + return this.color; + } + + /** + * 字段名称 :字体颜色 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setColor(String color) { + this.color = color; + } + + /** + * 字段名称 :图片名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getImageName() { + return this.imageName; + } + + /** + * 字段名称 :图片名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setImageName(String imageName) { + this.imageName = imageName; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getWidth() { + return this.width; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public void setWidth(Integer width) { + this.width = width; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getHeight() { + return this.height; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public void setHeight(Integer height) { + this.height = height; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getGroupName() { + return this.groupName; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getStorageFileName() { + return this.storageFileName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setStorageFileName(String storageFileName) { + this.storageFileName = storageFileName; + } + + /** + * 字段名称 :链接地址 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getLinkUrl() { + return this.linkUrl; + } + + /** + * 字段名称 :链接地址 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setLinkUrl(String linkUrl) { + this.linkUrl = linkUrl; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductUnit.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductUnit.java new file mode 100644 index 0000000..31c876c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProductUnit.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:商品单位 + * 表代码:cy_product_unit + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProductUnit") +public class ProductUnit extends BaseEntity { + + private static final long serialVersionUID = 1413283211386289570L; + + /** + *编号 + */ + private String no; + + /** + *名称 + */ + private String name; + + /** + *删除标识 + */ + private Integer deleteFlag; + + /** + *编号类型 + */ + private Integer noType; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + + /** + * 字段名称 :编号类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getNoType() { + return this.noType; + } + + /** + * 字段名称 :编号类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setNoType(Integer noType) { + this.noType = noType; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramAdPicture.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramAdPicture.java new file mode 100644 index 0000000..dafe584 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramAdPicture.java @@ -0,0 +1,226 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序广告图片 + * 表代码:cy_program_ad_picture + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramAdPicture") +public class ProgramAdPicture extends BaseEntity { + + private static final long serialVersionUID = 1489891061368171341L; + + /** + *设置ID + */ + private String programId; + + /** + *显示序号 + */ + private String orderNo; + + /** + *图片名称 + */ + private String name; + + /** + *图片宽度 + */ + private Integer width; + + /** + *图片高度 + */ + private Integer height; + + /** + *存储组名 + */ + private String groupName; + + /** + *存储文件名 + */ + private String storageFileName; + + /** + *链接地址 + */ + private String linkUrl; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setOrderNo(String orderNo) { + this.orderNo = orderNo; + } + + /** + * 字段名称 :图片名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :图片名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getWidth() { + return this.width; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public void setWidth(Integer width) { + this.width = width; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getHeight() { + return this.height; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public void setHeight(Integer height) { + this.height = height; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getGroupName() { + return this.groupName; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getStorageFileName() { + return this.storageFileName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setStorageFileName(String storageFileName) { + this.storageFileName = storageFileName; + } + + /** + * 字段名称 :链接地址 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getLinkUrl() { + return this.linkUrl; + } + + /** + * 字段名称 :链接地址 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setLinkUrl(String linkUrl) { + this.linkUrl = linkUrl; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramAdjustPriceProduct.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramAdjustPriceProduct.java new file mode 100644 index 0000000..e8e68d4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramAdjustPriceProduct.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序调价单商品明细 + * 表代码:cy_program_adjust_price_product + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramAdjustPriceProduct") +public class ProgramAdjustPriceProduct extends BaseEntity { + + private static final long serialVersionUID = 1252394866179785119L; + + /** + *设置ID + */ + private String programId; + + /** + *单据ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String ticketNo; + + /** + *产品ID + */ + private String productId; + + /** + *规格ID + */ + private String specId; + + /** + *线上售价 + */ + private Double wprice; + + /** + *线上会员价 + */ + private Double wmemberPrice; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :单据ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :单据ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :线上售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getWprice() { + return this.wprice; + } + + /** + * 字段名称 :线上售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setWprice(Double wprice) { + this.wprice = wprice; + } + + /** + * 字段名称 :线上会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getWmemberPrice() { + return this.wmemberPrice; + } + + /** + * 字段名称 :线上会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setWmemberPrice(Double wmemberPrice) { + this.wmemberPrice = wmemberPrice; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramAdjustPriceStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramAdjustPriceStore.java new file mode 100644 index 0000000..727e32a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramAdjustPriceStore.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序调价单门店明细 + * 表代码:cy_program_adjust_price_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramAdjustPriceStore") +public class ProgramAdjustPriceStore extends BaseEntity { + + private static final long serialVersionUID = 1160033897031076569L; + + /** + *设置ID + */ + private String programId; + + /** + *单据ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String ticketNo; + + /** + *门店ID + */ + private String storeId; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :单据ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :单据ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramAdjustPriceTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramAdjustPriceTicket.java new file mode 100644 index 0000000..ba3e59c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramAdjustPriceTicket.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序商品调价单 + * 表代码:cy_program_adjust_price_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramAdjustPriceTicket") +public class ProgramAdjustPriceTicket extends BaseEntity { + + private static final long serialVersionUID = 1070100052275163959L; + + /** + *设置ID + */ + private String programId; + + /** + *单据编号 + */ + private String no; + + /** + *生效时间 + */ + private Date effectDate; + + /** + *备注信息 + */ + private String description; + + /** + *单据状态 + */ + private Integer status; + + /** + *审核人 + */ + private String checkPeople; + + /** + *审核日期 + */ + private Date checkDate; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :生效时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getEffectDate() { + return this.effectDate; + } + + /** + * 字段名称 :生效时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setEffectDate(Date effectDate) { + this.effectDate = effectDate; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getCheckPeople() { + return this.checkPeople; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setCheckPeople(String checkPeople) { + this.checkPeople = checkPeople; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckDate() { + return this.checkDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckDate(Date checkDate) { + this.checkDate = checkDate; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramDeliverAddress.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramDeliverAddress.java new file mode 100644 index 0000000..17d15dc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramDeliverAddress.java @@ -0,0 +1,295 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序用户配送地址 + * 表代码:cy_program_deliver_address + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramDeliverAddress") +public class ProgramDeliverAddress extends BaseEntity { + + private static final long serialVersionUID = 1071937230738901398L; + + /** + *设置ID + */ + private String programId; + + /** + *会员ID + */ + private String memberId; + + /** + *会员openId + */ + private String openId; + + /** + *手机号 + */ + private String mobile; + + /** + *收货人 + */ + private String receiveName; + + /** + *收货人手机号 + */ + private String receiveMobile; + + /** + *收货地址 + */ + private String receiveAddress; + + /** + *门牌号 + */ + private String receiveDoor; + + /** + *纬度 + */ + private Double latitude; + + /** + *经度 + */ + private Double longitude; + + /** + *是否默认 + */ + private Integer defaultFlag; + + /** + *地址类型 + */ + private Integer addressType; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :会员ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMemberId() { + return this.memberId; + } + + /** + * 字段名称 :会员ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMemberId(String memberId) { + this.memberId = memberId; + } + + /** + * 字段名称 :会员openId + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOpenId() { + return this.openId; + } + + /** + * 字段名称 :会员openId + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOpenId(String openId) { + this.openId = openId; + } + + /** + * 字段名称 :手机号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMobile() { + return this.mobile; + } + + /** + * 字段名称 :手机号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMobile(String mobile) { + this.mobile = mobile; + } + + /** + * 字段名称 :收货人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getReceiveName() { + return this.receiveName; + } + + /** + * 字段名称 :收货人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setReceiveName(String receiveName) { + this.receiveName = receiveName; + } + + /** + * 字段名称 :收货人手机号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getReceiveMobile() { + return this.receiveMobile; + } + + /** + * 字段名称 :收货人手机号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setReceiveMobile(String receiveMobile) { + this.receiveMobile = receiveMobile; + } + + /** + * 字段名称 :收货地址 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getReceiveAddress() { + return this.receiveAddress; + } + + /** + * 字段名称 :收货地址 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setReceiveAddress(String receiveAddress) { + this.receiveAddress = receiveAddress; + } + + /** + * 字段名称 :门牌号 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getReceiveDoor() { + return this.receiveDoor; + } + + /** + * 字段名称 :门牌号 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setReceiveDoor(String receiveDoor) { + this.receiveDoor = receiveDoor; + } + + /** + * 字段名称 :纬度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public Double getLatitude() { + return this.latitude; + } + + /** + * 字段名称 :纬度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public void setLatitude(Double latitude) { + this.latitude = latitude; + } + + /** + * 字段名称 :经度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public Double getLongitude() { + return this.longitude; + } + + /** + * 字段名称 :经度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public void setLongitude(Double longitude) { + this.longitude = longitude; + } + + /** + * 字段名称 :是否默认 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDefaultFlag() { + return this.defaultFlag; + } + + /** + * 字段名称 :是否默认 + * 数据类型 :int + * 是否必填 :false + */ + public void setDefaultFlag(Integer defaultFlag) { + this.defaultFlag = defaultFlag; + } + + /** + * 字段名称 :地址类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getAddressType() { + return this.addressType; + } + + /** + * 字段名称 :地址类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setAddressType(Integer addressType) { + this.addressType = addressType; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramEvaluate.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramEvaluate.java new file mode 100644 index 0000000..48a7dc1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramEvaluate.java @@ -0,0 +1,364 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序评价表 + * 表代码:cy_program_evaluate + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramEvaluate") +public class ProgramEvaluate extends BaseEntity { + + private static final long serialVersionUID = 1584517338988508868L; + + /** + *设置ID + */ + private String programId; + + /** + *会员ID + */ + private String memberId; + + /** + *会员openId + */ + private String openId; + + /** + *手机号 + */ + private String mobile; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *头像 + */ + private String touxiang; + + /** + *会员姓名 + */ + private String memberName; + + /** + *评价内容 + */ + private String memo; + + /** + *门店评级 + */ + private Integer storeLevel; + + /** + *商品评级 + */ + private Integer productLevel; + + /** + *服务评级 + */ + private Integer serverLevel; + + /** + *评价时间 + */ + private Date tickingTime; + + /** + *状态 + */ + private Integer status; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :会员ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMemberId() { + return this.memberId; + } + + /** + * 字段名称 :会员ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMemberId(String memberId) { + this.memberId = memberId; + } + + /** + * 字段名称 :会员openId + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOpenId() { + return this.openId; + } + + /** + * 字段名称 :会员openId + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOpenId(String openId) { + this.openId = openId; + } + + /** + * 字段名称 :手机号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMobile() { + return this.mobile; + } + + /** + * 字段名称 :手机号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMobile(String mobile) { + this.mobile = mobile; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :头像 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getTouxiang() { + return this.touxiang; + } + + /** + * 字段名称 :头像 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setTouxiang(String touxiang) { + this.touxiang = touxiang; + } + + /** + * 字段名称 :会员姓名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMemberName() { + return this.memberName; + } + + /** + * 字段名称 :会员姓名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMemberName(String memberName) { + this.memberName = memberName; + } + + /** + * 字段名称 :评价内容 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getMemo() { + return this.memo; + } + + /** + * 字段名称 :评价内容 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setMemo(String memo) { + this.memo = memo; + } + + /** + * 字段名称 :门店评级 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStoreLevel() { + return this.storeLevel; + } + + /** + * 字段名称 :门店评级 + * 数据类型 :int + * 是否必填 :false + */ + public void setStoreLevel(Integer storeLevel) { + this.storeLevel = storeLevel; + } + + /** + * 字段名称 :商品评级 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getProductLevel() { + return this.productLevel; + } + + /** + * 字段名称 :商品评级 + * 数据类型 :int + * 是否必填 :false + */ + public void setProductLevel(Integer productLevel) { + this.productLevel = productLevel; + } + + /** + * 字段名称 :服务评级 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getServerLevel() { + return this.serverLevel; + } + + /** + * 字段名称 :服务评级 + * 数据类型 :int + * 是否必填 :false + */ + public void setServerLevel(Integer serverLevel) { + this.serverLevel = serverLevel; + } + + /** + * 字段名称 :评价时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getTickingTime() { + return this.tickingTime; + } + + /** + * 字段名称 :评价时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setTickingTime(Date tickingTime) { + this.tickingTime = tickingTime; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramEvaluateImage.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramEvaluateImage.java new file mode 100644 index 0000000..dbae9f9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramEvaluateImage.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序评价图片表 + * 表代码:cy_program_evaluate_image + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramEvaluateImage") +public class ProgramEvaluateImage extends BaseEntity { + + private static final long serialVersionUID = 1840590144445798527L; + + /** + *评价ID + */ + private String evaluateId; + + /** + *图片宽度 + */ + private Integer width; + + /** + *图片高度 + */ + private Integer height; + + /** + *存储组名 + */ + private String groupName; + + /** + *存储文件名 + */ + private String storageFileName; + + /** + *显示序号 + */ + private String orderNo; + + + /** + * 字段名称 :评价ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getEvaluateId() { + return this.evaluateId; + } + + /** + * 字段名称 :评价ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setEvaluateId(String evaluateId) { + this.evaluateId = evaluateId; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getWidth() { + return this.width; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public void setWidth(Integer width) { + this.width = width; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getHeight() { + return this.height; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public void setHeight(Integer height) { + this.height = height; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getGroupName() { + return this.groupName; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getStorageFileName() { + return this.storageFileName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setStorageFileName(String storageFileName) { + this.storageFileName = storageFileName; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setOrderNo(String orderNo) { + this.orderNo = orderNo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramIndexPicture.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramIndexPicture.java new file mode 100644 index 0000000..891b541 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramIndexPicture.java @@ -0,0 +1,249 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序首页图片 + * 表代码:cy_program_index_picture + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramIndexPicture") +public class ProgramIndexPicture extends BaseEntity { + + private static final long serialVersionUID = 1243250537747231575L; + + /** + *设置ID + */ + private String programId; + + /** + *跳转路径 + */ + private String path; + + /** + *首页图片类型 + */ + private String indexPictureType; + + /** + *功能名称 + */ + private String funcName; + + /** + *图片宽度 + */ + private Integer width; + + /** + *图片高度 + */ + private Integer height; + + /** + *存储组名 + */ + private String groupName; + + /** + *存储文件名 + */ + private String storageFileName; + + /** + *链接地址 + */ + private String linkUrl; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :跳转路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getPath() { + return this.path; + } + + /** + * 字段名称 :跳转路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setPath(String path) { + this.path = path; + } + + /** + * 字段名称 :首页图片类型 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getIndexPictureType() { + return this.indexPictureType; + } + + /** + * 字段名称 :首页图片类型 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setIndexPictureType(String indexPictureType) { + this.indexPictureType = indexPictureType; + } + + /** + * 字段名称 :功能名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getFuncName() { + return this.funcName; + } + + /** + * 字段名称 :功能名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setFuncName(String funcName) { + this.funcName = funcName; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getWidth() { + return this.width; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public void setWidth(Integer width) { + this.width = width; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getHeight() { + return this.height; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public void setHeight(Integer height) { + this.height = height; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getGroupName() { + return this.groupName; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getStorageFileName() { + return this.storageFileName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setStorageFileName(String storageFileName) { + this.storageFileName = storageFileName; + } + + /** + * 字段名称 :链接地址 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getLinkUrl() { + return this.linkUrl; + } + + /** + * 字段名称 :链接地址 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setLinkUrl(String linkUrl) { + this.linkUrl = linkUrl; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPaymentParameter.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPaymentParameter.java new file mode 100644 index 0000000..062724c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPaymentParameter.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序支付参数方案 + * 表代码:cy_program_payment_parameter + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramPaymentParameter") +public class ProgramPaymentParameter extends BaseEntity { + + private static final long serialVersionUID = 1440693418215716728L; + + /** + *设置ID + */ + private String programId; + + /** + *编号 + */ + private String no; + + /** + *方案名称 + */ + private String name; + + /** + *支付类型 + */ + private String sign; + + /** + *支付参数 + */ + private String pbody; + + /** + *是否启用 + */ + private Integer enabled; + + /** + *证书内容 + */ + private String certText; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :方案名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :方案名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :支付类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSign() { + return this.sign; + } + + /** + * 字段名称 :支付类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSign(String sign) { + this.sign = sign; + } + + /** + * 字段名称 :支付参数 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getPbody() { + return this.pbody; + } + + /** + * 字段名称 :支付参数 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setPbody(String pbody) { + this.pbody = pbody; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnabled() { + return this.enabled; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setEnabled(Integer enabled) { + this.enabled = enabled; + } + + /** + * 字段名称 :证书内容 + * 数据类型 :text + * 是否必填 :false + */ + public String getCertText() { + return this.certText; + } + + /** + * 字段名称 :证书内容 + * 数据类型 :text + * 是否必填 :false + */ + public void setCertText(String certText) { + this.certText = certText; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPaymentParameterStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPaymentParameterStore.java new file mode 100644 index 0000000..f71461c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPaymentParameterStore.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序支付参数门店关联 + * 表代码:cy_program_payment_parameter_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramPaymentParameterStore") +public class ProgramPaymentParameterStore extends BaseEntity { + + private static final long serialVersionUID = 1501951907733621067L; + + /** + *门店ID + */ + private String storeId; + + /** + *支付参数ID + */ + private String parameterId; + + /** + *设置ID + */ + private String programId; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :支付参数ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getParameterId() { + return this.parameterId; + } + + /** + * 字段名称 :支付参数ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setParameterId(String parameterId) { + this.parameterId = parameterId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramProductCategory.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramProductCategory.java new file mode 100644 index 0000000..ecc1340 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramProductCategory.java @@ -0,0 +1,249 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序商品分类 + * 表代码:cy_program_product_category + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramProductCategory") +public class ProgramProductCategory extends BaseEntity { + + private static final long serialVersionUID = 1059064177874873324L; + + /** + *设置ID + */ + private String programId; + + /** + *分类名称 + */ + private String name; + + /** + *分类描述 + */ + private String description; + + /** + *显示序号 + */ + private Integer orderNo; + + /** + *分类路径 + */ + private String path; + + /** + *删除标识 + */ + private Integer deleteFlag; + + /** + *英文名称 + */ + private String nameEn; + + /** + *关联商品类别路径 + */ + private String typePath; + + /** + *关联商品类别ID + */ + private String typeId; + + /** + *关联商品类别名 + */ + private String typeName; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :分类名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :分类名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :分类描述 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :分类描述 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :int + * 是否必填 :false + */ + public void setOrderNo(Integer orderNo) { + this.orderNo = orderNo; + } + + /** + * 字段名称 :分类路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getPath() { + return this.path; + } + + /** + * 字段名称 :分类路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setPath(String path) { + this.path = path; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + + /** + * 字段名称 :英文名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getNameEn() { + return this.nameEn; + } + + /** + * 字段名称 :英文名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setNameEn(String nameEn) { + this.nameEn = nameEn; + } + + /** + * 字段名称 :关联商品类别路径 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getTypePath() { + return this.typePath; + } + + /** + * 字段名称 :关联商品类别路径 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setTypePath(String typePath) { + this.typePath = typePath; + } + + /** + * 字段名称 :关联商品类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :关联商品类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :关联商品类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTypeName() { + return this.typeName; + } + + /** + * 字段名称 :关联商品类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTypeName(String typeName) { + this.typeName = typeName; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramProductMake.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramProductMake.java new file mode 100644 index 0000000..099e4d2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramProductMake.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序商品做法关联 + * 表代码:cy_program_product_make + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramProductMake") +public class ProgramProductMake extends BaseEntity { + + private static final long serialVersionUID = 1800563829666664142L; + + /** + *设置ID + */ + private String programId; + + /** + *产品ID + */ + private String productId; + + /** + *做法类型 + */ + private String typeId; + + /** + *做法 + */ + private String makeId; + + /** + *加价 + */ + private Double addPrice; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :做法类型 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :做法类型 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :做法 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getMakeId() { + return this.makeId; + } + + /** + * 字段名称 :做法 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setMakeId(String makeId) { + this.makeId = makeId; + } + + /** + * 字段名称 :加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddPrice() { + return this.addPrice; + } + + /** + * 字段名称 :加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddPrice(Double addPrice) { + this.addPrice = addPrice; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramProductTemplate.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramProductTemplate.java new file mode 100644 index 0000000..764f3d4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramProductTemplate.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序商品模板 + * 表代码:cy_program_product_template + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramProductTemplate") +public class ProgramProductTemplate extends BaseEntity { + + private static final long serialVersionUID = 1934254222154585443L; + + /** + *设置ID + */ + private String programId; + + /** + *编号 + */ + private String no; + + /** + *名称 + */ + private String name; + + /** + *备注 + */ + private String description; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramProductTemplateDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramProductTemplateDetail.java new file mode 100644 index 0000000..81ad9d3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramProductTemplateDetail.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序商品模板明细 + * 表代码:cy_program_product_template_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramProductTemplateDetail") +public class ProgramProductTemplateDetail extends BaseEntity { + + private static final long serialVersionUID = 1969625341014638660L; + + /** + *设置ID + */ + private String programId; + + /** + *模板ID + */ + private String templateId; + + /** + *单据编号 + */ + private String templateNo; + + /** + *产品ID + */ + private String productId; + + /** + *规格ID + */ + private String specId; + + /** + *线上售价 + */ + private Double wprice; + + /** + *线上会员价 + */ + private Double wmemberPrice; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTemplateId() { + return this.templateId; + } + + /** + * 字段名称 :模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTemplateId(String templateId) { + this.templateId = templateId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTemplateNo() { + return this.templateNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTemplateNo(String templateNo) { + this.templateNo = templateNo; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :线上售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getWprice() { + return this.wprice; + } + + /** + * 字段名称 :线上售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setWprice(Double wprice) { + this.wprice = wprice; + } + + /** + * 字段名称 :线上会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getWmemberPrice() { + return this.wmemberPrice; + } + + /** + * 字段名称 :线上会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setWmemberPrice(Double wmemberPrice) { + this.wmemberPrice = wmemberPrice; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramProductTemplateStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramProductTemplateStore.java new file mode 100644 index 0000000..d460741 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramProductTemplateStore.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序商品模板门店明细 + * 表代码:cy_program_product_template_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramProductTemplateStore") +public class ProgramProductTemplateStore extends BaseEntity { + + private static final long serialVersionUID = 1635764688477984719L; + + /** + *设置ID + */ + private String programId; + + /** + *模板ID + */ + private String templateId; + + /** + *单据编号 + */ + private String templateNo; + + /** + *门店ID + */ + private String storeId; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTemplateId() { + return this.templateId; + } + + /** + * 字段名称 :模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTemplateId(String templateId) { + this.templateId = templateId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTemplateNo() { + return this.templateNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTemplateNo(String templateNo) { + this.templateNo = templateNo; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionBlackListGoods.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionBlackListGoods.java new file mode 100644 index 0000000..a0ce5e7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionBlackListGoods.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序促销商品黑名单 + * 表代码:cy_program_promotion_black_list_goods + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionBlackListGoods") +public class ProgramPromotionBlackListGoods extends BaseEntity { + + private static final long serialVersionUID = 1374648165817750131L; + + /** + *设置ID + */ + private String programId; + + /** + *促销单Id + */ + private String promotionId; + + /** + *促销单编号 + */ + private String promotionSn; + + /** + *产品ID + */ + private String productId; + + /** + *产品规格ID + */ + private String specId; + + /** + *产品编号 + */ + private String productNo; + + /** + *产品名称 + */ + private String productName; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPromotionId() { + return this.promotionId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPromotionId(String promotionId) { + this.promotionId = promotionId; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPromotionSn() { + return this.promotionSn; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPromotionSn(String promotionSn) { + this.promotionSn = promotionSn; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :产品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :产品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :产品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :产品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionBlackListStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionBlackListStore.java new file mode 100644 index 0000000..e7adf9a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionBlackListStore.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序促销门店黑名单 + * 表代码:cy_program_promotion_black_list_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionBlackListStore") +public class ProgramPromotionBlackListStore extends BaseEntity { + + private static final long serialVersionUID = 1587242337381922690L; + + /** + *设置ID + */ + private String programId; + + /** + *促销单Id + */ + private String promotionId; + + /** + *促销单编号 + */ + private String promotionSn; + + /** + *门店Id + */ + private String storeId; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPromotionId() { + return this.promotionId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPromotionId(String promotionId) { + this.promotionId = promotionId; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPromotionSn() { + return this.promotionSn; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPromotionSn(String promotionSn) { + this.promotionSn = promotionSn; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionBlackListStoreArea.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionBlackListStoreArea.java new file mode 100644 index 0000000..c292f3a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionBlackListStoreArea.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序促销门店区域黑名单 + * 表代码:cy_program_promotion_black_list_store_area + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionBlackListStoreArea") +public class ProgramPromotionBlackListStoreArea extends BaseEntity { + + private static final long serialVersionUID = 1900894575637460317L; + + /** + *设置ID + */ + private String programId; + + /** + *促销单Id + */ + private String promotionId; + + /** + *促销单编号 + */ + private String promotionSn; + + /** + *区域Id + */ + private String areaId; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPromotionId() { + return this.promotionId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPromotionId(String promotionId) { + this.promotionId = promotionId; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPromotionSn() { + return this.promotionSn; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPromotionSn(String promotionSn) { + this.promotionSn = promotionSn; + } + + /** + * 字段名称 :区域Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getAreaId() { + return this.areaId; + } + + /** + * 字段名称 :区域Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setAreaId(String areaId) { + this.areaId = areaId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionCategory.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionCategory.java new file mode 100644 index 0000000..f074833 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionCategory.java @@ -0,0 +1,226 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序促销品类表 + * 表代码:cy_program_promotion_category + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionCategory") +public class ProgramPromotionCategory extends BaseEntity { + + private static final long serialVersionUID = 1962526434957820158L; + + /** + *设置ID + */ + private String programId; + + /** + *促销单Id + */ + private String promotionId; + + /** + *促销单编号 + */ + private String promotionSn; + + /** + *类别Id + */ + private String typeId; + + /** + *类别编号 + */ + private String typeNo; + + /** + *类别名称 + */ + private String typeName; + + /** + *优惠类型 + */ + private Integer discountType; + + /** + *折扣/金额 + */ + private Double discount; + + /** + *状态 + */ + private Integer status; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPromotionId() { + return this.promotionId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPromotionId(String promotionId) { + this.promotionId = promotionId; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPromotionSn() { + return this.promotionSn; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPromotionSn(String promotionSn) { + this.promotionSn = promotionSn; + } + + /** + * 字段名称 :类别Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTypeNo() { + return this.typeNo; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTypeNo(String typeNo) { + this.typeNo = typeNo; + } + + /** + * 字段名称 :类别名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTypeName() { + return this.typeName; + } + + /** + * 字段名称 :类别名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDiscountType() { + return this.discountType; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setDiscountType(Integer discountType) { + this.discountType = discountType; + } + + /** + * 字段名称 :折扣/金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :折扣/金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionGoods.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionGoods.java new file mode 100644 index 0000000..83e43cc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionGoods.java @@ -0,0 +1,341 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序促销商品明细 + * 表代码:cy_program_promotion_goods + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionGoods") +public class ProgramPromotionGoods extends BaseEntity { + + private static final long serialVersionUID = 1625074032254759844L; + + /** + *设置ID + */ + private String programId; + + /** + *促销单Id + */ + private String promotionId; + + /** + *促销单编号 + */ + private String promotionSn; + + /** + *产品ID + */ + private String productId; + + /** + *产品规格ID + */ + private String specId; + + /** + *产品编号 + */ + private String productNo; + + /** + *产品名称 + */ + private String productName; + + /** + *售价 + */ + private Double salePrice; + + /** + *特价 + */ + private Double specialPrice; + + /** + *优惠类型 + */ + private Integer discountType; + + /** + *折扣/金额 + */ + private Double discount; + + /** + *每单限量 + */ + private Double limitNum; + + /** + *全场限量 + */ + private Double allLimitNum; + + /** + *状态 + */ + private Integer status; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPromotionId() { + return this.promotionId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPromotionId(String promotionId) { + this.promotionId = promotionId; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPromotionSn() { + return this.promotionSn; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPromotionSn(String promotionSn) { + this.promotionSn = promotionSn; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :产品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :产品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :产品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :产品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getSalePrice() { + return this.salePrice; + } + + /** + * 字段名称 :售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setSalePrice(Double salePrice) { + this.salePrice = salePrice; + } + + /** + * 字段名称 :特价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getSpecialPrice() { + return this.specialPrice; + } + + /** + * 字段名称 :特价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setSpecialPrice(Double specialPrice) { + this.specialPrice = specialPrice; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDiscountType() { + return this.discountType; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setDiscountType(Integer discountType) { + this.discountType = discountType; + } + + /** + * 字段名称 :折扣/金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :折扣/金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :每单限量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getLimitNum() { + return this.limitNum; + } + + /** + * 字段名称 :每单限量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setLimitNum(Double limitNum) { + this.limitNum = limitNum; + } + + /** + * 字段名称 :全场限量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAllLimitNum() { + return this.allLimitNum; + } + + /** + * 字段名称 :全场限量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAllLimitNum(Double allLimitNum) { + this.allLimitNum = allLimitNum; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionScheme.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionScheme.java new file mode 100644 index 0000000..07a7b0b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionScheme.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序促销方案表 + * 表代码:cy_program_promotion_scheme + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionScheme") +public class ProgramPromotionScheme extends BaseEntity { + + private static final long serialVersionUID = 1732269058772141288L; + + /** + *设置ID + */ + private String programId; + + /** + *方案编号 + */ + private String sn; + + /** + *促销Id + */ + private String promotionId; + + /** + *促销编号 + */ + private String promotionSn; + + /** + *类型 + */ + private Integer type; + + /** + *促销规则 + */ + private String rule; + + /** + *备注 + */ + private String memo; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :方案编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSn() { + return this.sn; + } + + /** + * 字段名称 :方案编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSn(String sn) { + this.sn = sn; + } + + /** + * 字段名称 :促销Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPromotionId() { + return this.promotionId; + } + + /** + * 字段名称 :促销Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPromotionId(String promotionId) { + this.promotionId = promotionId; + } + + /** + * 字段名称 :促销编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPromotionSn() { + return this.promotionSn; + } + + /** + * 字段名称 :促销编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPromotionSn(String promotionSn) { + this.promotionSn = promotionSn; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :促销规则 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getRule() { + return this.rule; + } + + /** + * 字段名称 :促销规则 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setRule(String rule) { + this.rule = rule; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getMemo() { + return this.memo; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setMemo(String memo) { + this.memo = memo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionStore.java new file mode 100644 index 0000000..da5e195 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionStore.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序促销门店关联表 + * 表代码:cy_program_promotion_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionStore") +public class ProgramPromotionStore extends BaseEntity { + + private static final long serialVersionUID = 1266494842834587135L; + + /** + *设置ID + */ + private String programId; + + /** + *促销单Id + */ + private String promotionId; + + /** + *促销单编号 + */ + private String promotionSn; + + /** + *门店Id + */ + private String storeId; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPromotionId() { + return this.promotionId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPromotionId(String promotionId) { + this.promotionId = promotionId; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPromotionSn() { + return this.promotionSn; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPromotionSn(String promotionSn) { + this.promotionSn = promotionSn; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionStoreArea.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionStoreArea.java new file mode 100644 index 0000000..bcbc829 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionStoreArea.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序促销门店区域关联表 + * 表代码:cy_program_promotion_store_area + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionStoreArea") +public class ProgramPromotionStoreArea extends BaseEntity { + + private static final long serialVersionUID = 1723455092653981697L; + + /** + *设置ID + */ + private String programId; + + /** + *促销单Id + */ + private String promotionId; + + /** + *促销单编号 + */ + private String promotionSn; + + /** + *区域Id + */ + private String areaId; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPromotionId() { + return this.promotionId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPromotionId(String promotionId) { + this.promotionId = promotionId; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPromotionSn() { + return this.promotionSn; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPromotionSn(String promotionSn) { + this.promotionSn = promotionSn; + } + + /** + * 字段名称 :区域Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getAreaId() { + return this.areaId; + } + + /** + * 字段名称 :区域Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setAreaId(String areaId) { + this.areaId = areaId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionTask.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionTask.java new file mode 100644 index 0000000..292b298 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionTask.java @@ -0,0 +1,732 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序促销任务表 + * 表代码:cy_program_promotion_task + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionTask") +public class ProgramPromotionTask extends BaseEntity { + + private static final long serialVersionUID = 1046742683901668563L; + + /** + *设置ID + */ + private String programId; + + /** + *任务编号 + */ + private String sn; + + /** + *促销单Id + */ + private String promotionId; + + /** + *促销单编号 + */ + private String promotionSn; + + /** + *促销类型 + */ + private String promotionType; + + /** + *门店Id + */ + private String storeId; + + /** + *值类型 + */ + private Integer valueType; + + /** + *值Id + */ + private String valueId; + + /** + *值编号 + */ + private String valueNo; + + /** + *值名称 + */ + private String valueName; + + /** + *值扩展1 + */ + private String valueExt1; + + /** + *值扩展2 + */ + private String valueExt2; + + /** + *促销方案Id + */ + private String schemeId; + + /** + *方案编号 + */ + private String schemeSn; + + /** + *开始日期 + */ + private Date startDate; + + /** + *结束日期 + */ + private Date endDate; + + /** + *开始时间 + */ + private String startTime; + + /** + *结束时间 + */ + private String endTime; + + /** + *每周频率 + */ + private String validWeek; + + /** + *每月频率 + */ + private String validMonth; + + /** + *是否会员专享 + */ + private Integer isOnlyMember; + + /** + *是否会员折上折 + */ + private Integer isRepeatDiscount; + + /** + *是否全场促销 + */ + private Integer isAll; + + /** + *商品黑名单 + */ + private String goodsBlackList; + + /** + *优惠类型 + */ + private Integer discountType; + + /** + *优惠值 + */ + private Double discountValue; + + /** + *促销规则 + */ + private String rule; + + /** + *制单人 + */ + private String setMan; + + /** + *制单时间 + */ + private Date setTime; + + /** + *状态 + */ + private Integer status; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :任务编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSn() { + return this.sn; + } + + /** + * 字段名称 :任务编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSn(String sn) { + this.sn = sn; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPromotionId() { + return this.promotionId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPromotionId(String promotionId) { + this.promotionId = promotionId; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPromotionSn() { + return this.promotionSn; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPromotionSn(String promotionSn) { + this.promotionSn = promotionSn; + } + + /** + * 字段名称 :促销类型 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPromotionType() { + return this.promotionType; + } + + /** + * 字段名称 :促销类型 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPromotionType(String promotionType) { + this.promotionType = promotionType; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :值类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getValueType() { + return this.valueType; + } + + /** + * 字段名称 :值类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setValueType(Integer valueType) { + this.valueType = valueType; + } + + /** + * 字段名称 :值Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getValueId() { + return this.valueId; + } + + /** + * 字段名称 :值Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setValueId(String valueId) { + this.valueId = valueId; + } + + /** + * 字段名称 :值编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getValueNo() { + return this.valueNo; + } + + /** + * 字段名称 :值编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setValueNo(String valueNo) { + this.valueNo = valueNo; + } + + /** + * 字段名称 :值名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getValueName() { + return this.valueName; + } + + /** + * 字段名称 :值名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setValueName(String valueName) { + this.valueName = valueName; + } + + /** + * 字段名称 :值扩展1 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getValueExt1() { + return this.valueExt1; + } + + /** + * 字段名称 :值扩展1 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setValueExt1(String valueExt1) { + this.valueExt1 = valueExt1; + } + + /** + * 字段名称 :值扩展2 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getValueExt2() { + return this.valueExt2; + } + + /** + * 字段名称 :值扩展2 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setValueExt2(String valueExt2) { + this.valueExt2 = valueExt2; + } + + /** + * 字段名称 :促销方案Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSchemeId() { + return this.schemeId; + } + + /** + * 字段名称 :促销方案Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSchemeId(String schemeId) { + this.schemeId = schemeId; + } + + /** + * 字段名称 :方案编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSchemeSn() { + return this.schemeSn; + } + + /** + * 字段名称 :方案编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSchemeSn(String schemeSn) { + this.schemeSn = schemeSn; + } + + /** + * 字段名称 :开始日期 + * 数据类型 :date + * 是否必填 :false + */ + public Date getStartDate() { + return this.startDate; + } + + /** + * 字段名称 :开始日期 + * 数据类型 :date + * 是否必填 :false + */ + public void setStartDate(Date startDate) { + this.startDate = startDate; + } + + /** + * 字段名称 :结束日期 + * 数据类型 :date + * 是否必填 :false + */ + public Date getEndDate() { + return this.endDate; + } + + /** + * 字段名称 :结束日期 + * 数据类型 :date + * 是否必填 :false + */ + public void setEndDate(Date endDate) { + this.endDate = endDate; + } + + /** + * 字段名称 :开始时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStartTime() { + return this.startTime; + } + + /** + * 字段名称 :开始时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStartTime(String startTime) { + this.startTime = startTime; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getEndTime() { + return this.endTime; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setEndTime(String endTime) { + this.endTime = endTime; + } + + /** + * 字段名称 :每周频率 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getValidWeek() { + return this.validWeek; + } + + /** + * 字段名称 :每周频率 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setValidWeek(String validWeek) { + this.validWeek = validWeek; + } + + /** + * 字段名称 :每月频率 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getValidMonth() { + return this.validMonth; + } + + /** + * 字段名称 :每月频率 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setValidMonth(String validMonth) { + this.validMonth = validMonth; + } + + /** + * 字段名称 :是否会员专享 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsOnlyMember() { + return this.isOnlyMember; + } + + /** + * 字段名称 :是否会员专享 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsOnlyMember(Integer isOnlyMember) { + this.isOnlyMember = isOnlyMember; + } + + /** + * 字段名称 :是否会员折上折 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsRepeatDiscount() { + return this.isRepeatDiscount; + } + + /** + * 字段名称 :是否会员折上折 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsRepeatDiscount(Integer isRepeatDiscount) { + this.isRepeatDiscount = isRepeatDiscount; + } + + /** + * 字段名称 :是否全场促销 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsAll() { + return this.isAll; + } + + /** + * 字段名称 :是否全场促销 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsAll(Integer isAll) { + this.isAll = isAll; + } + + /** + * 字段名称 :商品黑名单 + * 数据类型 :text + * 是否必填 :false + */ + public String getGoodsBlackList() { + return this.goodsBlackList; + } + + /** + * 字段名称 :商品黑名单 + * 数据类型 :text + * 是否必填 :false + */ + public void setGoodsBlackList(String goodsBlackList) { + this.goodsBlackList = goodsBlackList; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDiscountType() { + return this.discountType; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setDiscountType(Integer discountType) { + this.discountType = discountType; + } + + /** + * 字段名称 :优惠值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDiscountValue() { + return this.discountValue; + } + + /** + * 字段名称 :优惠值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDiscountValue(Double discountValue) { + this.discountValue = discountValue; + } + + /** + * 字段名称 :促销规则 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getRule() { + return this.rule; + } + + /** + * 字段名称 :促销规则 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setRule(String rule) { + this.rule = rule; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSetMan() { + return this.setMan; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSetMan(String setMan) { + this.setMan = setMan; + } + + /** + * 字段名称 :制单时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSetTime() { + return this.setTime; + } + + /** + * 字段名称 :制单时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSetTime(Date setTime) { + this.setTime = setTime; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionTicket.java new file mode 100644 index 0000000..9a6c5ed --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramPromotionTicket.java @@ -0,0 +1,663 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序促销单 + * 表代码:cy_program_promotion_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionTicket") +public class ProgramPromotionTicket extends BaseEntity { + + private static final long serialVersionUID = 1610191714781308625L; + + /** + *设置ID + */ + private String programId; + + /** + *促销单号 + */ + private String sn; + + /** + *促销类型 + */ + private String type; + + /** + *开始日期 + */ + private Date startDate; + + /** + *结束日期 + */ + private Date endDate; + + /** + *开始时间 + */ + private String startTime; + + /** + *结束时间 + */ + private String endTime; + + /** + *每周频率 + */ + private String validWeek; + + /** + *每月频率 + */ + private String validMonth; + + /** + *是否会员专享 + */ + private Integer isOnlyMember; + + /** + *是否全场促销 + */ + private Integer isAll; + + /** + *是否所有门店促销 + */ + private Integer isAllStore; + + /** + *是否会员折上折 + */ + private Integer isRepeatDiscount; + + /** + *是否启用商品 + */ + private Integer isGoods; + + /** + *是否启用品类 + */ + private Integer isCategory; + + /** + *是否启用门店 + */ + private Integer isStore; + + /** + *是否启用区域 + */ + private Integer isStoreArea; + + /** + *是否启用区域黑名单 + */ + private Integer isAreaBlack; + + /** + *是否启用门店黑名单 + */ + private Integer isStoreBlack; + + /** + *是否启用商品黑名单 + */ + private Integer isGoodsBlack; + + /** + *状态 + */ + private Integer status; + + /** + *备注 + */ + private String memo; + + /** + *审核人 + */ + private String confirmUser; + + /** + *审核日期 + */ + private Date confirmDate; + + /** + *审核状态 + */ + private Integer confirmStatus; + + /** + *最末任务日期 + */ + private String lastTaskDate; + + /** + *最末任务序号 + */ + private String lastTaskNo; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :促销单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSn() { + return this.sn; + } + + /** + * 字段名称 :促销单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSn(String sn) { + this.sn = sn; + } + + /** + * 字段名称 :促销类型 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getType() { + return this.type; + } + + /** + * 字段名称 :促销类型 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setType(String type) { + this.type = type; + } + + /** + * 字段名称 :开始日期 + * 数据类型 :date + * 是否必填 :false + */ + public Date getStartDate() { + return this.startDate; + } + + /** + * 字段名称 :开始日期 + * 数据类型 :date + * 是否必填 :false + */ + public void setStartDate(Date startDate) { + this.startDate = startDate; + } + + /** + * 字段名称 :结束日期 + * 数据类型 :date + * 是否必填 :false + */ + public Date getEndDate() { + return this.endDate; + } + + /** + * 字段名称 :结束日期 + * 数据类型 :date + * 是否必填 :false + */ + public void setEndDate(Date endDate) { + this.endDate = endDate; + } + + /** + * 字段名称 :开始时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStartTime() { + return this.startTime; + } + + /** + * 字段名称 :开始时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStartTime(String startTime) { + this.startTime = startTime; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getEndTime() { + return this.endTime; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setEndTime(String endTime) { + this.endTime = endTime; + } + + /** + * 字段名称 :每周频率 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getValidWeek() { + return this.validWeek; + } + + /** + * 字段名称 :每周频率 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setValidWeek(String validWeek) { + this.validWeek = validWeek; + } + + /** + * 字段名称 :每月频率 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getValidMonth() { + return this.validMonth; + } + + /** + * 字段名称 :每月频率 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setValidMonth(String validMonth) { + this.validMonth = validMonth; + } + + /** + * 字段名称 :是否会员专享 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsOnlyMember() { + return this.isOnlyMember; + } + + /** + * 字段名称 :是否会员专享 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsOnlyMember(Integer isOnlyMember) { + this.isOnlyMember = isOnlyMember; + } + + /** + * 字段名称 :是否全场促销 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsAll() { + return this.isAll; + } + + /** + * 字段名称 :是否全场促销 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsAll(Integer isAll) { + this.isAll = isAll; + } + + /** + * 字段名称 :是否所有门店促销 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsAllStore() { + return this.isAllStore; + } + + /** + * 字段名称 :是否所有门店促销 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsAllStore(Integer isAllStore) { + this.isAllStore = isAllStore; + } + + /** + * 字段名称 :是否会员折上折 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsRepeatDiscount() { + return this.isRepeatDiscount; + } + + /** + * 字段名称 :是否会员折上折 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsRepeatDiscount(Integer isRepeatDiscount) { + this.isRepeatDiscount = isRepeatDiscount; + } + + /** + * 字段名称 :是否启用商品 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsGoods() { + return this.isGoods; + } + + /** + * 字段名称 :是否启用商品 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsGoods(Integer isGoods) { + this.isGoods = isGoods; + } + + /** + * 字段名称 :是否启用品类 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsCategory() { + return this.isCategory; + } + + /** + * 字段名称 :是否启用品类 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsCategory(Integer isCategory) { + this.isCategory = isCategory; + } + + /** + * 字段名称 :是否启用门店 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsStore() { + return this.isStore; + } + + /** + * 字段名称 :是否启用门店 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsStore(Integer isStore) { + this.isStore = isStore; + } + + /** + * 字段名称 :是否启用区域 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsStoreArea() { + return this.isStoreArea; + } + + /** + * 字段名称 :是否启用区域 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsStoreArea(Integer isStoreArea) { + this.isStoreArea = isStoreArea; + } + + /** + * 字段名称 :是否启用区域黑名单 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsAreaBlack() { + return this.isAreaBlack; + } + + /** + * 字段名称 :是否启用区域黑名单 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsAreaBlack(Integer isAreaBlack) { + this.isAreaBlack = isAreaBlack; + } + + /** + * 字段名称 :是否启用门店黑名单 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsStoreBlack() { + return this.isStoreBlack; + } + + /** + * 字段名称 :是否启用门店黑名单 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsStoreBlack(Integer isStoreBlack) { + this.isStoreBlack = isStoreBlack; + } + + /** + * 字段名称 :是否启用商品黑名单 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsGoodsBlack() { + return this.isGoodsBlack; + } + + /** + * 字段名称 :是否启用商品黑名单 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsGoodsBlack(Integer isGoodsBlack) { + this.isGoodsBlack = isGoodsBlack; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getMemo() { + return this.memo; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setMemo(String memo) { + this.memo = memo; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getConfirmUser() { + return this.confirmUser; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setConfirmUser(String confirmUser) { + this.confirmUser = confirmUser; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getConfirmDate() { + return this.confirmDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setConfirmDate(Date confirmDate) { + this.confirmDate = confirmDate; + } + + /** + * 字段名称 :审核状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getConfirmStatus() { + return this.confirmStatus; + } + + /** + * 字段名称 :审核状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setConfirmStatus(Integer confirmStatus) { + this.confirmStatus = confirmStatus; + } + + /** + * 字段名称 :最末任务日期 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getLastTaskDate() { + return this.lastTaskDate; + } + + /** + * 字段名称 :最末任务日期 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setLastTaskDate(String lastTaskDate) { + this.lastTaskDate = lastTaskDate; + } + + /** + * 字段名称 :最末任务序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getLastTaskNo() { + return this.lastTaskNo; + } + + /** + * 字段名称 :最末任务序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setLastTaskNo(String lastTaskNo) { + this.lastTaskNo = lastTaskNo; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramSetting.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramSetting.java new file mode 100644 index 0000000..684631a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramSetting.java @@ -0,0 +1,433 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序设置 + * 表代码:cy_program_setting + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramSetting") +public class ProgramSetting extends BaseEntity { + + private static final long serialVersionUID = 1484167279848666918L; + + /** + *名称 + */ + private String name; + + /** + *类型 + */ + private Integer type; + + /** + *主题配色 + */ + private String color; + + /** + *是否启用会员 + */ + private Integer memberFlag; + + /** + *启用线上资料独立 + */ + private Integer lineFlag; + + /** + *首页样式 + */ + private Integer indexStyle; + + /** + *微信授权状态 + */ + private Integer wxStatus; + + /** + *微信配置 + */ + private String wxBoday; + + /** + *支付宝授权状态 + */ + private Integer aliStatus; + + /** + *支付宝配置 + */ + private String aliBoday; + + /** + *微信模板消息配置 + */ + private String wxTemplate; + + /** + *支付宝模板消息配置 + */ + private String aliTemplate; + + /** + *餐饮平台配置 + */ + private String cyApi; + + /** + *会员平台配置 + */ + private String cardApi; + + /** + *备注 + */ + private String description; + + /** + *加密串 + */ + private String wid; + + /** + *启用标识 + */ + private Integer enableFlag; + + /** + *当前版本号 + */ + private Integer dataVersion; + + + /** + * 字段名称 :名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :主题配色 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getColor() { + return this.color; + } + + /** + * 字段名称 :主题配色 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setColor(String color) { + this.color = color; + } + + /** + * 字段名称 :是否启用会员 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getMemberFlag() { + return this.memberFlag; + } + + /** + * 字段名称 :是否启用会员 + * 数据类型 :int + * 是否必填 :false + */ + public void setMemberFlag(Integer memberFlag) { + this.memberFlag = memberFlag; + } + + /** + * 字段名称 :启用线上资料独立 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getLineFlag() { + return this.lineFlag; + } + + /** + * 字段名称 :启用线上资料独立 + * 数据类型 :int + * 是否必填 :false + */ + public void setLineFlag(Integer lineFlag) { + this.lineFlag = lineFlag; + } + + /** + * 字段名称 :首页样式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIndexStyle() { + return this.indexStyle; + } + + /** + * 字段名称 :首页样式 + * 数据类型 :int + * 是否必填 :false + */ + public void setIndexStyle(Integer indexStyle) { + this.indexStyle = indexStyle; + } + + /** + * 字段名称 :微信授权状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getWxStatus() { + return this.wxStatus; + } + + /** + * 字段名称 :微信授权状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setWxStatus(Integer wxStatus) { + this.wxStatus = wxStatus; + } + + /** + * 字段名称 :微信配置 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getWxBoday() { + return this.wxBoday; + } + + /** + * 字段名称 :微信配置 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setWxBoday(String wxBoday) { + this.wxBoday = wxBoday; + } + + /** + * 字段名称 :支付宝授权状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getAliStatus() { + return this.aliStatus; + } + + /** + * 字段名称 :支付宝授权状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setAliStatus(Integer aliStatus) { + this.aliStatus = aliStatus; + } + + /** + * 字段名称 :支付宝配置 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getAliBoday() { + return this.aliBoday; + } + + /** + * 字段名称 :支付宝配置 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setAliBoday(String aliBoday) { + this.aliBoday = aliBoday; + } + + /** + * 字段名称 :微信模板消息配置 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getWxTemplate() { + return this.wxTemplate; + } + + /** + * 字段名称 :微信模板消息配置 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setWxTemplate(String wxTemplate) { + this.wxTemplate = wxTemplate; + } + + /** + * 字段名称 :支付宝模板消息配置 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getAliTemplate() { + return this.aliTemplate; + } + + /** + * 字段名称 :支付宝模板消息配置 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setAliTemplate(String aliTemplate) { + this.aliTemplate = aliTemplate; + } + + /** + * 字段名称 :餐饮平台配置 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getCyApi() { + return this.cyApi; + } + + /** + * 字段名称 :餐饮平台配置 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setCyApi(String cyApi) { + this.cyApi = cyApi; + } + + /** + * 字段名称 :会员平台配置 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getCardApi() { + return this.cardApi; + } + + /** + * 字段名称 :会员平台配置 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setCardApi(String cardApi) { + this.cardApi = cardApi; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :加密串 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getWid() { + return this.wid; + } + + /** + * 字段名称 :加密串 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setWid(String wid) { + this.wid = wid; + } + + /** + * 字段名称 :启用标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnableFlag() { + return this.enableFlag; + } + + /** + * 字段名称 :启用标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setEnableFlag(Integer enableFlag) { + this.enableFlag = enableFlag; + } + + /** + * 字段名称 :当前版本号 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDataVersion() { + return this.dataVersion; + } + + /** + * 字段名称 :当前版本号 + * 数据类型 :int + * 是否必填 :false + */ + public void setDataVersion(Integer dataVersion) { + this.dataVersion = dataVersion; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStore.java new file mode 100644 index 0000000..b1ca792 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStore.java @@ -0,0 +1,870 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序门店信息 + * 表代码:cy_program_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramStore") +public class ProgramStore extends BaseEntity { + + private static final long serialVersionUID = 1382754202478954796L; + + /** + *设置ID + */ + private String programId; + + /** + *关联门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *订餐电话 + */ + private String orderTel; + + /** + *地址 + */ + private String address; + + /** + *纬度 + */ + private Double latitude; + + /** + *经度 + */ + private Double longitude; + + /** + *公告信息 + */ + private String noticeInfo; + + /** + *是否营业 + */ + private Integer isOpen; + + /** + *是否启用会员价 + */ + private Integer memberPriceEnabled; + + /** + *是否启用会员支付 + */ + private Integer memberPayEnabled; + + /** + *是否启用门店做法 + */ + private Integer storeMakeEnabled; + + /** + *是否启用独立支付参数 + */ + private Integer paymentParamEnabled; + + /** + *营业时间类型 + */ + private Integer openTimeType; + + /** + *营业时间 + */ + private String openTime; + + /** + *是否第三方配送 + */ + private Integer discomFlag; + + /** + *是否自动呼叫配送 + */ + private Integer autoDeliveryFlag; + + /** + *自配送范围(公里) + */ + private Double distributionSelfLimits; + + /** + *配送类型 + */ + private Integer deliverType; + + /** + *配送类型参数 + */ + private String deliverParameter; + + /** + *配送费 + */ + private Double deliverFee; + + /** + *配送费减免类型 + */ + private Integer deliverFeeDiscountType; + + /** + *配送费减免规则 + */ + private String deliverFeeDiscountRule; + + /** + *外卖起送金额 + */ + private Double deliverMoney; + + /** + *配送范围(公里) + */ + private Double deliverKilometre; + + /** + *营业模式 + */ + private String busModes; + + /** + *外带模式是否收取餐盒费 + */ + private Integer takeOutBoxFeeFlag; + + /** + *图片名称 + */ + private String name; + + /** + *图片宽度 + */ + private Integer width; + + /** + *图片高度 + */ + private Integer height; + + /** + *存储组名 + */ + private String groupName; + + /** + *存储文件名 + */ + private String storageFileName; + + /** + *链接地址 + */ + private String linkUrl; + + /** + *备注自定义标签 + */ + private String memoTags; + + /** + *是否启用 + */ + private Integer enabled; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :关联门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :关联门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :订餐电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getOrderTel() { + return this.orderTel; + } + + /** + * 字段名称 :订餐电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setOrderTel(String orderTel) { + this.orderTel = orderTel; + } + + /** + * 字段名称 :地址 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getAddress() { + return this.address; + } + + /** + * 字段名称 :地址 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setAddress(String address) { + this.address = address; + } + + /** + * 字段名称 :纬度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public Double getLatitude() { + return this.latitude; + } + + /** + * 字段名称 :纬度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public void setLatitude(Double latitude) { + this.latitude = latitude; + } + + /** + * 字段名称 :经度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public Double getLongitude() { + return this.longitude; + } + + /** + * 字段名称 :经度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public void setLongitude(Double longitude) { + this.longitude = longitude; + } + + /** + * 字段名称 :公告信息 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getNoticeInfo() { + return this.noticeInfo; + } + + /** + * 字段名称 :公告信息 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setNoticeInfo(String noticeInfo) { + this.noticeInfo = noticeInfo; + } + + /** + * 字段名称 :是否营业 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsOpen() { + return this.isOpen; + } + + /** + * 字段名称 :是否营业 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsOpen(Integer isOpen) { + this.isOpen = isOpen; + } + + /** + * 字段名称 :是否启用会员价 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getMemberPriceEnabled() { + return this.memberPriceEnabled; + } + + /** + * 字段名称 :是否启用会员价 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setMemberPriceEnabled(Integer memberPriceEnabled) { + this.memberPriceEnabled = memberPriceEnabled; + } + + /** + * 字段名称 :是否启用会员支付 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getMemberPayEnabled() { + return this.memberPayEnabled; + } + + /** + * 字段名称 :是否启用会员支付 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setMemberPayEnabled(Integer memberPayEnabled) { + this.memberPayEnabled = memberPayEnabled; + } + + /** + * 字段名称 :是否启用门店做法 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getStoreMakeEnabled() { + return this.storeMakeEnabled; + } + + /** + * 字段名称 :是否启用门店做法 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setStoreMakeEnabled(Integer storeMakeEnabled) { + this.storeMakeEnabled = storeMakeEnabled; + } + + /** + * 字段名称 :是否启用独立支付参数 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getPaymentParamEnabled() { + return this.paymentParamEnabled; + } + + /** + * 字段名称 :是否启用独立支付参数 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setPaymentParamEnabled(Integer paymentParamEnabled) { + this.paymentParamEnabled = paymentParamEnabled; + } + + /** + * 字段名称 :营业时间类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOpenTimeType() { + return this.openTimeType; + } + + /** + * 字段名称 :营业时间类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setOpenTimeType(Integer openTimeType) { + this.openTimeType = openTimeType; + } + + /** + * 字段名称 :营业时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOpenTime() { + return this.openTime; + } + + /** + * 字段名称 :营业时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOpenTime(String openTime) { + this.openTime = openTime; + } + + /** + * 字段名称 :是否第三方配送 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getDiscomFlag() { + return this.discomFlag; + } + + /** + * 字段名称 :是否第三方配送 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setDiscomFlag(Integer discomFlag) { + this.discomFlag = discomFlag; + } + + /** + * 字段名称 :是否自动呼叫配送 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getAutoDeliveryFlag() { + return this.autoDeliveryFlag; + } + + /** + * 字段名称 :是否自动呼叫配送 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setAutoDeliveryFlag(Integer autoDeliveryFlag) { + this.autoDeliveryFlag = autoDeliveryFlag; + } + + /** + * 字段名称 :自配送范围(公里) + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDistributionSelfLimits() { + return this.distributionSelfLimits; + } + + /** + * 字段名称 :自配送范围(公里) + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDistributionSelfLimits(Double distributionSelfLimits) { + this.distributionSelfLimits = distributionSelfLimits; + } + + /** + * 字段名称 :配送类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeliverType() { + return this.deliverType; + } + + /** + * 字段名称 :配送类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeliverType(Integer deliverType) { + this.deliverType = deliverType; + } + + /** + * 字段名称 :配送类型参数 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getDeliverParameter() { + return this.deliverParameter; + } + + /** + * 字段名称 :配送类型参数 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setDeliverParameter(String deliverParameter) { + this.deliverParameter = deliverParameter; + } + + /** + * 字段名称 :配送费 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDeliverFee() { + return this.deliverFee; + } + + /** + * 字段名称 :配送费 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDeliverFee(Double deliverFee) { + this.deliverFee = deliverFee; + } + + /** + * 字段名称 :配送费减免类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeliverFeeDiscountType() { + return this.deliverFeeDiscountType; + } + + /** + * 字段名称 :配送费减免类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeliverFeeDiscountType(Integer deliverFeeDiscountType) { + this.deliverFeeDiscountType = deliverFeeDiscountType; + } + + /** + * 字段名称 :配送费减免规则 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeliverFeeDiscountRule() { + return this.deliverFeeDiscountRule; + } + + /** + * 字段名称 :配送费减免规则 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeliverFeeDiscountRule(String deliverFeeDiscountRule) { + this.deliverFeeDiscountRule = deliverFeeDiscountRule; + } + + /** + * 字段名称 :外卖起送金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDeliverMoney() { + return this.deliverMoney; + } + + /** + * 字段名称 :外卖起送金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDeliverMoney(Double deliverMoney) { + this.deliverMoney = deliverMoney; + } + + /** + * 字段名称 :配送范围(公里) + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDeliverKilometre() { + return this.deliverKilometre; + } + + /** + * 字段名称 :配送范围(公里) + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDeliverKilometre(Double deliverKilometre) { + this.deliverKilometre = deliverKilometre; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getBusModes() { + return this.busModes; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setBusModes(String busModes) { + this.busModes = busModes; + } + + /** + * 字段名称 :外带模式是否收取餐盒费 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getTakeOutBoxFeeFlag() { + return this.takeOutBoxFeeFlag; + } + + /** + * 字段名称 :外带模式是否收取餐盒费 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setTakeOutBoxFeeFlag(Integer takeOutBoxFeeFlag) { + this.takeOutBoxFeeFlag = takeOutBoxFeeFlag; + } + + /** + * 字段名称 :图片名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :图片名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getWidth() { + return this.width; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public void setWidth(Integer width) { + this.width = width; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getHeight() { + return this.height; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public void setHeight(Integer height) { + this.height = height; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getGroupName() { + return this.groupName; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getStorageFileName() { + return this.storageFileName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setStorageFileName(String storageFileName) { + this.storageFileName = storageFileName; + } + + /** + * 字段名称 :链接地址 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getLinkUrl() { + return this.linkUrl; + } + + /** + * 字段名称 :链接地址 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setLinkUrl(String linkUrl) { + this.linkUrl = linkUrl; + } + + /** + * 字段名称 :备注自定义标签 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getMemoTags() { + return this.memoTags; + } + + /** + * 字段名称 :备注自定义标签 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setMemoTags(String memoTags) { + this.memoTags = memoTags; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnabled() { + return this.enabled; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setEnabled(Integer enabled) { + this.enabled = enabled; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreBusinessTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreBusinessTicket.java new file mode 100644 index 0000000..31551d3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreBusinessTicket.java @@ -0,0 +1,1031 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序销售单 + * 表代码:cy_program_store_business_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreBusinessTicket") +public class ProgramStoreBusinessTicket extends BaseEntity { + + private static final long serialVersionUID = 1367893789975937579L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *会员ID + */ + private String memberId; + + /** + *会员openId + */ + private String openId; + + /** + *来源类型 + */ + private Integer sourceType; + + /** + *头像 + */ + private String touxiang; + + /** + *会员姓名 + */ + private String memberName; + + /** + *手机号 + */ + private String mobile; + + /** + *设置ID + */ + private String programId; + + /** + *单据编号 + */ + private String no; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *单据状态 + */ + private Integer status; + + /** + *配送状态 + */ + private Integer deliverStatus; + + /** + *退单状态 + */ + private Integer refundStatus; + + /** + *销售时间 + */ + private Date saleDate; + + /** + *餐桌号 + */ + private String tableNo; + + /** + *桌台名称 + */ + private String tableName; + + /** + *人数 + */ + private Integer people; + + /** + *营业模式 + */ + private Integer busMode; + + /** + *预定时间 + */ + private String reserveTime; + + /** + *配送费 + */ + private Double deliverFee; + + /** + *餐盒费 + */ + private Double packageFee; + + /** + *消费金额 + */ + private Double amount; + + /** + *优惠率 + */ + private Double discount; + + /** + *优惠额 + */ + private Double discountTotal; + + /** + *应收金额 + */ + private Double receivable; + + /** + *抹零金额 + */ + private Double maling; + + /** + *实收金额 + */ + private Double paid; + + /** + *原单号 + */ + private String noOrg; + + /** + *退单原因 + */ + private String backCause; + + /** + *是否使用会员卡 + */ + private Integer isMember; + + /** + *会员卡号 + */ + private String memberNo; + + /** + *本单积分 + */ + private Double memberJifen; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *当日流水号 + */ + private String seqNo; + + /** + *天气 + */ + private String weather; + + /** + *星期 + */ + private String weeker; + + /** + *扣率 + */ + private Double deductionRate; + + /** + *扣款 + */ + private Double chargeBack; + + /** + *是否结算 + */ + private Integer settleFlag; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :会员ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMemberId() { + return this.memberId; + } + + /** + * 字段名称 :会员ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMemberId(String memberId) { + this.memberId = memberId; + } + + /** + * 字段名称 :会员openId + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOpenId() { + return this.openId; + } + + /** + * 字段名称 :会员openId + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOpenId(String openId) { + this.openId = openId; + } + + /** + * 字段名称 :来源类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSourceType() { + return this.sourceType; + } + + /** + * 字段名称 :来源类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setSourceType(Integer sourceType) { + this.sourceType = sourceType; + } + + /** + * 字段名称 :头像 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getTouxiang() { + return this.touxiang; + } + + /** + * 字段名称 :头像 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setTouxiang(String touxiang) { + this.touxiang = touxiang; + } + + /** + * 字段名称 :会员姓名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMemberName() { + return this.memberName; + } + + /** + * 字段名称 :会员姓名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMemberName(String memberName) { + this.memberName = memberName; + } + + /** + * 字段名称 :手机号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMobile() { + return this.mobile; + } + + /** + * 字段名称 :手机号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMobile(String mobile) { + this.mobile = mobile; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :配送状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeliverStatus() { + return this.deliverStatus; + } + + /** + * 字段名称 :配送状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeliverStatus(Integer deliverStatus) { + this.deliverStatus = deliverStatus; + } + + /** + * 字段名称 :退单状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getRefundStatus() { + return this.refundStatus; + } + + /** + * 字段名称 :退单状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setRefundStatus(Integer refundStatus) { + this.refundStatus = refundStatus; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTableNo() { + return this.tableNo; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTableNo(String tableNo) { + this.tableNo = tableNo; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTableName() { + return this.tableName; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTableName(String tableName) { + this.tableName = tableName; + } + + /** + * 字段名称 :人数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPeople() { + return this.people; + } + + /** + * 字段名称 :人数 + * 数据类型 :int + * 是否必填 :false + */ + public void setPeople(Integer people) { + this.people = people; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBusMode() { + return this.busMode; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public void setBusMode(Integer busMode) { + this.busMode = busMode; + } + + /** + * 字段名称 :预定时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getReserveTime() { + return this.reserveTime; + } + + /** + * 字段名称 :预定时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setReserveTime(String reserveTime) { + this.reserveTime = reserveTime; + } + + /** + * 字段名称 :配送费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDeliverFee() { + return this.deliverFee; + } + + /** + * 字段名称 :配送费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDeliverFee(Double deliverFee) { + this.deliverFee = deliverFee; + } + + /** + * 字段名称 :餐盒费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPackageFee() { + return this.packageFee; + } + + /** + * 字段名称 :餐盒费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPackageFee(Double packageFee) { + this.packageFee = packageFee; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountTotal() { + return this.discountTotal; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountTotal(Double discountTotal) { + this.discountTotal = discountTotal; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivable() { + return this.receivable; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivable(Double receivable) { + this.receivable = receivable; + } + + /** + * 字段名称 :抹零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMaling() { + return this.maling; + } + + /** + * 字段名称 :抹零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMaling(Double maling) { + this.maling = maling; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPaid() { + return this.paid; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPaid(Double paid) { + this.paid = paid; + } + + /** + * 字段名称 :原单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNoOrg() { + return this.noOrg; + } + + /** + * 字段名称 :原单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNoOrg(String noOrg) { + this.noOrg = noOrg; + } + + /** + * 字段名称 :退单原因 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getBackCause() { + return this.backCause; + } + + /** + * 字段名称 :退单原因 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setBackCause(String backCause) { + this.backCause = backCause; + } + + /** + * 字段名称 :是否使用会员卡 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsMember() { + return this.isMember; + } + + /** + * 字段名称 :是否使用会员卡 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsMember(Integer isMember) { + this.isMember = isMember; + } + + /** + * 字段名称 :会员卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMemberNo() { + return this.memberNo; + } + + /** + * 字段名称 :会员卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMemberNo(String memberNo) { + this.memberNo = memberNo; + } + + /** + * 字段名称 :本单积分 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMemberJifen() { + return this.memberJifen; + } + + /** + * 字段名称 :本单积分 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMemberJifen(Double memberJifen) { + this.memberJifen = memberJifen; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :当日流水号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSeqNo() { + return this.seqNo; + } + + /** + * 字段名称 :当日流水号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSeqNo(String seqNo) { + this.seqNo = seqNo; + } + + /** + * 字段名称 :天气 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getWeather() { + return this.weather; + } + + /** + * 字段名称 :天气 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setWeather(String weather) { + this.weather = weather; + } + + /** + * 字段名称 :星期 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getWeeker() { + return this.weeker; + } + + /** + * 字段名称 :星期 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setWeeker(String weeker) { + this.weeker = weeker; + } + + /** + * 字段名称 :扣率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDeductionRate() { + return this.deductionRate; + } + + /** + * 字段名称 :扣率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDeductionRate(Double deductionRate) { + this.deductionRate = deductionRate; + } + + /** + * 字段名称 :扣款 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getChargeBack() { + return this.chargeBack; + } + + /** + * 字段名称 :扣款 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setChargeBack(Double chargeBack) { + this.chargeBack = chargeBack; + } + + /** + * 字段名称 :是否结算 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getSettleFlag() { + return this.settleFlag; + } + + /** + * 字段名称 :是否结算 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setSettleFlag(Integer settleFlag) { + this.settleFlag = settleFlag; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreBusinessTicketDeliver.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreBusinessTicketDeliver.java new file mode 100644 index 0000000..4a28e86 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreBusinessTicketDeliver.java @@ -0,0 +1,525 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序销售单配送信息 + * 表代码:cy_program_store_business_ticket_deliver + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreBusinessTicketDeliver") +public class ProgramStoreBusinessTicketDeliver extends BaseEntity { + + private static final long serialVersionUID = 1241487038941341348L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *门店ID + */ + private String storeId; + + /** + *设置ID + */ + private String programId; + + /** + *销售单ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String busNo; + + /** + *订餐电话 + */ + private String orderTel; + + /** + *订餐姓名 + */ + private String name; + + /** + *订餐地址 + */ + private String address; + + /** + *纬度 + */ + private Double latitude; + + /** + *经度 + */ + private Double longitude; + + /** + *配送类型 + */ + private Integer deliverType; + + /** + *配送公司名称 + */ + private String deliverComName; + + /** + *配送费 + */ + private Double deliverFee; + + /** + *骑手电话 + */ + private String logisticsDispatcherMobile; + + /** + *骑手姓名 + */ + private String logisticsDispatcherName; + + /** + *骑手接单时间 + */ + private String logisticsReceiptTime; + + /** + *骑手取餐时间 + */ + private String logisticsFetchTime; + + /** + *送达时间 + */ + private String logisticsFinishTime; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :订餐电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getOrderTel() { + return this.orderTel; + } + + /** + * 字段名称 :订餐电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setOrderTel(String orderTel) { + this.orderTel = orderTel; + } + + /** + * 字段名称 :订餐姓名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :订餐姓名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :订餐地址 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getAddress() { + return this.address; + } + + /** + * 字段名称 :订餐地址 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setAddress(String address) { + this.address = address; + } + + /** + * 字段名称 :纬度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public Double getLatitude() { + return this.latitude; + } + + /** + * 字段名称 :纬度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public void setLatitude(Double latitude) { + this.latitude = latitude; + } + + /** + * 字段名称 :经度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public Double getLongitude() { + return this.longitude; + } + + /** + * 字段名称 :经度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public void setLongitude(Double longitude) { + this.longitude = longitude; + } + + /** + * 字段名称 :配送类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeliverType() { + return this.deliverType; + } + + /** + * 字段名称 :配送类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeliverType(Integer deliverType) { + this.deliverType = deliverType; + } + + /** + * 字段名称 :配送公司名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDeliverComName() { + return this.deliverComName; + } + + /** + * 字段名称 :配送公司名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDeliverComName(String deliverComName) { + this.deliverComName = deliverComName; + } + + /** + * 字段名称 :配送费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDeliverFee() { + return this.deliverFee; + } + + /** + * 字段名称 :配送费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDeliverFee(Double deliverFee) { + this.deliverFee = deliverFee; + } + + /** + * 字段名称 :骑手电话 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getLogisticsDispatcherMobile() { + return this.logisticsDispatcherMobile; + } + + /** + * 字段名称 :骑手电话 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setLogisticsDispatcherMobile(String logisticsDispatcherMobile) { + this.logisticsDispatcherMobile = logisticsDispatcherMobile; + } + + /** + * 字段名称 :骑手姓名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getLogisticsDispatcherName() { + return this.logisticsDispatcherName; + } + + /** + * 字段名称 :骑手姓名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setLogisticsDispatcherName(String logisticsDispatcherName) { + this.logisticsDispatcherName = logisticsDispatcherName; + } + + /** + * 字段名称 :骑手接单时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLogisticsReceiptTime() { + return this.logisticsReceiptTime; + } + + /** + * 字段名称 :骑手接单时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLogisticsReceiptTime(String logisticsReceiptTime) { + this.logisticsReceiptTime = logisticsReceiptTime; + } + + /** + * 字段名称 :骑手取餐时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLogisticsFetchTime() { + return this.logisticsFetchTime; + } + + /** + * 字段名称 :骑手取餐时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLogisticsFetchTime(String logisticsFetchTime) { + this.logisticsFetchTime = logisticsFetchTime; + } + + /** + * 字段名称 :送达时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLogisticsFinishTime() { + return this.logisticsFinishTime; + } + + /** + * 字段名称 :送达时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLogisticsFinishTime(String logisticsFinishTime) { + this.logisticsFinishTime = logisticsFinishTime; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreBusinessTicketInfo.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreBusinessTicketInfo.java new file mode 100644 index 0000000..f9190b0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreBusinessTicketInfo.java @@ -0,0 +1,318 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序销售单优惠明细 + * 表代码:cy_program_store_business_ticket_info + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreBusinessTicketInfo") +public class ProgramStoreBusinessTicketInfo extends BaseEntity { + + private static final long serialVersionUID = 1381673007635214561L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *门店ID + */ + private String storeId; + + /** + *设置ID + */ + private String programId; + + /** + *销售单ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String busNo; + + /** + *优惠类型 + */ + private Integer type; + + /** + *优惠说明 + */ + private String info; + + /** + *优惠金额 + */ + private Double discountMoney; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *销售时间 + */ + private Date saleDate; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :优惠说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getInfo() { + return this.info; + } + + /** + * 字段名称 :优惠说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setInfo(String info) { + this.info = info; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountMoney() { + return this.discountMoney; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountMoney(Double discountMoney) { + this.discountMoney = discountMoney; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreMake.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreMake.java new file mode 100644 index 0000000..7d6efb8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreMake.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序门店做法关联表 + * 表代码:cy_program_store_make + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreMake") +public class ProgramStoreMake extends BaseEntity { + + private static final long serialVersionUID = 1109442676563822332L; + + /** + *设置ID + */ + private String programId; + + /** + *门店ID + */ + private String storeId; + + /** + *做法类型ID + */ + private String typeId; + + /** + *做法ID + */ + private String makeId; + + /** + *做法说明 + */ + private String description; + + /** + *价格 + */ + private Double price; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :做法类型ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :做法类型ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :做法ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getMakeId() { + return this.makeId; + } + + /** + * 字段名称 :做法ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setMakeId(String makeId) { + this.makeId = makeId; + } + + /** + * 字段名称 :做法说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :做法说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreOrderProduct.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreOrderProduct.java new file mode 100644 index 0000000..e93599b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreOrderProduct.java @@ -0,0 +1,1215 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序产品销售记录 + * 表代码:cy_program_store_order_product + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreOrderProduct") +public class ProgramStoreOrderProduct extends BaseEntity { + + private static final long serialVersionUID = 1008285997628892705L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *父记录ID + */ + private String parentId; + + /** + *设置ID + */ + private String programId; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *销售单ID + */ + private String ticketId; + + /** + *销售单号 + */ + private String busNo; + + /** + *营业模式 + */ + private Integer busMode; + + /** + *桌号 + */ + private String tableNo; + + /** + *桌台名称 + */ + private String tableName; + + /** + *产品ID + */ + private String productId; + + /** + *产品编号 + */ + private String productNo; + + /** + *产品名称 + */ + private String productName; + + /** + *产品单位 + */ + private String productUnitId; + + /** + *产品单位名 + */ + private String productUnitName; + + /** + *商品图片 + */ + private String productImageUrl; + + /** + *大类ID + */ + private String seriesId; + + /** + *大类名称 + */ + private String seriesName; + + /** + *类别路径 + */ + private String typePath; + + /** + *类别ID + */ + private String typeId; + + /** + *类别名 + */ + private String typeName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *数量 + */ + private Double count; + + /** + *退菜数量 + */ + private Double rcount; + + /** + *销售价格 + */ + private Double price; + + /** + *产品原价 + */ + private Double priceOrg; + + /** + *折后价格 + */ + private Double discountPrice; + + /** + *是否套菜 + */ + private Integer isSuit; + + /** + *套菜ID + */ + private String suitId; + + /** + *销售时间 + */ + private Date saleDate; + + /** + *消费金额 + */ + private Double amount; + + /** + *优惠率 + */ + private Double discount; + + /** + *优惠额 + */ + private Double discountTotal; + + /** + *应收金额 + */ + private Double receivable; + + /** + *加价金额 + */ + private Double addPriceTotal; + + /** + *加价优惠金额 + */ + private Double discountAddTotal; + + /** + *加价应收金额 + */ + private Double amountAddTotal; + + /** + *消费总额 + */ + private Double amountTotal; + + /** + *应收总额 + */ + private Double receivableTotal; + + /** + *餐盒费 + */ + private Double packageFee; + + /** + *是否使用会员卡 + */ + private Integer isMember; + + /** + *会员卡号 + */ + private String memberNo; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *行号 + */ + private Integer lineNo; + + /** + *当日流水号 + */ + private String seqNo; + + /** + *天气 + */ + private String weather; + + /** + *星期 + */ + private String weeker; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :父记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getParentId() { + return this.parentId; + } + + /** + * 字段名称 :父记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setParentId(String parentId) { + this.parentId = parentId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBusMode() { + return this.busMode; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public void setBusMode(Integer busMode) { + this.busMode = busMode; + } + + /** + * 字段名称 :桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTableNo() { + return this.tableNo; + } + + /** + * 字段名称 :桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTableNo(String tableNo) { + this.tableNo = tableNo; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTableName() { + return this.tableName; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTableName(String tableName) { + this.tableName = tableName; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :产品名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :产品名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :产品单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductUnitId() { + return this.productUnitId; + } + + /** + * 字段名称 :产品单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductUnitId(String productUnitId) { + this.productUnitId = productUnitId; + } + + /** + * 字段名称 :产品单位名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductUnitName() { + return this.productUnitName; + } + + /** + * 字段名称 :产品单位名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductUnitName(String productUnitName) { + this.productUnitName = productUnitName; + } + + /** + * 字段名称 :商品图片 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getProductImageUrl() { + return this.productImageUrl; + } + + /** + * 字段名称 :商品图片 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setProductImageUrl(String productImageUrl) { + this.productImageUrl = productImageUrl; + } + + /** + * 字段名称 :大类ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSeriesId() { + return this.seriesId; + } + + /** + * 字段名称 :大类ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSeriesId(String seriesId) { + this.seriesId = seriesId; + } + + /** + * 字段名称 :大类名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getSeriesName() { + return this.seriesName; + } + + /** + * 字段名称 :大类名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setSeriesName(String seriesName) { + this.seriesName = seriesName; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getTypePath() { + return this.typePath; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setTypePath(String typePath) { + this.typePath = typePath; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTypeName() { + return this.typeName; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getCount() { + return this.count; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setCount(Double count) { + this.count = count; + } + + /** + * 字段名称 :退菜数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getRcount() { + return this.rcount; + } + + /** + * 字段名称 :退菜数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setRcount(Double rcount) { + this.rcount = rcount; + } + + /** + * 字段名称 :销售价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :销售价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :产品原价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPriceOrg() { + return this.priceOrg; + } + + /** + * 字段名称 :产品原价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPriceOrg(Double priceOrg) { + this.priceOrg = priceOrg; + } + + /** + * 字段名称 :折后价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountPrice() { + return this.discountPrice; + } + + /** + * 字段名称 :折后价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountPrice(Double discountPrice) { + this.discountPrice = discountPrice; + } + + /** + * 字段名称 :是否套菜 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsSuit() { + return this.isSuit; + } + + /** + * 字段名称 :是否套菜 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsSuit(Integer isSuit) { + this.isSuit = isSuit; + } + + /** + * 字段名称 :套菜ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSuitId() { + return this.suitId; + } + + /** + * 字段名称 :套菜ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSuitId(String suitId) { + this.suitId = suitId; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountTotal() { + return this.discountTotal; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountTotal(Double discountTotal) { + this.discountTotal = discountTotal; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivable() { + return this.receivable; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivable(Double receivable) { + this.receivable = receivable; + } + + /** + * 字段名称 :加价金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddPriceTotal() { + return this.addPriceTotal; + } + + /** + * 字段名称 :加价金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddPriceTotal(Double addPriceTotal) { + this.addPriceTotal = addPriceTotal; + } + + /** + * 字段名称 :加价优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountAddTotal() { + return this.discountAddTotal; + } + + /** + * 字段名称 :加价优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountAddTotal(Double discountAddTotal) { + this.discountAddTotal = discountAddTotal; + } + + /** + * 字段名称 :加价应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmountAddTotal() { + return this.amountAddTotal; + } + + /** + * 字段名称 :加价应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmountAddTotal(Double amountAddTotal) { + this.amountAddTotal = amountAddTotal; + } + + /** + * 字段名称 :消费总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmountTotal() { + return this.amountTotal; + } + + /** + * 字段名称 :消费总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmountTotal(Double amountTotal) { + this.amountTotal = amountTotal; + } + + /** + * 字段名称 :应收总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivableTotal() { + return this.receivableTotal; + } + + /** + * 字段名称 :应收总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivableTotal(Double receivableTotal) { + this.receivableTotal = receivableTotal; + } + + /** + * 字段名称 :餐盒费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPackageFee() { + return this.packageFee; + } + + /** + * 字段名称 :餐盒费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPackageFee(Double packageFee) { + this.packageFee = packageFee; + } + + /** + * 字段名称 :是否使用会员卡 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsMember() { + return this.isMember; + } + + /** + * 字段名称 :是否使用会员卡 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsMember(Integer isMember) { + this.isMember = isMember; + } + + /** + * 字段名称 :会员卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMemberNo() { + return this.memberNo; + } + + /** + * 字段名称 :会员卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMemberNo(String memberNo) { + this.memberNo = memberNo; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :行号 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getLineNo() { + return this.lineNo; + } + + /** + * 字段名称 :行号 + * 数据类型 :int + * 是否必填 :false + */ + public void setLineNo(Integer lineNo) { + this.lineNo = lineNo; + } + + /** + * 字段名称 :当日流水号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSeqNo() { + return this.seqNo; + } + + /** + * 字段名称 :当日流水号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSeqNo(String seqNo) { + this.seqNo = seqNo; + } + + /** + * 字段名称 :天气 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getWeather() { + return this.weather; + } + + /** + * 字段名称 :天气 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setWeather(String weather) { + this.weather = weather; + } + + /** + * 字段名称 :星期 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getWeeker() { + return this.weeker; + } + + /** + * 字段名称 :星期 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setWeeker(String weeker) { + this.weeker = weeker; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreOrderProductInfo.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreOrderProductInfo.java new file mode 100644 index 0000000..5d1277a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreOrderProductInfo.java @@ -0,0 +1,387 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序产品销售记录优惠明细 + * 表代码:cy_program_store_order_product_info + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreOrderProductInfo") +public class ProgramStoreOrderProductInfo extends BaseEntity { + + private static final long serialVersionUID = 1881874825524502214L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *设置ID + */ + private String programId; + + /** + *订单明细记录ID + */ + private String orderItemId; + + /** + *门店ID + */ + private String storeId; + + /** + *销售单ID + */ + private String ticketId; + + /** + *销售单号 + */ + private String busNo; + + /** + *优惠类型 + */ + private Integer type; + + /** + *优惠说明 + */ + private String info; + + /** + *优惠金额 + */ + private Double discountMoney; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *销售时间 + */ + private Date saleDate; + + /** + *餐桌号 + */ + private String tableNo; + + /** + *桌台名称 + */ + private String tableName; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :订单明细记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOrderItemId() { + return this.orderItemId; + } + + /** + * 字段名称 :订单明细记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOrderItemId(String orderItemId) { + this.orderItemId = orderItemId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :优惠说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getInfo() { + return this.info; + } + + /** + * 字段名称 :优惠说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setInfo(String info) { + this.info = info; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountMoney() { + return this.discountMoney; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountMoney(Double discountMoney) { + this.discountMoney = discountMoney; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTableNo() { + return this.tableNo; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTableNo(String tableNo) { + this.tableNo = tableNo; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTableName() { + return this.tableName; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTableName(String tableName) { + this.tableName = tableName; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreOrderProductMake.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreOrderProductMake.java new file mode 100644 index 0000000..63297b2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreOrderProductMake.java @@ -0,0 +1,617 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序销售单做法 + * 表代码:cy_program_store_order_product_make + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreOrderProductMake") +public class ProgramStoreOrderProductMake extends BaseEntity { + + private static final long serialVersionUID = 1151683331375068232L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *设置ID + */ + private String programId; + + /** + *订单明细记录ID + */ + private String orderItemId; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *销售单ID + */ + private String ticketId; + + /** + *销售单号 + */ + private String busNo; + + /** + *做法ID + */ + private String makeId; + + /** + *做法名称 + */ + private String makeName; + + /** + *做法加价 + */ + private Double addPrice; + + /** + *做法折后加价 + */ + private Double discountPrice; + + /** + *做法数量 + */ + private Double count; + + /** + *做法退数量 + */ + private Double rcount; + + /** + *加价总额 + */ + private Double addTotal; + + /** + *折后总额 + */ + private Double discountAddTotal; + + /** + *折扣率 + */ + private Double discount; + + /** + *做法管理数量标识 + */ + private Integer qtyFlag; + + /** + *手写做法标识 + */ + private Integer hand; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *销售时间 + */ + private Date saleDate; + + /** + *餐桌号 + */ + private String tableNo; + + /** + *桌台名称 + */ + private String tableName; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :订单明细记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOrderItemId() { + return this.orderItemId; + } + + /** + * 字段名称 :订单明细记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOrderItemId(String orderItemId) { + this.orderItemId = orderItemId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :做法ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMakeId() { + return this.makeId; + } + + /** + * 字段名称 :做法ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMakeId(String makeId) { + this.makeId = makeId; + } + + /** + * 字段名称 :做法名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMakeName() { + return this.makeName; + } + + /** + * 字段名称 :做法名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMakeName(String makeName) { + this.makeName = makeName; + } + + /** + * 字段名称 :做法加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddPrice() { + return this.addPrice; + } + + /** + * 字段名称 :做法加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddPrice(Double addPrice) { + this.addPrice = addPrice; + } + + /** + * 字段名称 :做法折后加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountPrice() { + return this.discountPrice; + } + + /** + * 字段名称 :做法折后加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountPrice(Double discountPrice) { + this.discountPrice = discountPrice; + } + + /** + * 字段名称 :做法数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCount() { + return this.count; + } + + /** + * 字段名称 :做法数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCount(Double count) { + this.count = count; + } + + /** + * 字段名称 :做法退数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getRcount() { + return this.rcount; + } + + /** + * 字段名称 :做法退数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setRcount(Double rcount) { + this.rcount = rcount; + } + + /** + * 字段名称 :加价总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddTotal() { + return this.addTotal; + } + + /** + * 字段名称 :加价总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddTotal(Double addTotal) { + this.addTotal = addTotal; + } + + /** + * 字段名称 :折后总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountAddTotal() { + return this.discountAddTotal; + } + + /** + * 字段名称 :折后总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountAddTotal(Double discountAddTotal) { + this.discountAddTotal = discountAddTotal; + } + + /** + * 字段名称 :折扣率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :折扣率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :做法管理数量标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getQtyFlag() { + return this.qtyFlag; + } + + /** + * 字段名称 :做法管理数量标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setQtyFlag(Integer qtyFlag) { + this.qtyFlag = qtyFlag; + } + + /** + * 字段名称 :手写做法标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getHand() { + return this.hand; + } + + /** + * 字段名称 :手写做法标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setHand(Integer hand) { + this.hand = hand; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTableNo() { + return this.tableNo; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTableNo(String tableNo) { + this.tableNo = tableNo; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTableName() { + return this.tableName; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTableName(String tableName) { + this.tableName = tableName; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStorePay.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStorePay.java new file mode 100644 index 0000000..f37440b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStorePay.java @@ -0,0 +1,824 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序收银流水 + * 表代码:cy_program_store_pay + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramStorePay") +public class ProgramStorePay extends BaseEntity { + + private static final long serialVersionUID = 1659650411885860593L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *设置ID + */ + private String programId; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *付款单号 + */ + private String payNo; + + /** + *销售单ID + */ + private String ticketId; + + /** + *销售单号 + */ + private String busNo; + + /** + *营业模式 + */ + private Integer busMode; + + /** + *餐桌号 + */ + private String tableNo; + + /** + *桌台名称 + */ + private String tableName; + + /** + *付款方式编号 + */ + private String payTypeNo; + + /** + *付款方式 + */ + private String payType; + + /** + *实收金额 + */ + private Double paid; + + /** + *找零金额 + */ + private Double rchange; + + /** + *已收金额 + */ + private Double money; + + /** + *溢出金额 + */ + private Double overAmount; + + /** + *凭证号 + */ + private String voucherNo; + + /** + *付款时间 + */ + private Date payDate; + + /** + *付款卡号 + */ + private String cardno; + + /** + *充值卡支付前余额 + */ + private Double cardYe; + + /** + *充值卡支付前积分 + */ + private Double cardJf; + + /** + *是否实收 + */ + private Integer incomeFlag; + + /** + *第三方扣费类型 + */ + private Integer otherRateType; + + /** + *第三方扣费值 + */ + private Double otherRateValue; + + /** + *第三方扣费 + */ + private Double otherRate; + + /** + *支付渠道 + */ + private Integer payChannel; + + /** + *扣率 + */ + private Double deductionRate; + + /** + *扣款 + */ + private Double chargeBack; + + /** + *是否结算 + */ + private Integer settleFlag; + + /** + *备注 + */ + private String memo; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :付款单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPayNo() { + return this.payNo; + } + + /** + * 字段名称 :付款单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPayNo(String payNo) { + this.payNo = payNo; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBusMode() { + return this.busMode; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public void setBusMode(Integer busMode) { + this.busMode = busMode; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTableNo() { + return this.tableNo; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTableNo(String tableNo) { + this.tableNo = tableNo; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTableName() { + return this.tableName; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTableName(String tableName) { + this.tableName = tableName; + } + + /** + * 字段名称 :付款方式编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPayTypeNo() { + return this.payTypeNo; + } + + /** + * 字段名称 :付款方式编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPayTypeNo(String payTypeNo) { + this.payTypeNo = payTypeNo; + } + + /** + * 字段名称 :付款方式 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPayType() { + return this.payType; + } + + /** + * 字段名称 :付款方式 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPayType(String payType) { + this.payType = payType; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPaid() { + return this.paid; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPaid(Double paid) { + this.paid = paid; + } + + /** + * 字段名称 :找零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getRchange() { + return this.rchange; + } + + /** + * 字段名称 :找零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setRchange(Double rchange) { + this.rchange = rchange; + } + + /** + * 字段名称 :已收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :已收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :溢出金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getOverAmount() { + return this.overAmount; + } + + /** + * 字段名称 :溢出金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setOverAmount(Double overAmount) { + this.overAmount = overAmount; + } + + /** + * 字段名称 :凭证号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getVoucherNo() { + return this.voucherNo; + } + + /** + * 字段名称 :凭证号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setVoucherNo(String voucherNo) { + this.voucherNo = voucherNo; + } + + /** + * 字段名称 :付款时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getPayDate() { + return this.payDate; + } + + /** + * 字段名称 :付款时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setPayDate(Date payDate) { + this.payDate = payDate; + } + + /** + * 字段名称 :付款卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCardno() { + return this.cardno; + } + + /** + * 字段名称 :付款卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCardno(String cardno) { + this.cardno = cardno; + } + + /** + * 字段名称 :充值卡支付前余额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCardYe() { + return this.cardYe; + } + + /** + * 字段名称 :充值卡支付前余额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCardYe(Double cardYe) { + this.cardYe = cardYe; + } + + /** + * 字段名称 :充值卡支付前积分 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCardJf() { + return this.cardJf; + } + + /** + * 字段名称 :充值卡支付前积分 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCardJf(Double cardJf) { + this.cardJf = cardJf; + } + + /** + * 字段名称 :是否实收 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIncomeFlag() { + return this.incomeFlag; + } + + /** + * 字段名称 :是否实收 + * 数据类型 :int + * 是否必填 :false + */ + public void setIncomeFlag(Integer incomeFlag) { + this.incomeFlag = incomeFlag; + } + + /** + * 字段名称 :第三方扣费类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOtherRateType() { + return this.otherRateType; + } + + /** + * 字段名称 :第三方扣费类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setOtherRateType(Integer otherRateType) { + this.otherRateType = otherRateType; + } + + /** + * 字段名称 :第三方扣费值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOtherRateValue() { + return this.otherRateValue; + } + + /** + * 字段名称 :第三方扣费值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOtherRateValue(Double otherRateValue) { + this.otherRateValue = otherRateValue; + } + + /** + * 字段名称 :第三方扣费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getOtherRate() { + return this.otherRate; + } + + /** + * 字段名称 :第三方扣费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setOtherRate(Double otherRate) { + this.otherRate = otherRate; + } + + /** + * 字段名称 :支付渠道 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPayChannel() { + return this.payChannel; + } + + /** + * 字段名称 :支付渠道 + * 数据类型 :int + * 是否必填 :false + */ + public void setPayChannel(Integer payChannel) { + this.payChannel = payChannel; + } + + /** + * 字段名称 :扣率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDeductionRate() { + return this.deductionRate; + } + + /** + * 字段名称 :扣率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDeductionRate(Double deductionRate) { + this.deductionRate = deductionRate; + } + + /** + * 字段名称 :扣款 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getChargeBack() { + return this.chargeBack; + } + + /** + * 字段名称 :扣款 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setChargeBack(Double chargeBack) { + this.chargeBack = chargeBack; + } + + /** + * 字段名称 :是否结算 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getSettleFlag() { + return this.settleFlag; + } + + /** + * 字段名称 :是否结算 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setSettleFlag(Integer settleFlag) { + this.settleFlag = settleFlag; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getMemo() { + return this.memo; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setMemo(String memo) { + this.memo = memo; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreProduct.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreProduct.java new file mode 100644 index 0000000..2070577 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ProgramStoreProduct.java @@ -0,0 +1,295 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:小程序门店商品关联表 + * 表代码:cy_program_store_product + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreProduct") +public class ProgramStoreProduct extends BaseEntity { + + private static final long serialVersionUID = 1797044129929415860L; + + /** + *设置ID + */ + private String programId; + + /** + *门店ID + */ + private String storeId; + + /** + *商品ID + */ + private String productId; + + /** + *规格ID + */ + private String specId; + + /** + *单位ID + */ + private String productUnitId; + + /** + *类别ID + */ + private String typeId; + + /** + *类别路径 + */ + private String typePath; + + /** + *在线售价 + */ + private Double wprice; + + /** + *在线会员价 + */ + private Double wmemberPrice; + + /** + *库存总数量 + */ + private Double totalStock; + + /** + *已出售数量 + */ + private Double saleStock; + + /** + *剩余数量 + */ + private Double stock; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :单位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductUnitId() { + return this.productUnitId; + } + + /** + * 字段名称 :单位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductUnitId(String productUnitId) { + this.productUnitId = productUnitId; + } + + /** + * 字段名称 :类别ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getTypePath() { + return this.typePath; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setTypePath(String typePath) { + this.typePath = typePath; + } + + /** + * 字段名称 :在线售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getWprice() { + return this.wprice; + } + + /** + * 字段名称 :在线售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setWprice(Double wprice) { + this.wprice = wprice; + } + + /** + * 字段名称 :在线会员价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getWmemberPrice() { + return this.wmemberPrice; + } + + /** + * 字段名称 :在线会员价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setWmemberPrice(Double wmemberPrice) { + this.wmemberPrice = wmemberPrice; + } + + /** + * 字段名称 :库存总数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTotalStock() { + return this.totalStock; + } + + /** + * 字段名称 :库存总数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTotalStock(Double totalStock) { + this.totalStock = totalStock; + } + + /** + * 字段名称 :已出售数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getSaleStock() { + return this.saleStock; + } + + /** + * 字段名称 :已出售数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setSaleStock(Double saleStock) { + this.saleStock = saleStock; + } + + /** + * 字段名称 :剩余数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getStock() { + return this.stock; + } + + /** + * 字段名称 :剩余数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setStock(Double stock) { + this.stock = stock; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionBlackListGoods.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionBlackListGoods.java new file mode 100644 index 0000000..e4ee6e8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionBlackListGoods.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:促销商品黑名单 + * 表代码:cy_promotion_black_list_goods + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PromotionBlackListGoods") +public class PromotionBlackListGoods extends BaseEntity { + + private static final long serialVersionUID = 1264021716185087853L; + + /** + *促销单Id + */ + private String promotionId; + + /** + *促销单编号 + */ + private String promotionSn; + + /** + *产品ID + */ + private String productId; + + /** + *产品规格ID + */ + private String specId; + + /** + *产品编号 + */ + private String productNo; + + /** + *产品名称 + */ + private String productName; + + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPromotionId() { + return this.promotionId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPromotionId(String promotionId) { + this.promotionId = promotionId; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPromotionSn() { + return this.promotionSn; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPromotionSn(String promotionSn) { + this.promotionSn = promotionSn; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :产品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :产品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :产品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :产品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionBlackListStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionBlackListStore.java new file mode 100644 index 0000000..3a6e037 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionBlackListStore.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:促销门店黑名单 + * 表代码:cy_promotion_black_list_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PromotionBlackListStore") +public class PromotionBlackListStore extends BaseEntity { + + private static final long serialVersionUID = 1897506347518714227L; + + /** + *促销单Id + */ + private String promotionId; + + /** + *促销单编号 + */ + private String promotionSn; + + /** + *门店Id + */ + private String storeId; + + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPromotionId() { + return this.promotionId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPromotionId(String promotionId) { + this.promotionId = promotionId; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPromotionSn() { + return this.promotionSn; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPromotionSn(String promotionSn) { + this.promotionSn = promotionSn; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionBlackListStoreArea.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionBlackListStoreArea.java new file mode 100644 index 0000000..0dbad10 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionBlackListStoreArea.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:促销门店区域黑名单 + * 表代码:cy_promotion_black_list_store_area + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PromotionBlackListStoreArea") +public class PromotionBlackListStoreArea extends BaseEntity { + + private static final long serialVersionUID = 1997834957380591687L; + + /** + *促销单Id + */ + private String promotionId; + + /** + *促销单编号 + */ + private String promotionSn; + + /** + *区域Id + */ + private String areaId; + + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPromotionId() { + return this.promotionId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPromotionId(String promotionId) { + this.promotionId = promotionId; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPromotionSn() { + return this.promotionSn; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPromotionSn(String promotionSn) { + this.promotionSn = promotionSn; + } + + /** + * 字段名称 :区域Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getAreaId() { + return this.areaId; + } + + /** + * 字段名称 :区域Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setAreaId(String areaId) { + this.areaId = areaId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionCategory.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionCategory.java new file mode 100644 index 0000000..c1dca5c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionCategory.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:促销品类表 + * 表代码:cy_promotion_category + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PromotionCategory") +public class PromotionCategory extends BaseEntity { + + private static final long serialVersionUID = 1549893626616533340L; + + /** + *促销单Id + */ + private String promotionId; + + /** + *促销单编号 + */ + private String promotionSn; + + /** + *类别Id + */ + private String typeId; + + /** + *类别编号 + */ + private String typeNo; + + /** + *类别名称 + */ + private String typeName; + + /** + *优惠类型 + */ + private Integer discountType; + + /** + *折扣/金额 + */ + private Double discount; + + /** + *状态 + */ + private Integer status; + + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPromotionId() { + return this.promotionId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPromotionId(String promotionId) { + this.promotionId = promotionId; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPromotionSn() { + return this.promotionSn; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPromotionSn(String promotionSn) { + this.promotionSn = promotionSn; + } + + /** + * 字段名称 :类别Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTypeNo() { + return this.typeNo; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTypeNo(String typeNo) { + this.typeNo = typeNo; + } + + /** + * 字段名称 :类别名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTypeName() { + return this.typeName; + } + + /** + * 字段名称 :类别名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDiscountType() { + return this.discountType; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setDiscountType(Integer discountType) { + this.discountType = discountType; + } + + /** + * 字段名称 :折扣/金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :折扣/金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionGoods.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionGoods.java new file mode 100644 index 0000000..c012b58 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionGoods.java @@ -0,0 +1,318 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:促销商品明细 + * 表代码:cy_promotion_goods + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PromotionGoods") +public class PromotionGoods extends BaseEntity { + + private static final long serialVersionUID = 1314354769619991446L; + + /** + *促销单Id + */ + private String promotionId; + + /** + *促销单编号 + */ + private String promotionSn; + + /** + *产品ID + */ + private String productId; + + /** + *产品规格ID + */ + private String specId; + + /** + *产品编号 + */ + private String productNo; + + /** + *产品名称 + */ + private String productName; + + /** + *售价 + */ + private Double salePrice; + + /** + *特价 + */ + private Double specialPrice; + + /** + *优惠类型 + */ + private Integer discountType; + + /** + *折扣/金额 + */ + private Double discount; + + /** + *每单限量 + */ + private Double limitNum; + + /** + *全场限量 + */ + private Double allLimitNum; + + /** + *状态 + */ + private Integer status; + + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPromotionId() { + return this.promotionId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPromotionId(String promotionId) { + this.promotionId = promotionId; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPromotionSn() { + return this.promotionSn; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPromotionSn(String promotionSn) { + this.promotionSn = promotionSn; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :产品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :产品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :产品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :产品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getSalePrice() { + return this.salePrice; + } + + /** + * 字段名称 :售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setSalePrice(Double salePrice) { + this.salePrice = salePrice; + } + + /** + * 字段名称 :特价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getSpecialPrice() { + return this.specialPrice; + } + + /** + * 字段名称 :特价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setSpecialPrice(Double specialPrice) { + this.specialPrice = specialPrice; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDiscountType() { + return this.discountType; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setDiscountType(Integer discountType) { + this.discountType = discountType; + } + + /** + * 字段名称 :折扣/金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :折扣/金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :每单限量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getLimitNum() { + return this.limitNum; + } + + /** + * 字段名称 :每单限量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setLimitNum(Double limitNum) { + this.limitNum = limitNum; + } + + /** + * 字段名称 :全场限量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAllLimitNum() { + return this.allLimitNum; + } + + /** + * 字段名称 :全场限量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAllLimitNum(Double allLimitNum) { + this.allLimitNum = allLimitNum; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionSchedule.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionSchedule.java new file mode 100644 index 0000000..f03f991 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionSchedule.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:促销档期 + * 表代码:cy_promotion_schedule + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PromotionSchedule") +public class PromotionSchedule extends BaseEntity { + + private static final long serialVersionUID = 1310504467837833953L; + + /** + *编号 + */ + private String sn; + + /** + *档期名称 + */ + private String name; + + /** + *开始时间 + */ + private Date startDate; + + /** + *结束时间 + */ + private Date endDate; + + /** + *状态 + */ + private Integer status; + + /** + *备注 + */ + private String memo; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSn() { + return this.sn; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSn(String sn) { + this.sn = sn; + } + + /** + * 字段名称 :档期名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :档期名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :开始时间 + * 数据类型 :date + * 是否必填 :false + */ + public Date getStartDate() { + return this.startDate; + } + + /** + * 字段名称 :开始时间 + * 数据类型 :date + * 是否必填 :false + */ + public void setStartDate(Date startDate) { + this.startDate = startDate; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :date + * 是否必填 :false + */ + public Date getEndDate() { + return this.endDate; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :date + * 是否必填 :false + */ + public void setEndDate(Date endDate) { + this.endDate = endDate; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getMemo() { + return this.memo; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setMemo(String memo) { + this.memo = memo; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionScheme.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionScheme.java new file mode 100644 index 0000000..da4574d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionScheme.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:促销方案表 + * 表代码:cy_promotion_scheme + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PromotionScheme") +public class PromotionScheme extends BaseEntity { + + private static final long serialVersionUID = 1854782161012361186L; + + /** + *方案编号 + */ + private String sn; + + /** + *促销Id + */ + private String promotionId; + + /** + *促销编号 + */ + private String promotionSn; + + /** + *类型 + */ + private Integer type; + + /** + *促销规则 + */ + private String rule; + + /** + *备注 + */ + private String memo; + + + /** + * 字段名称 :方案编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSn() { + return this.sn; + } + + /** + * 字段名称 :方案编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSn(String sn) { + this.sn = sn; + } + + /** + * 字段名称 :促销Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPromotionId() { + return this.promotionId; + } + + /** + * 字段名称 :促销Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPromotionId(String promotionId) { + this.promotionId = promotionId; + } + + /** + * 字段名称 :促销编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPromotionSn() { + return this.promotionSn; + } + + /** + * 字段名称 :促销编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPromotionSn(String promotionSn) { + this.promotionSn = promotionSn; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :促销规则 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getRule() { + return this.rule; + } + + /** + * 字段名称 :促销规则 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setRule(String rule) { + this.rule = rule; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getMemo() { + return this.memo; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setMemo(String memo) { + this.memo = memo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionStore.java new file mode 100644 index 0000000..e682408 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionStore.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:促销门店关联表 + * 表代码:cy_promotion_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PromotionStore") +public class PromotionStore extends BaseEntity { + + private static final long serialVersionUID = 1224471410061002343L; + + /** + *促销单Id + */ + private String promotionId; + + /** + *促销单编号 + */ + private String promotionSn; + + /** + *门店Id + */ + private String storeId; + + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPromotionId() { + return this.promotionId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPromotionId(String promotionId) { + this.promotionId = promotionId; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPromotionSn() { + return this.promotionSn; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPromotionSn(String promotionSn) { + this.promotionSn = promotionSn; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionStoreArea.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionStoreArea.java new file mode 100644 index 0000000..c0a40c9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionStoreArea.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:促销门店区域关联表 + * 表代码:cy_promotion_store_area + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PromotionStoreArea") +public class PromotionStoreArea extends BaseEntity { + + private static final long serialVersionUID = 1355069746427205588L; + + /** + *促销单Id + */ + private String promotionId; + + /** + *促销单编号 + */ + private String promotionSn; + + /** + *区域Id + */ + private String areaId; + + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPromotionId() { + return this.promotionId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPromotionId(String promotionId) { + this.promotionId = promotionId; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPromotionSn() { + return this.promotionSn; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPromotionSn(String promotionSn) { + this.promotionSn = promotionSn; + } + + /** + * 字段名称 :区域Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getAreaId() { + return this.areaId; + } + + /** + * 字段名称 :区域Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setAreaId(String areaId) { + this.areaId = areaId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionTask.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionTask.java new file mode 100644 index 0000000..90a1788 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionTask.java @@ -0,0 +1,755 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:促销任务表 + * 表代码:cy_promotion_task + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PromotionTask") +public class PromotionTask extends BaseEntity { + + private static final long serialVersionUID = 1909464427184196623L; + + /** + *任务编号 + */ + private String sn; + + /** + *档期Id + */ + private String scheduleId; + + /** + *档期编号 + */ + private String scheduleSn; + + /** + *促销单Id + */ + private String promotionId; + + /** + *促销单编号 + */ + private String promotionSn; + + /** + *促销类型 + */ + private String promotionType; + + /** + *门店Id + */ + private String storeId; + + /** + *值类型 + */ + private Integer valueType; + + /** + *值Id + */ + private String valueId; + + /** + *值编号 + */ + private String valueNo; + + /** + *值名称 + */ + private String valueName; + + /** + *值扩展1 + */ + private String valueExt1; + + /** + *值扩展2 + */ + private String valueExt2; + + /** + *促销方案Id + */ + private String schemeId; + + /** + *方案编号 + */ + private String schemeSn; + + /** + *开始日期 + */ + private Date startDate; + + /** + *结束日期 + */ + private Date endDate; + + /** + *开始时间 + */ + private String startTime; + + /** + *结束时间 + */ + private String endTime; + + /** + *每周频率 + */ + private String validWeek; + + /** + *每月频率 + */ + private String validMonth; + + /** + *是否会员专享 + */ + private Integer isOnlyMember; + + /** + *是否会员折上折 + */ + private Integer isRepeatDiscount; + + /** + *是否全场促销 + */ + private Integer isAll; + + /** + *商品黑名单 + */ + private String goodsBlackList; + + /** + *优惠类型 + */ + private Integer discountType; + + /** + *优惠值 + */ + private Double discountValue; + + /** + *促销规则 + */ + private String rule; + + /** + *制单人 + */ + private String setMan; + + /** + *制单时间 + */ + private Date setTime; + + /** + *状态 + */ + private Integer status; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :任务编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSn() { + return this.sn; + } + + /** + * 字段名称 :任务编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSn(String sn) { + this.sn = sn; + } + + /** + * 字段名称 :档期Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getScheduleId() { + return this.scheduleId; + } + + /** + * 字段名称 :档期Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setScheduleId(String scheduleId) { + this.scheduleId = scheduleId; + } + + /** + * 字段名称 :档期编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getScheduleSn() { + return this.scheduleSn; + } + + /** + * 字段名称 :档期编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setScheduleSn(String scheduleSn) { + this.scheduleSn = scheduleSn; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPromotionId() { + return this.promotionId; + } + + /** + * 字段名称 :促销单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPromotionId(String promotionId) { + this.promotionId = promotionId; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPromotionSn() { + return this.promotionSn; + } + + /** + * 字段名称 :促销单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPromotionSn(String promotionSn) { + this.promotionSn = promotionSn; + } + + /** + * 字段名称 :促销类型 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPromotionType() { + return this.promotionType; + } + + /** + * 字段名称 :促销类型 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPromotionType(String promotionType) { + this.promotionType = promotionType; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :值类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getValueType() { + return this.valueType; + } + + /** + * 字段名称 :值类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setValueType(Integer valueType) { + this.valueType = valueType; + } + + /** + * 字段名称 :值Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getValueId() { + return this.valueId; + } + + /** + * 字段名称 :值Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setValueId(String valueId) { + this.valueId = valueId; + } + + /** + * 字段名称 :值编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getValueNo() { + return this.valueNo; + } + + /** + * 字段名称 :值编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setValueNo(String valueNo) { + this.valueNo = valueNo; + } + + /** + * 字段名称 :值名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getValueName() { + return this.valueName; + } + + /** + * 字段名称 :值名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setValueName(String valueName) { + this.valueName = valueName; + } + + /** + * 字段名称 :值扩展1 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getValueExt1() { + return this.valueExt1; + } + + /** + * 字段名称 :值扩展1 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setValueExt1(String valueExt1) { + this.valueExt1 = valueExt1; + } + + /** + * 字段名称 :值扩展2 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getValueExt2() { + return this.valueExt2; + } + + /** + * 字段名称 :值扩展2 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setValueExt2(String valueExt2) { + this.valueExt2 = valueExt2; + } + + /** + * 字段名称 :促销方案Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSchemeId() { + return this.schemeId; + } + + /** + * 字段名称 :促销方案Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSchemeId(String schemeId) { + this.schemeId = schemeId; + } + + /** + * 字段名称 :方案编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSchemeSn() { + return this.schemeSn; + } + + /** + * 字段名称 :方案编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSchemeSn(String schemeSn) { + this.schemeSn = schemeSn; + } + + /** + * 字段名称 :开始日期 + * 数据类型 :date + * 是否必填 :false + */ + public Date getStartDate() { + return this.startDate; + } + + /** + * 字段名称 :开始日期 + * 数据类型 :date + * 是否必填 :false + */ + public void setStartDate(Date startDate) { + this.startDate = startDate; + } + + /** + * 字段名称 :结束日期 + * 数据类型 :date + * 是否必填 :false + */ + public Date getEndDate() { + return this.endDate; + } + + /** + * 字段名称 :结束日期 + * 数据类型 :date + * 是否必填 :false + */ + public void setEndDate(Date endDate) { + this.endDate = endDate; + } + + /** + * 字段名称 :开始时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStartTime() { + return this.startTime; + } + + /** + * 字段名称 :开始时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStartTime(String startTime) { + this.startTime = startTime; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getEndTime() { + return this.endTime; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setEndTime(String endTime) { + this.endTime = endTime; + } + + /** + * 字段名称 :每周频率 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getValidWeek() { + return this.validWeek; + } + + /** + * 字段名称 :每周频率 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setValidWeek(String validWeek) { + this.validWeek = validWeek; + } + + /** + * 字段名称 :每月频率 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getValidMonth() { + return this.validMonth; + } + + /** + * 字段名称 :每月频率 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setValidMonth(String validMonth) { + this.validMonth = validMonth; + } + + /** + * 字段名称 :是否会员专享 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsOnlyMember() { + return this.isOnlyMember; + } + + /** + * 字段名称 :是否会员专享 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsOnlyMember(Integer isOnlyMember) { + this.isOnlyMember = isOnlyMember; + } + + /** + * 字段名称 :是否会员折上折 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsRepeatDiscount() { + return this.isRepeatDiscount; + } + + /** + * 字段名称 :是否会员折上折 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsRepeatDiscount(Integer isRepeatDiscount) { + this.isRepeatDiscount = isRepeatDiscount; + } + + /** + * 字段名称 :是否全场促销 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsAll() { + return this.isAll; + } + + /** + * 字段名称 :是否全场促销 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsAll(Integer isAll) { + this.isAll = isAll; + } + + /** + * 字段名称 :商品黑名单 + * 数据类型 :text + * 是否必填 :false + */ + public String getGoodsBlackList() { + return this.goodsBlackList; + } + + /** + * 字段名称 :商品黑名单 + * 数据类型 :text + * 是否必填 :false + */ + public void setGoodsBlackList(String goodsBlackList) { + this.goodsBlackList = goodsBlackList; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDiscountType() { + return this.discountType; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setDiscountType(Integer discountType) { + this.discountType = discountType; + } + + /** + * 字段名称 :优惠值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDiscountValue() { + return this.discountValue; + } + + /** + * 字段名称 :优惠值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDiscountValue(Double discountValue) { + this.discountValue = discountValue; + } + + /** + * 字段名称 :促销规则 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getRule() { + return this.rule; + } + + /** + * 字段名称 :促销规则 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setRule(String rule) { + this.rule = rule; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSetMan() { + return this.setMan; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSetMan(String setMan) { + this.setMan = setMan; + } + + /** + * 字段名称 :制单时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSetTime() { + return this.setTime; + } + + /** + * 字段名称 :制单时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSetTime(Date setTime) { + this.setTime = setTime; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionTicket.java new file mode 100644 index 0000000..8ebaf65 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PromotionTicket.java @@ -0,0 +1,686 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:促销单 + * 表代码:cy_promotion_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PromotionTicket") +public class PromotionTicket extends BaseEntity { + + private static final long serialVersionUID = 1069292185644067652L; + + /** + *档期ID + */ + private String scheduleId; + + /** + *档期编号 + */ + private String scheduleSn; + + /** + *促销单号 + */ + private String sn; + + /** + *促销类型 + */ + private String type; + + /** + *开始日期 + */ + private Date startDate; + + /** + *结束日期 + */ + private Date endDate; + + /** + *开始时间 + */ + private String startTime; + + /** + *结束时间 + */ + private String endTime; + + /** + *每周频率 + */ + private String validWeek; + + /** + *每月频率 + */ + private String validMonth; + + /** + *是否会员专享 + */ + private Integer isOnlyMember; + + /** + *是否全场促销 + */ + private Integer isAll; + + /** + *是否所有门店促销 + */ + private Integer isAllStore; + + /** + *是否会员折上折 + */ + private Integer isRepeatDiscount; + + /** + *是否启用商品 + */ + private Integer isGoods; + + /** + *是否启用品类 + */ + private Integer isCategory; + + /** + *是否启用门店 + */ + private Integer isStore; + + /** + *是否启用区域 + */ + private Integer isStoreArea; + + /** + *是否启用区域黑名单 + */ + private Integer isAreaBlack; + + /** + *是否启用门店黑名单 + */ + private Integer isStoreBlack; + + /** + *是否启用商品黑名单 + */ + private Integer isGoodsBlack; + + /** + *状态 + */ + private Integer status; + + /** + *备注 + */ + private String memo; + + /** + *审核人 + */ + private String confirmUser; + + /** + *审核日期 + */ + private Date confirmDate; + + /** + *审核状态 + */ + private Integer confirmStatus; + + /** + *最末任务日期 + */ + private String lastTaskDate; + + /** + *最末任务序号 + */ + private String lastTaskNo; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :档期ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getScheduleId() { + return this.scheduleId; + } + + /** + * 字段名称 :档期ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setScheduleId(String scheduleId) { + this.scheduleId = scheduleId; + } + + /** + * 字段名称 :档期编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getScheduleSn() { + return this.scheduleSn; + } + + /** + * 字段名称 :档期编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setScheduleSn(String scheduleSn) { + this.scheduleSn = scheduleSn; + } + + /** + * 字段名称 :促销单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSn() { + return this.sn; + } + + /** + * 字段名称 :促销单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSn(String sn) { + this.sn = sn; + } + + /** + * 字段名称 :促销类型 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getType() { + return this.type; + } + + /** + * 字段名称 :促销类型 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setType(String type) { + this.type = type; + } + + /** + * 字段名称 :开始日期 + * 数据类型 :date + * 是否必填 :false + */ + public Date getStartDate() { + return this.startDate; + } + + /** + * 字段名称 :开始日期 + * 数据类型 :date + * 是否必填 :false + */ + public void setStartDate(Date startDate) { + this.startDate = startDate; + } + + /** + * 字段名称 :结束日期 + * 数据类型 :date + * 是否必填 :false + */ + public Date getEndDate() { + return this.endDate; + } + + /** + * 字段名称 :结束日期 + * 数据类型 :date + * 是否必填 :false + */ + public void setEndDate(Date endDate) { + this.endDate = endDate; + } + + /** + * 字段名称 :开始时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStartTime() { + return this.startTime; + } + + /** + * 字段名称 :开始时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStartTime(String startTime) { + this.startTime = startTime; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getEndTime() { + return this.endTime; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setEndTime(String endTime) { + this.endTime = endTime; + } + + /** + * 字段名称 :每周频率 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getValidWeek() { + return this.validWeek; + } + + /** + * 字段名称 :每周频率 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setValidWeek(String validWeek) { + this.validWeek = validWeek; + } + + /** + * 字段名称 :每月频率 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getValidMonth() { + return this.validMonth; + } + + /** + * 字段名称 :每月频率 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setValidMonth(String validMonth) { + this.validMonth = validMonth; + } + + /** + * 字段名称 :是否会员专享 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsOnlyMember() { + return this.isOnlyMember; + } + + /** + * 字段名称 :是否会员专享 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsOnlyMember(Integer isOnlyMember) { + this.isOnlyMember = isOnlyMember; + } + + /** + * 字段名称 :是否全场促销 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsAll() { + return this.isAll; + } + + /** + * 字段名称 :是否全场促销 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsAll(Integer isAll) { + this.isAll = isAll; + } + + /** + * 字段名称 :是否所有门店促销 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsAllStore() { + return this.isAllStore; + } + + /** + * 字段名称 :是否所有门店促销 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsAllStore(Integer isAllStore) { + this.isAllStore = isAllStore; + } + + /** + * 字段名称 :是否会员折上折 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsRepeatDiscount() { + return this.isRepeatDiscount; + } + + /** + * 字段名称 :是否会员折上折 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsRepeatDiscount(Integer isRepeatDiscount) { + this.isRepeatDiscount = isRepeatDiscount; + } + + /** + * 字段名称 :是否启用商品 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsGoods() { + return this.isGoods; + } + + /** + * 字段名称 :是否启用商品 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsGoods(Integer isGoods) { + this.isGoods = isGoods; + } + + /** + * 字段名称 :是否启用品类 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsCategory() { + return this.isCategory; + } + + /** + * 字段名称 :是否启用品类 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsCategory(Integer isCategory) { + this.isCategory = isCategory; + } + + /** + * 字段名称 :是否启用门店 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsStore() { + return this.isStore; + } + + /** + * 字段名称 :是否启用门店 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsStore(Integer isStore) { + this.isStore = isStore; + } + + /** + * 字段名称 :是否启用区域 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsStoreArea() { + return this.isStoreArea; + } + + /** + * 字段名称 :是否启用区域 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsStoreArea(Integer isStoreArea) { + this.isStoreArea = isStoreArea; + } + + /** + * 字段名称 :是否启用区域黑名单 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsAreaBlack() { + return this.isAreaBlack; + } + + /** + * 字段名称 :是否启用区域黑名单 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsAreaBlack(Integer isAreaBlack) { + this.isAreaBlack = isAreaBlack; + } + + /** + * 字段名称 :是否启用门店黑名单 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsStoreBlack() { + return this.isStoreBlack; + } + + /** + * 字段名称 :是否启用门店黑名单 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsStoreBlack(Integer isStoreBlack) { + this.isStoreBlack = isStoreBlack; + } + + /** + * 字段名称 :是否启用商品黑名单 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsGoodsBlack() { + return this.isGoodsBlack; + } + + /** + * 字段名称 :是否启用商品黑名单 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsGoodsBlack(Integer isGoodsBlack) { + this.isGoodsBlack = isGoodsBlack; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getMemo() { + return this.memo; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setMemo(String memo) { + this.memo = memo; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getConfirmUser() { + return this.confirmUser; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setConfirmUser(String confirmUser) { + this.confirmUser = confirmUser; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getConfirmDate() { + return this.confirmDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setConfirmDate(Date confirmDate) { + this.confirmDate = confirmDate; + } + + /** + * 字段名称 :审核状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getConfirmStatus() { + return this.confirmStatus; + } + + /** + * 字段名称 :审核状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setConfirmStatus(Integer confirmStatus) { + this.confirmStatus = confirmStatus; + } + + /** + * 字段名称 :最末任务日期 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getLastTaskDate() { + return this.lastTaskDate; + } + + /** + * 字段名称 :最末任务日期 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setLastTaskDate(String lastTaskDate) { + this.lastTaskDate = lastTaskDate; + } + + /** + * 字段名称 :最末任务序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getLastTaskNo() { + return this.lastTaskNo; + } + + /** + * 字段名称 :最末任务序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setLastTaskNo(String lastTaskNo) { + this.lastTaskNo = lastTaskNo; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseStorageTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseStorageTicket.java new file mode 100644 index 0000000..2ef49be --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseStorageTicket.java @@ -0,0 +1,433 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:采购入库单 + * 表代码:cy_purchase_storage_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PurchaseStorageTicket") +public class PurchaseStorageTicket extends BaseEntity { + + private static final long serialVersionUID = 1526274067531486580L; + + /** + *单据编号 + */ + private String no; + + /** + *采购单Id + */ + private String purchaseTicketId; + + /** + *采购单编号 + */ + private String purchaseTicketNo; + + /** + *供应商ID + */ + private String supplierId; + + /** + *供应商编号 + */ + private String supplierNo; + + /** + *供应商名称 + */ + private String supplierName; + + /** + *仓库ID + */ + private String storageId; + + /** + *仓库名称 + */ + private String storageName; + + /** + *备注信息 + */ + private String description; + + /** + *单据状态 + */ + private Integer status; + + /** + *采购员 + */ + private String purchaseUser; + + /** + *仓管员 + */ + private String stockMan; + + /** + *制单人 + */ + private String setMan; + + /** + *制单日期 + */ + private Date setDate; + + /** + *审核人 + */ + private String checkMan; + + /** + *审核日期 + */ + private Date checkDate; + + /** + *原料金额 + */ + private Double orderMoney; + + /** + *是否已结算 + */ + private Integer isPayment; + + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :采购单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPurchaseTicketId() { + return this.purchaseTicketId; + } + + /** + * 字段名称 :采购单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPurchaseTicketId(String purchaseTicketId) { + this.purchaseTicketId = purchaseTicketId; + } + + /** + * 字段名称 :采购单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPurchaseTicketNo() { + return this.purchaseTicketNo; + } + + /** + * 字段名称 :采购单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPurchaseTicketNo(String purchaseTicketNo) { + this.purchaseTicketNo = purchaseTicketNo; + } + + /** + * 字段名称 :供应商ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSupplierId() { + return this.supplierId; + } + + /** + * 字段名称 :供应商ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSupplierId(String supplierId) { + this.supplierId = supplierId; + } + + /** + * 字段名称 :供应商编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSupplierNo() { + return this.supplierNo; + } + + /** + * 字段名称 :供应商编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSupplierNo(String supplierNo) { + this.supplierNo = supplierNo; + } + + /** + * 字段名称 :供应商名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSupplierName() { + return this.supplierName; + } + + /** + * 字段名称 :供应商名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSupplierName(String supplierName) { + this.supplierName = supplierName; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStorageName() { + return this.storageName; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStorageName(String storageName) { + this.storageName = storageName; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :采购员 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPurchaseUser() { + return this.purchaseUser; + } + + /** + * 字段名称 :采购员 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPurchaseUser(String purchaseUser) { + this.purchaseUser = purchaseUser; + } + + /** + * 字段名称 :仓管员 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStockMan() { + return this.stockMan; + } + + /** + * 字段名称 :仓管员 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStockMan(String stockMan) { + this.stockMan = stockMan; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetMan() { + return this.setMan; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetMan(String setMan) { + this.setMan = setMan; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSetDate() { + return this.setDate; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSetDate(Date setDate) { + this.setDate = setDate; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCheckMan() { + return this.checkMan; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCheckMan(String checkMan) { + this.checkMan = checkMan; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckDate() { + return this.checkDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckDate(Date checkDate) { + this.checkDate = checkDate; + } + + /** + * 字段名称 :原料金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOrderMoney() { + return this.orderMoney; + } + + /** + * 字段名称 :原料金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOrderMoney(Double orderMoney) { + this.orderMoney = orderMoney; + } + + /** + * 字段名称 :是否已结算 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsPayment() { + return this.isPayment; + } + + /** + * 字段名称 :是否已结算 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsPayment(Integer isPayment) { + this.isPayment = isPayment; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseStorageTicketDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseStorageTicketDetail.java new file mode 100644 index 0000000..25a464f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseStorageTicketDetail.java @@ -0,0 +1,502 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:采购入库单明细 + * 表代码:cy_purchase_storage_ticket_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PurchaseStorageTicketDetail") +public class PurchaseStorageTicketDetail extends BaseEntity { + + private static final long serialVersionUID = 1675012016231645560L; + + /** + *入库单ID + */ + private String ticketId; + + /** + *入库单编号 + */ + private String ticketNo; + + /** + *原料ID + */ + private String productId; + + /** + *原料编号 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *配送库存单位 + */ + private String dispatchUnitId; + + /** + *配送库存单位名称 + */ + private String dispatchUnitName; + + /** + *采购单位 + */ + private String purchaseUnitId; + + /** + *采购单位名 + */ + private String purchaseUnitName; + + /** + *换算比例 + */ + private Double pdScale; + + /** + *数量 + */ + private Double amount; + + /** + *价格 + */ + private Double price; + + /** + *金额 + */ + private Double money; + + /** + *赠送单位 + */ + private String giveUnitId; + + /** + *赠送单位名 + */ + private String giveUnitName; + + /** + *赠送数量 + */ + private Double giveAmount; + + /** + *备注说明 + */ + private String description; + + /** + *生产批号 + */ + private String pbNo; + + + /** + * 字段名称 :入库单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :入库单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :入库单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :入库单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :配送库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchUnitId() { + return this.dispatchUnitId; + } + + /** + * 字段名称 :配送库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchUnitId(String dispatchUnitId) { + this.dispatchUnitId = dispatchUnitId; + } + + /** + * 字段名称 :配送库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDispatchUnitName() { + return this.dispatchUnitName; + } + + /** + * 字段名称 :配送库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDispatchUnitName(String dispatchUnitName) { + this.dispatchUnitName = dispatchUnitName; + } + + /** + * 字段名称 :采购单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPurchaseUnitId() { + return this.purchaseUnitId; + } + + /** + * 字段名称 :采购单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPurchaseUnitId(String purchaseUnitId) { + this.purchaseUnitId = purchaseUnitId; + } + + /** + * 字段名称 :采购单位名 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPurchaseUnitName() { + return this.purchaseUnitName; + } + + /** + * 字段名称 :采购单位名 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPurchaseUnitName(String purchaseUnitName) { + this.purchaseUnitName = purchaseUnitName; + } + + /** + * 字段名称 :换算比例 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPdScale() { + return this.pdScale; + } + + /** + * 字段名称 :换算比例 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPdScale(Double pdScale) { + this.pdScale = pdScale; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :赠送单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getGiveUnitId() { + return this.giveUnitId; + } + + /** + * 字段名称 :赠送单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setGiveUnitId(String giveUnitId) { + this.giveUnitId = giveUnitId; + } + + /** + * 字段名称 :赠送单位名 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getGiveUnitName() { + return this.giveUnitName; + } + + /** + * 字段名称 :赠送单位名 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setGiveUnitName(String giveUnitName) { + this.giveUnitName = giveUnitName; + } + + /** + * 字段名称 :赠送数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getGiveAmount() { + return this.giveAmount; + } + + /** + * 字段名称 :赠送数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setGiveAmount(Double giveAmount) { + this.giveAmount = giveAmount; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :生产批号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPbNo() { + return this.pbNo; + } + + /** + * 字段名称 :生产批号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPbNo(String pbNo) { + this.pbNo = pbNo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseStorageTicketLog.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseStorageTicketLog.java new file mode 100644 index 0000000..b2dd489 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseStorageTicketLog.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:采购入库单操作记录 + * 表代码:cy_purchase_storage_ticket_log + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PurchaseStorageTicketLog") +public class PurchaseStorageTicketLog extends BaseEntity { + + private static final long serialVersionUID = 1854947531183561881L; + + /** + *入库单ID + */ + private String ticketId; + + /** + *入库单编号 + */ + private String ticketNo; + + /** + *操作类型 + */ + private Integer type; + + /** + *操作状态 + */ + private Integer status; + + /** + *描述 + */ + private String description; + + + /** + * 字段名称 :入库单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :入库单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :入库单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :入库单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseTemplate.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseTemplate.java new file mode 100644 index 0000000..8cb0d29 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseTemplate.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:采购模板 + * 表代码:cy_purchase_template + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PurchaseTemplate") +public class PurchaseTemplate extends BaseEntity { + + private static final long serialVersionUID = 1428669861735078659L; + + /** + *编号 + */ + private String no; + + /** + *模板名称 + */ + private String name; + + /** + *备注信息 + */ + private String description; + + /** + *模板类型 + */ + private Integer type; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :模板名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :模板名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :模板类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :模板类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseTemplateDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseTemplateDetail.java new file mode 100644 index 0000000..83f1676 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseTemplateDetail.java @@ -0,0 +1,295 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:采购模板明细 + * 表代码:cy_purchase_template_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PurchaseTemplateDetail") +public class PurchaseTemplateDetail extends BaseEntity { + + private static final long serialVersionUID = 1284782434528660872L; + + /** + *模板Id + */ + private String ticketId; + + /** + *原料Id + */ + private String productId; + + /** + *原料编码 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *库存ID + */ + private String dispatchUnitId; + + /** + *库存名称 + */ + private String dispatchUnitName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *采购单位 + */ + private String purchaseUnitId; + + /** + *采购单位名 + */ + private String purchaseUnitName; + + /** + *备注说明 + */ + private String description; + + + /** + * 字段名称 :模板Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :模板Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :原料Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :库存ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchUnitId() { + return this.dispatchUnitId; + } + + /** + * 字段名称 :库存ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchUnitId(String dispatchUnitId) { + this.dispatchUnitId = dispatchUnitId; + } + + /** + * 字段名称 :库存名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDispatchUnitName() { + return this.dispatchUnitName; + } + + /** + * 字段名称 :库存名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDispatchUnitName(String dispatchUnitName) { + this.dispatchUnitName = dispatchUnitName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :采购单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPurchaseUnitId() { + return this.purchaseUnitId; + } + + /** + * 字段名称 :采购单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPurchaseUnitId(String purchaseUnitId) { + this.purchaseUnitId = purchaseUnitId; + } + + /** + * 字段名称 :采购单位名 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPurchaseUnitName() { + return this.purchaseUnitName; + } + + /** + * 字段名称 :采购单位名 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPurchaseUnitName(String purchaseUnitName) { + this.purchaseUnitName = purchaseUnitName; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseTicket.java new file mode 100644 index 0000000..f7336fe --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseTicket.java @@ -0,0 +1,318 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:采购单 + * 表代码:cy_purchase_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PurchaseTicket") +public class PurchaseTicket extends BaseEntity { + + private static final long serialVersionUID = 1343653522513862927L; + + /** + *单据编号 + */ + private String no; + + /** + *要货部门 + */ + private String storageId; + + /** + *供应商ID + */ + private String supplierId; + + /** + *供应商编号 + */ + private String supplierNo; + + /** + *送货日期 + */ + private Date deliveryDate; + + /** + *单据状态 + */ + private Integer status; + + /** + *是否选用 + */ + private Integer isUse; + + /** + *采购员 + */ + private String purchaseUser; + + /** + *制单人 + */ + private String setMan; + + /** + *制单日期 + */ + private Date setDate; + + /** + *审核人 + */ + private String checkMan; + + /** + *审核日期 + */ + private Date checkDate; + + /** + *备注信息 + */ + private String description; + + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :要货部门 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :要货部门 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + + /** + * 字段名称 :供应商ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSupplierId() { + return this.supplierId; + } + + /** + * 字段名称 :供应商ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSupplierId(String supplierId) { + this.supplierId = supplierId; + } + + /** + * 字段名称 :供应商编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSupplierNo() { + return this.supplierNo; + } + + /** + * 字段名称 :供应商编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSupplierNo(String supplierNo) { + this.supplierNo = supplierNo; + } + + /** + * 字段名称 :送货日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getDeliveryDate() { + return this.deliveryDate; + } + + /** + * 字段名称 :送货日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setDeliveryDate(Date deliveryDate) { + this.deliveryDate = deliveryDate; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :是否选用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsUse() { + return this.isUse; + } + + /** + * 字段名称 :是否选用 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsUse(Integer isUse) { + this.isUse = isUse; + } + + /** + * 字段名称 :采购员 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPurchaseUser() { + return this.purchaseUser; + } + + /** + * 字段名称 :采购员 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPurchaseUser(String purchaseUser) { + this.purchaseUser = purchaseUser; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetMan() { + return this.setMan; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetMan(String setMan) { + this.setMan = setMan; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSetDate() { + return this.setDate; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSetDate(Date setDate) { + this.setDate = setDate; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCheckMan() { + return this.checkMan; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCheckMan(String checkMan) { + this.checkMan = checkMan; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckDate() { + return this.checkDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckDate(Date checkDate) { + this.checkDate = checkDate; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseTicketDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseTicketDetail.java new file mode 100644 index 0000000..9380fb5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseTicketDetail.java @@ -0,0 +1,433 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:采购单明细 + * 表代码:cy_purchase_ticket_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PurchaseTicketDetail") +public class PurchaseTicketDetail extends BaseEntity { + + private static final long serialVersionUID = 1678433419366021876L; + + /** + *采购单ID + */ + private String ticketId; + + /** + *采购单编号 + */ + private String ticketNo; + + /** + *原料ID + */ + private String productId; + + /** + *原料编号 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *配送库存单位 + */ + private String dispatchUnitId; + + /** + *配送库存单位名称 + */ + private String dispatchUnitName; + + /** + *库存数量 + */ + private Double stockAmount; + + /** + *采购单位 + */ + private String purchaseUnitId; + + /** + *采购单位名 + */ + private String purchaseUnitName; + + /** + *换算比例 + */ + private Double pdScale; + + /** + *采购数量 + */ + private Double amount; + + /** + *采购价格 + */ + private Double price; + + /** + *采购金额 + */ + private Double money; + + /** + *备注说明 + */ + private String description; + + + /** + * 字段名称 :采购单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :采购单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :采购单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :采购单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :配送库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchUnitId() { + return this.dispatchUnitId; + } + + /** + * 字段名称 :配送库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchUnitId(String dispatchUnitId) { + this.dispatchUnitId = dispatchUnitId; + } + + /** + * 字段名称 :配送库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDispatchUnitName() { + return this.dispatchUnitName; + } + + /** + * 字段名称 :配送库存单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDispatchUnitName(String dispatchUnitName) { + this.dispatchUnitName = dispatchUnitName; + } + + /** + * 字段名称 :库存数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getStockAmount() { + return this.stockAmount; + } + + /** + * 字段名称 :库存数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setStockAmount(Double stockAmount) { + this.stockAmount = stockAmount; + } + + /** + * 字段名称 :采购单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPurchaseUnitId() { + return this.purchaseUnitId; + } + + /** + * 字段名称 :采购单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPurchaseUnitId(String purchaseUnitId) { + this.purchaseUnitId = purchaseUnitId; + } + + /** + * 字段名称 :采购单位名 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPurchaseUnitName() { + return this.purchaseUnitName; + } + + /** + * 字段名称 :采购单位名 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPurchaseUnitName(String purchaseUnitName) { + this.purchaseUnitName = purchaseUnitName; + } + + /** + * 字段名称 :换算比例 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPdScale() { + return this.pdScale; + } + + /** + * 字段名称 :换算比例 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPdScale(Double pdScale) { + this.pdScale = pdScale; + } + + /** + * 字段名称 :采购数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :采购数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :采购价格 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :采购价格 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :采购金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :采购金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseTicketLog.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseTicketLog.java new file mode 100644 index 0000000..a1a497c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchaseTicketLog.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:采购订单操作记录 + * 表代码:cy_purchase_ticket_log + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PurchaseTicketLog") +public class PurchaseTicketLog extends BaseEntity { + + private static final long serialVersionUID = 1341174458317274307L; + + /** + *采购单ID + */ + private String ticketId; + + /** + *采购单编号 + */ + private String ticketNo; + + /** + *操作类型 + */ + private Integer type; + + /** + *操作状态 + */ + private Integer status; + + /** + *描述 + */ + private String description; + + + /** + * 字段名称 :采购单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :采购单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :采购单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :采购单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Purchaseprice.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Purchaseprice.java new file mode 100644 index 0000000..70b9f2b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Purchaseprice.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:采购价格 + * 表代码:cy_purchaseprice + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"Purchaseprice") +public class Purchaseprice extends BaseEntity { + + private static final long serialVersionUID = 1819507407936583107L; + + /** + *默认供应商ID + */ + private String supplierId; + + /** + *原料ID + */ + private String productId; + + /** + *原料编号 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *采购价格 + */ + private Double purchasePrice; + + + /** + * 字段名称 :默认供应商ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSupplierId() { + return this.supplierId; + } + + /** + * 字段名称 :默认供应商ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSupplierId(String supplierId) { + this.supplierId = supplierId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :采购价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPurchasePrice() { + return this.purchasePrice; + } + + /** + * 字段名称 :采购价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPurchasePrice(Double purchasePrice) { + this.purchasePrice = purchasePrice; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchasepriceTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchasepriceTicket.java new file mode 100644 index 0000000..b916533 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchasepriceTicket.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:采购价格管理单 + * 表代码:cy_purchaseprice_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PurchasepriceTicket") +public class PurchasepriceTicket extends BaseEntity { + + private static final long serialVersionUID = 1856385739233580356L; + + /** + *单据编号 + */ + private String no; + + /** + *单据状态 + */ + private Integer status; + + /** + *调价人 + */ + private String makeUser; + + /** + *调价日期 + */ + private Date makeDate; + + /** + *审核人 + */ + private String checkUser; + + /** + *审核日期 + */ + private Date checkDate; + + /** + *备注信息 + */ + private String description; + + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :调价人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMakeUser() { + return this.makeUser; + } + + /** + * 字段名称 :调价人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMakeUser(String makeUser) { + this.makeUser = makeUser; + } + + /** + * 字段名称 :调价日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getMakeDate() { + return this.makeDate; + } + + /** + * 字段名称 :调价日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setMakeDate(Date makeDate) { + this.makeDate = makeDate; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCheckUser() { + return this.checkUser; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCheckUser(String checkUser) { + this.checkUser = checkUser; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckDate() { + return this.checkDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckDate(Date checkDate) { + this.checkDate = checkDate; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchasepriceTicketMaterial.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchasepriceTicketMaterial.java new file mode 100644 index 0000000..258949b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/PurchasepriceTicketMaterial.java @@ -0,0 +1,295 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:采购价格单原料 + * 表代码:cy_purchaseprice_ticket_material + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"PurchasepriceTicketMaterial") +public class PurchasepriceTicketMaterial extends BaseEntity { + + private static final long serialVersionUID = 1777516134645035107L; + + /** + *采购价格单ID + */ + private String ticketId; + + /** + *默认供应商ID + */ + private String supplierId; + + /** + *原料ID + */ + private String productId; + + /** + *原料编号 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *采购单位 + */ + private String purchaseUnitId; + + /** + *历史采购价 + */ + private Double hpurchasePrice; + + /** + *新采购价 + */ + private Double purchasePrice; + + /** + *备注 + */ + private String description; + + + /** + * 字段名称 :采购价格单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :采购价格单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :默认供应商ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSupplierId() { + return this.supplierId; + } + + /** + * 字段名称 :默认供应商ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSupplierId(String supplierId) { + this.supplierId = supplierId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :采购单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPurchaseUnitId() { + return this.purchaseUnitId; + } + + /** + * 字段名称 :采购单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPurchaseUnitId(String purchaseUnitId) { + this.purchaseUnitId = purchaseUnitId; + } + + /** + * 字段名称 :历史采购价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getHpurchasePrice() { + return this.hpurchasePrice; + } + + /** + * 字段名称 :历史采购价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setHpurchasePrice(Double hpurchasePrice) { + this.hpurchasePrice = hpurchasePrice; + } + + /** + * 字段名称 :新采购价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPurchasePrice() { + return this.purchasePrice; + } + + /** + * 字段名称 :新采购价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPurchasePrice(Double purchasePrice) { + this.purchasePrice = purchasePrice; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiAdjustPriceGoods.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiAdjustPriceGoods.java new file mode 100644 index 0000000..3b15a8d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiAdjustPriceGoods.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:企迈调价单商品明细 + * 表代码:cy_qimai_adjust_price_goods + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"QimaiAdjustPriceGoods") +public class QimaiAdjustPriceGoods extends BaseEntity { + + private static final long serialVersionUID = 1863550765840726763L; + + /** + *单据ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String ticketNo; + + /** + *商品ID + */ + private String goodsId; + + /** + *产品ID + */ + private String productId; + + /** + *规格ID + */ + private String specId; + + /** + *售价 + */ + private Double price; + + /** + *会员价 + */ + private Double memberPrice; + + + /** + * 字段名称 :单据ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :单据ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getGoodsId() { + return this.goodsId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setGoodsId(String goodsId) { + this.goodsId = goodsId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMemberPrice() { + return this.memberPrice; + } + + /** + * 字段名称 :会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMemberPrice(Double memberPrice) { + this.memberPrice = memberPrice; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiAdjustPriceStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiAdjustPriceStore.java new file mode 100644 index 0000000..c57dcdc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiAdjustPriceStore.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:企迈调价单门店明细 + * 表代码:cy_qimai_adjust_price_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"QimaiAdjustPriceStore") +public class QimaiAdjustPriceStore extends BaseEntity { + + private static final long serialVersionUID = 1586225435477780352L; + + /** + *单据ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String ticketNo; + + /** + *门店ID + */ + private String storeId; + + + /** + * 字段名称 :单据ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :单据ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiAdjustPriceTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiAdjustPriceTicket.java new file mode 100644 index 0000000..79611e3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiAdjustPriceTicket.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:企迈商品调价单 + * 表代码:cy_qimai_adjust_price_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"QimaiAdjustPriceTicket") +public class QimaiAdjustPriceTicket extends BaseEntity { + + private static final long serialVersionUID = 1022121940424218502L; + + /** + *单据编号 + */ + private String no; + + /** + *生效时间 + */ + private Date effectDate; + + /** + *备注信息 + */ + private String description; + + /** + *单据状态 + */ + private Integer status; + + /** + *审核人 + */ + private String checkPeople; + + /** + *审核日期 + */ + private Date checkDate; + + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :生效时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getEffectDate() { + return this.effectDate; + } + + /** + * 字段名称 :生效时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setEffectDate(Date effectDate) { + this.effectDate = effectDate; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getCheckPeople() { + return this.checkPeople; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setCheckPeople(String checkPeople) { + this.checkPeople = checkPeople; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckDate() { + return this.checkDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckDate(Date checkDate) { + this.checkDate = checkDate; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiAttribute.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiAttribute.java new file mode 100644 index 0000000..03b03d1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiAttribute.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:企迈属性 + * 表代码:cy_qimai_attribute + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"QimaiAttribute") +public class QimaiAttribute extends BaseEntity { + + private static final long serialVersionUID = 1605760808538667677L; + + /** + *店铺设置ID + */ + private String setId; + + /** + *属性编号 + */ + private String no; + + /** + *属性名称 + */ + private String name; + + /** + *分类ID + */ + private String categoryId; + + /** + *企迈属性ID + */ + private String multiId; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetId() { + return this.setId; + } + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetId(String setId) { + this.setId = setId; + } + + /** + * 字段名称 :属性编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :属性编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :属性名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :属性名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :分类ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCategoryId() { + return this.categoryId; + } + + /** + * 字段名称 :分类ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCategoryId(String categoryId) { + this.categoryId = categoryId; + } + + /** + * 字段名称 :企迈属性ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMultiId() { + return this.multiId; + } + + /** + * 字段名称 :企迈属性ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMultiId(String multiId) { + this.multiId = multiId; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiAttributeCategory.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiAttributeCategory.java new file mode 100644 index 0000000..e5ec063 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiAttributeCategory.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:企迈属性分类 + * 表代码:cy_qimai_attribute_category + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"QimaiAttributeCategory") +public class QimaiAttributeCategory extends BaseEntity { + + private static final long serialVersionUID = 1030109079111223533L; + + /** + *店铺设置ID + */ + private String setId; + + /** + *分类编号 + */ + private String no; + + /** + *分类名称 + */ + private String name; + + /** + *是否是规格 + */ + private Integer specFlag; + + /** + *企迈规格ID + */ + private String multiId; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetId() { + return this.setId; + } + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetId(String setId) { + this.setId = setId; + } + + /** + * 字段名称 :分类编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :分类编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :分类名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :分类名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :是否是规格 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSpecFlag() { + return this.specFlag; + } + + /** + * 字段名称 :是否是规格 + * 数据类型 :int + * 是否必填 :false + */ + public void setSpecFlag(Integer specFlag) { + this.specFlag = specFlag; + } + + /** + * 字段名称 :企迈规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMultiId() { + return this.multiId; + } + + /** + * 字段名称 :企迈规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMultiId(String multiId) { + this.multiId = multiId; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiCharge.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiCharge.java new file mode 100644 index 0000000..34bec5e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiCharge.java @@ -0,0 +1,295 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:企迈加料信息 + * 表代码:cy_qimai_charge + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"QimaiCharge") +public class QimaiCharge extends BaseEntity { + + private static final long serialVersionUID = 1096985746117344713L; + + /** + *店铺设置ID + */ + private String setId; + + /** + *名称 + */ + private String name; + + /** + *编码 + */ + private String no; + + /** + *做法ID + */ + private String makeDetailId; + + /** + *企迈ID + */ + private String multiId; + + /** + *销售类型 + */ + private Integer type; + + /** + *堂食价格 + */ + private Double tsPrice; + + /** + *外卖价格 + */ + private Double wmPrice; + + /** + *是否启用 + */ + private Integer enabled; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetId() { + return this.setId; + } + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetId(String setId) { + this.setId = setId; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :编码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :做法ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getMakeDetailId() { + return this.makeDetailId; + } + + /** + * 字段名称 :做法ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setMakeDetailId(String makeDetailId) { + this.makeDetailId = makeDetailId; + } + + /** + * 字段名称 :企迈ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMultiId() { + return this.multiId; + } + + /** + * 字段名称 :企迈ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMultiId(String multiId) { + this.multiId = multiId; + } + + /** + * 字段名称 :销售类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :销售类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :堂食价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTsPrice() { + return this.tsPrice; + } + + /** + * 字段名称 :堂食价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTsPrice(Double tsPrice) { + this.tsPrice = tsPrice; + } + + /** + * 字段名称 :外卖价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getWmPrice() { + return this.wmPrice; + } + + /** + * 字段名称 :外卖价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setWmPrice(Double wmPrice) { + this.wmPrice = wmPrice; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnabled() { + return this.enabled; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setEnabled(Integer enabled) { + this.enabled = enabled; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiOrder.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiOrder.java new file mode 100644 index 0000000..a680bf0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiOrder.java @@ -0,0 +1,1215 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:企迈订单表 + * 表代码:cy_qimai_order + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"QimaiOrder") +public class QimaiOrder extends BaseEntity { + + private static final long serialVersionUID = 1966401381229312914L; + + /** + *消息 + */ + private String message; + + /** + *巨为门店id + */ + private String storeId; + + /** + *订单ID + */ + private String orderId; + + /** + *门店名称 + */ + private String multiStoreName; + + /** + *门店ID + */ + private String multiStoreId; + + /** + *订单号 + */ + private String orderNo; + + /** + *创建时间 + */ + private String createdTime; + + /** + *支付时间 + */ + private String payTime; + + /** + *订单状态 + */ + private Integer status; + + /** + *取单号 + */ + private String sortNum; + + /** + *应付价格 + */ + private Double amount; + + /** + *总价格 + */ + private Double totalAmount; + + /** + *优惠价格 + */ + private Double minusAmount; + + /** + *是否使用优惠券 + */ + private Integer useCoupon; + + /** + *使用的优惠券类型 + */ + private Integer couponType; + + /** + *备注 + */ + private String postscript; + + /** + *订单类型文字 + */ + private String typeCateText; + + /** + *用户名称 + */ + private String userName; + + /** + *支付用户名称 + */ + private String payUserName; + + /** + *订单来源 + */ + private Integer source; + + /** + *来源文字 + */ + private String sourceTxt; + + /** + *用户手机号 + */ + private String moblie; + + /** + *用户全称 + */ + private String userNameAll; + + /** + *商品名称集合 + */ + private String goodsName; + + /** + *退款订单id + */ + private String refundOrderId; + + /** + *退款订单状态 + */ + private Integer refundOrderStatus; + + /** + *退款订单状态文字 + */ + private String refundOrderStatusText; + + /** + *商品详情 + */ + private String goods; + + /** + *是否多人点餐 + */ + private Integer mutilUser; + + /** + *桌号 + */ + private String tableNumber; + + /** + *配送费 + */ + private Double freight; + + /** + *餐具费 + */ + private Double tablewarePrice; + + /** + *状态 + */ + private Integer finalStatus; + + /** + *状态文字 + */ + private String statusText; + + /** + *就餐人数 + */ + private Integer peopleNumber; + + /** + *门店编码 + */ + private String multiStoreMark; + + /** + *订单完成时间 + */ + private String completedAt; + + /** + *预计送达时间 + */ + private String reserveTakeoutTime; + + /** + *预点餐订单的就餐时间 + */ + private String mealTime; + + /** + *配送快递 + */ + private Integer express; + + /** + *纬度 + */ + private String lat; + + /** + *经度 + */ + private String lng; + + /** + *配送信息 + */ + private String thirdDelivery; + + /** + *收件人名称 + */ + private String acceptName; + + /** + *收件人联系方式 + */ + private String acceptMobile; + + /** + *收件人地址 + */ + private String address; + + /** + *支付详情 + */ + private String payModel; + + /** + *余额支付金额 + */ + private Double walletAmount; + + /** + *实际支付金额 + */ + private Double receivableAmount; + + /** + *扩展字段1 + */ + private String ext1; + + /** + *扩展字段2 + */ + private String ext2; + + /** + *扩展字段3 + */ + private String ext3; + + + /** + * 字段名称 :消息 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getMessage() { + return this.message; + } + + /** + * 字段名称 :消息 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setMessage(String message) { + this.message = message; + } + + /** + * 字段名称 :巨为门店id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :巨为门店id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderId() { + return this.orderId; + } + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderId(String orderId) { + this.orderId = orderId; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getMultiStoreName() { + return this.multiStoreName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setMultiStoreName(String multiStoreName) { + this.multiStoreName = multiStoreName; + } + + /** + * 字段名称 :门店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMultiStoreId() { + return this.multiStoreId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMultiStoreId(String multiStoreId) { + this.multiStoreId = multiStoreId; + } + + /** + * 字段名称 :订单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :订单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderNo(String orderNo) { + this.orderNo = orderNo; + } + + /** + * 字段名称 :创建时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCreatedTime() { + return this.createdTime; + } + + /** + * 字段名称 :创建时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCreatedTime(String createdTime) { + this.createdTime = createdTime; + } + + /** + * 字段名称 :支付时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPayTime() { + return this.payTime; + } + + /** + * 字段名称 :支付时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPayTime(String payTime) { + this.payTime = payTime; + } + + /** + * 字段名称 :订单状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :订单状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :取单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSortNum() { + return this.sortNum; + } + + /** + * 字段名称 :取单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSortNum(String sortNum) { + this.sortNum = sortNum; + } + + /** + * 字段名称 :应付价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :应付价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :总价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTotalAmount() { + return this.totalAmount; + } + + /** + * 字段名称 :总价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTotalAmount(Double totalAmount) { + this.totalAmount = totalAmount; + } + + /** + * 字段名称 :优惠价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMinusAmount() { + return this.minusAmount; + } + + /** + * 字段名称 :优惠价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMinusAmount(Double minusAmount) { + this.minusAmount = minusAmount; + } + + /** + * 字段名称 :是否使用优惠券 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getUseCoupon() { + return this.useCoupon; + } + + /** + * 字段名称 :是否使用优惠券 + * 数据类型 :int + * 是否必填 :false + */ + public void setUseCoupon(Integer useCoupon) { + this.useCoupon = useCoupon; + } + + /** + * 字段名称 :使用的优惠券类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getCouponType() { + return this.couponType; + } + + /** + * 字段名称 :使用的优惠券类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setCouponType(Integer couponType) { + this.couponType = couponType; + } + + /** + * 字段名称 :备注 + * 数据类型 :text + * 是否必填 :false + */ + public String getPostscript() { + return this.postscript; + } + + /** + * 字段名称 :备注 + * 数据类型 :text + * 是否必填 :false + */ + public void setPostscript(String postscript) { + this.postscript = postscript; + } + + /** + * 字段名称 :订单类型文字 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeCateText() { + return this.typeCateText; + } + + /** + * 字段名称 :订单类型文字 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeCateText(String typeCateText) { + this.typeCateText = typeCateText; + } + + /** + * 字段名称 :用户名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getUserName() { + return this.userName; + } + + /** + * 字段名称 :用户名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setUserName(String userName) { + this.userName = userName; + } + + /** + * 字段名称 :支付用户名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getPayUserName() { + return this.payUserName; + } + + /** + * 字段名称 :支付用户名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setPayUserName(String payUserName) { + this.payUserName = payUserName; + } + + /** + * 字段名称 :订单来源 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSource() { + return this.source; + } + + /** + * 字段名称 :订单来源 + * 数据类型 :int + * 是否必填 :false + */ + public void setSource(Integer source) { + this.source = source; + } + + /** + * 字段名称 :来源文字 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSourceTxt() { + return this.sourceTxt; + } + + /** + * 字段名称 :来源文字 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSourceTxt(String sourceTxt) { + this.sourceTxt = sourceTxt; + } + + /** + * 字段名称 :用户手机号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getMoblie() { + return this.moblie; + } + + /** + * 字段名称 :用户手机号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setMoblie(String moblie) { + this.moblie = moblie; + } + + /** + * 字段名称 :用户全称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getUserNameAll() { + return this.userNameAll; + } + + /** + * 字段名称 :用户全称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setUserNameAll(String userNameAll) { + this.userNameAll = userNameAll; + } + + /** + * 字段名称 :商品名称集合 + * 数据类型 :text + * 是否必填 :false + */ + public String getGoodsName() { + return this.goodsName; + } + + /** + * 字段名称 :商品名称集合 + * 数据类型 :text + * 是否必填 :false + */ + public void setGoodsName(String goodsName) { + this.goodsName = goodsName; + } + + /** + * 字段名称 :退款订单id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getRefundOrderId() { + return this.refundOrderId; + } + + /** + * 字段名称 :退款订单id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setRefundOrderId(String refundOrderId) { + this.refundOrderId = refundOrderId; + } + + /** + * 字段名称 :退款订单状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getRefundOrderStatus() { + return this.refundOrderStatus; + } + + /** + * 字段名称 :退款订单状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setRefundOrderStatus(Integer refundOrderStatus) { + this.refundOrderStatus = refundOrderStatus; + } + + /** + * 字段名称 :退款订单状态文字 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getRefundOrderStatusText() { + return this.refundOrderStatusText; + } + + /** + * 字段名称 :退款订单状态文字 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setRefundOrderStatusText(String refundOrderStatusText) { + this.refundOrderStatusText = refundOrderStatusText; + } + + /** + * 字段名称 :商品详情 + * 数据类型 :text + * 是否必填 :false + */ + public String getGoods() { + return this.goods; + } + + /** + * 字段名称 :商品详情 + * 数据类型 :text + * 是否必填 :false + */ + public void setGoods(String goods) { + this.goods = goods; + } + + /** + * 字段名称 :是否多人点餐 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getMutilUser() { + return this.mutilUser; + } + + /** + * 字段名称 :是否多人点餐 + * 数据类型 :int + * 是否必填 :false + */ + public void setMutilUser(Integer mutilUser) { + this.mutilUser = mutilUser; + } + + /** + * 字段名称 :桌号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTableNumber() { + return this.tableNumber; + } + + /** + * 字段名称 :桌号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTableNumber(String tableNumber) { + this.tableNumber = tableNumber; + } + + /** + * 字段名称 :配送费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getFreight() { + return this.freight; + } + + /** + * 字段名称 :配送费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setFreight(Double freight) { + this.freight = freight; + } + + /** + * 字段名称 :餐具费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTablewarePrice() { + return this.tablewarePrice; + } + + /** + * 字段名称 :餐具费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTablewarePrice(Double tablewarePrice) { + this.tablewarePrice = tablewarePrice; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getFinalStatus() { + return this.finalStatus; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setFinalStatus(Integer finalStatus) { + this.finalStatus = finalStatus; + } + + /** + * 字段名称 :状态文字 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStatusText() { + return this.statusText; + } + + /** + * 字段名称 :状态文字 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStatusText(String statusText) { + this.statusText = statusText; + } + + /** + * 字段名称 :就餐人数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPeopleNumber() { + return this.peopleNumber; + } + + /** + * 字段名称 :就餐人数 + * 数据类型 :int + * 是否必填 :false + */ + public void setPeopleNumber(Integer peopleNumber) { + this.peopleNumber = peopleNumber; + } + + /** + * 字段名称 :门店编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMultiStoreMark() { + return this.multiStoreMark; + } + + /** + * 字段名称 :门店编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMultiStoreMark(String multiStoreMark) { + this.multiStoreMark = multiStoreMark; + } + + /** + * 字段名称 :订单完成时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCompletedAt() { + return this.completedAt; + } + + /** + * 字段名称 :订单完成时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCompletedAt(String completedAt) { + this.completedAt = completedAt; + } + + /** + * 字段名称 :预计送达时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getReserveTakeoutTime() { + return this.reserveTakeoutTime; + } + + /** + * 字段名称 :预计送达时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setReserveTakeoutTime(String reserveTakeoutTime) { + this.reserveTakeoutTime = reserveTakeoutTime; + } + + /** + * 字段名称 :预点餐订单的就餐时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMealTime() { + return this.mealTime; + } + + /** + * 字段名称 :预点餐订单的就餐时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMealTime(String mealTime) { + this.mealTime = mealTime; + } + + /** + * 字段名称 :配送快递 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getExpress() { + return this.express; + } + + /** + * 字段名称 :配送快递 + * 数据类型 :int + * 是否必填 :false + */ + public void setExpress(Integer express) { + this.express = express; + } + + /** + * 字段名称 :纬度 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLat() { + return this.lat; + } + + /** + * 字段名称 :纬度 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLat(String lat) { + this.lat = lat; + } + + /** + * 字段名称 :经度 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLng() { + return this.lng; + } + + /** + * 字段名称 :经度 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLng(String lng) { + this.lng = lng; + } + + /** + * 字段名称 :配送信息 + * 数据类型 :text + * 是否必填 :false + */ + public String getThirdDelivery() { + return this.thirdDelivery; + } + + /** + * 字段名称 :配送信息 + * 数据类型 :text + * 是否必填 :false + */ + public void setThirdDelivery(String thirdDelivery) { + this.thirdDelivery = thirdDelivery; + } + + /** + * 字段名称 :收件人名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getAcceptName() { + return this.acceptName; + } + + /** + * 字段名称 :收件人名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setAcceptName(String acceptName) { + this.acceptName = acceptName; + } + + /** + * 字段名称 :收件人联系方式 + * 数据类型 :text + * 是否必填 :false + */ + public String getAcceptMobile() { + return this.acceptMobile; + } + + /** + * 字段名称 :收件人联系方式 + * 数据类型 :text + * 是否必填 :false + */ + public void setAcceptMobile(String acceptMobile) { + this.acceptMobile = acceptMobile; + } + + /** + * 字段名称 :收件人地址 + * 数据类型 :text + * 是否必填 :false + */ + public String getAddress() { + return this.address; + } + + /** + * 字段名称 :收件人地址 + * 数据类型 :text + * 是否必填 :false + */ + public void setAddress(String address) { + this.address = address; + } + + /** + * 字段名称 :支付详情 + * 数据类型 :text + * 是否必填 :false + */ + public String getPayModel() { + return this.payModel; + } + + /** + * 字段名称 :支付详情 + * 数据类型 :text + * 是否必填 :false + */ + public void setPayModel(String payModel) { + this.payModel = payModel; + } + + /** + * 字段名称 :余额支付金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getWalletAmount() { + return this.walletAmount; + } + + /** + * 字段名称 :余额支付金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setWalletAmount(Double walletAmount) { + this.walletAmount = walletAmount; + } + + /** + * 字段名称 :实际支付金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivableAmount() { + return this.receivableAmount; + } + + /** + * 字段名称 :实际支付金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivableAmount(Double receivableAmount) { + this.receivableAmount = receivableAmount; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiOrderItem.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiOrderItem.java new file mode 100644 index 0000000..b7089d8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiOrderItem.java @@ -0,0 +1,410 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:企迈订单明细表 + * 表代码:cy_qimai_order_item + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"QimaiOrderItem") +public class QimaiOrderItem extends BaseEntity { + + private static final long serialVersionUID = 1000203741522514218L; + + /** + *订单ID + */ + private String orderId; + + /** + *菜品id + */ + private String dishId; + + /** + *商品名称 + */ + private String name; + + /** + *图片 + */ + private String image; + + /** + *价格 + */ + private Double price; + + /** + *优惠金额 + */ + private Double minus; + + /** + *成本价格 + */ + private Double costPrice; + + /** + *数量 + */ + private Integer num; + + /** + *是否发货 + */ + private Integer isSend; + + /** + *发货时间 + */ + private String sentAt; + + /** + *是否赠品 + */ + private Integer isGive; + + /** + *推广员佣金 + */ + private Double incomeRate; + + /** + *商品标识 + */ + private String tradeMark; + + /** + *邀请人佣金 + */ + private Double incomeRate2; + + /** + *扩展字段1 + */ + private String ext1; + + /** + *扩展字段2 + */ + private String ext2; + + /** + *扩展字段3 + */ + private String ext3; + + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderId() { + return this.orderId; + } + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderId(String orderId) { + this.orderId = orderId; + } + + /** + * 字段名称 :菜品id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDishId() { + return this.dishId; + } + + /** + * 字段名称 :菜品id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDishId(String dishId) { + this.dishId = dishId; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :图片 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getImage() { + return this.image; + } + + /** + * 字段名称 :图片 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setImage(String image) { + this.image = image; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMinus() { + return this.minus; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMinus(Double minus) { + this.minus = minus; + } + + /** + * 字段名称 :成本价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCostPrice() { + return this.costPrice; + } + + /** + * 字段名称 :成本价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCostPrice(Double costPrice) { + this.costPrice = costPrice; + } + + /** + * 字段名称 :数量 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getNum() { + return this.num; + } + + /** + * 字段名称 :数量 + * 数据类型 :int + * 是否必填 :false + */ + public void setNum(Integer num) { + this.num = num; + } + + /** + * 字段名称 :是否发货 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsSend() { + return this.isSend; + } + + /** + * 字段名称 :是否发货 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsSend(Integer isSend) { + this.isSend = isSend; + } + + /** + * 字段名称 :发货时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSentAt() { + return this.sentAt; + } + + /** + * 字段名称 :发货时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSentAt(String sentAt) { + this.sentAt = sentAt; + } + + /** + * 字段名称 :是否赠品 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsGive() { + return this.isGive; + } + + /** + * 字段名称 :是否赠品 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsGive(Integer isGive) { + this.isGive = isGive; + } + + /** + * 字段名称 :推广员佣金 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getIncomeRate() { + return this.incomeRate; + } + + /** + * 字段名称 :推广员佣金 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setIncomeRate(Double incomeRate) { + this.incomeRate = incomeRate; + } + + /** + * 字段名称 :商品标识 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTradeMark() { + return this.tradeMark; + } + + /** + * 字段名称 :商品标识 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTradeMark(String tradeMark) { + this.tradeMark = tradeMark; + } + + /** + * 字段名称 :邀请人佣金 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getIncomeRate2() { + return this.incomeRate2; + } + + /** + * 字段名称 :邀请人佣金 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setIncomeRate2(Double incomeRate2) { + this.incomeRate2 = incomeRate2; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiOrderPay.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiOrderPay.java new file mode 100644 index 0000000..61f373b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiOrderPay.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:企迈订单支付信息 + * 表代码:cy_qimai_order_pay + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"QimaiOrderPay") +public class QimaiOrderPay extends BaseEntity { + + private static final long serialVersionUID = 1441870677145456266L; + + /** + *订单ID + */ + private String orderId; + + /** + *支付方式名称 + */ + private String name; + + /** + *支付方式id + */ + private Integer type; + + /** + *扩展字段1 + */ + private String ext1; + + /** + *扩展字段2 + */ + private String ext2; + + /** + *扩展字段3 + */ + private String ext3; + + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderId() { + return this.orderId; + } + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderId(String orderId) { + this.orderId = orderId; + } + + /** + * 字段名称 :支付方式名称 + * 数据类型 :text + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :支付方式名称 + * 数据类型 :text + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :支付方式id + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :支付方式id + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProduct.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProduct.java new file mode 100644 index 0000000..3a971ae --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProduct.java @@ -0,0 +1,801 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:企迈商品信息 + * 表代码:cy_qimai_product + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"QimaiProduct") +public class QimaiProduct extends BaseEntity { + + private static final long serialVersionUID = 1480232957470582408L; + + /** + *店铺设置ID + */ + private String setId; + + /** + *产品ID + */ + private String productId; + + /** + *产品编号 + */ + private String productNo; + + /** + *商品名称 + */ + private String name; + + /** + *商品描述 + */ + private String description; + + /** + *企迈商品ID + */ + private String multiId; + + /** + *分类ID + */ + private String categoryId; + + /** + *分类路径 + */ + private String categoryPath; + + /** + *是否多规格 + */ + private Integer useSpec; + + /** + *商品单位 + */ + private String unit; + + /** + *是否分时段销售 + */ + private Integer sellTimeStatus; + + /** + *销售时段 + */ + private String sellTime; + + /** + *商品制做时间 + */ + private Integer productionTime; + + /** + *商品销售类型 + */ + private String saleType; + + /** + *详细介绍 + */ + private String content; + + /** + *打包费 + */ + private Double packCost; + + /** + *堂食市场价 + */ + private Double tsOrgPrice; + + /** + *外卖市场价 + */ + private Double wmOrgPrice; + + /** + *堂食销售价 + */ + private Double tsSalePrice; + + /** + *外卖销售价 + */ + private Double wmSalePrice; + + /** + *是否参与会员折扣 + */ + private Integer isCardDiscount; + + /** + *是否上架 + */ + private Integer shelveStatus; + + /** + *计价方式 + */ + private Integer pricingMode; + + /** + *门店销售渠道 + */ + private Integer isSellOffline; + + /** + *网络销售渠道 + */ + private Integer isSellOnline; + + /** + *网店售价 + */ + private Double sellPrice; + + /** + *是否开启属性 + */ + private Integer isUseProperty; + + /** + *做法详情 + */ + private String property; + + /** + *商品的销售类型 + */ + private Integer type; + + /** + *套餐的封面图 + */ + private String coverImg; + + /** + *产品销量 + */ + private Integer sales; + + /** + *扩展字段1 + */ + private String ext1; + + /** + *扩展字段2 + */ + private String ext2; + + /** + *扩展字段3 + */ + private String ext3; + + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetId() { + return this.setId; + } + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetId(String setId) { + this.setId = setId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :商品描述 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :商品描述 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :企迈商品ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMultiId() { + return this.multiId; + } + + /** + * 字段名称 :企迈商品ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMultiId(String multiId) { + this.multiId = multiId; + } + + /** + * 字段名称 :分类ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getCategoryId() { + return this.categoryId; + } + + /** + * 字段名称 :分类ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setCategoryId(String categoryId) { + this.categoryId = categoryId; + } + + /** + * 字段名称 :分类路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getCategoryPath() { + return this.categoryPath; + } + + /** + * 字段名称 :分类路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setCategoryPath(String categoryPath) { + this.categoryPath = categoryPath; + } + + /** + * 字段名称 :是否多规格 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getUseSpec() { + return this.useSpec; + } + + /** + * 字段名称 :是否多规格 + * 数据类型 :int + * 是否必填 :false + */ + public void setUseSpec(Integer useSpec) { + this.useSpec = useSpec; + } + + /** + * 字段名称 :商品单位 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getUnit() { + return this.unit; + } + + /** + * 字段名称 :商品单位 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setUnit(String unit) { + this.unit = unit; + } + + /** + * 字段名称 :是否分时段销售 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSellTimeStatus() { + return this.sellTimeStatus; + } + + /** + * 字段名称 :是否分时段销售 + * 数据类型 :int + * 是否必填 :false + */ + public void setSellTimeStatus(Integer sellTimeStatus) { + this.sellTimeStatus = sellTimeStatus; + } + + /** + * 字段名称 :销售时段 + * 数据类型 :text + * 是否必填 :false + */ + public String getSellTime() { + return this.sellTime; + } + + /** + * 字段名称 :销售时段 + * 数据类型 :text + * 是否必填 :false + */ + public void setSellTime(String sellTime) { + this.sellTime = sellTime; + } + + /** + * 字段名称 :商品制做时间 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getProductionTime() { + return this.productionTime; + } + + /** + * 字段名称 :商品制做时间 + * 数据类型 :int + * 是否必填 :false + */ + public void setProductionTime(Integer productionTime) { + this.productionTime = productionTime; + } + + /** + * 字段名称 :商品销售类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSaleType() { + return this.saleType; + } + + /** + * 字段名称 :商品销售类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSaleType(String saleType) { + this.saleType = saleType; + } + + /** + * 字段名称 :详细介绍 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getContent() { + return this.content; + } + + /** + * 字段名称 :详细介绍 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setContent(String content) { + this.content = content; + } + + /** + * 字段名称 :打包费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPackCost() { + return this.packCost; + } + + /** + * 字段名称 :打包费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPackCost(Double packCost) { + this.packCost = packCost; + } + + /** + * 字段名称 :堂食市场价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTsOrgPrice() { + return this.tsOrgPrice; + } + + /** + * 字段名称 :堂食市场价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTsOrgPrice(Double tsOrgPrice) { + this.tsOrgPrice = tsOrgPrice; + } + + /** + * 字段名称 :外卖市场价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getWmOrgPrice() { + return this.wmOrgPrice; + } + + /** + * 字段名称 :外卖市场价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setWmOrgPrice(Double wmOrgPrice) { + this.wmOrgPrice = wmOrgPrice; + } + + /** + * 字段名称 :堂食销售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTsSalePrice() { + return this.tsSalePrice; + } + + /** + * 字段名称 :堂食销售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTsSalePrice(Double tsSalePrice) { + this.tsSalePrice = tsSalePrice; + } + + /** + * 字段名称 :外卖销售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getWmSalePrice() { + return this.wmSalePrice; + } + + /** + * 字段名称 :外卖销售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setWmSalePrice(Double wmSalePrice) { + this.wmSalePrice = wmSalePrice; + } + + /** + * 字段名称 :是否参与会员折扣 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsCardDiscount() { + return this.isCardDiscount; + } + + /** + * 字段名称 :是否参与会员折扣 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsCardDiscount(Integer isCardDiscount) { + this.isCardDiscount = isCardDiscount; + } + + /** + * 字段名称 :是否上架 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getShelveStatus() { + return this.shelveStatus; + } + + /** + * 字段名称 :是否上架 + * 数据类型 :int + * 是否必填 :false + */ + public void setShelveStatus(Integer shelveStatus) { + this.shelveStatus = shelveStatus; + } + + /** + * 字段名称 :计价方式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPricingMode() { + return this.pricingMode; + } + + /** + * 字段名称 :计价方式 + * 数据类型 :int + * 是否必填 :false + */ + public void setPricingMode(Integer pricingMode) { + this.pricingMode = pricingMode; + } + + /** + * 字段名称 :门店销售渠道 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsSellOffline() { + return this.isSellOffline; + } + + /** + * 字段名称 :门店销售渠道 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsSellOffline(Integer isSellOffline) { + this.isSellOffline = isSellOffline; + } + + /** + * 字段名称 :网络销售渠道 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsSellOnline() { + return this.isSellOnline; + } + + /** + * 字段名称 :网络销售渠道 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsSellOnline(Integer isSellOnline) { + this.isSellOnline = isSellOnline; + } + + /** + * 字段名称 :网店售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getSellPrice() { + return this.sellPrice; + } + + /** + * 字段名称 :网店售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setSellPrice(Double sellPrice) { + this.sellPrice = sellPrice; + } + + /** + * 字段名称 :是否开启属性 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsUseProperty() { + return this.isUseProperty; + } + + /** + * 字段名称 :是否开启属性 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsUseProperty(Integer isUseProperty) { + this.isUseProperty = isUseProperty; + } + + /** + * 字段名称 :做法详情 + * 数据类型 :text + * 是否必填 :false + */ + public String getProperty() { + return this.property; + } + + /** + * 字段名称 :做法详情 + * 数据类型 :text + * 是否必填 :false + */ + public void setProperty(String property) { + this.property = property; + } + + /** + * 字段名称 :商品的销售类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :商品的销售类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :套餐的封面图 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getCoverImg() { + return this.coverImg; + } + + /** + * 字段名称 :套餐的封面图 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setCoverImg(String coverImg) { + this.coverImg = coverImg; + } + + /** + * 字段名称 :产品销量 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSales() { + return this.sales; + } + + /** + * 字段名称 :产品销量 + * 数据类型 :int + * 是否必填 :false + */ + public void setSales(Integer sales) { + this.sales = sales; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProductAttribute.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProductAttribute.java new file mode 100644 index 0000000..bac92a4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProductAttribute.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:企迈商品属性 + * 表代码:cy_qimai_product_attribute + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"QimaiProductAttribute") +public class QimaiProductAttribute extends BaseEntity { + + private static final long serialVersionUID = 1912832921814112356L; + + /** + *店铺设置ID + */ + private String setId; + + /** + *商品ID + */ + private String productId; + + /** + *属性ID + */ + private String attributeId; + + /** + *属性编号 + */ + private String no; + + /** + *属性名称 + */ + private String name; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetId() { + return this.setId; + } + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetId(String setId) { + this.setId = setId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :属性ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getAttributeId() { + return this.attributeId; + } + + /** + * 字段名称 :属性ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setAttributeId(String attributeId) { + this.attributeId = attributeId; + } + + /** + * 字段名称 :属性编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :属性编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :属性名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :属性名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProductCategory.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProductCategory.java new file mode 100644 index 0000000..4d5e0e6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProductCategory.java @@ -0,0 +1,318 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:企迈商品分类 + * 表代码:cy_qimai_product_category + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"QimaiProductCategory") +public class QimaiProductCategory extends BaseEntity { + + private static final long serialVersionUID = 1077565895197807708L; + + /** + *店铺设置ID + */ + private String setId; + + /** + *分类编号 + */ + private String no; + + /** + *分类名称 + */ + private String name; + + /** + *分类类型 + */ + private Integer type; + + /** + *企迈分类ID + */ + private String multiId; + + /** + *上架时间 + */ + private Integer showPeriod; + + /** + *开始日期 + */ + private String beginDate; + + /** + *结束日期 + */ + private String endDate; + + /** + *周频 + */ + private String weeks; + + /** + *时间段 + */ + private String period; + + /** + *扩展字段1 + */ + private String ext1; + + /** + *扩展字段2 + */ + private String ext2; + + /** + *扩展字段3 + */ + private String ext3; + + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetId() { + return this.setId; + } + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetId(String setId) { + this.setId = setId; + } + + /** + * 字段名称 :分类编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :分类编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :分类名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :分类名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :分类类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :分类类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :企迈分类ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getMultiId() { + return this.multiId; + } + + /** + * 字段名称 :企迈分类ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setMultiId(String multiId) { + this.multiId = multiId; + } + + /** + * 字段名称 :上架时间 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getShowPeriod() { + return this.showPeriod; + } + + /** + * 字段名称 :上架时间 + * 数据类型 :int + * 是否必填 :false + */ + public void setShowPeriod(Integer showPeriod) { + this.showPeriod = showPeriod; + } + + /** + * 字段名称 :开始日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBeginDate() { + return this.beginDate; + } + + /** + * 字段名称 :开始日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBeginDate(String beginDate) { + this.beginDate = beginDate; + } + + /** + * 字段名称 :结束日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getEndDate() { + return this.endDate; + } + + /** + * 字段名称 :结束日期 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setEndDate(String endDate) { + this.endDate = endDate; + } + + /** + * 字段名称 :周频 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getWeeks() { + return this.weeks; + } + + /** + * 字段名称 :周频 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setWeeks(String weeks) { + this.weeks = weeks; + } + + /** + * 字段名称 :时间段 + * 数据类型 :text + * 是否必填 :false + */ + public String getPeriod() { + return this.period; + } + + /** + * 字段名称 :时间段 + * 数据类型 :text + * 是否必填 :false + */ + public void setPeriod(String period) { + this.period = period; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProductCharge.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProductCharge.java new file mode 100644 index 0000000..d84cf69 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProductCharge.java @@ -0,0 +1,272 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:企迈商品加料信息 + * 表代码:cy_qimai_product_charge + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"QimaiProductCharge") +public class QimaiProductCharge extends BaseEntity { + + private static final long serialVersionUID = 1053854440212839446L; + + /** + *店铺设置ID + */ + private String setId; + + /** + *商品ID + */ + private String productId; + + /** + *系统企迈商品ID + */ + private String qimaiProductId; + + /** + *企迈商品ID + */ + private String multiId; + + /** + *加料ID + */ + private String chargeId; + + /** + *做法ID + */ + private String makeDetailId; + + /** + *加料名称 + */ + private String chargeName; + + /** + *企迈加料Id + */ + private String chargeMultiId; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetId() { + return this.setId; + } + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetId(String setId) { + this.setId = setId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :系统企迈商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getQimaiProductId() { + return this.qimaiProductId; + } + + /** + * 字段名称 :系统企迈商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setQimaiProductId(String qimaiProductId) { + this.qimaiProductId = qimaiProductId; + } + + /** + * 字段名称 :企迈商品ID + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getMultiId() { + return this.multiId; + } + + /** + * 字段名称 :企迈商品ID + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setMultiId(String multiId) { + this.multiId = multiId; + } + + /** + * 字段名称 :加料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getChargeId() { + return this.chargeId; + } + + /** + * 字段名称 :加料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setChargeId(String chargeId) { + this.chargeId = chargeId; + } + + /** + * 字段名称 :做法ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getMakeDetailId() { + return this.makeDetailId; + } + + /** + * 字段名称 :做法ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setMakeDetailId(String makeDetailId) { + this.makeDetailId = makeDetailId; + } + + /** + * 字段名称 :加料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getChargeName() { + return this.chargeName; + } + + /** + * 字段名称 :加料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setChargeName(String chargeName) { + this.chargeName = chargeName; + } + + /** + * 字段名称 :企迈加料Id + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getChargeMultiId() { + return this.chargeMultiId; + } + + /** + * 字段名称 :企迈加料Id + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setChargeMultiId(String chargeMultiId) { + this.chargeMultiId = chargeMultiId; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProductSpec.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProductSpec.java new file mode 100644 index 0000000..6238bd7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProductSpec.java @@ -0,0 +1,318 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:企迈商品规格信息 + * 表代码:cy_qimai_product_spec + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"QimaiProductSpec") +public class QimaiProductSpec extends BaseEntity { + + private static final long serialVersionUID = 1775460093038838059L; + + /** + *店铺设置ID + */ + private String setId; + + /** + *商品ID + */ + private String productId; + + /** + *属性ID + */ + private String attributeId; + + /** + *规格ID + */ + private String specId; + + /** + *规格编号 + */ + private String no; + + /** + *规格名称 + */ + private String name; + + /** + *堂食市场价 + */ + private Double tsOrgPrice; + + /** + *外卖市场价 + */ + private Double wmOrgPrice; + + /** + *堂食销售价 + */ + private Double tsSalePrice; + + /** + *外卖销售价 + */ + private Double wmSalePrice; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetId() { + return this.setId; + } + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetId(String setId) { + this.setId = setId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :属性ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getAttributeId() { + return this.attributeId; + } + + /** + * 字段名称 :属性ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setAttributeId(String attributeId) { + this.attributeId = attributeId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :规格编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :堂食市场价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTsOrgPrice() { + return this.tsOrgPrice; + } + + /** + * 字段名称 :堂食市场价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTsOrgPrice(Double tsOrgPrice) { + this.tsOrgPrice = tsOrgPrice; + } + + /** + * 字段名称 :外卖市场价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getWmOrgPrice() { + return this.wmOrgPrice; + } + + /** + * 字段名称 :外卖市场价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setWmOrgPrice(Double wmOrgPrice) { + this.wmOrgPrice = wmOrgPrice; + } + + /** + * 字段名称 :堂食销售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTsSalePrice() { + return this.tsSalePrice; + } + + /** + * 字段名称 :堂食销售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTsSalePrice(Double tsSalePrice) { + this.tsSalePrice = tsSalePrice; + } + + /** + * 字段名称 :外卖销售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getWmSalePrice() { + return this.wmSalePrice; + } + + /** + * 字段名称 :外卖销售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setWmSalePrice(Double wmSalePrice) { + this.wmSalePrice = wmSalePrice; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProductTemplate.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProductTemplate.java new file mode 100644 index 0000000..c50cde1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProductTemplate.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:企迈小程序商品模板 + * 表代码:cy_qimai_product_template + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"QimaiProductTemplate") +public class QimaiProductTemplate extends BaseEntity { + + private static final long serialVersionUID = 1954656889315297547L; + + /** + *设置ID + */ + private String setId; + + /** + *编号 + */ + private String no; + + /** + *名称 + */ + private String name; + + /** + *备注 + */ + private String description; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSetId() { + return this.setId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSetId(String setId) { + this.setId = setId; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProductTemplateDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProductTemplateDetail.java new file mode 100644 index 0000000..7efad61 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProductTemplateDetail.java @@ -0,0 +1,318 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:企迈小程序商品模板明细 + * 表代码:cy_qimai_product_template_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"QimaiProductTemplateDetail") +public class QimaiProductTemplateDetail extends BaseEntity { + + private static final long serialVersionUID = 1386675140039001480L; + + /** + *设置ID + */ + private String setId; + + /** + *模板ID + */ + private String templateId; + + /** + *单据编号 + */ + private String templateNo; + + /** + *商品ID + */ + private String productId; + + /** + *商品编号 + */ + private String productNo; + + /** + *商品名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *企迈商品Id + */ + private String qimaiProductId; + + /** + *企迈商品规格Id + */ + private String qimaiSpecId; + + /** + *企迈商品同步Id + */ + private String productMultiId; + + /** + *售价 + */ + private Double price; + + /** + *会员价 + */ + private Double memberPrice; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSetId() { + return this.setId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSetId(String setId) { + this.setId = setId; + } + + /** + * 字段名称 :模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTemplateId() { + return this.templateId; + } + + /** + * 字段名称 :模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTemplateId(String templateId) { + this.templateId = templateId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTemplateNo() { + return this.templateNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTemplateNo(String templateNo) { + this.templateNo = templateNo; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :企迈商品Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getQimaiProductId() { + return this.qimaiProductId; + } + + /** + * 字段名称 :企迈商品Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setQimaiProductId(String qimaiProductId) { + this.qimaiProductId = qimaiProductId; + } + + /** + * 字段名称 :企迈商品规格Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getQimaiSpecId() { + return this.qimaiSpecId; + } + + /** + * 字段名称 :企迈商品规格Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setQimaiSpecId(String qimaiSpecId) { + this.qimaiSpecId = qimaiSpecId; + } + + /** + * 字段名称 :企迈商品同步Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductMultiId() { + return this.productMultiId; + } + + /** + * 字段名称 :企迈商品同步Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductMultiId(String productMultiId) { + this.productMultiId = productMultiId; + } + + /** + * 字段名称 :售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMemberPrice() { + return this.memberPrice; + } + + /** + * 字段名称 :会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMemberPrice(Double memberPrice) { + this.memberPrice = memberPrice; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProductTemplateStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProductTemplateStore.java new file mode 100644 index 0000000..b143ebe --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiProductTemplateStore.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:企迈小程序商品模板门店明细 + * 表代码:cy_qimai_product_template_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"QimaiProductTemplateStore") +public class QimaiProductTemplateStore extends BaseEntity { + + private static final long serialVersionUID = 1093511670503496332L; + + /** + *设置ID + */ + private String setId; + + /** + *模板ID + */ + private String templateId; + + /** + *单据编号 + */ + private String templateNo; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *企迈门店Id + */ + private String qimaiStoreId; + + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSetId() { + return this.setId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSetId(String setId) { + this.setId = setId; + } + + /** + * 字段名称 :模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTemplateId() { + return this.templateId; + } + + /** + * 字段名称 :模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTemplateId(String templateId) { + this.templateId = templateId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTemplateNo() { + return this.templateNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTemplateNo(String templateNo) { + this.templateNo = templateNo; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :企迈门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getQimaiStoreId() { + return this.qimaiStoreId; + } + + /** + * 字段名称 :企迈门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setQimaiStoreId(String qimaiStoreId) { + this.qimaiStoreId = qimaiStoreId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiStore.java new file mode 100644 index 0000000..f48b518 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiStore.java @@ -0,0 +1,663 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:企迈门店表 + * 表代码:cy_qimai_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"QimaiStore") +public class QimaiStore extends BaseEntity { + + private static final long serialVersionUID = 1436041502230618576L; + + /** + *店铺设置ID + */ + private String setId; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *企迈门店ID + */ + private String multiId; + + /** + *省份ID + */ + private String provinceId; + + /** + *城市ID + */ + private String cityId; + + /** + *区域ID + */ + private String areaId; + + /** + *身份证号 + */ + private String idCard; + + /** + *门店图片 + */ + private String photo; + + /** + *联系人 + */ + private String linkman; + + /** + *地址 + */ + private String street; + + /** + *经度 + */ + private Double longitude; + + /** + *纬度 + */ + private Double latitude; + + /** + *人均消费 + */ + private Double perPrice; + + /** + *店铺公告 + */ + private String notice; + + /** + *手机 + */ + private String mobile; + + /** + *座机 + */ + private String tel; + + /** + *状态 + */ + private Integer status; + + /** + *堂食开启状态 + */ + private Integer isEat; + + /** + *外卖开启状态 + */ + private Integer isTakeout; + + /** + *预约开启状态 + */ + private Integer isAppoint; + + /** + *门店标签 + */ + private String lable; + + /** + *门店服务 + */ + private String service; + + /** + *门店营业时间 + */ + private String saletimes; + + /** + *扩展字段1 + */ + private String ext1; + + /** + *扩展字段2 + */ + private String ext2; + + /** + *扩展字段3 + */ + private String ext3; + + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetId() { + return this.setId; + } + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetId(String setId) { + this.setId = setId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :企迈门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getMultiId() { + return this.multiId; + } + + /** + * 字段名称 :企迈门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setMultiId(String multiId) { + this.multiId = multiId; + } + + /** + * 字段名称 :省份ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProvinceId() { + return this.provinceId; + } + + /** + * 字段名称 :省份ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProvinceId(String provinceId) { + this.provinceId = provinceId; + } + + /** + * 字段名称 :城市ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getCityId() { + return this.cityId; + } + + /** + * 字段名称 :城市ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setCityId(String cityId) { + this.cityId = cityId; + } + + /** + * 字段名称 :区域ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getAreaId() { + return this.areaId; + } + + /** + * 字段名称 :区域ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setAreaId(String areaId) { + this.areaId = areaId; + } + + /** + * 字段名称 :身份证号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getIdCard() { + return this.idCard; + } + + /** + * 字段名称 :身份证号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setIdCard(String idCard) { + this.idCard = idCard; + } + + /** + * 字段名称 :门店图片 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getPhoto() { + return this.photo; + } + + /** + * 字段名称 :门店图片 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setPhoto(String photo) { + this.photo = photo; + } + + /** + * 字段名称 :联系人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLinkman() { + return this.linkman; + } + + /** + * 字段名称 :联系人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLinkman(String linkman) { + this.linkman = linkman; + } + + /** + * 字段名称 :地址 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStreet() { + return this.street; + } + + /** + * 字段名称 :地址 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStreet(String street) { + this.street = street; + } + + /** + * 字段名称 :经度 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getLongitude() { + return this.longitude; + } + + /** + * 字段名称 :经度 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setLongitude(Double longitude) { + this.longitude = longitude; + } + + /** + * 字段名称 :纬度 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getLatitude() { + return this.latitude; + } + + /** + * 字段名称 :纬度 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setLatitude(Double latitude) { + this.latitude = latitude; + } + + /** + * 字段名称 :人均消费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPerPrice() { + return this.perPrice; + } + + /** + * 字段名称 :人均消费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPerPrice(Double perPrice) { + this.perPrice = perPrice; + } + + /** + * 字段名称 :店铺公告 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getNotice() { + return this.notice; + } + + /** + * 字段名称 :店铺公告 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setNotice(String notice) { + this.notice = notice; + } + + /** + * 字段名称 :手机 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMobile() { + return this.mobile; + } + + /** + * 字段名称 :手机 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMobile(String mobile) { + this.mobile = mobile; + } + + /** + * 字段名称 :座机 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTel() { + return this.tel; + } + + /** + * 字段名称 :座机 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTel(String tel) { + this.tel = tel; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :堂食开启状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsEat() { + return this.isEat; + } + + /** + * 字段名称 :堂食开启状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsEat(Integer isEat) { + this.isEat = isEat; + } + + /** + * 字段名称 :外卖开启状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsTakeout() { + return this.isTakeout; + } + + /** + * 字段名称 :外卖开启状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsTakeout(Integer isTakeout) { + this.isTakeout = isTakeout; + } + + /** + * 字段名称 :预约开启状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsAppoint() { + return this.isAppoint; + } + + /** + * 字段名称 :预约开启状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsAppoint(Integer isAppoint) { + this.isAppoint = isAppoint; + } + + /** + * 字段名称 :门店标签 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getLable() { + return this.lable; + } + + /** + * 字段名称 :门店标签 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setLable(String lable) { + this.lable = lable; + } + + /** + * 字段名称 :门店服务 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getService() { + return this.service; + } + + /** + * 字段名称 :门店服务 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setService(String service) { + this.service = service; + } + + /** + * 字段名称 :门店营业时间 + * 数据类型 :text + * 是否必填 :false + */ + public String getSaletimes() { + return this.saletimes; + } + + /** + * 字段名称 :门店营业时间 + * 数据类型 :text + * 是否必填 :false + */ + public void setSaletimes(String saletimes) { + this.saletimes = saletimes; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiStoreLable.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiStoreLable.java new file mode 100644 index 0000000..a064910 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiStoreLable.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:企迈门店标签 + * 表代码:cy_qimai_store_lable + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"QimaiStoreLable") +public class QimaiStoreLable extends BaseEntity { + + private static final long serialVersionUID = 1554924971971439573L; + + /** + *店铺设置ID + */ + private String setId; + + /** + *企迈标签ID + */ + private String lableId; + + /** + *标签名称 + */ + private String name; + + /** + *扩展字段1 + */ + private String ext1; + + /** + *扩展字段2 + */ + private String ext2; + + /** + *扩展字段3 + */ + private String ext3; + + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetId() { + return this.setId; + } + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetId(String setId) { + this.setId = setId; + } + + /** + * 字段名称 :企迈标签ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLableId() { + return this.lableId; + } + + /** + * 字段名称 :企迈标签ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLableId(String lableId) { + this.lableId = lableId; + } + + /** + * 字段名称 :标签名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :标签名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiStoreProduct.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiStoreProduct.java new file mode 100644 index 0000000..9ac34ba --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiStoreProduct.java @@ -0,0 +1,456 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:企迈门店商品表 + * 表代码:cy_qimai_store_product + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"QimaiStoreProduct") +public class QimaiStoreProduct extends BaseEntity { + + private static final long serialVersionUID = 1731964571440747053L; + + /** + *店铺设置ID + */ + private String setId; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *系统企迈门店ID + */ + private String qimaiStoreId; + + /** + *企迈门店ID + */ + private String storeMultiId; + + /** + *商品Id + */ + private String productId; + + /** + *商品编号 + */ + private String productNo; + + /** + *商品名称 + */ + private String productName; + + /** + *系统企迈商品ID + */ + private String qimaiProductId; + + /** + *企迈商品ID + */ + private String productMultiId; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *企迈商品规格ID + */ + private String qimaiSpecId; + + /** + *堂食价格 + */ + private Double tsPrice; + + /** + *外卖价格 + */ + private Double wmPrice; + + /** + *扩展字段1 + */ + private String ext1; + + /** + *扩展字段2 + */ + private String ext2; + + /** + *扩展字段3 + */ + private String ext3; + + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetId() { + return this.setId; + } + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetId(String setId) { + this.setId = setId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :系统企迈门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getQimaiStoreId() { + return this.qimaiStoreId; + } + + /** + * 字段名称 :系统企迈门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setQimaiStoreId(String qimaiStoreId) { + this.qimaiStoreId = qimaiStoreId; + } + + /** + * 字段名称 :企迈门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreMultiId() { + return this.storeMultiId; + } + + /** + * 字段名称 :企迈门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreMultiId(String storeMultiId) { + this.storeMultiId = storeMultiId; + } + + /** + * 字段名称 :商品Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :系统企迈商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getQimaiProductId() { + return this.qimaiProductId; + } + + /** + * 字段名称 :系统企迈商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setQimaiProductId(String qimaiProductId) { + this.qimaiProductId = qimaiProductId; + } + + /** + * 字段名称 :企迈商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductMultiId() { + return this.productMultiId; + } + + /** + * 字段名称 :企迈商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductMultiId(String productMultiId) { + this.productMultiId = productMultiId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :企迈商品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getQimaiSpecId() { + return this.qimaiSpecId; + } + + /** + * 字段名称 :企迈商品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setQimaiSpecId(String qimaiSpecId) { + this.qimaiSpecId = qimaiSpecId; + } + + /** + * 字段名称 :堂食价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTsPrice() { + return this.tsPrice; + } + + /** + * 字段名称 :堂食价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTsPrice(Double tsPrice) { + this.tsPrice = tsPrice; + } + + /** + * 字段名称 :外卖价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getWmPrice() { + return this.wmPrice; + } + + /** + * 字段名称 :外卖价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setWmPrice(Double wmPrice) { + this.wmPrice = wmPrice; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiSuitDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiSuitDetail.java new file mode 100644 index 0000000..4989166 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/QimaiSuitDetail.java @@ -0,0 +1,249 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:企迈套餐明细信息 + * 表代码:cy_qimai_suit_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"QimaiSuitDetail") +public class QimaiSuitDetail extends BaseEntity { + + private static final long serialVersionUID = 1492164544448122288L; + + /** + *店铺设置ID + */ + private String setId; + + /** + *系统企迈商品ID + */ + private String qimaiProductId; + + /** + *套餐ID + */ + private String suitId; + + /** + *产品ID + */ + private String productId; + + /** + *产品编号 + */ + private String productNo; + + /** + *商品名称 + */ + private String name; + + /** + *企迈商品ID + */ + private String multiId; + + /** + *扩展字段1 + */ + private String ext1; + + /** + *扩展字段2 + */ + private String ext2; + + /** + *扩展字段3 + */ + private String ext3; + + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetId() { + return this.setId; + } + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetId(String setId) { + this.setId = setId; + } + + /** + * 字段名称 :系统企迈商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getQimaiProductId() { + return this.qimaiProductId; + } + + /** + * 字段名称 :系统企迈商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setQimaiProductId(String qimaiProductId) { + this.qimaiProductId = qimaiProductId; + } + + /** + * 字段名称 :套餐ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSuitId() { + return this.suitId; + } + + /** + * 字段名称 :套餐ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSuitId(String suitId) { + this.suitId = suitId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :企迈商品ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMultiId() { + return this.multiId; + } + + /** + * 字段名称 :企迈商品ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMultiId(String multiId) { + this.multiId = multiId; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ReceiveDifferenceDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ReceiveDifferenceDetail.java new file mode 100644 index 0000000..32a91ce --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ReceiveDifferenceDetail.java @@ -0,0 +1,502 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:收货差异明细 + * 表代码:cy_receive_difference_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ReceiveDifferenceDetail") +public class ReceiveDifferenceDetail extends BaseEntity { + + private static final long serialVersionUID = 1196690890182429023L; + + /** + *收货差异单ID + */ + private String ticketId; + + /** + *出库库位ID + */ + private String storageId; + + /** + *出库库位名 + */ + private String storageName; + + /** + *原料ID + */ + private String productId; + + /** + *原料编码 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *要货数量 + */ + private Double askgoodsAmount; + + /** + *配送数量 + */ + private Double dispatchAmount; + + /** + *配送单位 + */ + private String dispatchUnitId; + + /** + *配送单位名称 + */ + private String dispatchUnitName; + + /** + *配送价 + */ + private Double price; + + /** + *配送金额 + */ + private Double money; + + /** + *收货数量 + */ + private Double receivegoodsAmount; + + /** + *小计金额 + */ + private Double subtotalPrice; + + /** + *差异数量 + */ + private Double differenceAmount; + + /** + *差异金额 + */ + private Double differencePrice; + + /** + *处理方式 + */ + private Integer type; + + /** + *差异原因 + */ + private String description; + + + /** + * 字段名称 :收货差异单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :收货差异单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :出库库位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :出库库位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + + /** + * 字段名称 :出库库位名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStorageName() { + return this.storageName; + } + + /** + * 字段名称 :出库库位名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStorageName(String storageName) { + this.storageName = storageName; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :要货数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAskgoodsAmount() { + return this.askgoodsAmount; + } + + /** + * 字段名称 :要货数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAskgoodsAmount(Double askgoodsAmount) { + this.askgoodsAmount = askgoodsAmount; + } + + /** + * 字段名称 :配送数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDispatchAmount() { + return this.dispatchAmount; + } + + /** + * 字段名称 :配送数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDispatchAmount(Double dispatchAmount) { + this.dispatchAmount = dispatchAmount; + } + + /** + * 字段名称 :配送单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchUnitId() { + return this.dispatchUnitId; + } + + /** + * 字段名称 :配送单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchUnitId(String dispatchUnitId) { + this.dispatchUnitId = dispatchUnitId; + } + + /** + * 字段名称 :配送单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDispatchUnitName() { + return this.dispatchUnitName; + } + + /** + * 字段名称 :配送单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDispatchUnitName(String dispatchUnitName) { + this.dispatchUnitName = dispatchUnitName; + } + + /** + * 字段名称 :配送价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :配送价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :配送金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :配送金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :收货数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivegoodsAmount() { + return this.receivegoodsAmount; + } + + /** + * 字段名称 :收货数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivegoodsAmount(Double receivegoodsAmount) { + this.receivegoodsAmount = receivegoodsAmount; + } + + /** + * 字段名称 :小计金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getSubtotalPrice() { + return this.subtotalPrice; + } + + /** + * 字段名称 :小计金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setSubtotalPrice(Double subtotalPrice) { + this.subtotalPrice = subtotalPrice; + } + + /** + * 字段名称 :差异数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDifferenceAmount() { + return this.differenceAmount; + } + + /** + * 字段名称 :差异数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDifferenceAmount(Double differenceAmount) { + this.differenceAmount = differenceAmount; + } + + /** + * 字段名称 :差异金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDifferencePrice() { + return this.differencePrice; + } + + /** + * 字段名称 :差异金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDifferencePrice(Double differencePrice) { + this.differencePrice = differencePrice; + } + + /** + * 字段名称 :处理方式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :处理方式 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :差异原因 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :差异原因 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ReceiveDifferenceTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ReceiveDifferenceTicket.java new file mode 100644 index 0000000..0431436 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ReceiveDifferenceTicket.java @@ -0,0 +1,318 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:配送收货差异单 + * 表代码:cy_receive_difference_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ReceiveDifferenceTicket") +public class ReceiveDifferenceTicket extends BaseEntity { + + private static final long serialVersionUID = 1810882549616065638L; + + /** + *单据编号 + */ + private String no; + + /** + *配送单ID + */ + private String dispatchId; + + /** + *配送单号 + */ + private String dispatchNo; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *状态 + */ + private Integer status; + + /** + *备注信息 + */ + private String description; + + /** + *经办人 + */ + private String operator; + + /** + *制单人 + */ + private String setMan; + + /** + *制单日期 + */ + private Date setDate; + + /** + *审核人 + */ + private String checkMan; + + /** + *审核日期 + */ + private Date checkDate; + + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :配送单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchId() { + return this.dispatchId; + } + + /** + * 字段名称 :配送单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchId(String dispatchId) { + this.dispatchId = dispatchId; + } + + /** + * 字段名称 :配送单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDispatchNo() { + return this.dispatchNo; + } + + /** + * 字段名称 :配送单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDispatchNo(String dispatchNo) { + this.dispatchNo = dispatchNo; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :经办人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOperator() { + return this.operator; + } + + /** + * 字段名称 :经办人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOperator(String operator) { + this.operator = operator; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetMan() { + return this.setMan; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetMan(String setMan) { + this.setMan = setMan; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSetDate() { + return this.setDate; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSetDate(Date setDate) { + this.setDate = setDate; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCheckMan() { + return this.checkMan; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCheckMan(String checkMan) { + this.checkMan = checkMan; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckDate() { + return this.checkDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckDate(Date checkDate) { + this.checkDate = checkDate; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ReceiveDifferenceTicketLog.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ReceiveDifferenceTicketLog.java new file mode 100644 index 0000000..5007820 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ReceiveDifferenceTicketLog.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:配送差异单操作记录 + * 表代码:cy_receive_difference_ticket_log + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ReceiveDifferenceTicketLog") +public class ReceiveDifferenceTicketLog extends BaseEntity { + + private static final long serialVersionUID = 1851968686374985915L; + + /** + *配送差异单ID + */ + private String ticketId; + + /** + *配送差异单编号 + */ + private String ticketNo; + + /** + *操作类型 + */ + private Integer type; + + /** + *操作状态 + */ + private Integer status; + + /** + *描述 + */ + private String description; + + + /** + * 字段名称 :配送差异单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :配送差异单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :配送差异单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :配送差异单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ReceiveDifferenceTicketPay.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ReceiveDifferenceTicketPay.java new file mode 100644 index 0000000..75201ed --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ReceiveDifferenceTicketPay.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:配送差异金额明细 + * 表代码:cy_receive_difference_ticket_pay + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ReceiveDifferenceTicketPay") +public class ReceiveDifferenceTicketPay extends BaseEntity { + + private static final long serialVersionUID = 1558553590656594053L; + + /** + *配送单Id + */ + private String ticketId; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *备注信息 + */ + private String description; + + /** + *类型 + */ + private Integer type; + + /** + *金额 + */ + private Double money; + + + /** + * 字段名称 :配送单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :配送单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ReceiveGoodsDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ReceiveGoodsDetail.java new file mode 100644 index 0000000..9c10e5c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ReceiveGoodsDetail.java @@ -0,0 +1,433 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:收货单明细 + * 表代码:cy_receive_goods_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ReceiveGoodsDetail") +public class ReceiveGoodsDetail extends BaseEntity { + + private static final long serialVersionUID = 1503003948878299136L; + + /** + *收货单Id + */ + private String ticketId; + + /** + *入库仓库ID + */ + private String storageId; + + /** + *原料Id + */ + private String productId; + + /** + *原料编码 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *配送单位ID + */ + private String dispatchUnitId; + + /** + *配送单位名称 + */ + private String dispatchUnitName; + + /** + *配送价格 + */ + private Double dispatchPrice; + + /** + *要货数量 + */ + private Double askgoodsAmount; + + /** + *配送数量 + */ + private Double dispatchAmount; + + /** + *收货数量 + */ + private Double receiveAmount; + + /** + *小计金额 + */ + private Double subtotalPrice; + + /** + *差异数量 + */ + private Double differenceAmount; + + /** + *差异金额 + */ + private Double differencePrice; + + /** + *备注说明 + */ + private String description; + + + /** + * 字段名称 :收货单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :收货单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :入库仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :入库仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + + /** + * 字段名称 :原料Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :配送单位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchUnitId() { + return this.dispatchUnitId; + } + + /** + * 字段名称 :配送单位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchUnitId(String dispatchUnitId) { + this.dispatchUnitId = dispatchUnitId; + } + + /** + * 字段名称 :配送单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDispatchUnitName() { + return this.dispatchUnitName; + } + + /** + * 字段名称 :配送单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDispatchUnitName(String dispatchUnitName) { + this.dispatchUnitName = dispatchUnitName; + } + + /** + * 字段名称 :配送价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDispatchPrice() { + return this.dispatchPrice; + } + + /** + * 字段名称 :配送价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDispatchPrice(Double dispatchPrice) { + this.dispatchPrice = dispatchPrice; + } + + /** + * 字段名称 :要货数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAskgoodsAmount() { + return this.askgoodsAmount; + } + + /** + * 字段名称 :要货数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAskgoodsAmount(Double askgoodsAmount) { + this.askgoodsAmount = askgoodsAmount; + } + + /** + * 字段名称 :配送数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDispatchAmount() { + return this.dispatchAmount; + } + + /** + * 字段名称 :配送数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDispatchAmount(Double dispatchAmount) { + this.dispatchAmount = dispatchAmount; + } + + /** + * 字段名称 :收货数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceiveAmount() { + return this.receiveAmount; + } + + /** + * 字段名称 :收货数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceiveAmount(Double receiveAmount) { + this.receiveAmount = receiveAmount; + } + + /** + * 字段名称 :小计金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getSubtotalPrice() { + return this.subtotalPrice; + } + + /** + * 字段名称 :小计金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setSubtotalPrice(Double subtotalPrice) { + this.subtotalPrice = subtotalPrice; + } + + /** + * 字段名称 :差异数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDifferenceAmount() { + return this.differenceAmount; + } + + /** + * 字段名称 :差异数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDifferenceAmount(Double differenceAmount) { + this.differenceAmount = differenceAmount; + } + + /** + * 字段名称 :差异金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDifferencePrice() { + return this.differencePrice; + } + + /** + * 字段名称 :差异金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDifferencePrice(Double differencePrice) { + this.differencePrice = differencePrice; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ReceiveGoodsTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ReceiveGoodsTicket.java new file mode 100644 index 0000000..65b9655 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ReceiveGoodsTicket.java @@ -0,0 +1,295 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:配送收货单 + * 表代码:cy_receive_goods_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ReceiveGoodsTicket") +public class ReceiveGoodsTicket extends BaseEntity { + + private static final long serialVersionUID = 1562048668453076265L; + + /** + *收货门店ID + */ + private String storeId; + + /** + *入库仓库ID + */ + private String storageId; + + /** + *配送单ID + */ + private String dispatchId; + + /** + *配送单号 + */ + private String dispatchNo; + + /** + *单据编号 + */ + private String no; + + /** + *单据状态 + */ + private Integer status; + + /** + *是否选用 + */ + private Integer isUse; + + /** + *备注信息 + */ + private String description; + + /** + *制单人 + */ + private String setMan; + + /** + *制单日期 + */ + private Date setDate; + + /** + *审核人 + */ + private String checkMan; + + /** + *审核日期 + */ + private Date checkDate; + + + /** + * 字段名称 :收货门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :收货门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :入库仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :入库仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + + /** + * 字段名称 :配送单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDispatchId() { + return this.dispatchId; + } + + /** + * 字段名称 :配送单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDispatchId(String dispatchId) { + this.dispatchId = dispatchId; + } + + /** + * 字段名称 :配送单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDispatchNo() { + return this.dispatchNo; + } + + /** + * 字段名称 :配送单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDispatchNo(String dispatchNo) { + this.dispatchNo = dispatchNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :是否选用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsUse() { + return this.isUse; + } + + /** + * 字段名称 :是否选用 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsUse(Integer isUse) { + this.isUse = isUse; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetMan() { + return this.setMan; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetMan(String setMan) { + this.setMan = setMan; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSetDate() { + return this.setDate; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSetDate(Date setDate) { + this.setDate = setDate; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCheckMan() { + return this.checkMan; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCheckMan(String checkMan) { + this.checkMan = checkMan; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckDate() { + return this.checkDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckDate(Date checkDate) { + this.checkDate = checkDate; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/RechargeParameter.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/RechargeParameter.java new file mode 100644 index 0000000..6f1f181 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/RechargeParameter.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:充值账户方案 + * 表代码:cy_recharge_parameter + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"RechargeParameter") +public class RechargeParameter extends BaseEntity { + + private static final long serialVersionUID = 1830819991447020388L; + + /** + *编号 + */ + private String no; + + /** + *方案名称 + */ + private String name; + + /** + *支付类型 + */ + private String sign; + + /** + *支付参数 + */ + private String pbody; + + /** + *是否启用 + */ + private Integer enabled; + + /** + *证书内容 + */ + private String certText; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :方案名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :方案名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :支付类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSign() { + return this.sign; + } + + /** + * 字段名称 :支付类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSign(String sign) { + this.sign = sign; + } + + /** + * 字段名称 :支付参数 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getPbody() { + return this.pbody; + } + + /** + * 字段名称 :支付参数 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setPbody(String pbody) { + this.pbody = pbody; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnabled() { + return this.enabled; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setEnabled(Integer enabled) { + this.enabled = enabled; + } + + /** + * 字段名称 :证书内容 + * 数据类型 :text + * 是否必填 :false + */ + public String getCertText() { + return this.certText; + } + + /** + * 字段名称 :证书内容 + * 数据类型 :text + * 是否必填 :false + */ + public void setCertText(String certText) { + this.certText = certText; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/RechargeParameterStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/RechargeParameterStore.java new file mode 100644 index 0000000..e338b7d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/RechargeParameterStore.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:充值账户门店关联 + * 表代码:cy_recharge_parameter_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"RechargeParameterStore") +public class RechargeParameterStore extends BaseEntity { + + private static final long serialVersionUID = 1974966870521908780L; + + /** + *门店ID + */ + private String storeId; + + /** + *充值账户方案ID + */ + private String parameterId; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :充值账户方案ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getParameterId() { + return this.parameterId; + } + + /** + * 字段名称 :充值账户方案ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setParameterId(String parameterId) { + this.parameterId = parameterId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SaleClear.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SaleClear.java new file mode 100644 index 0000000..d40699b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SaleClear.java @@ -0,0 +1,617 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店估清表 + * 表代码:pos_sale_clear + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"SaleClear") +public class SaleClear extends BaseEntity { + + private static final long serialVersionUID = 1433939200307724403L; + + /** + *门店编号 + */ + private String storeNo; + + /** + *POS编号 + */ + private String posNo; + + /** + *品牌Id + */ + private String brandId; + + /** + *类别Id + */ + private String typeId; + + /** + *分类名称 + */ + private String typeName; + + /** + *商品Id + */ + private String productId; + + /** + *编号 + */ + private String productNo; + + /** + *名称 + */ + private String productName; + + /** + *剩余数量 + */ + private Double quantity; + + /** + *提醒数量 + */ + private Double notify; + + /** + *已售数量 + */ + private Double sales; + + /** + *沽清数量 + */ + private Double total; + + /** + *沽清时间 + */ + private Date startTime; + + /** + *结束时间 + */ + private Date endTime; + + /** + *取消时间 + */ + private Date stopTime; + + /** + *停止人 + */ + private String stopUser; + + /** + *单位 + */ + private String unitId; + + /** + *计量单位名称 + */ + private String unitName; + + /** + *商品默认规格Id + */ + private String specId; + + /** + *商品默认规格名称 + */ + private String specName; + + /** + *是否套餐(0否1是) + */ + private Integer suitFlag; + + /** + *是否取消(0否1是) + */ + private Integer stopFlag; + + /** + *颜色 + */ + private String memo; + + /** + *备用字段1 + */ + private String ext1; + + /** + *备用字段2 + */ + private String ext2; + + /** + *备用字段3 + */ + private String ext3; + + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :POS编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :POS编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :品牌Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBrandId() { + return this.brandId; + } + + /** + * 字段名称 :品牌Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBrandId(String brandId) { + this.brandId = brandId; + } + + /** + * 字段名称 :类别Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :分类名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeName() { + return this.typeName; + } + + /** + * 字段名称 :分类名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + /** + * 字段名称 :商品Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :剩余数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getQuantity() { + return this.quantity; + } + + /** + * 字段名称 :剩余数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setQuantity(Double quantity) { + this.quantity = quantity; + } + + /** + * 字段名称 :提醒数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getNotify() { + return this.notify; + } + + /** + * 字段名称 :提醒数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setNotify(Double notify) { + this.notify = notify; + } + + /** + * 字段名称 :已售数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getSales() { + return this.sales; + } + + /** + * 字段名称 :已售数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setSales(Double sales) { + this.sales = sales; + } + + /** + * 字段名称 :沽清数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTotal() { + return this.total; + } + + /** + * 字段名称 :沽清数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTotal(Double total) { + this.total = total; + } + + /** + * 字段名称 :沽清时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getStartTime() { + return this.startTime; + } + + /** + * 字段名称 :沽清时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setStartTime(Date startTime) { + this.startTime = startTime; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getEndTime() { + return this.endTime; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setEndTime(Date endTime) { + this.endTime = endTime; + } + + /** + * 字段名称 :取消时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getStopTime() { + return this.stopTime; + } + + /** + * 字段名称 :取消时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setStopTime(Date stopTime) { + this.stopTime = stopTime; + } + + /** + * 字段名称 :停止人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStopUser() { + return this.stopUser; + } + + /** + * 字段名称 :停止人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStopUser(String stopUser) { + this.stopUser = stopUser; + } + + /** + * 字段名称 :单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getUnitId() { + return this.unitId; + } + + /** + * 字段名称 :单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setUnitId(String unitId) { + this.unitId = unitId; + } + + /** + * 字段名称 :计量单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getUnitName() { + return this.unitName; + } + + /** + * 字段名称 :计量单位名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setUnitName(String unitName) { + this.unitName = unitName; + } + + /** + * 字段名称 :商品默认规格Id + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :商品默认规格Id + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :商品默认规格名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :商品默认规格名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :是否套餐(0否1是) + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSuitFlag() { + return this.suitFlag; + } + + /** + * 字段名称 :是否套餐(0否1是) + * 数据类型 :int + * 是否必填 :false + */ + public void setSuitFlag(Integer suitFlag) { + this.suitFlag = suitFlag; + } + + /** + * 字段名称 :是否取消(0否1是) + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStopFlag() { + return this.stopFlag; + } + + /** + * 字段名称 :是否取消(0否1是) + * 数据类型 :int + * 是否必填 :false + */ + public void setStopFlag(Integer stopFlag) { + this.stopFlag = stopFlag; + } + + /** + * 字段名称 :颜色 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getMemo() { + return this.memo; + } + + /** + * 字段名称 :颜色 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setMemo(String memo) { + this.memo = memo; + } + + /** + * 字段名称 :备用字段1 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :备用字段1 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :备用字段2 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :备用字段2 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :备用字段3 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :备用字段3 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ServerDataVersion.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ServerDataVersion.java new file mode 100644 index 0000000..791a1cb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ServerDataVersion.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:数据版本 + * 表代码:cy_server_data_version + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ServerDataVersion") +public class ServerDataVersion extends BaseEntity { + + private static final long serialVersionUID = 1966354149002652293L; + + /** + *数据类型 + */ + private String dataType; + + /** + *服务端数据版本 + */ + private String dataVerion; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :数据类型 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDataType() { + return this.dataType; + } + + /** + * 字段名称 :数据类型 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDataType(String dataType) { + this.dataType = dataType; + } + + /** + * 字段名称 :服务端数据版本 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDataVerion() { + return this.dataVerion; + } + + /** + * 字段名称 :服务端数据版本 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDataVerion(String dataVerion) { + this.dataVerion = dataVerion; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ShopMeituanOrder.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ShopMeituanOrder.java new file mode 100644 index 0000000..40488b1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ShopMeituanOrder.java @@ -0,0 +1,1399 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:美团商家订单表 + * 表代码:cy_shop_meituan_order + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ShopMeituanOrder") +public class ShopMeituanOrder extends BaseEntity { + + private static final long serialVersionUID = 1611437641958612872L; + + /** + *消息 + */ + private String message; + + /** + *订单ID + */ + private String orderId; + + /** + *订单展示Id + */ + private String orderIdView; + + /** + *美团商家名称 + */ + private String wmPoiName; + + /** + *美团商家地址 + */ + private String wmPoiAddress; + + /** + *美团商家电话 + */ + private String wmPoiPhone; + + /** + *erp方门店id + */ + private String storeId; + + /** + *收货人地址 + */ + private String recipientAddress; + + /** + *收货人电话 + */ + private String recipientPhone; + + /** + *备用隐私号 + */ + private String backupRecipientPhone; + + /** + *收货人名称 + */ + private String recipientName; + + /** + *配送费用 + */ + private Double shippingFee; + + /** + *总价 + */ + private Double total; + + /** + *订单原价 + */ + private Double originalPrice; + + /** + *订单备注 + */ + private String caution; + + /** + *配送骑手电话 + */ + private String shipperPhone; + + /** + *订单状态 + */ + private Integer status; + + /** + *城市Id + */ + private String cityId; + + /** + *是否需要发票 + */ + private Integer hasInvoiced; + + /** + *发票抬头 + */ + private String invoiceTitle; + + /** + *纳税人识别号 + */ + private String taxpayerId; + + /** + *订单创建时间 + */ + private String cTime; + + /** + *订单更新时间 + */ + private String uTime; + + /** + *用户预计送达时间 + */ + private String deliveryTime; + + /** + *是否第三方配送 + */ + private Integer isThirdShipping; + + /** + *订单支付类型 + */ + private Integer payType; + + /** + *订单取餐类型 + */ + private Integer pickType; + + /** + *实际送餐地址纬度 + */ + private Double latitude; + + /** + *实际送餐地址经度 + */ + private Double longitude; + + /** + *门店当天的订单流水号 + */ + private Integer daySeq; + + /** + *用户是否收藏此门店 + */ + private Integer isFavorites; + + /** + *用户是否第一次在此门店点餐 + */ + private Integer isPoiFirstOrder; + + /** + *就餐人数 + */ + private Integer dinnersNumber; + + /** + *配送类型码 + */ + private String logisticsCode; + + /** + *餐厅平均送餐时间 + */ + private Integer avgSendTime; + + /** + *用户下单时间 + */ + private String orderSendTime; + + /** + *商户收到时间 + */ + private String orderReceiveTime; + + /** + *商户确认时间 + */ + private String orderConfirmTime; + + /** + *订单取消时间 + */ + private String orderCancelTime; + + /** + *订单完成时间 + */ + private String orderCompletedTime; + + /** + *配送订单状态code + */ + private String logisticsStatus; + + /** + *配送方ID + */ + private String logisticsId; + + /** + *配送方名称 + */ + private String logisticsName; + + /** + *配送单下单时间 + */ + private String logisticsSendTime; + + /** + *配送单确认时间 + */ + private String logisticsConfirmTime; + + /** + *配送单取消时间 + */ + private String logisticsCancelTime; + + /** + *骑手取单时间 + */ + private String logisticsFetchTime; + + /** + *配送完成时间 + */ + private String logisticsCompletedTime; + + /** + *骑手姓名 + */ + private String logisticsDispatcherName; + + /** + *骑手电话 + */ + private String logisticsDispatcherMobile; + + /** + *订单来源属性标识 + */ + private String channel; + + /** + *订单菜品详情 + */ + private String detail; + + /** + *订单扩展信息 + */ + private String extras; + + /** + *商家对账信息 + */ + private String poiReceiveDetail; + + /** + *订单取消原因 + */ + private String cancelReason; + + /** + *订单取消code + */ + private String cancelReasonCode; + + /** + *订单退款原因 + */ + private String refundReason; + + /** + *菜品分成(分) + */ + private Double foodShareFeeChargeByPoi; + + /** + *商家应收款(分) + */ + private Double wmPoiReceiveCent; + + /** + *订单退款code + */ + private String refundReasonCode; + + + /** + * 字段名称 :消息 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getMessage() { + return this.message; + } + + /** + * 字段名称 :消息 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setMessage(String message) { + this.message = message; + } + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderId() { + return this.orderId; + } + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderId(String orderId) { + this.orderId = orderId; + } + + /** + * 字段名称 :订单展示Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderIdView() { + return this.orderIdView; + } + + /** + * 字段名称 :订单展示Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderIdView(String orderIdView) { + this.orderIdView = orderIdView; + } + + /** + * 字段名称 :美团商家名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getWmPoiName() { + return this.wmPoiName; + } + + /** + * 字段名称 :美团商家名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setWmPoiName(String wmPoiName) { + this.wmPoiName = wmPoiName; + } + + /** + * 字段名称 :美团商家地址 + * 数据类型 :text + * 是否必填 :false + */ + public String getWmPoiAddress() { + return this.wmPoiAddress; + } + + /** + * 字段名称 :美团商家地址 + * 数据类型 :text + * 是否必填 :false + */ + public void setWmPoiAddress(String wmPoiAddress) { + this.wmPoiAddress = wmPoiAddress; + } + + /** + * 字段名称 :美团商家电话 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getWmPoiPhone() { + return this.wmPoiPhone; + } + + /** + * 字段名称 :美团商家电话 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setWmPoiPhone(String wmPoiPhone) { + this.wmPoiPhone = wmPoiPhone; + } + + /** + * 字段名称 :erp方门店id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :erp方门店id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :收货人地址 + * 数据类型 :text + * 是否必填 :false + */ + public String getRecipientAddress() { + return this.recipientAddress; + } + + /** + * 字段名称 :收货人地址 + * 数据类型 :text + * 是否必填 :false + */ + public void setRecipientAddress(String recipientAddress) { + this.recipientAddress = recipientAddress; + } + + /** + * 字段名称 :收货人电话 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getRecipientPhone() { + return this.recipientPhone; + } + + /** + * 字段名称 :收货人电话 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setRecipientPhone(String recipientPhone) { + this.recipientPhone = recipientPhone; + } + + /** + * 字段名称 :备用隐私号 + * 数据类型 :text + * 是否必填 :false + */ + public String getBackupRecipientPhone() { + return this.backupRecipientPhone; + } + + /** + * 字段名称 :备用隐私号 + * 数据类型 :text + * 是否必填 :false + */ + public void setBackupRecipientPhone(String backupRecipientPhone) { + this.backupRecipientPhone = backupRecipientPhone; + } + + /** + * 字段名称 :收货人名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getRecipientName() { + return this.recipientName; + } + + /** + * 字段名称 :收货人名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setRecipientName(String recipientName) { + this.recipientName = recipientName; + } + + /** + * 字段名称 :配送费用 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getShippingFee() { + return this.shippingFee; + } + + /** + * 字段名称 :配送费用 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setShippingFee(Double shippingFee) { + this.shippingFee = shippingFee; + } + + /** + * 字段名称 :总价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getTotal() { + return this.total; + } + + /** + * 字段名称 :总价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setTotal(Double total) { + this.total = total; + } + + /** + * 字段名称 :订单原价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOriginalPrice() { + return this.originalPrice; + } + + /** + * 字段名称 :订单原价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOriginalPrice(Double originalPrice) { + this.originalPrice = originalPrice; + } + + /** + * 字段名称 :订单备注 + * 数据类型 :text + * 是否必填 :false + */ + public String getCaution() { + return this.caution; + } + + /** + * 字段名称 :订单备注 + * 数据类型 :text + * 是否必填 :false + */ + public void setCaution(String caution) { + this.caution = caution; + } + + /** + * 字段名称 :配送骑手电话 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getShipperPhone() { + return this.shipperPhone; + } + + /** + * 字段名称 :配送骑手电话 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setShipperPhone(String shipperPhone) { + this.shipperPhone = shipperPhone; + } + + /** + * 字段名称 :订单状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :订单状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :城市Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCityId() { + return this.cityId; + } + + /** + * 字段名称 :城市Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCityId(String cityId) { + this.cityId = cityId; + } + + /** + * 字段名称 :是否需要发票 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getHasInvoiced() { + return this.hasInvoiced; + } + + /** + * 字段名称 :是否需要发票 + * 数据类型 :int + * 是否必填 :false + */ + public void setHasInvoiced(Integer hasInvoiced) { + this.hasInvoiced = hasInvoiced; + } + + /** + * 字段名称 :发票抬头 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getInvoiceTitle() { + return this.invoiceTitle; + } + + /** + * 字段名称 :发票抬头 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setInvoiceTitle(String invoiceTitle) { + this.invoiceTitle = invoiceTitle; + } + + /** + * 字段名称 :纳税人识别号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTaxpayerId() { + return this.taxpayerId; + } + + /** + * 字段名称 :纳税人识别号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTaxpayerId(String taxpayerId) { + this.taxpayerId = taxpayerId; + } + + /** + * 字段名称 :订单创建时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCTime() { + return this.cTime; + } + + /** + * 字段名称 :订单创建时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCTime(String cTime) { + this.cTime = cTime; + } + + /** + * 字段名称 :订单更新时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getUTime() { + return this.uTime; + } + + /** + * 字段名称 :订单更新时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setUTime(String uTime) { + this.uTime = uTime; + } + + /** + * 字段名称 :用户预计送达时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDeliveryTime() { + return this.deliveryTime; + } + + /** + * 字段名称 :用户预计送达时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDeliveryTime(String deliveryTime) { + this.deliveryTime = deliveryTime; + } + + /** + * 字段名称 :是否第三方配送 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsThirdShipping() { + return this.isThirdShipping; + } + + /** + * 字段名称 :是否第三方配送 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsThirdShipping(Integer isThirdShipping) { + this.isThirdShipping = isThirdShipping; + } + + /** + * 字段名称 :订单支付类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPayType() { + return this.payType; + } + + /** + * 字段名称 :订单支付类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setPayType(Integer payType) { + this.payType = payType; + } + + /** + * 字段名称 :订单取餐类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPickType() { + return this.pickType; + } + + /** + * 字段名称 :订单取餐类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setPickType(Integer pickType) { + this.pickType = pickType; + } + + /** + * 字段名称 :实际送餐地址纬度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public Double getLatitude() { + return this.latitude; + } + + /** + * 字段名称 :实际送餐地址纬度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public void setLatitude(Double latitude) { + this.latitude = latitude; + } + + /** + * 字段名称 :实际送餐地址经度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public Double getLongitude() { + return this.longitude; + } + + /** + * 字段名称 :实际送餐地址经度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public void setLongitude(Double longitude) { + this.longitude = longitude; + } + + /** + * 字段名称 :门店当天的订单流水号 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDaySeq() { + return this.daySeq; + } + + /** + * 字段名称 :门店当天的订单流水号 + * 数据类型 :int + * 是否必填 :false + */ + public void setDaySeq(Integer daySeq) { + this.daySeq = daySeq; + } + + /** + * 字段名称 :用户是否收藏此门店 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsFavorites() { + return this.isFavorites; + } + + /** + * 字段名称 :用户是否收藏此门店 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsFavorites(Integer isFavorites) { + this.isFavorites = isFavorites; + } + + /** + * 字段名称 :用户是否第一次在此门店点餐 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsPoiFirstOrder() { + return this.isPoiFirstOrder; + } + + /** + * 字段名称 :用户是否第一次在此门店点餐 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsPoiFirstOrder(Integer isPoiFirstOrder) { + this.isPoiFirstOrder = isPoiFirstOrder; + } + + /** + * 字段名称 :就餐人数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDinnersNumber() { + return this.dinnersNumber; + } + + /** + * 字段名称 :就餐人数 + * 数据类型 :int + * 是否必填 :false + */ + public void setDinnersNumber(Integer dinnersNumber) { + this.dinnersNumber = dinnersNumber; + } + + /** + * 字段名称 :配送类型码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getLogisticsCode() { + return this.logisticsCode; + } + + /** + * 字段名称 :配送类型码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setLogisticsCode(String logisticsCode) { + this.logisticsCode = logisticsCode; + } + + /** + * 字段名称 :餐厅平均送餐时间 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getAvgSendTime() { + return this.avgSendTime; + } + + /** + * 字段名称 :餐厅平均送餐时间 + * 数据类型 :int + * 是否必填 :false + */ + public void setAvgSendTime(Integer avgSendTime) { + this.avgSendTime = avgSendTime; + } + + /** + * 字段名称 :用户下单时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderSendTime() { + return this.orderSendTime; + } + + /** + * 字段名称 :用户下单时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderSendTime(String orderSendTime) { + this.orderSendTime = orderSendTime; + } + + /** + * 字段名称 :商户收到时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderReceiveTime() { + return this.orderReceiveTime; + } + + /** + * 字段名称 :商户收到时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderReceiveTime(String orderReceiveTime) { + this.orderReceiveTime = orderReceiveTime; + } + + /** + * 字段名称 :商户确认时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderConfirmTime() { + return this.orderConfirmTime; + } + + /** + * 字段名称 :商户确认时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderConfirmTime(String orderConfirmTime) { + this.orderConfirmTime = orderConfirmTime; + } + + /** + * 字段名称 :订单取消时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderCancelTime() { + return this.orderCancelTime; + } + + /** + * 字段名称 :订单取消时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderCancelTime(String orderCancelTime) { + this.orderCancelTime = orderCancelTime; + } + + /** + * 字段名称 :订单完成时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderCompletedTime() { + return this.orderCompletedTime; + } + + /** + * 字段名称 :订单完成时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderCompletedTime(String orderCompletedTime) { + this.orderCompletedTime = orderCompletedTime; + } + + /** + * 字段名称 :配送订单状态code + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getLogisticsStatus() { + return this.logisticsStatus; + } + + /** + * 字段名称 :配送订单状态code + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setLogisticsStatus(String logisticsStatus) { + this.logisticsStatus = logisticsStatus; + } + + /** + * 字段名称 :配送方ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLogisticsId() { + return this.logisticsId; + } + + /** + * 字段名称 :配送方ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLogisticsId(String logisticsId) { + this.logisticsId = logisticsId; + } + + /** + * 字段名称 :配送方名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getLogisticsName() { + return this.logisticsName; + } + + /** + * 字段名称 :配送方名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setLogisticsName(String logisticsName) { + this.logisticsName = logisticsName; + } + + /** + * 字段名称 :配送单下单时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLogisticsSendTime() { + return this.logisticsSendTime; + } + + /** + * 字段名称 :配送单下单时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLogisticsSendTime(String logisticsSendTime) { + this.logisticsSendTime = logisticsSendTime; + } + + /** + * 字段名称 :配送单确认时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLogisticsConfirmTime() { + return this.logisticsConfirmTime; + } + + /** + * 字段名称 :配送单确认时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLogisticsConfirmTime(String logisticsConfirmTime) { + this.logisticsConfirmTime = logisticsConfirmTime; + } + + /** + * 字段名称 :配送单取消时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLogisticsCancelTime() { + return this.logisticsCancelTime; + } + + /** + * 字段名称 :配送单取消时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLogisticsCancelTime(String logisticsCancelTime) { + this.logisticsCancelTime = logisticsCancelTime; + } + + /** + * 字段名称 :骑手取单时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLogisticsFetchTime() { + return this.logisticsFetchTime; + } + + /** + * 字段名称 :骑手取单时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLogisticsFetchTime(String logisticsFetchTime) { + this.logisticsFetchTime = logisticsFetchTime; + } + + /** + * 字段名称 :配送完成时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLogisticsCompletedTime() { + return this.logisticsCompletedTime; + } + + /** + * 字段名称 :配送完成时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLogisticsCompletedTime(String logisticsCompletedTime) { + this.logisticsCompletedTime = logisticsCompletedTime; + } + + /** + * 字段名称 :骑手姓名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getLogisticsDispatcherName() { + return this.logisticsDispatcherName; + } + + /** + * 字段名称 :骑手姓名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setLogisticsDispatcherName(String logisticsDispatcherName) { + this.logisticsDispatcherName = logisticsDispatcherName; + } + + /** + * 字段名称 :骑手电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getLogisticsDispatcherMobile() { + return this.logisticsDispatcherMobile; + } + + /** + * 字段名称 :骑手电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setLogisticsDispatcherMobile(String logisticsDispatcherMobile) { + this.logisticsDispatcherMobile = logisticsDispatcherMobile; + } + + /** + * 字段名称 :订单来源属性标识 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getChannel() { + return this.channel; + } + + /** + * 字段名称 :订单来源属性标识 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setChannel(String channel) { + this.channel = channel; + } + + /** + * 字段名称 :订单菜品详情 + * 数据类型 :text + * 是否必填 :false + */ + public String getDetail() { + return this.detail; + } + + /** + * 字段名称 :订单菜品详情 + * 数据类型 :text + * 是否必填 :false + */ + public void setDetail(String detail) { + this.detail = detail; + } + + /** + * 字段名称 :订单扩展信息 + * 数据类型 :text + * 是否必填 :false + */ + public String getExtras() { + return this.extras; + } + + /** + * 字段名称 :订单扩展信息 + * 数据类型 :text + * 是否必填 :false + */ + public void setExtras(String extras) { + this.extras = extras; + } + + /** + * 字段名称 :商家对账信息 + * 数据类型 :text + * 是否必填 :false + */ + public String getPoiReceiveDetail() { + return this.poiReceiveDetail; + } + + /** + * 字段名称 :商家对账信息 + * 数据类型 :text + * 是否必填 :false + */ + public void setPoiReceiveDetail(String poiReceiveDetail) { + this.poiReceiveDetail = poiReceiveDetail; + } + + /** + * 字段名称 :订单取消原因 + * 数据类型 :text + * 是否必填 :false + */ + public String getCancelReason() { + return this.cancelReason; + } + + /** + * 字段名称 :订单取消原因 + * 数据类型 :text + * 是否必填 :false + */ + public void setCancelReason(String cancelReason) { + this.cancelReason = cancelReason; + } + + /** + * 字段名称 :订单取消code + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCancelReasonCode() { + return this.cancelReasonCode; + } + + /** + * 字段名称 :订单取消code + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCancelReasonCode(String cancelReasonCode) { + this.cancelReasonCode = cancelReasonCode; + } + + /** + * 字段名称 :订单退款原因 + * 数据类型 :text + * 是否必填 :false + */ + public String getRefundReason() { + return this.refundReason; + } + + /** + * 字段名称 :订单退款原因 + * 数据类型 :text + * 是否必填 :false + */ + public void setRefundReason(String refundReason) { + this.refundReason = refundReason; + } + + /** + * 字段名称 :菜品分成(分) + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getFoodShareFeeChargeByPoi() { + return this.foodShareFeeChargeByPoi; + } + + /** + * 字段名称 :菜品分成(分) + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setFoodShareFeeChargeByPoi(Double foodShareFeeChargeByPoi) { + this.foodShareFeeChargeByPoi = foodShareFeeChargeByPoi; + } + + /** + * 字段名称 :商家应收款(分) + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getWmPoiReceiveCent() { + return this.wmPoiReceiveCent; + } + + /** + * 字段名称 :商家应收款(分) + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setWmPoiReceiveCent(Double wmPoiReceiveCent) { + this.wmPoiReceiveCent = wmPoiReceiveCent; + } + + /** + * 字段名称 :订单退款code + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getRefundReasonCode() { + return this.refundReasonCode; + } + + /** + * 字段名称 :订单退款code + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setRefundReasonCode(String refundReasonCode) { + this.refundReasonCode = refundReasonCode; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ShopMeituanOrderExtra.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ShopMeituanOrderExtra.java new file mode 100644 index 0000000..1801ec6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ShopMeituanOrderExtra.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:美团商家订单优惠信息 + * 表代码:cy_shop_meituan_order_extra + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ShopMeituanOrderExtra") +public class ShopMeituanOrderExtra extends BaseEntity { + + private static final long serialVersionUID = 1349325616018864061L; + + /** + *订单ID + */ + private String orderId; + + /** + *活动优惠总金额 + */ + private Double reduceFee; + + /** + *优惠金额中商家承担的部分 + */ + private Double poiCharge; + + /** + *优惠金额中美团承担的部分 + */ + private Double mtCharge; + + /** + *优惠说明 + */ + private String remark; + + /** + *活动类型 + */ + private Integer type; + + /** + *活动ID + */ + private String actDetailId; + + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderId() { + return this.orderId; + } + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderId(String orderId) { + this.orderId = orderId; + } + + /** + * 字段名称 :活动优惠总金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getReduceFee() { + return this.reduceFee; + } + + /** + * 字段名称 :活动优惠总金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setReduceFee(Double reduceFee) { + this.reduceFee = reduceFee; + } + + /** + * 字段名称 :优惠金额中商家承担的部分 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPoiCharge() { + return this.poiCharge; + } + + /** + * 字段名称 :优惠金额中商家承担的部分 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPoiCharge(Double poiCharge) { + this.poiCharge = poiCharge; + } + + /** + * 字段名称 :优惠金额中美团承担的部分 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMtCharge() { + return this.mtCharge; + } + + /** + * 字段名称 :优惠金额中美团承担的部分 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMtCharge(Double mtCharge) { + this.mtCharge = mtCharge; + } + + /** + * 字段名称 :优惠说明 + * 数据类型 :text + * 是否必填 :false + */ + public String getRemark() { + return this.remark; + } + + /** + * 字段名称 :优惠说明 + * 数据类型 :text + * 是否必填 :false + */ + public void setRemark(String remark) { + this.remark = remark; + } + + /** + * 字段名称 :活动类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :活动类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :活动ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getActDetailId() { + return this.actDetailId; + } + + /** + * 字段名称 :活动ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setActDetailId(String actDetailId) { + this.actDetailId = actDetailId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ShopMeituanOrderItem.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ShopMeituanOrderItem.java new file mode 100644 index 0000000..53ae7bd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ShopMeituanOrderItem.java @@ -0,0 +1,318 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:美团商家订单明细表 + * 表代码:cy_shop_meituan_order_item + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ShopMeituanOrderItem") +public class ShopMeituanOrderItem extends BaseEntity { + + private static final long serialVersionUID = 1601378560779673436L; + + /** + *订单ID + */ + private String orderId; + + /** + *APP方菜品ID + */ + private String appFoodCode; + + /** + *菜品名 + */ + private String foodName; + + /** + *菜品份数 + */ + private String quantity; + + /** + *价格 + */ + private Double price; + + /** + *erp方门店ID + */ + private String storeId; + + /** + *erp方菜品sku + */ + private String skuId; + + /** + *餐盒数量 + */ + private Integer boxNum; + + /** + *餐盒单价 + */ + private Double boxPrice; + + /** + *单位 + */ + private String unit; + + /** + *菜品折扣 + */ + private Double foodDiscount; + + /** + *菜品属性 + */ + private String foodProperty; + + /** + *商品所在的口袋 + */ + private Integer cartId; + + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderId() { + return this.orderId; + } + + /** + * 字段名称 :订单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderId(String orderId) { + this.orderId = orderId; + } + + /** + * 字段名称 :APP方菜品ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getAppFoodCode() { + return this.appFoodCode; + } + + /** + * 字段名称 :APP方菜品ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setAppFoodCode(String appFoodCode) { + this.appFoodCode = appFoodCode; + } + + /** + * 字段名称 :菜品名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getFoodName() { + return this.foodName; + } + + /** + * 字段名称 :菜品名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setFoodName(String foodName) { + this.foodName = foodName; + } + + /** + * 字段名称 :菜品份数 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getQuantity() { + return this.quantity; + } + + /** + * 字段名称 :菜品份数 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setQuantity(String quantity) { + this.quantity = quantity; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :erp方门店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :erp方门店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :erp方菜品sku + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSkuId() { + return this.skuId; + } + + /** + * 字段名称 :erp方菜品sku + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSkuId(String skuId) { + this.skuId = skuId; + } + + /** + * 字段名称 :餐盒数量 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBoxNum() { + return this.boxNum; + } + + /** + * 字段名称 :餐盒数量 + * 数据类型 :int + * 是否必填 :false + */ + public void setBoxNum(Integer boxNum) { + this.boxNum = boxNum; + } + + /** + * 字段名称 :餐盒单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getBoxPrice() { + return this.boxPrice; + } + + /** + * 字段名称 :餐盒单价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setBoxPrice(Double boxPrice) { + this.boxPrice = boxPrice; + } + + /** + * 字段名称 :单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getUnit() { + return this.unit; + } + + /** + * 字段名称 :单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setUnit(String unit) { + this.unit = unit; + } + + /** + * 字段名称 :菜品折扣 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getFoodDiscount() { + return this.foodDiscount; + } + + /** + * 字段名称 :菜品折扣 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setFoodDiscount(Double foodDiscount) { + this.foodDiscount = foodDiscount; + } + + /** + * 字段名称 :菜品属性 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getFoodProperty() { + return this.foodProperty; + } + + /** + * 字段名称 :菜品属性 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setFoodProperty(String foodProperty) { + this.foodProperty = foodProperty; + } + + /** + * 字段名称 :商品所在的口袋 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getCartId() { + return this.cartId; + } + + /** + * 字段名称 :商品所在的口袋 + * 数据类型 :int + * 是否必填 :false + */ + public void setCartId(Integer cartId) { + this.cartId = cartId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SplitFoodAccount.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SplitFoodAccount.java new file mode 100644 index 0000000..bf5cd4a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SplitFoodAccount.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:菜品分户账户关联表 + * 表代码:cy_split_food_account + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"SplitFoodAccount") +public class SplitFoodAccount extends BaseEntity { + + private static final long serialVersionUID = 1207683808639049235L; + + /** + *店铺id + */ + private String shopId; + + /** + *商品ID + */ + private String goodId; + + /** + *账户id + */ + private String accountId; + + /** + *类型 + */ + private String type; + + /** + *状态 + */ + private Integer status; + + /** + *详细 + */ + private String detail; + + + /** + * 字段名称 :店铺id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getShopId() { + return this.shopId; + } + + /** + * 字段名称 :店铺id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setShopId(String shopId) { + this.shopId = shopId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getGoodId() { + return this.goodId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setGoodId(String goodId) { + this.goodId = goodId; + } + + /** + * 字段名称 :账户id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getAccountId() { + return this.accountId; + } + + /** + * 字段名称 :账户id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setAccountId(String accountId) { + this.accountId = accountId; + } + + /** + * 字段名称 :类型 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getType() { + return this.type; + } + + /** + * 字段名称 :类型 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setType(String type) { + this.type = type; + } + + /** + * 字段名称 :状态 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :详细 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDetail() { + return this.detail; + } + + /** + * 字段名称 :详细 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDetail(String detail) { + this.detail = detail; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SplitFoodAccount2.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SplitFoodAccount2.java new file mode 100644 index 0000000..e1db0db --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SplitFoodAccount2.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:菜品分户账户关联表2 + * 表代码:cy_split_food_account2 + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"SplitFoodAccount2") +public class SplitFoodAccount2 extends BaseEntity { + + private static final long serialVersionUID = 1493792684013065654L; + + /** + *店铺id + */ + private String shopId; + + /** + *商品ID + */ + private String goodId; + + /** + *账户id + */ + private String accountId; + + /** + *类型 + */ + private String type; + + /** + *状态 + */ + private Integer status; + + /** + *详细 + */ + private String detail; + + + /** + * 字段名称 :店铺id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getShopId() { + return this.shopId; + } + + /** + * 字段名称 :店铺id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setShopId(String shopId) { + this.shopId = shopId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getGoodId() { + return this.goodId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setGoodId(String goodId) { + this.goodId = goodId; + } + + /** + * 字段名称 :账户id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getAccountId() { + return this.accountId; + } + + /** + * 字段名称 :账户id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setAccountId(String accountId) { + this.accountId = accountId; + } + + /** + * 字段名称 :类型 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getType() { + return this.type; + } + + /** + * 字段名称 :类型 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setType(String type) { + this.type = type; + } + + /** + * 字段名称 :状态 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :详细 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDetail() { + return this.detail; + } + + /** + * 字段名称 :详细 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDetail(String detail) { + this.detail = detail; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SplitPayLog.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SplitPayLog.java new file mode 100644 index 0000000..9a602a8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SplitPayLog.java @@ -0,0 +1,272 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:分帐错误日志上传 + * 表代码:cy_split_pay_log + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"SplitPayLog") +public class SplitPayLog extends BaseEntity { + + private static final long serialVersionUID = 1369206394546581657L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *门店ID + */ + private String storeId; + + /** + *分店ID + */ + private String splitStoreId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *请求地址和端口 + */ + private String requestDomain; + + /** + *请求报文 + */ + private String requestMessage; + + /** + *服务器返回 + */ + private String responseMessage; + + /** + *备注1 + */ + private String remark1; + + /** + *备注2 + */ + private String remark2; + + /** + *备注3 + */ + private String remark3; + + /** + *状态 + */ + private String status; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :分店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSplitStoreId() { + return this.splitStoreId; + } + + /** + * 字段名称 :分店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSplitStoreId(String splitStoreId) { + this.splitStoreId = splitStoreId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :请求地址和端口 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getRequestDomain() { + return this.requestDomain; + } + + /** + * 字段名称 :请求地址和端口 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setRequestDomain(String requestDomain) { + this.requestDomain = requestDomain; + } + + /** + * 字段名称 :请求报文 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getRequestMessage() { + return this.requestMessage; + } + + /** + * 字段名称 :请求报文 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setRequestMessage(String requestMessage) { + this.requestMessage = requestMessage; + } + + /** + * 字段名称 :服务器返回 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getResponseMessage() { + return this.responseMessage; + } + + /** + * 字段名称 :服务器返回 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setResponseMessage(String responseMessage) { + this.responseMessage = responseMessage; + } + + /** + * 字段名称 :备注1 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getRemark1() { + return this.remark1; + } + + /** + * 字段名称 :备注1 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setRemark1(String remark1) { + this.remark1 = remark1; + } + + /** + * 字段名称 :备注2 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getRemark2() { + return this.remark2; + } + + /** + * 字段名称 :备注2 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setRemark2(String remark2) { + this.remark2 = remark2; + } + + /** + * 字段名称 :备注3 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getRemark3() { + return this.remark3; + } + + /** + * 字段名称 :备注3 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setRemark3(String remark3) { + this.remark3 = remark3; + } + + /** + * 字段名称 :状态 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setStatus(String status) { + this.status = status; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SplitPayResult.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SplitPayResult.java new file mode 100644 index 0000000..27a90de --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SplitPayResult.java @@ -0,0 +1,295 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:分店分帐结果 + * 表代码:cy_split_pay_result + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"SplitPayResult") +public class SplitPayResult extends BaseEntity { + + private static final long serialVersionUID = 1781205300178261938L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *门店ID + */ + private String storeId; + + /** + *分店ID + */ + private String splitStoreId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *付款单号 + */ + private String payNo; + + /** + *销售单ID + */ + private String ticketId; + + /** + *销售单号 + */ + private String busNo; + + /** + *分帐金额 + */ + private Double money; + + /** + *已分金额 + */ + private Double ymoney; + + /** + *剩余金额 + */ + private Double smoney; + + /** + *备注 + */ + private String memo; + + /** + *状态 + */ + private String status; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :分店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSplitStoreId() { + return this.splitStoreId; + } + + /** + * 字段名称 :分店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSplitStoreId(String splitStoreId) { + this.splitStoreId = splitStoreId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :付款单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPayNo() { + return this.payNo; + } + + /** + * 字段名称 :付款单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPayNo(String payNo) { + this.payNo = payNo; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :分帐金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :分帐金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :已分金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getYmoney() { + return this.ymoney; + } + + /** + * 字段名称 :已分金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setYmoney(Double ymoney) { + this.ymoney = ymoney; + } + + /** + * 字段名称 :剩余金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getSmoney() { + return this.smoney; + } + + /** + * 字段名称 :剩余金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setSmoney(Double smoney) { + this.smoney = smoney; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getMemo() { + return this.memo; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setMemo(String memo) { + this.memo = memo; + } + + /** + * 字段名称 :状态 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setStatus(String status) { + this.status = status; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SplitShopAccount.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SplitShopAccount.java new file mode 100644 index 0000000..13eaad3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SplitShopAccount.java @@ -0,0 +1,847 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:店铺分帐户表 + * 表代码:cy_split_shop_account + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"SplitShopAccount") +public class SplitShopAccount extends BaseEntity { + + private static final long serialVersionUID = 1839981385009712845L; + + /** + *父级店铺ID + */ + private String pshopId; + + /** + *店铺ID + */ + private String shopId; + + /** + *收款方编号 + */ + private String bizUserId; + + /** + *绑定手机号 + */ + private String phone; + + /** + *企业名称 + */ + private String companyName; + + /** + *企业地址 + */ + private String companyAddress; + + /** + *认证类型 1:三证 2:一证, 不填默认1-三证 + */ + private String authType; + + /** + *统一社会信用(一证) + */ + private String uniCredit; + + /** + *营业执照号(三证) + */ + private String businessLicense; + + /** + *组织机构代码(三证) + */ + private String organizationCode; + + /** + *税务登记证(三证) + */ + private String taxRegister; + + /** + *统一社会信用/营业执照号到期时间 + */ + private String expLicense; + + /** + *联系电话 + */ + private String telephone; + + /** + *法人姓名 + */ + private String legalName; + + /** + *法人证件类型 + */ + private String identityType; + + /** + *法人证件号码 + */ + private String legalIds; + + /** + *法人手机号码 + */ + private String legalPhone; + + /** + *企业对公账户 + */ + private String accountNo; + + /** + *开户银行名称 + */ + private String parentBankName; + + /** + *开户行地区代码 + */ + private String bankCityNo; + + /** + *开户行支行名称 + */ + private String bankName; + + /** + *支付行号 + */ + private String unionBank; + + /** + *开户行所在省 + */ + private String province; + + /** + *开户行所在市 + */ + private String city; + + /** + *企业会员审核结果通知 + */ + private String backUrl; + + /** + *收款方类型 企业:2,个人:3 + */ + private String memberType; + + /** + *是否绑定手机号 0否 1是 + */ + private String isphone; + + /** + *是否收款方创建 0否 1是 + */ + private String iscreate; + + /** + *是否信息设置 0否 1是 + */ + private String isinfo; + + /** + *是否影印件采集 0否 1是 + */ + private String isvideo; + + /** + *是否签订协议 0否 1是 + */ + private String isagree; + + /** + *影印件图片base64 + */ + private String pictureUrl; + + /** + *访问终端类型 Mobile:1,PC:2 + */ + private String source; + + /** + *类型 + */ + private String type; + + /** + *状态 + */ + private String status; + + /** + *详情 + */ + private String detail; + + + /** + * 字段名称 :父级店铺ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPshopId() { + return this.pshopId; + } + + /** + * 字段名称 :父级店铺ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPshopId(String pshopId) { + this.pshopId = pshopId; + } + + /** + * 字段名称 :店铺ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getShopId() { + return this.shopId; + } + + /** + * 字段名称 :店铺ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setShopId(String shopId) { + this.shopId = shopId; + } + + /** + * 字段名称 :收款方编号 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getBizUserId() { + return this.bizUserId; + } + + /** + * 字段名称 :收款方编号 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setBizUserId(String bizUserId) { + this.bizUserId = bizUserId; + } + + /** + * 字段名称 :绑定手机号 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPhone() { + return this.phone; + } + + /** + * 字段名称 :绑定手机号 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPhone(String phone) { + this.phone = phone; + } + + /** + * 字段名称 :企业名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getCompanyName() { + return this.companyName; + } + + /** + * 字段名称 :企业名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setCompanyName(String companyName) { + this.companyName = companyName; + } + + /** + * 字段名称 :企业地址 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCompanyAddress() { + return this.companyAddress; + } + + /** + * 字段名称 :企业地址 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCompanyAddress(String companyAddress) { + this.companyAddress = companyAddress; + } + + /** + * 字段名称 :认证类型 1:三证 2:一证, 不填默认1-三证 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getAuthType() { + return this.authType; + } + + /** + * 字段名称 :认证类型 1:三证 2:一证, 不填默认1-三证 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setAuthType(String authType) { + this.authType = authType; + } + + /** + * 字段名称 :统一社会信用(一证) + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getUniCredit() { + return this.uniCredit; + } + + /** + * 字段名称 :统一社会信用(一证) + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setUniCredit(String uniCredit) { + this.uniCredit = uniCredit; + } + + /** + * 字段名称 :营业执照号(三证) + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getBusinessLicense() { + return this.businessLicense; + } + + /** + * 字段名称 :营业执照号(三证) + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setBusinessLicense(String businessLicense) { + this.businessLicense = businessLicense; + } + + /** + * 字段名称 :组织机构代码(三证) + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getOrganizationCode() { + return this.organizationCode; + } + + /** + * 字段名称 :组织机构代码(三证) + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setOrganizationCode(String organizationCode) { + this.organizationCode = organizationCode; + } + + /** + * 字段名称 :税务登记证(三证) + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTaxRegister() { + return this.taxRegister; + } + + /** + * 字段名称 :税务登记证(三证) + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTaxRegister(String taxRegister) { + this.taxRegister = taxRegister; + } + + /** + * 字段名称 :统一社会信用/营业执照号到期时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getExpLicense() { + return this.expLicense; + } + + /** + * 字段名称 :统一社会信用/营业执照号到期时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setExpLicense(String expLicense) { + this.expLicense = expLicense; + } + + /** + * 字段名称 :联系电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTelephone() { + return this.telephone; + } + + /** + * 字段名称 :联系电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTelephone(String telephone) { + this.telephone = telephone; + } + + /** + * 字段名称 :法人姓名 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getLegalName() { + return this.legalName; + } + + /** + * 字段名称 :法人姓名 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setLegalName(String legalName) { + this.legalName = legalName; + } + + /** + * 字段名称 :法人证件类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getIdentityType() { + return this.identityType; + } + + /** + * 字段名称 :法人证件类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setIdentityType(String identityType) { + this.identityType = identityType; + } + + /** + * 字段名称 :法人证件号码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getLegalIds() { + return this.legalIds; + } + + /** + * 字段名称 :法人证件号码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setLegalIds(String legalIds) { + this.legalIds = legalIds; + } + + /** + * 字段名称 :法人手机号码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLegalPhone() { + return this.legalPhone; + } + + /** + * 字段名称 :法人手机号码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLegalPhone(String legalPhone) { + this.legalPhone = legalPhone; + } + + /** + * 字段名称 :企业对公账户 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getAccountNo() { + return this.accountNo; + } + + /** + * 字段名称 :企业对公账户 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setAccountNo(String accountNo) { + this.accountNo = accountNo; + } + + /** + * 字段名称 :开户银行名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getParentBankName() { + return this.parentBankName; + } + + /** + * 字段名称 :开户银行名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setParentBankName(String parentBankName) { + this.parentBankName = parentBankName; + } + + /** + * 字段名称 :开户行地区代码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBankCityNo() { + return this.bankCityNo; + } + + /** + * 字段名称 :开户行地区代码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBankCityNo(String bankCityNo) { + this.bankCityNo = bankCityNo; + } + + /** + * 字段名称 :开户行支行名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBankName() { + return this.bankName; + } + + /** + * 字段名称 :开户行支行名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBankName(String bankName) { + this.bankName = bankName; + } + + /** + * 字段名称 :支付行号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getUnionBank() { + return this.unionBank; + } + + /** + * 字段名称 :支付行号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setUnionBank(String unionBank) { + this.unionBank = unionBank; + } + + /** + * 字段名称 :开户行所在省 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProvince() { + return this.province; + } + + /** + * 字段名称 :开户行所在省 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProvince(String province) { + this.province = province; + } + + /** + * 字段名称 :开户行所在市 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCity() { + return this.city; + } + + /** + * 字段名称 :开户行所在市 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCity(String city) { + this.city = city; + } + + /** + * 字段名称 :企业会员审核结果通知 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBackUrl() { + return this.backUrl; + } + + /** + * 字段名称 :企业会员审核结果通知 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBackUrl(String backUrl) { + this.backUrl = backUrl; + } + + /** + * 字段名称 :收款方类型 企业:2,个人:3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMemberType() { + return this.memberType; + } + + /** + * 字段名称 :收款方类型 企业:2,个人:3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMemberType(String memberType) { + this.memberType = memberType; + } + + /** + * 字段名称 :是否绑定手机号 0否 1是 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getIsphone() { + return this.isphone; + } + + /** + * 字段名称 :是否绑定手机号 0否 1是 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setIsphone(String isphone) { + this.isphone = isphone; + } + + /** + * 字段名称 :是否收款方创建 0否 1是 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getIscreate() { + return this.iscreate; + } + + /** + * 字段名称 :是否收款方创建 0否 1是 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setIscreate(String iscreate) { + this.iscreate = iscreate; + } + + /** + * 字段名称 :是否信息设置 0否 1是 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getIsinfo() { + return this.isinfo; + } + + /** + * 字段名称 :是否信息设置 0否 1是 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setIsinfo(String isinfo) { + this.isinfo = isinfo; + } + + /** + * 字段名称 :是否影印件采集 0否 1是 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getIsvideo() { + return this.isvideo; + } + + /** + * 字段名称 :是否影印件采集 0否 1是 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setIsvideo(String isvideo) { + this.isvideo = isvideo; + } + + /** + * 字段名称 :是否签订协议 0否 1是 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getIsagree() { + return this.isagree; + } + + /** + * 字段名称 :是否签订协议 0否 1是 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setIsagree(String isagree) { + this.isagree = isagree; + } + + /** + * 字段名称 :影印件图片base64 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPictureUrl() { + return this.pictureUrl; + } + + /** + * 字段名称 :影印件图片base64 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPictureUrl(String pictureUrl) { + this.pictureUrl = pictureUrl; + } + + /** + * 字段名称 :访问终端类型 Mobile:1,PC:2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSource() { + return this.source; + } + + /** + * 字段名称 :访问终端类型 Mobile:1,PC:2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSource(String source) { + this.source = source; + } + + /** + * 字段名称 :类型 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getType() { + return this.type; + } + + /** + * 字段名称 :类型 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setType(String type) { + this.type = type; + } + + /** + * 字段名称 :状态 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStatus(String status) { + this.status = status; + } + + /** + * 字段名称 :详情 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDetail() { + return this.detail; + } + + /** + * 字段名称 :详情 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDetail(String detail) { + this.detail = detail; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SplitShopWithdrawal.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SplitShopWithdrawal.java new file mode 100644 index 0000000..1a4782a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SplitShopWithdrawal.java @@ -0,0 +1,364 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:分店提现记录表 + * 表代码:cy_split_shop_withdrawal + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"SplitShopWithdrawal") +public class SplitShopWithdrawal extends BaseEntity { + + private static final long serialVersionUID = 1831044953803326840L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *设置ID + */ + private String programId; + + /** + *门店ID + */ + private String storeId; + + /** + *分店ID + */ + private String splitStoreId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *付款方式编号 + */ + private String payTypeNo; + + /** + *提现金额 + */ + private Double amount; + + /** + *手续费 + */ + private Double fee; + + /** + *到账金额 + */ + private Double receivedAmount; + + /** + *到账时间 + */ + private Date payDate; + + /** + *到账卡号 + */ + private String cardno; + + /** + *备用字段 + */ + private String ext; + + /** + *备注 + */ + private String memo; + + /** + *类型 + */ + private Integer type; + + /** + *状态 + */ + private Integer status; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :分店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSplitStoreId() { + return this.splitStoreId; + } + + /** + * 字段名称 :分店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSplitStoreId(String splitStoreId) { + this.splitStoreId = splitStoreId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :付款方式编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPayTypeNo() { + return this.payTypeNo; + } + + /** + * 字段名称 :付款方式编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPayTypeNo(String payTypeNo) { + this.payTypeNo = payTypeNo; + } + + /** + * 字段名称 :提现金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :提现金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :手续费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getFee() { + return this.fee; + } + + /** + * 字段名称 :手续费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setFee(Double fee) { + this.fee = fee; + } + + /** + * 字段名称 :到账金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivedAmount() { + return this.receivedAmount; + } + + /** + * 字段名称 :到账金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivedAmount(Double receivedAmount) { + this.receivedAmount = receivedAmount; + } + + /** + * 字段名称 :到账时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getPayDate() { + return this.payDate; + } + + /** + * 字段名称 :到账时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setPayDate(Date payDate) { + this.payDate = payDate; + } + + /** + * 字段名称 :到账卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCardno() { + return this.cardno; + } + + /** + * 字段名称 :到账卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCardno(String cardno) { + this.cardno = cardno; + } + + /** + * 字段名称 :备用字段 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getExt() { + return this.ext; + } + + /** + * 字段名称 :备用字段 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setExt(String ext) { + this.ext = ext; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getMemo() { + return this.memo; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setMemo(String memo) { + this.memo = memo; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SplitStorePay.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SplitStorePay.java new file mode 100644 index 0000000..f99b3c1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SplitStorePay.java @@ -0,0 +1,640 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:分店分帐流水 + * 表代码:cy_split_store_pay + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"SplitStorePay") +public class SplitStorePay extends BaseEntity { + + private static final long serialVersionUID = 1723079160312003285L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *设置ID + */ + private String programId; + + /** + *门店ID + */ + private String storeId; + + /** + *分店ID + */ + private String splitStoreId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *付款单号 + */ + private String payNo; + + /** + *销售单ID + */ + private String ticketId; + + /** + *销售单号 + */ + private String busNo; + + /** + *付款方式编号 + */ + private String payTypeNo; + + /** + *付款方式 + */ + private String payType; + + /** + *实收金额 + */ + private Double paid; + + /** + *找零金额 + */ + private Double rchange; + + /** + *已收金额 + */ + private Double money; + + /** + *溢出金额 + */ + private Double overAmount; + + /** + *凭证号 + */ + private String voucherNo; + + /** + *付款时间 + */ + private Date payDate; + + /** + *付款卡号 + */ + private String cardno; + + /** + *是否实收 + */ + private Integer incomeFlag; + + /** + *第三方扣费类型 + */ + private Integer otherRateType; + + /** + *第三方扣费值 + */ + private Double otherRateValue; + + /** + *第三方扣费 + */ + private Double otherRate; + + /** + *支付客户端类型 + */ + private Integer payClientType; + + /** + *支付渠道 + */ + private Integer payChannel; + + /** + *扣率 + */ + private Double deductionRate; + + /** + *扣款 + */ + private Double chargeBack; + + /** + *备注 + */ + private String memo; + + /** + *是否失效 + */ + private Integer isInvalid; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProgramId() { + return this.programId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProgramId(String programId) { + this.programId = programId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :分店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSplitStoreId() { + return this.splitStoreId; + } + + /** + * 字段名称 :分店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSplitStoreId(String splitStoreId) { + this.splitStoreId = splitStoreId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :付款单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPayNo() { + return this.payNo; + } + + /** + * 字段名称 :付款单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPayNo(String payNo) { + this.payNo = payNo; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :付款方式编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPayTypeNo() { + return this.payTypeNo; + } + + /** + * 字段名称 :付款方式编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPayTypeNo(String payTypeNo) { + this.payTypeNo = payTypeNo; + } + + /** + * 字段名称 :付款方式 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPayType() { + return this.payType; + } + + /** + * 字段名称 :付款方式 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPayType(String payType) { + this.payType = payType; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPaid() { + return this.paid; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPaid(Double paid) { + this.paid = paid; + } + + /** + * 字段名称 :找零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getRchange() { + return this.rchange; + } + + /** + * 字段名称 :找零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setRchange(Double rchange) { + this.rchange = rchange; + } + + /** + * 字段名称 :已收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :已收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :溢出金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getOverAmount() { + return this.overAmount; + } + + /** + * 字段名称 :溢出金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setOverAmount(Double overAmount) { + this.overAmount = overAmount; + } + + /** + * 字段名称 :凭证号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getVoucherNo() { + return this.voucherNo; + } + + /** + * 字段名称 :凭证号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setVoucherNo(String voucherNo) { + this.voucherNo = voucherNo; + } + + /** + * 字段名称 :付款时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getPayDate() { + return this.payDate; + } + + /** + * 字段名称 :付款时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setPayDate(Date payDate) { + this.payDate = payDate; + } + + /** + * 字段名称 :付款卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCardno() { + return this.cardno; + } + + /** + * 字段名称 :付款卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCardno(String cardno) { + this.cardno = cardno; + } + + /** + * 字段名称 :是否实收 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIncomeFlag() { + return this.incomeFlag; + } + + /** + * 字段名称 :是否实收 + * 数据类型 :int + * 是否必填 :false + */ + public void setIncomeFlag(Integer incomeFlag) { + this.incomeFlag = incomeFlag; + } + + /** + * 字段名称 :第三方扣费类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOtherRateType() { + return this.otherRateType; + } + + /** + * 字段名称 :第三方扣费类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setOtherRateType(Integer otherRateType) { + this.otherRateType = otherRateType; + } + + /** + * 字段名称 :第三方扣费值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOtherRateValue() { + return this.otherRateValue; + } + + /** + * 字段名称 :第三方扣费值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOtherRateValue(Double otherRateValue) { + this.otherRateValue = otherRateValue; + } + + /** + * 字段名称 :第三方扣费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getOtherRate() { + return this.otherRate; + } + + /** + * 字段名称 :第三方扣费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setOtherRate(Double otherRate) { + this.otherRate = otherRate; + } + + /** + * 字段名称 :支付客户端类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPayClientType() { + return this.payClientType; + } + + /** + * 字段名称 :支付客户端类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setPayClientType(Integer payClientType) { + this.payClientType = payClientType; + } + + /** + * 字段名称 :支付渠道 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPayChannel() { + return this.payChannel; + } + + /** + * 字段名称 :支付渠道 + * 数据类型 :int + * 是否必填 :false + */ + public void setPayChannel(Integer payChannel) { + this.payChannel = payChannel; + } + + /** + * 字段名称 :扣率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDeductionRate() { + return this.deductionRate; + } + + /** + * 字段名称 :扣率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDeductionRate(Double deductionRate) { + this.deductionRate = deductionRate; + } + + /** + * 字段名称 :扣款 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getChargeBack() { + return this.chargeBack; + } + + /** + * 字段名称 :扣款 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setChargeBack(Double chargeBack) { + this.chargeBack = chargeBack; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getMemo() { + return this.memo; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setMemo(String memo) { + this.memo = memo; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Storage.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Storage.java new file mode 100644 index 0000000..c2d8a80 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Storage.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:总部库位 + * 表代码:cy_storage + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"Storage") +public class Storage extends BaseEntity { + + private static final long serialVersionUID = 1253768424380521238L; + + /** + *类别ID + */ + private String typeId; + + /** + *名称 + */ + private String name; + + /** + *编号 + */ + private String no; + + /** + *负责人 + */ + private String manager; + + + /** + * 字段名称 :类别ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :负责人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getManager() { + return this.manager; + } + + /** + * 字段名称 :负责人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setManager(String manager) { + this.manager = manager; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StorageStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StorageStore.java new file mode 100644 index 0000000..acabd5d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StorageStore.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店仓库关联 + * 表代码:cy_storage_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StorageStore") +public class StorageStore extends BaseEntity { + + private static final long serialVersionUID = 1101933249108226426L; + + /** + *门店ID + */ + private String storeId; + + /** + *仓库ID + */ + private String storageId; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StorageType.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StorageType.java new file mode 100644 index 0000000..d020746 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StorageType.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:总部库位类型 + * 表代码:cy_storage_type + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StorageType") +public class StorageType extends BaseEntity { + + private static final long serialVersionUID = 1123377062943657070L; + + /** + *类别编号 + */ + private String no; + + /** + *类别名称 + */ + private String name; + + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :类别名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :类别名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Store.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Store.java new file mode 100644 index 0000000..4d169d8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Store.java @@ -0,0 +1,1031 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店信息 + * 表代码:cy_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"Store") +public class Store extends BaseEntity { + + private static final long serialVersionUID = 1972112797613500439L; + + /** + *地区ID + */ + private String areaId; + + /** + *区域路径 + */ + private String areaPath; + + /** + *门店类型 + */ + private String typeId; + + /** + *门店编号 + */ + private String no; + + /** + *门店名称 + */ + private String name; + + /** + *负责人 + */ + private String manager; + + /** + *联系电话 + */ + private String tel; + + /** + *手机号码 + */ + private String mobile; + + /** + *订餐电话 + */ + private String orderTel; + + /** + *打印名称 + */ + private String printName; + + /** + *地址 + */ + private String address; + + /** + *电子邮箱 + */ + private String mail; + + /** + *面积 + */ + private Double square; + + /** + *桌台数 + */ + private Integer deskAmount; + + /** + *座位数 + */ + private Integer seatAmount; + + /** + *是否注册 + */ + private Integer registerFlag; + + /** + *是否按主食统计人数 + */ + private Integer stapleFlag; + + /** + *是否启用 + */ + private Integer enabled; + + /** + *删除标识 + */ + private Integer deleteFlag; + + /** + *图片宽度 + */ + private Integer width; + + /** + *图片高度 + */ + private Integer height; + + /** + *存储组名 + */ + private String groupName; + + /** + *存储文件名 + */ + private String storageFileName; + + /** + *是否授权 + */ + private Integer authFlag; + + /** + *纬度 + */ + private Double latitude; + + /** + *经度 + */ + private Double longitude; + + /** + *编号类型 + */ + private Integer noType; + + /** + *最大离线天数 + */ + private Integer maxOffLine; + + /** + *是否允许自建商品 + */ + private Integer productFlag; + + /** + *第三方编号 + */ + private String thirdNo; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *默认组别ID + */ + private String groupId; + + /** + *默认组别编号 + */ + private String groupNo; + + /** + *扣点 + */ + private Double deductionRate; + + /** + *状态 + */ + private Integer status; + + /** + *单店标识 + */ + private Integer singleFlag; + + /** + *备注信息 + */ + private String description; + + /** + *门店logo + */ + private String logoUrl; + + /** + *是否默认 + */ + private Integer defaultFlag; + + /** + *是否启用门店税率 + */ + private Integer storeTaxRateFlag; + + /** + *销项税 + */ + private Double saleTax; + + /** + *联营扣率 + */ + private Double lyRate; + + /** + *门店扣点 + */ + private Double storeRate; + + + /** + * 字段名称 :地区ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getAreaId() { + return this.areaId; + } + + /** + * 字段名称 :地区ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setAreaId(String areaId) { + this.areaId = areaId; + } + + /** + * 字段名称 :区域路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getAreaPath() { + return this.areaPath; + } + + /** + * 字段名称 :区域路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setAreaPath(String areaPath) { + this.areaPath = areaPath; + } + + /** + * 字段名称 :门店类型 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :门店类型 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :负责人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getManager() { + return this.manager; + } + + /** + * 字段名称 :负责人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setManager(String manager) { + this.manager = manager; + } + + /** + * 字段名称 :联系电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTel() { + return this.tel; + } + + /** + * 字段名称 :联系电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTel(String tel) { + this.tel = tel; + } + + /** + * 字段名称 :手机号码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getMobile() { + return this.mobile; + } + + /** + * 字段名称 :手机号码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setMobile(String mobile) { + this.mobile = mobile; + } + + /** + * 字段名称 :订餐电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getOrderTel() { + return this.orderTel; + } + + /** + * 字段名称 :订餐电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setOrderTel(String orderTel) { + this.orderTel = orderTel; + } + + /** + * 字段名称 :打印名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getPrintName() { + return this.printName; + } + + /** + * 字段名称 :打印名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setPrintName(String printName) { + this.printName = printName; + } + + /** + * 字段名称 :地址 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getAddress() { + return this.address; + } + + /** + * 字段名称 :地址 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setAddress(String address) { + this.address = address; + } + + /** + * 字段名称 :电子邮箱 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMail() { + return this.mail; + } + + /** + * 字段名称 :电子邮箱 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMail(String mail) { + this.mail = mail; + } + + /** + * 字段名称 :面积 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getSquare() { + return this.square; + } + + /** + * 字段名称 :面积 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setSquare(Double square) { + this.square = square; + } + + /** + * 字段名称 :桌台数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeskAmount() { + return this.deskAmount; + } + + /** + * 字段名称 :桌台数 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeskAmount(Integer deskAmount) { + this.deskAmount = deskAmount; + } + + /** + * 字段名称 :座位数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSeatAmount() { + return this.seatAmount; + } + + /** + * 字段名称 :座位数 + * 数据类型 :int + * 是否必填 :false + */ + public void setSeatAmount(Integer seatAmount) { + this.seatAmount = seatAmount; + } + + /** + * 字段名称 :是否注册 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getRegisterFlag() { + return this.registerFlag; + } + + /** + * 字段名称 :是否注册 + * 数据类型 :int + * 是否必填 :false + */ + public void setRegisterFlag(Integer registerFlag) { + this.registerFlag = registerFlag; + } + + /** + * 字段名称 :是否按主食统计人数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStapleFlag() { + return this.stapleFlag; + } + + /** + * 字段名称 :是否按主食统计人数 + * 数据类型 :int + * 是否必填 :false + */ + public void setStapleFlag(Integer stapleFlag) { + this.stapleFlag = stapleFlag; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnabled() { + return this.enabled; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setEnabled(Integer enabled) { + this.enabled = enabled; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getWidth() { + return this.width; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public void setWidth(Integer width) { + this.width = width; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getHeight() { + return this.height; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public void setHeight(Integer height) { + this.height = height; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getGroupName() { + return this.groupName; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getStorageFileName() { + return this.storageFileName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setStorageFileName(String storageFileName) { + this.storageFileName = storageFileName; + } + + /** + * 字段名称 :是否授权 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getAuthFlag() { + return this.authFlag; + } + + /** + * 字段名称 :是否授权 + * 数据类型 :int + * 是否必填 :false + */ + public void setAuthFlag(Integer authFlag) { + this.authFlag = authFlag; + } + + /** + * 字段名称 :纬度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public Double getLatitude() { + return this.latitude; + } + + /** + * 字段名称 :纬度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public void setLatitude(Double latitude) { + this.latitude = latitude; + } + + /** + * 字段名称 :经度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public Double getLongitude() { + return this.longitude; + } + + /** + * 字段名称 :经度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public void setLongitude(Double longitude) { + this.longitude = longitude; + } + + /** + * 字段名称 :编号类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getNoType() { + return this.noType; + } + + /** + * 字段名称 :编号类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setNoType(Integer noType) { + this.noType = noType; + } + + /** + * 字段名称 :最大离线天数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getMaxOffLine() { + return this.maxOffLine; + } + + /** + * 字段名称 :最大离线天数 + * 数据类型 :int + * 是否必填 :false + */ + public void setMaxOffLine(Integer maxOffLine) { + this.maxOffLine = maxOffLine; + } + + /** + * 字段名称 :是否允许自建商品 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getProductFlag() { + return this.productFlag; + } + + /** + * 字段名称 :是否允许自建商品 + * 数据类型 :int + * 是否必填 :false + */ + public void setProductFlag(Integer productFlag) { + this.productFlag = productFlag; + } + + /** + * 字段名称 :第三方编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getThirdNo() { + return this.thirdNo; + } + + /** + * 字段名称 :第三方编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setThirdNo(String thirdNo) { + this.thirdNo = thirdNo; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :默认组别ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getGroupId() { + return this.groupId; + } + + /** + * 字段名称 :默认组别ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setGroupId(String groupId) { + this.groupId = groupId; + } + + /** + * 字段名称 :默认组别编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getGroupNo() { + return this.groupNo; + } + + /** + * 字段名称 :默认组别编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setGroupNo(String groupNo) { + this.groupNo = groupNo; + } + + /** + * 字段名称 :扣点 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDeductionRate() { + return this.deductionRate; + } + + /** + * 字段名称 :扣点 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDeductionRate(Double deductionRate) { + this.deductionRate = deductionRate; + } + + /** + * 字段名称 :状态 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :单店标识 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getSingleFlag() { + return this.singleFlag; + } + + /** + * 字段名称 :单店标识 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setSingleFlag(Integer singleFlag) { + this.singleFlag = singleFlag; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :门店logo + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getLogoUrl() { + return this.logoUrl; + } + + /** + * 字段名称 :门店logo + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setLogoUrl(String logoUrl) { + this.logoUrl = logoUrl; + } + + /** + * 字段名称 :是否默认 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getDefaultFlag() { + return this.defaultFlag; + } + + /** + * 字段名称 :是否默认 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setDefaultFlag(Integer defaultFlag) { + this.defaultFlag = defaultFlag; + } + + /** + * 字段名称 :是否启用门店税率 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getStoreTaxRateFlag() { + return this.storeTaxRateFlag; + } + + /** + * 字段名称 :是否启用门店税率 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setStoreTaxRateFlag(Integer storeTaxRateFlag) { + this.storeTaxRateFlag = storeTaxRateFlag; + } + + /** + * 字段名称 :销项税 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getSaleTax() { + return this.saleTax; + } + + /** + * 字段名称 :销项税 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setSaleTax(Double saleTax) { + this.saleTax = saleTax; + } + + /** + * 字段名称 :联营扣率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getLyRate() { + return this.lyRate; + } + + /** + * 字段名称 :联营扣率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setLyRate(Double lyRate) { + this.lyRate = lyRate; + } + + /** + * 字段名称 :门店扣点 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getStoreRate() { + return this.storeRate; + } + + /** + * 字段名称 :门店扣点 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setStoreRate(Double storeRate) { + this.storeRate = storeRate; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreAccount.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreAccount.java new file mode 100644 index 0000000..7dad5d3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreAccount.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店余额账户 + * 表代码:cy_store_account + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreAccount") +public class StoreAccount extends BaseEntity { + + private static final long serialVersionUID = 1808824115794228401L; + + /** + *编号 + */ + private String no; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *状态 + */ + private Integer status; + + /** + *支付密码 + */ + private String payPwd; + + /** + *备注 + */ + private String description; + + /** + *余额 + */ + private Double amount; + + /** + *冻结余额 + */ + private Double freezeAmount; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :支付密码 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getPayPwd() { + return this.payPwd; + } + + /** + * 字段名称 :支付密码 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setPayPwd(String payPwd) { + this.payPwd = payPwd; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :余额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :余额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :冻结余额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getFreezeAmount() { + return this.freezeAmount; + } + + /** + * 字段名称 :冻结余额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setFreezeAmount(Double freezeAmount) { + this.freezeAmount = freezeAmount; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreAccountDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreAccountDetail.java new file mode 100644 index 0000000..c45b478 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreAccountDetail.java @@ -0,0 +1,387 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店余额账户明细 + * 表代码:cy_store_account_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreAccountDetail") +public class StoreAccountDetail extends BaseEntity { + + private static final long serialVersionUID = 1692602119482913892L; + + /** + *账户ID + */ + private String accountId; + + /** + *门店Id + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *收支类型 + */ + private Integer type; + + /** + *业务类型 + */ + private Integer busType; + + /** + *业务单号 + */ + private String busNo; + + /** + *交易时间 + */ + private Date busTime; + + /** + *支付方式 + */ + private String payType; + + /** + *凭证号 + */ + private String voucherNo; + + /** + *状态 + */ + private Integer status; + + /** + *发生金额 + */ + private Double amount; + + /** + *发生后余额 + */ + private Double aftAmount; + + /** + *工号 + */ + private String workerNo; + + /** + *设备编号 + */ + private String posNo; + + /** + *来源标识 + */ + private String sourceSign; + + /** + *备注 + */ + private String description; + + + /** + * 字段名称 :账户ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getAccountId() { + return this.accountId; + } + + /** + * 字段名称 :账户ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setAccountId(String accountId) { + this.accountId = accountId; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :收支类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :收支类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :业务类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBusType() { + return this.busType; + } + + /** + * 字段名称 :业务类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setBusType(Integer busType) { + this.busType = busType; + } + + /** + * 字段名称 :业务单号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :业务单号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :交易时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getBusTime() { + return this.busTime; + } + + /** + * 字段名称 :交易时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setBusTime(Date busTime) { + this.busTime = busTime; + } + + /** + * 字段名称 :支付方式 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPayType() { + return this.payType; + } + + /** + * 字段名称 :支付方式 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPayType(String payType) { + this.payType = payType; + } + + /** + * 字段名称 :凭证号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getVoucherNo() { + return this.voucherNo; + } + + /** + * 字段名称 :凭证号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setVoucherNo(String voucherNo) { + this.voucherNo = voucherNo; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :发生金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :发生金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :发生后余额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAftAmount() { + return this.aftAmount; + } + + /** + * 字段名称 :发生后余额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAftAmount(Double aftAmount) { + this.aftAmount = aftAmount; + } + + /** + * 字段名称 :工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getWorkerNo() { + return this.workerNo; + } + + /** + * 字段名称 :工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setWorkerNo(String workerNo) { + this.workerNo = workerNo; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :来源标识 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSourceSign() { + return this.sourceSign; + } + + /** + * 字段名称 :来源标识 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSourceSign(String sourceSign) { + this.sourceSign = sourceSign; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreAccountRechargeParameter.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreAccountRechargeParameter.java new file mode 100644 index 0000000..0a613df --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreAccountRechargeParameter.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店账户充值参数方案 + * 表代码:cy_store_account_recharge_parameter + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreAccountRechargeParameter") +public class StoreAccountRechargeParameter extends BaseEntity { + + private static final long serialVersionUID = 1697355018005837927L; + + /** + *编号 + */ + private String no; + + /** + *方案名称 + */ + private String name; + + /** + *支付类型 + */ + private String sign; + + /** + *支付参数 + */ + private String pbody; + + /** + *是否启用 + */ + private Integer enabled; + + /** + *证书内容 + */ + private String certText; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :方案名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :方案名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :支付类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSign() { + return this.sign; + } + + /** + * 字段名称 :支付类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSign(String sign) { + this.sign = sign; + } + + /** + * 字段名称 :支付参数 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getPbody() { + return this.pbody; + } + + /** + * 字段名称 :支付参数 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setPbody(String pbody) { + this.pbody = pbody; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnabled() { + return this.enabled; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setEnabled(Integer enabled) { + this.enabled = enabled; + } + + /** + * 字段名称 :证书内容 + * 数据类型 :text + * 是否必填 :false + */ + public String getCertText() { + return this.certText; + } + + /** + * 字段名称 :证书内容 + * 数据类型 :text + * 是否必填 :false + */ + public void setCertText(String certText) { + this.certText = certText; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreAccountRechargeRecord.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreAccountRechargeRecord.java new file mode 100644 index 0000000..6851211 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreAccountRechargeRecord.java @@ -0,0 +1,502 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店账户充值记录 + * 表代码:cy_store_account_recharge_record + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreAccountRechargeRecord") +public class StoreAccountRechargeRecord extends BaseEntity { + + private static final long serialVersionUID = 1398549231147096957L; + + /** + *门店Id + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *账户ID + */ + private String accountId; + + /** + *来源标识 + */ + private String sourceSign; + + /** + *单据编号 + */ + private String ticketNo; + + /** + *金额 + */ + private Double amount; + + /** + *状态 + */ + private Integer status; + + /** + *充值状态 + */ + private Integer rechargeStatus; + + /** + *备注 + */ + private String description; + + /** + *支付方式 + */ + private Integer payType; + + /** + *支付凭证号 + */ + private String payVoucherNo; + + /** + *支付时间 + */ + private Date payDate; + + /** + *支付账号 + */ + private String payAccount; + + /** + *订单标题 + */ + private String title; + + /** + *订单内容 + */ + private String content; + + /** + *设备信息 + */ + private String deviceInfo; + + /** + *附加信息 + */ + private String attach; + + /** + *请求信息 + */ + private String reqStr; + + /** + *回执信息 + */ + private String respStr; + + /** + *通知标识 + */ + private String notifySign; + + /** + *通知内容 + */ + private String notifyData; + + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :账户ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getAccountId() { + return this.accountId; + } + + /** + * 字段名称 :账户ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setAccountId(String accountId) { + this.accountId = accountId; + } + + /** + * 字段名称 :来源标识 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSourceSign() { + return this.sourceSign; + } + + /** + * 字段名称 :来源标识 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSourceSign(String sourceSign) { + this.sourceSign = sourceSign; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :充值状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getRechargeStatus() { + return this.rechargeStatus; + } + + /** + * 字段名称 :充值状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setRechargeStatus(Integer rechargeStatus) { + this.rechargeStatus = rechargeStatus; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :支付方式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPayType() { + return this.payType; + } + + /** + * 字段名称 :支付方式 + * 数据类型 :int + * 是否必填 :false + */ + public void setPayType(Integer payType) { + this.payType = payType; + } + + /** + * 字段名称 :支付凭证号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getPayVoucherNo() { + return this.payVoucherNo; + } + + /** + * 字段名称 :支付凭证号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setPayVoucherNo(String payVoucherNo) { + this.payVoucherNo = payVoucherNo; + } + + /** + * 字段名称 :支付时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getPayDate() { + return this.payDate; + } + + /** + * 字段名称 :支付时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setPayDate(Date payDate) { + this.payDate = payDate; + } + + /** + * 字段名称 :支付账号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getPayAccount() { + return this.payAccount; + } + + /** + * 字段名称 :支付账号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setPayAccount(String payAccount) { + this.payAccount = payAccount; + } + + /** + * 字段名称 :订单标题 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTitle() { + return this.title; + } + + /** + * 字段名称 :订单标题 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTitle(String title) { + this.title = title; + } + + /** + * 字段名称 :订单内容 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getContent() { + return this.content; + } + + /** + * 字段名称 :订单内容 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setContent(String content) { + this.content = content; + } + + /** + * 字段名称 :设备信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDeviceInfo() { + return this.deviceInfo; + } + + /** + * 字段名称 :设备信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDeviceInfo(String deviceInfo) { + this.deviceInfo = deviceInfo; + } + + /** + * 字段名称 :附加信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getAttach() { + return this.attach; + } + + /** + * 字段名称 :附加信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setAttach(String attach) { + this.attach = attach; + } + + /** + * 字段名称 :请求信息 + * 数据类型 :text + * 是否必填 :false + */ + public String getReqStr() { + return this.reqStr; + } + + /** + * 字段名称 :请求信息 + * 数据类型 :text + * 是否必填 :false + */ + public void setReqStr(String reqStr) { + this.reqStr = reqStr; + } + + /** + * 字段名称 :回执信息 + * 数据类型 :text + * 是否必填 :false + */ + public String getRespStr() { + return this.respStr; + } + + /** + * 字段名称 :回执信息 + * 数据类型 :text + * 是否必填 :false + */ + public void setRespStr(String respStr) { + this.respStr = respStr; + } + + /** + * 字段名称 :通知标识 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getNotifySign() { + return this.notifySign; + } + + /** + * 字段名称 :通知标识 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setNotifySign(String notifySign) { + this.notifySign = notifySign; + } + + /** + * 字段名称 :通知内容 + * 数据类型 :text + * 是否必填 :false + */ + public String getNotifyData() { + return this.notifyData; + } + + /** + * 字段名称 :通知内容 + * 数据类型 :text + * 是否必填 :false + */ + public void setNotifyData(String notifyData) { + this.notifyData = notifyData; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreArea.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreArea.java new file mode 100644 index 0000000..788c906 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreArea.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店区域 + * 表代码:cy_store_area + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreArea") +public class StoreArea extends BaseEntity { + + private static final long serialVersionUID = 1268939422121730389L; + + /** + *父区域ID + */ + private String parentId; + + /** + *区域编号 + */ + private String no; + + /** + *区域名称 + */ + private String name; + + /** + *区域路径 + */ + private String path; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :父区域ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getParentId() { + return this.parentId; + } + + /** + * 字段名称 :父区域ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setParentId(String parentId) { + this.parentId = parentId; + } + + /** + * 字段名称 :区域编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :区域编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :区域名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :区域名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :区域路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getPath() { + return this.path; + } + + /** + * 字段名称 :区域路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setPath(String path) { + this.path = path; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBrand.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBrand.java new file mode 100644 index 0000000..d0487d2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBrand.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:加盟品牌 + * 表代码:cy_store_brand + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreBrand") +public class StoreBrand extends BaseEntity { + + private static final long serialVersionUID = 1629344480013060872L; + + /** + *品牌ID + */ + private String brandId; + + /** + *门店ID + */ + private String storeId; + + + /** + * 字段名称 :品牌ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getBrandId() { + return this.brandId; + } + + /** + * 字段名称 :品牌ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setBrandId(String brandId) { + this.brandId = brandId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBusinessTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBusinessTicket.java new file mode 100644 index 0000000..268a14a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBusinessTicket.java @@ -0,0 +1,1008 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:前台销售单 + * 表代码:cy_store_business_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreBusinessTicket") +public class StoreBusinessTicket extends BaseEntity { + + private static final long serialVersionUID = 1720071737783991409L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *单据编号 + */ + private String no; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *单据状态 + */ + private Integer status; + + /** + *操作员工号 + */ + private String workNo; + + /** + *销售时间 + */ + private Date saleDate; + + /** + *餐桌号 + */ + private String tableNo; + + /** + *人数 + */ + private Integer people; + + /** + *营业模式 + */ + private Integer busMode; + + /** + *班次 + */ + private String shiftNo; + + /** + *班次名称 + */ + private String shiftName; + + /** + *消费金额 + */ + private Double amount; + + /** + *优惠率 + */ + private Double discount; + + /** + *优惠额 + */ + private Double discountTotal; + + /** + *应收金额 + */ + private Double receivable; + + /** + *抹零金额 + */ + private Double maling; + + /** + *实收金额 + */ + private Double paid; + + /** + *原单号 + */ + private String noOrg; + + /** + *退单原因 + */ + private String backCause; + + /** + *是否使用会员卡 + */ + private Integer isMember; + + /** + *会员卡号 + */ + private String memberNo; + + /** + *本单积分 + */ + private Double memberJifen; + + /** + *设备名称 + */ + private String deviceName; + + /** + *设备MAC + */ + private String deviceMac; + + /** + *设备IP + */ + private String deviceIp; + + /** + *设备编号 + */ + private String posNo; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *当日流水号 + */ + private String seqNo; + + /** + *天气 + */ + private String weather; + + /** + *星期 + */ + private String weeker; + + /** + *是否出库 + */ + private Integer isStockDeal; + + /** + *预估成本 + */ + private Double estimatedCost; + + /** + *预估毛利金额 + */ + private Double estimatedProfitAmount; + + /** + *预估毛利率 + */ + private Double estimatedProfitMargin; + + /** + *实际成本 + */ + private Double totalCost; + + /** + *实际毛利金额 + */ + private Double profitAmount; + + /** + *实际毛利率 + */ + private Double profitMargin; + + /** + *桌台名称 + */ + private String tableName; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :操作员工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getWorkNo() { + return this.workNo; + } + + /** + * 字段名称 :操作员工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setWorkNo(String workNo) { + this.workNo = workNo; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTableNo() { + return this.tableNo; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTableNo(String tableNo) { + this.tableNo = tableNo; + } + + /** + * 字段名称 :人数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPeople() { + return this.people; + } + + /** + * 字段名称 :人数 + * 数据类型 :int + * 是否必填 :false + */ + public void setPeople(Integer people) { + this.people = people; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBusMode() { + return this.busMode; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public void setBusMode(Integer busMode) { + this.busMode = busMode; + } + + /** + * 字段名称 :班次 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getShiftNo() { + return this.shiftNo; + } + + /** + * 字段名称 :班次 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setShiftNo(String shiftNo) { + this.shiftNo = shiftNo; + } + + /** + * 字段名称 :班次名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getShiftName() { + return this.shiftName; + } + + /** + * 字段名称 :班次名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setShiftName(String shiftName) { + this.shiftName = shiftName; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountTotal() { + return this.discountTotal; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountTotal(Double discountTotal) { + this.discountTotal = discountTotal; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivable() { + return this.receivable; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivable(Double receivable) { + this.receivable = receivable; + } + + /** + * 字段名称 :抹零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMaling() { + return this.maling; + } + + /** + * 字段名称 :抹零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMaling(Double maling) { + this.maling = maling; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPaid() { + return this.paid; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPaid(Double paid) { + this.paid = paid; + } + + /** + * 字段名称 :原单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNoOrg() { + return this.noOrg; + } + + /** + * 字段名称 :原单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNoOrg(String noOrg) { + this.noOrg = noOrg; + } + + /** + * 字段名称 :退单原因 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getBackCause() { + return this.backCause; + } + + /** + * 字段名称 :退单原因 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setBackCause(String backCause) { + this.backCause = backCause; + } + + /** + * 字段名称 :是否使用会员卡 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsMember() { + return this.isMember; + } + + /** + * 字段名称 :是否使用会员卡 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsMember(Integer isMember) { + this.isMember = isMember; + } + + /** + * 字段名称 :会员卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMemberNo() { + return this.memberNo; + } + + /** + * 字段名称 :会员卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMemberNo(String memberNo) { + this.memberNo = memberNo; + } + + /** + * 字段名称 :本单积分 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMemberJifen() { + return this.memberJifen; + } + + /** + * 字段名称 :本单积分 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMemberJifen(Double memberJifen) { + this.memberJifen = memberJifen; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDeviceName() { + return this.deviceName; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDeviceName(String deviceName) { + this.deviceName = deviceName; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public String getDeviceMac() { + return this.deviceMac; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public void setDeviceMac(String deviceMac) { + this.deviceMac = deviceMac; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeviceIp() { + return this.deviceIp; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeviceIp(String deviceIp) { + this.deviceIp = deviceIp; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :当日流水号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSeqNo() { + return this.seqNo; + } + + /** + * 字段名称 :当日流水号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSeqNo(String seqNo) { + this.seqNo = seqNo; + } + + /** + * 字段名称 :天气 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getWeather() { + return this.weather; + } + + /** + * 字段名称 :天气 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setWeather(String weather) { + this.weather = weather; + } + + /** + * 字段名称 :星期 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getWeeker() { + return this.weeker; + } + + /** + * 字段名称 :星期 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setWeeker(String weeker) { + this.weeker = weeker; + } + + /** + * 字段名称 :是否出库 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsStockDeal() { + return this.isStockDeal; + } + + /** + * 字段名称 :是否出库 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsStockDeal(Integer isStockDeal) { + this.isStockDeal = isStockDeal; + } + + /** + * 字段名称 :预估成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getEstimatedCost() { + return this.estimatedCost; + } + + /** + * 字段名称 :预估成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setEstimatedCost(Double estimatedCost) { + this.estimatedCost = estimatedCost; + } + + /** + * 字段名称 :预估毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getEstimatedProfitAmount() { + return this.estimatedProfitAmount; + } + + /** + * 字段名称 :预估毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setEstimatedProfitAmount(Double estimatedProfitAmount) { + this.estimatedProfitAmount = estimatedProfitAmount; + } + + /** + * 字段名称 :预估毛利率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getEstimatedProfitMargin() { + return this.estimatedProfitMargin; + } + + /** + * 字段名称 :预估毛利率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setEstimatedProfitMargin(Double estimatedProfitMargin) { + this.estimatedProfitMargin = estimatedProfitMargin; + } + + /** + * 字段名称 :实际成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getTotalCost() { + return this.totalCost; + } + + /** + * 字段名称 :实际成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setTotalCost(Double totalCost) { + this.totalCost = totalCost; + } + + /** + * 字段名称 :实际毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getProfitAmount() { + return this.profitAmount; + } + + /** + * 字段名称 :实际毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setProfitAmount(Double profitAmount) { + this.profitAmount = profitAmount; + } + + /** + * 字段名称 :实际毛利率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getProfitMargin() { + return this.profitMargin; + } + + /** + * 字段名称 :实际毛利率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setProfitMargin(Double profitMargin) { + this.profitMargin = profitMargin; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTableName() { + return this.tableName; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTableName(String tableName) { + this.tableName = tableName; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBusinessTicketCheck.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBusinessTicketCheck.java new file mode 100644 index 0000000..55e48a6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBusinessTicketCheck.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:前台销售单上传校验 + * 表代码:cy_store_business_ticket_check + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreBusinessTicketCheck") +public class StoreBusinessTicketCheck extends BaseEntity { + + private static final long serialVersionUID = 1201682871207053128L; + + /** + *门店ID + */ + private String storeId; + + /** + *单据编号 + */ + private String busNo; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBusinessTicketDaysummary.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBusinessTicketDaysummary.java new file mode 100644 index 0000000..32a41e9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBusinessTicketDaysummary.java @@ -0,0 +1,525 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:前台销售日汇总 + * 表代码:cy_store_business_ticket_daysummary + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreBusinessTicketDaysummary") +public class StoreBusinessTicketDaysummary extends BaseEntity { + + private static final long serialVersionUID = 1732228872334005055L; + + /** + *日期 + */ + private Date summaryDay; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *单据状态 + */ + private Integer status; + + /** + *操作员工号 + */ + private String workNo; + + /** + *人数 + */ + private Integer people; + + /** + *营业模式 + */ + private Integer busMode; + + /** + *消费金额 + */ + private Double amount; + + /** + *优惠额 + */ + private Double discountTotal; + + /** + *应收金额 + */ + private Double receivable; + + /** + *抹零金额 + */ + private Double maling; + + /** + *实收金额 + */ + private Double paid; + + /** + *设备编号 + */ + private String posNo; + + /** + *星期 + */ + private String weeker; + + /** + *预估成本 + */ + private Double estimatedCost; + + /** + *预估毛利金额 + */ + private Double estimatedProfitAmount; + + /** + *实际成本 + */ + private Double totalCost; + + /** + *实际毛利金额 + */ + private Double profitAmount; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :日期 + * 数据类型 :date + * 是否必填 :false + */ + public Date getSummaryDay() { + return this.summaryDay; + } + + /** + * 字段名称 :日期 + * 数据类型 :date + * 是否必填 :false + */ + public void setSummaryDay(Date summaryDay) { + this.summaryDay = summaryDay; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :操作员工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getWorkNo() { + return this.workNo; + } + + /** + * 字段名称 :操作员工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setWorkNo(String workNo) { + this.workNo = workNo; + } + + /** + * 字段名称 :人数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPeople() { + return this.people; + } + + /** + * 字段名称 :人数 + * 数据类型 :int + * 是否必填 :false + */ + public void setPeople(Integer people) { + this.people = people; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBusMode() { + return this.busMode; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public void setBusMode(Integer busMode) { + this.busMode = busMode; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountTotal() { + return this.discountTotal; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountTotal(Double discountTotal) { + this.discountTotal = discountTotal; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivable() { + return this.receivable; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivable(Double receivable) { + this.receivable = receivable; + } + + /** + * 字段名称 :抹零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMaling() { + return this.maling; + } + + /** + * 字段名称 :抹零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMaling(Double maling) { + this.maling = maling; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPaid() { + return this.paid; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPaid(Double paid) { + this.paid = paid; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :星期 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getWeeker() { + return this.weeker; + } + + /** + * 字段名称 :星期 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setWeeker(String weeker) { + this.weeker = weeker; + } + + /** + * 字段名称 :预估成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getEstimatedCost() { + return this.estimatedCost; + } + + /** + * 字段名称 :预估成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setEstimatedCost(Double estimatedCost) { + this.estimatedCost = estimatedCost; + } + + /** + * 字段名称 :预估毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getEstimatedProfitAmount() { + return this.estimatedProfitAmount; + } + + /** + * 字段名称 :预估毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setEstimatedProfitAmount(Double estimatedProfitAmount) { + this.estimatedProfitAmount = estimatedProfitAmount; + } + + /** + * 字段名称 :实际成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getTotalCost() { + return this.totalCost; + } + + /** + * 字段名称 :实际成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setTotalCost(Double totalCost) { + this.totalCost = totalCost; + } + + /** + * 字段名称 :实际毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getProfitAmount() { + return this.profitAmount; + } + + /** + * 字段名称 :实际毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setProfitAmount(Double profitAmount) { + this.profitAmount = profitAmount; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBusinessTicketDelivery.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBusinessTicketDelivery.java new file mode 100644 index 0000000..d0ed623 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBusinessTicketDelivery.java @@ -0,0 +1,433 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:前台销售单外送信息 + * 表代码:cy_store_business_ticket_delivery + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreBusinessTicketDelivery") +public class StoreBusinessTicketDelivery extends BaseEntity { + + private static final long serialVersionUID = 1005237813514721371L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *门店ID + */ + private String storeId; + + /** + *销售单ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String busNo; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *订餐时间 + */ + private String orderTime; + + /** + *订餐人 + */ + private String visitorName; + + /** + *订餐电话 + */ + private String orderTel; + + /** + *收货人名称 + */ + private String recipientName; + + /** + *收货人电话 + */ + private String recipientPhone; + + /** + *收货人地址 + */ + private String recipientAddress; + + /** + *送餐员工号 + */ + private String deliveryWorkerNo; + + /** + *送餐员名称 + */ + private String deliveryWorkerName; + + /** + *预支金额 + */ + private Double advanceAmount; + + /** + *加收服务费 + */ + private Double distributionFee; + + /** + *送出时间 + */ + private String deliveryBeginTime; + + /** + *送达时间 + */ + private String deliveryEndTime; + + /** + *交账时间 + */ + private String settlementTime; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :订餐时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderTime() { + return this.orderTime; + } + + /** + * 字段名称 :订餐时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderTime(String orderTime) { + this.orderTime = orderTime; + } + + /** + * 字段名称 :订餐人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getVisitorName() { + return this.visitorName; + } + + /** + * 字段名称 :订餐人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setVisitorName(String visitorName) { + this.visitorName = visitorName; + } + + /** + * 字段名称 :订餐电话 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderTel() { + return this.orderTel; + } + + /** + * 字段名称 :订餐电话 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderTel(String orderTel) { + this.orderTel = orderTel; + } + + /** + * 字段名称 :收货人名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getRecipientName() { + return this.recipientName; + } + + /** + * 字段名称 :收货人名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setRecipientName(String recipientName) { + this.recipientName = recipientName; + } + + /** + * 字段名称 :收货人电话 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getRecipientPhone() { + return this.recipientPhone; + } + + /** + * 字段名称 :收货人电话 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setRecipientPhone(String recipientPhone) { + this.recipientPhone = recipientPhone; + } + + /** + * 字段名称 :收货人地址 + * 数据类型 :text + * 是否必填 :false + */ + public String getRecipientAddress() { + return this.recipientAddress; + } + + /** + * 字段名称 :收货人地址 + * 数据类型 :text + * 是否必填 :false + */ + public void setRecipientAddress(String recipientAddress) { + this.recipientAddress = recipientAddress; + } + + /** + * 字段名称 :送餐员工号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDeliveryWorkerNo() { + return this.deliveryWorkerNo; + } + + /** + * 字段名称 :送餐员工号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDeliveryWorkerNo(String deliveryWorkerNo) { + this.deliveryWorkerNo = deliveryWorkerNo; + } + + /** + * 字段名称 :送餐员名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDeliveryWorkerName() { + return this.deliveryWorkerName; + } + + /** + * 字段名称 :送餐员名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDeliveryWorkerName(String deliveryWorkerName) { + this.deliveryWorkerName = deliveryWorkerName; + } + + /** + * 字段名称 :预支金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAdvanceAmount() { + return this.advanceAmount; + } + + /** + * 字段名称 :预支金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAdvanceAmount(Double advanceAmount) { + this.advanceAmount = advanceAmount; + } + + /** + * 字段名称 :加收服务费 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDistributionFee() { + return this.distributionFee; + } + + /** + * 字段名称 :加收服务费 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDistributionFee(Double distributionFee) { + this.distributionFee = distributionFee; + } + + /** + * 字段名称 :送出时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDeliveryBeginTime() { + return this.deliveryBeginTime; + } + + /** + * 字段名称 :送出时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDeliveryBeginTime(String deliveryBeginTime) { + this.deliveryBeginTime = deliveryBeginTime; + } + + /** + * 字段名称 :送达时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDeliveryEndTime() { + return this.deliveryEndTime; + } + + /** + * 字段名称 :送达时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDeliveryEndTime(String deliveryEndTime) { + this.deliveryEndTime = deliveryEndTime; + } + + /** + * 字段名称 :交账时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSettlementTime() { + return this.settlementTime; + } + + /** + * 字段名称 :交账时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSettlementTime(String settlementTime) { + this.settlementTime = settlementTime; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBusinessTicketInfo.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBusinessTicketInfo.java new file mode 100644 index 0000000..2327d45 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBusinessTicketInfo.java @@ -0,0 +1,295 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:前台销售单优惠明细 + * 表代码:cy_store_business_ticket_info + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreBusinessTicketInfo") +public class StoreBusinessTicketInfo extends BaseEntity { + + private static final long serialVersionUID = 1399359139864268796L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *门店ID + */ + private String storeId; + + /** + *销售单ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String busNo; + + /** + *优惠类型 + */ + private Integer type; + + /** + *优惠说明 + */ + private String info; + + /** + *优惠金额 + */ + private Double discountMoney; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *销售时间 + */ + private Date saleDate; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :优惠说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getInfo() { + return this.info; + } + + /** + * 字段名称 :优惠说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setInfo(String info) { + this.info = info; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountMoney() { + return this.discountMoney; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountMoney(Double discountMoney) { + this.discountMoney = discountMoney; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBusinessTicketInfoDaysummary.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBusinessTicketInfoDaysummary.java new file mode 100644 index 0000000..c2c62b2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBusinessTicketInfoDaysummary.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:前台销售单优惠日汇总 + * 表代码:cy_store_business_ticket_info_daysummary + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreBusinessTicketInfoDaysummary") +public class StoreBusinessTicketInfoDaysummary extends BaseEntity { + + private static final long serialVersionUID = 1909764568851480901L; + + /** + *日期 + */ + private Date summaryDay; + + /** + *门店ID + */ + private String storeId; + + /** + *优惠类型 + */ + private Integer type; + + /** + *优惠金额 + */ + private Double discountMoney; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :日期 + * 数据类型 :date + * 是否必填 :false + */ + public Date getSummaryDay() { + return this.summaryDay; + } + + /** + * 字段名称 :日期 + * 数据类型 :date + * 是否必填 :false + */ + public void setSummaryDay(Date summaryDay) { + this.summaryDay = summaryDay; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountMoney() { + return this.discountMoney; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountMoney(Double discountMoney) { + this.discountMoney = discountMoney; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBusinessTicketTable.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBusinessTicketTable.java new file mode 100644 index 0000000..16c91a0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreBusinessTicketTable.java @@ -0,0 +1,870 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:前台销售单桌台信息 + * 表代码:cy_store_business_ticket_table + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreBusinessTicketTable") +public class StoreBusinessTicketTable extends BaseEntity { + + private static final long serialVersionUID = 1645594345897578320L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *门店ID + */ + private String storeId; + + /** + *销售单ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String busNo; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *桌台ID + */ + private String tableId; + + /** + *桌台编号 + */ + private String tableNo; + + /** + *桌台名称 + */ + private String tableName; + + /** + *桌台类型ID + */ + private String typeId; + + /** + *桌台类型编号 + */ + private String typeNo; + + /** + *桌台类型名称 + */ + private String typeName; + + /** + *桌台区域ID + */ + private String areaId; + + /** + *桌台区域编号 + */ + private String areaNo; + + /** + *桌台区域名称 + */ + private String areaName; + + /** + *桌台状态 + */ + private String tableStatus; + + /** + *开台时间 + */ + private Date openTime; + + /** + *开台操作员 + */ + private String openUser; + + /** + *桌台分组标签 + */ + private String serialNo; + + /** + *座位数 + */ + private Integer seatNumber; + + /** + *人数 + */ + private Integer peopleNumber; + + /** + *是否超额 + */ + private Integer excessFlag; + + /** + *消费金额 + */ + private Double totalAmount; + + /** + *退菜数量 + */ + private Double totalRefund; + + /** + *菜品数量 + */ + private Double totalQuantity; + + /** + *优惠金额 + */ + private Double discountAmount; + + /** + *优惠率 + */ + private Double discountRate; + + /** + *应收金额 + */ + private Double receivableAmount; + + /** + *实收金额 + */ + private Double paidAmount; + + /** + *抹零金额 + */ + private Double malingAmount; + + /** + *主台标识 + */ + private Integer masterTable; + + /** + *人均金额 + */ + private Double perCapitaAmount; + + /** + *开台POS + */ + private String posNo; + + /** + *结账单号 + */ + private String payNo; + + /** + *完成时间 + */ + private Date finishTime; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :桌台ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTableId() { + return this.tableId; + } + + /** + * 字段名称 :桌台ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTableId(String tableId) { + this.tableId = tableId; + } + + /** + * 字段名称 :桌台编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTableNo() { + return this.tableNo; + } + + /** + * 字段名称 :桌台编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTableNo(String tableNo) { + this.tableNo = tableNo; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTableName() { + return this.tableName; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTableName(String tableName) { + this.tableName = tableName; + } + + /** + * 字段名称 :桌台类型ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :桌台类型ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :桌台类型编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTypeNo() { + return this.typeNo; + } + + /** + * 字段名称 :桌台类型编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTypeNo(String typeNo) { + this.typeNo = typeNo; + } + + /** + * 字段名称 :桌台类型名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeName() { + return this.typeName; + } + + /** + * 字段名称 :桌台类型名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + /** + * 字段名称 :桌台区域ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getAreaId() { + return this.areaId; + } + + /** + * 字段名称 :桌台区域ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setAreaId(String areaId) { + this.areaId = areaId; + } + + /** + * 字段名称 :桌台区域编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getAreaNo() { + return this.areaNo; + } + + /** + * 字段名称 :桌台区域编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setAreaNo(String areaNo) { + this.areaNo = areaNo; + } + + /** + * 字段名称 :桌台区域名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getAreaName() { + return this.areaName; + } + + /** + * 字段名称 :桌台区域名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setAreaName(String areaName) { + this.areaName = areaName; + } + + /** + * 字段名称 :桌台状态 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTableStatus() { + return this.tableStatus; + } + + /** + * 字段名称 :桌台状态 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTableStatus(String tableStatus) { + this.tableStatus = tableStatus; + } + + /** + * 字段名称 :开台时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getOpenTime() { + return this.openTime; + } + + /** + * 字段名称 :开台时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setOpenTime(Date openTime) { + this.openTime = openTime; + } + + /** + * 字段名称 :开台操作员 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getOpenUser() { + return this.openUser; + } + + /** + * 字段名称 :开台操作员 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setOpenUser(String openUser) { + this.openUser = openUser; + } + + /** + * 字段名称 :桌台分组标签 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSerialNo() { + return this.serialNo; + } + + /** + * 字段名称 :桌台分组标签 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSerialNo(String serialNo) { + this.serialNo = serialNo; + } + + /** + * 字段名称 :座位数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSeatNumber() { + return this.seatNumber; + } + + /** + * 字段名称 :座位数 + * 数据类型 :int + * 是否必填 :false + */ + public void setSeatNumber(Integer seatNumber) { + this.seatNumber = seatNumber; + } + + /** + * 字段名称 :人数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPeopleNumber() { + return this.peopleNumber; + } + + /** + * 字段名称 :人数 + * 数据类型 :int + * 是否必填 :false + */ + public void setPeopleNumber(Integer peopleNumber) { + this.peopleNumber = peopleNumber; + } + + /** + * 字段名称 :是否超额 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getExcessFlag() { + return this.excessFlag; + } + + /** + * 字段名称 :是否超额 + * 数据类型 :int + * 是否必填 :false + */ + public void setExcessFlag(Integer excessFlag) { + this.excessFlag = excessFlag; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getTotalAmount() { + return this.totalAmount; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setTotalAmount(Double totalAmount) { + this.totalAmount = totalAmount; + } + + /** + * 字段名称 :退菜数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getTotalRefund() { + return this.totalRefund; + } + + /** + * 字段名称 :退菜数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setTotalRefund(Double totalRefund) { + this.totalRefund = totalRefund; + } + + /** + * 字段名称 :菜品数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getTotalQuantity() { + return this.totalQuantity; + } + + /** + * 字段名称 :菜品数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setTotalQuantity(Double totalQuantity) { + this.totalQuantity = totalQuantity; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDiscountAmount() { + return this.discountAmount; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDiscountAmount(Double discountAmount) { + this.discountAmount = discountAmount; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDiscountRate() { + return this.discountRate; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDiscountRate(Double discountRate) { + this.discountRate = discountRate; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getReceivableAmount() { + return this.receivableAmount; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setReceivableAmount(Double receivableAmount) { + this.receivableAmount = receivableAmount; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPaidAmount() { + return this.paidAmount; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPaidAmount(Double paidAmount) { + this.paidAmount = paidAmount; + } + + /** + * 字段名称 :抹零金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMalingAmount() { + return this.malingAmount; + } + + /** + * 字段名称 :抹零金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMalingAmount(Double malingAmount) { + this.malingAmount = malingAmount; + } + + /** + * 字段名称 :主台标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getMasterTable() { + return this.masterTable; + } + + /** + * 字段名称 :主台标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setMasterTable(Integer masterTable) { + this.masterTable = masterTable; + } + + /** + * 字段名称 :人均金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPerCapitaAmount() { + return this.perCapitaAmount; + } + + /** + * 字段名称 :人均金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPerCapitaAmount(Double perCapitaAmount) { + this.perCapitaAmount = perCapitaAmount; + } + + /** + * 字段名称 :开台POS + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :开台POS + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :结账单号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getPayNo() { + return this.payNo; + } + + /** + * 字段名称 :结账单号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setPayNo(String payNo) { + this.payNo = payNo; + } + + /** + * 字段名称 :完成时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getFinishTime() { + return this.finishTime; + } + + /** + * 字段名称 :完成时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setFinishTime(Date finishTime) { + this.finishTime = finishTime; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreCostManage.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreCostManage.java new file mode 100644 index 0000000..47bd2d1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreCostManage.java @@ -0,0 +1,410 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店费用管理 + * 表代码:cy_store_cost_manage + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreCostManage") +public class StoreCostManage extends BaseEntity { + + private static final long serialVersionUID = 1738741273499741679L; + + /** + *费用类型 + */ + private Integer feeType; + + /** + *费用编号 + */ + private String no; + + /** + *费用名称 + */ + private String name; + + /** + *金额 + */ + private Double money; + + /** + *扣款周期类型 + */ + private Integer cutPaymentType; + + /** + *扣款时间 + */ + private Integer cutPaymentTime; + + /** + *定时任务时间 + */ + private String cronTime; + + /** + *扣款开始时间 + */ + private Date startTime; + + /** + *扣款结束时间 + */ + private Date endTime; + + /** + *状态 + */ + private Integer status; + + /** + *执行状态 + */ + private Integer exeStatus; + + /** + *是否启用 + */ + private Integer isEnable; + + /** + *修改前扣款金额 + */ + private Double beforeMoney; + + /** + *修改前任务时间 + */ + private String beforeCronTime; + + /** + *审核人 + */ + private String checkMan; + + /** + *审核时间 + */ + private Date checkTime; + + /** + *备注 + */ + private String description; + + + /** + * 字段名称 :费用类型 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getFeeType() { + return this.feeType; + } + + /** + * 字段名称 :费用类型 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setFeeType(Integer feeType) { + this.feeType = feeType; + } + + /** + * 字段名称 :费用编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :费用编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :费用名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :费用名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :扣款周期类型 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getCutPaymentType() { + return this.cutPaymentType; + } + + /** + * 字段名称 :扣款周期类型 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setCutPaymentType(Integer cutPaymentType) { + this.cutPaymentType = cutPaymentType; + } + + /** + * 字段名称 :扣款时间 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getCutPaymentTime() { + return this.cutPaymentTime; + } + + /** + * 字段名称 :扣款时间 + * 数据类型 :int + * 是否必填 :false + */ + public void setCutPaymentTime(Integer cutPaymentTime) { + this.cutPaymentTime = cutPaymentTime; + } + + /** + * 字段名称 :定时任务时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCronTime() { + return this.cronTime; + } + + /** + * 字段名称 :定时任务时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCronTime(String cronTime) { + this.cronTime = cronTime; + } + + /** + * 字段名称 :扣款开始时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getStartTime() { + return this.startTime; + } + + /** + * 字段名称 :扣款开始时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setStartTime(Date startTime) { + this.startTime = startTime; + } + + /** + * 字段名称 :扣款结束时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getEndTime() { + return this.endTime; + } + + /** + * 字段名称 :扣款结束时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setEndTime(Date endTime) { + this.endTime = endTime; + } + + /** + * 字段名称 :状态 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :执行状态 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getExeStatus() { + return this.exeStatus; + } + + /** + * 字段名称 :执行状态 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setExeStatus(Integer exeStatus) { + this.exeStatus = exeStatus; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getIsEnable() { + return this.isEnable; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setIsEnable(Integer isEnable) { + this.isEnable = isEnable; + } + + /** + * 字段名称 :修改前扣款金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getBeforeMoney() { + return this.beforeMoney; + } + + /** + * 字段名称 :修改前扣款金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setBeforeMoney(Double beforeMoney) { + this.beforeMoney = beforeMoney; + } + + /** + * 字段名称 :修改前任务时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBeforeCronTime() { + return this.beforeCronTime; + } + + /** + * 字段名称 :修改前任务时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBeforeCronTime(String beforeCronTime) { + this.beforeCronTime = beforeCronTime; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCheckMan() { + return this.checkMan; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCheckMan(String checkMan) { + this.checkMan = checkMan; + } + + /** + * 字段名称 :审核时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckTime() { + return this.checkTime; + } + + /** + * 字段名称 :审核时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckTime(Date checkTime) { + this.checkTime = checkTime; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreCostManageLog.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreCostManageLog.java new file mode 100644 index 0000000..568321c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreCostManageLog.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店费用扣款操作记录 + * 表代码:cy_store_cost_manage_log + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreCostManageLog") +public class StoreCostManageLog extends BaseEntity { + + private static final long serialVersionUID = 1499220755339149812L; + + /** + *费用ID + */ + private String feeId; + + /** + *费用名称 + */ + private String feeName; + + /** + *关联门店编号 + */ + private String storeNos; + + /** + *描述 + */ + private String description; + + + /** + * 字段名称 :费用ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getFeeId() { + return this.feeId; + } + + /** + * 字段名称 :费用ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setFeeId(String feeId) { + this.feeId = feeId; + } + + /** + * 字段名称 :费用名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getFeeName() { + return this.feeName; + } + + /** + * 字段名称 :费用名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setFeeName(String feeName) { + this.feeName = feeName; + } + + /** + * 字段名称 :关联门店编号 + * 数据类型 :text + * 是否必填 :false + */ + public String getStoreNos() { + return this.storeNos; + } + + /** + * 字段名称 :关联门店编号 + * 数据类型 :text + * 是否必填 :false + */ + public void setStoreNos(String storeNos) { + this.storeNos = storeNos; + } + + /** + * 字段名称 :描述 + * 数据类型 :text + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :描述 + * 数据类型 :text + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreCostManageStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreCostManageStore.java new file mode 100644 index 0000000..6ef3e3c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreCostManageStore.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:扣款费用门店关联 + * 表代码:cy_store_cost_manage_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreCostManageStore") +public class StoreCostManageStore extends BaseEntity { + + private static final long serialVersionUID = 1919536465738145131L; + + /** + *门店ID + */ + private String storeId; + + /** + *门店扣款费用ID + */ + private String feeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店扣款费用ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getFeeId() { + return this.feeId; + } + + /** + * 字段名称 :门店扣款费用ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setFeeId(String feeId) { + this.feeId = feeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreCostRevenue.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreCostRevenue.java new file mode 100644 index 0000000..addb2b1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreCostRevenue.java @@ -0,0 +1,433 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:非营业收入支出登记 + * 表代码:cy_store_cost_revenue + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreCostRevenue") +public class StoreCostRevenue extends BaseEntity { + + private static final long serialVersionUID = 1765007337952118103L; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *员工ID + */ + private String workId; + + /** + *员工编号 + */ + private String workNo; + + /** + *员工名称 + */ + private String workName; + + /** + *当前班次 + */ + private String shiftNo; + + /** + *班次名称 + */ + private String shiftName; + + /** + *名称 + */ + private String name; + + /** + *金额 + */ + private Double money; + + /** + *类型 + */ + private Integer type; + + /** + *备注信息 + */ + private String description; + + /** + *备注说明 + */ + private String memo; + + /** + *登记时间 + */ + private String inputDate; + + /** + *POS编号 + */ + private String posNo; + + /** + *设备名称 + */ + private String deviceName; + + /** + *设备MAC + */ + private String deviceMac; + + /** + *设备IP + */ + private String deviceIp; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :员工ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getWorkId() { + return this.workId; + } + + /** + * 字段名称 :员工ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setWorkId(String workId) { + this.workId = workId; + } + + /** + * 字段名称 :员工编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getWorkNo() { + return this.workNo; + } + + /** + * 字段名称 :员工编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setWorkNo(String workNo) { + this.workNo = workNo; + } + + /** + * 字段名称 :员工名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getWorkName() { + return this.workName; + } + + /** + * 字段名称 :员工名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setWorkName(String workName) { + this.workName = workName; + } + + /** + * 字段名称 :当前班次 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getShiftNo() { + return this.shiftNo; + } + + /** + * 字段名称 :当前班次 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setShiftNo(String shiftNo) { + this.shiftNo = shiftNo; + } + + /** + * 字段名称 :班次名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getShiftName() { + return this.shiftName; + } + + /** + * 字段名称 :班次名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setShiftName(String shiftName) { + this.shiftName = shiftName; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getMemo() { + return this.memo; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setMemo(String memo) { + this.memo = memo; + } + + /** + * 字段名称 :登记时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getInputDate() { + return this.inputDate; + } + + /** + * 字段名称 :登记时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setInputDate(String inputDate) { + this.inputDate = inputDate; + } + + /** + * 字段名称 :POS编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :POS编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeviceName() { + return this.deviceName; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeviceName(String deviceName) { + this.deviceName = deviceName; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public String getDeviceMac() { + return this.deviceMac; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public void setDeviceMac(String deviceMac) { + this.deviceMac = deviceMac; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeviceIp() { + return this.deviceIp; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeviceIp(String deviceIp) { + this.deviceIp = deviceIp; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreDeliveryOrder.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreDeliveryOrder.java new file mode 100644 index 0000000..cb79c21 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreDeliveryOrder.java @@ -0,0 +1,755 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:前台外送单 + * 表代码:cy_store_delivery_order + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreDeliveryOrder") +public class StoreDeliveryOrder extends BaseEntity { + + private static final long serialVersionUID = 1559276507857996424L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *单据编号 + */ + private String no; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *单据状态 + */ + private Integer status; + + /** + *操作员工号 + */ + private String workNo; + + /** + *销售时间 + */ + private Date saleDate; + + /** + *消费金额 + */ + private Double amount; + + /** + *优惠率 + */ + private Double discount; + + /** + *优惠额 + */ + private Double discountTotal; + + /** + *应收金额 + */ + private Double receivable; + + /** + *抹零金额 + */ + private Double maling; + + /** + *实收金额 + */ + private Double paid; + + /** + *设备名称 + */ + private String deviceName; + + /** + *设备MAC + */ + private String deviceMac; + + /** + *设备IP + */ + private String deviceIp; + + /** + *设备编号 + */ + private String posNo; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *订餐时间 + */ + private String orderTime; + + /** + *订餐人 + */ + private String visitorName; + + /** + *订餐电话 + */ + private String orderTel; + + /** + *收货人名称 + */ + private String recipientName; + + /** + *收货人电话 + */ + private String recipientPhone; + + /** + *收货人地址 + */ + private String recipientAddress; + + /** + *送餐员工号 + */ + private String deliveryWorkerNo; + + /** + *送餐员名称 + */ + private String deliveryWorkerName; + + /** + *预支金额 + */ + private Double advanceAmount; + + /** + *加收服务费 + */ + private Double distributionFee; + + /** + *送出时间 + */ + private String deliveryBeginTime; + + /** + *送达时间 + */ + private String deliveryEndTime; + + /** + *交账时间 + */ + private String settlementTime; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :操作员工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getWorkNo() { + return this.workNo; + } + + /** + * 字段名称 :操作员工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setWorkNo(String workNo) { + this.workNo = workNo; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountTotal() { + return this.discountTotal; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountTotal(Double discountTotal) { + this.discountTotal = discountTotal; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivable() { + return this.receivable; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivable(Double receivable) { + this.receivable = receivable; + } + + /** + * 字段名称 :抹零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMaling() { + return this.maling; + } + + /** + * 字段名称 :抹零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMaling(Double maling) { + this.maling = maling; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPaid() { + return this.paid; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPaid(Double paid) { + this.paid = paid; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDeviceName() { + return this.deviceName; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDeviceName(String deviceName) { + this.deviceName = deviceName; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public String getDeviceMac() { + return this.deviceMac; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public void setDeviceMac(String deviceMac) { + this.deviceMac = deviceMac; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeviceIp() { + return this.deviceIp; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeviceIp(String deviceIp) { + this.deviceIp = deviceIp; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :订餐时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderTime() { + return this.orderTime; + } + + /** + * 字段名称 :订餐时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderTime(String orderTime) { + this.orderTime = orderTime; + } + + /** + * 字段名称 :订餐人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getVisitorName() { + return this.visitorName; + } + + /** + * 字段名称 :订餐人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setVisitorName(String visitorName) { + this.visitorName = visitorName; + } + + /** + * 字段名称 :订餐电话 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderTel() { + return this.orderTel; + } + + /** + * 字段名称 :订餐电话 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderTel(String orderTel) { + this.orderTel = orderTel; + } + + /** + * 字段名称 :收货人名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getRecipientName() { + return this.recipientName; + } + + /** + * 字段名称 :收货人名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setRecipientName(String recipientName) { + this.recipientName = recipientName; + } + + /** + * 字段名称 :收货人电话 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getRecipientPhone() { + return this.recipientPhone; + } + + /** + * 字段名称 :收货人电话 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setRecipientPhone(String recipientPhone) { + this.recipientPhone = recipientPhone; + } + + /** + * 字段名称 :收货人地址 + * 数据类型 :text + * 是否必填 :false + */ + public String getRecipientAddress() { + return this.recipientAddress; + } + + /** + * 字段名称 :收货人地址 + * 数据类型 :text + * 是否必填 :false + */ + public void setRecipientAddress(String recipientAddress) { + this.recipientAddress = recipientAddress; + } + + /** + * 字段名称 :送餐员工号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDeliveryWorkerNo() { + return this.deliveryWorkerNo; + } + + /** + * 字段名称 :送餐员工号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDeliveryWorkerNo(String deliveryWorkerNo) { + this.deliveryWorkerNo = deliveryWorkerNo; + } + + /** + * 字段名称 :送餐员名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDeliveryWorkerName() { + return this.deliveryWorkerName; + } + + /** + * 字段名称 :送餐员名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDeliveryWorkerName(String deliveryWorkerName) { + this.deliveryWorkerName = deliveryWorkerName; + } + + /** + * 字段名称 :预支金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAdvanceAmount() { + return this.advanceAmount; + } + + /** + * 字段名称 :预支金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAdvanceAmount(Double advanceAmount) { + this.advanceAmount = advanceAmount; + } + + /** + * 字段名称 :加收服务费 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDistributionFee() { + return this.distributionFee; + } + + /** + * 字段名称 :加收服务费 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDistributionFee(Double distributionFee) { + this.distributionFee = distributionFee; + } + + /** + * 字段名称 :送出时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDeliveryBeginTime() { + return this.deliveryBeginTime; + } + + /** + * 字段名称 :送出时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDeliveryBeginTime(String deliveryBeginTime) { + this.deliveryBeginTime = deliveryBeginTime; + } + + /** + * 字段名称 :送达时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDeliveryEndTime() { + return this.deliveryEndTime; + } + + /** + * 字段名称 :送达时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDeliveryEndTime(String deliveryEndTime) { + this.deliveryEndTime = deliveryEndTime; + } + + /** + * 字段名称 :交账时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSettlementTime() { + return this.settlementTime; + } + + /** + * 字段名称 :交账时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSettlementTime(String settlementTime) { + this.settlementTime = settlementTime; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreDeliveryOrderItem.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreDeliveryOrderItem.java new file mode 100644 index 0000000..2fb070c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreDeliveryOrderItem.java @@ -0,0 +1,962 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:前台外送单明细 + * 表代码:cy_store_delivery_order_item + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreDeliveryOrderItem") +public class StoreDeliveryOrderItem extends BaseEntity { + + private static final long serialVersionUID = 1196268344568838927L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *父记录ID + */ + private String parentId; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *销售单ID + */ + private String ticketId; + + /** + *销售单号 + */ + private String busNo; + + /** + *产品ID + */ + private String productId; + + /** + *产品编号 + */ + private String productNo; + + /** + *产品名称 + */ + private String productName; + + /** + *产品单位 + */ + private String productUnitId; + + /** + *产品单位名 + */ + private String productUnitName; + + /** + *类别ID + */ + private String typeId; + + /** + *类别名 + */ + private String typeName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *数量 + */ + private Double count; + + /** + *退菜数量 + */ + private Double rcount; + + /** + *销售价格 + */ + private Double price; + + /** + *产品原价 + */ + private Double priceOrg; + + /** + *折后价格 + */ + private Double discountPrice; + + /** + *是否套菜 + */ + private Integer isSuit; + + /** + *套菜ID + */ + private String suitId; + + /** + *工号 + */ + private String workerNo; + + /** + *销售时间 + */ + private Date saleDate; + + /** + *设备名称 + */ + private String deviceName; + + /** + *设备MAC + */ + private String deviceMac; + + /** + *设备IP + */ + private String deviceIp; + + /** + *设备编号 + */ + private String posNo; + + /** + *消费金额 + */ + private Double amount; + + /** + *优惠率 + */ + private Double discount; + + /** + *优惠额 + */ + private Double discountTotal; + + /** + *应收金额 + */ + private Double receivable; + + /** + *加价金额 + */ + private Double addPriceTotal; + + /** + *加价优惠金额 + */ + private Double discountAddTotal; + + /** + *加价应收金额 + */ + private Double amountAddTotal; + + /** + *消费总额 + */ + private Double amountTotal; + + /** + *应收总额 + */ + private Double receivableTotal; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *行号 + */ + private Integer lineNo; + + /** + *当日流水号 + */ + private String seqNo; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :父记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getParentId() { + return this.parentId; + } + + /** + * 字段名称 :父记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setParentId(String parentId) { + this.parentId = parentId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :产品名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :产品名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :产品单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductUnitId() { + return this.productUnitId; + } + + /** + * 字段名称 :产品单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductUnitId(String productUnitId) { + this.productUnitId = productUnitId; + } + + /** + * 字段名称 :产品单位名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductUnitName() { + return this.productUnitName; + } + + /** + * 字段名称 :产品单位名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductUnitName(String productUnitName) { + this.productUnitName = productUnitName; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTypeName() { + return this.typeName; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getCount() { + return this.count; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setCount(Double count) { + this.count = count; + } + + /** + * 字段名称 :退菜数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getRcount() { + return this.rcount; + } + + /** + * 字段名称 :退菜数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setRcount(Double rcount) { + this.rcount = rcount; + } + + /** + * 字段名称 :销售价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :销售价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :产品原价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPriceOrg() { + return this.priceOrg; + } + + /** + * 字段名称 :产品原价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPriceOrg(Double priceOrg) { + this.priceOrg = priceOrg; + } + + /** + * 字段名称 :折后价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountPrice() { + return this.discountPrice; + } + + /** + * 字段名称 :折后价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountPrice(Double discountPrice) { + this.discountPrice = discountPrice; + } + + /** + * 字段名称 :是否套菜 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsSuit() { + return this.isSuit; + } + + /** + * 字段名称 :是否套菜 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsSuit(Integer isSuit) { + this.isSuit = isSuit; + } + + /** + * 字段名称 :套菜ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSuitId() { + return this.suitId; + } + + /** + * 字段名称 :套菜ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSuitId(String suitId) { + this.suitId = suitId; + } + + /** + * 字段名称 :工号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getWorkerNo() { + return this.workerNo; + } + + /** + * 字段名称 :工号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setWorkerNo(String workerNo) { + this.workerNo = workerNo; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDeviceName() { + return this.deviceName; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDeviceName(String deviceName) { + this.deviceName = deviceName; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public String getDeviceMac() { + return this.deviceMac; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public void setDeviceMac(String deviceMac) { + this.deviceMac = deviceMac; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeviceIp() { + return this.deviceIp; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeviceIp(String deviceIp) { + this.deviceIp = deviceIp; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountTotal() { + return this.discountTotal; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountTotal(Double discountTotal) { + this.discountTotal = discountTotal; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivable() { + return this.receivable; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivable(Double receivable) { + this.receivable = receivable; + } + + /** + * 字段名称 :加价金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddPriceTotal() { + return this.addPriceTotal; + } + + /** + * 字段名称 :加价金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddPriceTotal(Double addPriceTotal) { + this.addPriceTotal = addPriceTotal; + } + + /** + * 字段名称 :加价优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountAddTotal() { + return this.discountAddTotal; + } + + /** + * 字段名称 :加价优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountAddTotal(Double discountAddTotal) { + this.discountAddTotal = discountAddTotal; + } + + /** + * 字段名称 :加价应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmountAddTotal() { + return this.amountAddTotal; + } + + /** + * 字段名称 :加价应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmountAddTotal(Double amountAddTotal) { + this.amountAddTotal = amountAddTotal; + } + + /** + * 字段名称 :消费总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmountTotal() { + return this.amountTotal; + } + + /** + * 字段名称 :消费总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmountTotal(Double amountTotal) { + this.amountTotal = amountTotal; + } + + /** + * 字段名称 :应收总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivableTotal() { + return this.receivableTotal; + } + + /** + * 字段名称 :应收总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivableTotal(Double receivableTotal) { + this.receivableTotal = receivableTotal; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :行号 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getLineNo() { + return this.lineNo; + } + + /** + * 字段名称 :行号 + * 数据类型 :int + * 是否必填 :false + */ + public void setLineNo(Integer lineNo) { + this.lineNo = lineNo; + } + + /** + * 字段名称 :当日流水号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSeqNo() { + return this.seqNo; + } + + /** + * 字段名称 :当日流水号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSeqNo(String seqNo) { + this.seqNo = seqNo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreDepartment.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreDepartment.java new file mode 100644 index 0000000..68fefb8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreDepartment.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店部门 + * 表代码:cy_store_department + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreDepartment") +public class StoreDepartment extends BaseEntity { + + private static final long serialVersionUID = 1691365141739848217L; + + /** + *部门编号 + */ + private String no; + + /** + *部门名称 + */ + private String name; + + /** + *负责人 + */ + private String manager; + + /** + *电话 + */ + private String phone; + + /** + *邮箱 + */ + private String email; + + /** + *是否启用 + */ + private Integer enabled; + + /** + *备注 + */ + private String description; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :部门编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :部门编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :部门名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :部门名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :负责人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getManager() { + return this.manager; + } + + /** + * 字段名称 :负责人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setManager(String manager) { + this.manager = manager; + } + + /** + * 字段名称 :电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPhone() { + return this.phone; + } + + /** + * 字段名称 :电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPhone(String phone) { + this.phone = phone; + } + + /** + * 字段名称 :邮箱 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getEmail() { + return this.email; + } + + /** + * 字段名称 :邮箱 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setEmail(String email) { + this.email = email; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnabled() { + return this.enabled; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setEnabled(Integer enabled) { + this.enabled = enabled; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreDispatchAccount.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreDispatchAccount.java new file mode 100644 index 0000000..87139d7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreDispatchAccount.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:配送结算账号 + * 表代码:cy_store_dispatch_account + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreDispatchAccount") +public class StoreDispatchAccount extends BaseEntity { + + private static final long serialVersionUID = 1204986542771356834L; + + /** + *门店ID + */ + private String storeId; + + /** + *账号余额 + */ + private Double balance; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :账号余额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getBalance() { + return this.balance; + } + + /** + * 字段名称 :账号余额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setBalance(Double balance) { + this.balance = balance; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreDispatchAccountLog.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreDispatchAccountLog.java new file mode 100644 index 0000000..6d610d4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreDispatchAccountLog.java @@ -0,0 +1,226 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:配送结算账号金额变动明细 + * 表代码:cy_store_dispatch_account_log + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreDispatchAccountLog") +public class StoreDispatchAccountLog extends BaseEntity { + + private static final long serialVersionUID = 1155396728316189561L; + + /** + *门店ID + */ + private String storeId; + + /** + *原余额 + */ + private Double preBalance; + + /** + *发生额 + */ + private Double balance; + + /** + *后余额 + */ + private Double afterBalance; + + /** + *扣款类型 + */ + private Integer type; + + /** + *单据编号 + */ + private String ticketNo; + + /** + *操作人 + */ + private String setMan; + + /** + *操作日期 + */ + private Date setDate; + + /** + *备注信息 + */ + private String description; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :原余额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPreBalance() { + return this.preBalance; + } + + /** + * 字段名称 :原余额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPreBalance(Double preBalance) { + this.preBalance = preBalance; + } + + /** + * 字段名称 :发生额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getBalance() { + return this.balance; + } + + /** + * 字段名称 :发生额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setBalance(Double balance) { + this.balance = balance; + } + + /** + * 字段名称 :后余额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAfterBalance() { + return this.afterBalance; + } + + /** + * 字段名称 :后余额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAfterBalance(Double afterBalance) { + this.afterBalance = afterBalance; + } + + /** + * 字段名称 :扣款类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :扣款类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :操作人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetMan() { + return this.setMan; + } + + /** + * 字段名称 :操作人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetMan(String setMan) { + this.setMan = setMan; + } + + /** + * 字段名称 :操作日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSetDate() { + return this.setDate; + } + + /** + * 字段名称 :操作日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSetDate(Date setDate) { + this.setDate = setDate; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreEnchashmentRecord.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreEnchashmentRecord.java new file mode 100644 index 0000000..fb2bbf7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreEnchashmentRecord.java @@ -0,0 +1,502 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店余额提现记录 + * 表代码:cy_store_enchashment_record + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreEnchashmentRecord") +public class StoreEnchashmentRecord extends BaseEntity { + + private static final long serialVersionUID = 1082697889432200025L; + + /** + *门店Id + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *账户ID + */ + private String accountId; + + /** + *业务类型 + */ + private Integer busType; + + /** + *发生金额 + */ + private Double amount; + + /** + *状态 + */ + private Integer status; + + /** + *支付方式 + */ + private Integer payType; + + /** + *凭证号 + */ + private String voucherNo; + + /** + *发生后余额 + */ + private Double aftAmount; + + /** + *申请人工号 + */ + private String applyWorkerNo; + + /** + *申请时间 + */ + private Date applyDate; + + /** + *备注 + */ + private String description; + + /** + *来源标识 + */ + private String sourceSign; + + /** + *取消人工号 + */ + private String cancelWorkerNo; + + /** + *取消原因 + */ + private String cancelReason; + + /** + *取消时间 + */ + private Date cancelDate; + + /** + *审核人工号 + */ + private String auditWorkerNo; + + /** + *审核原因 + */ + private String auditReason; + + /** + *审核时间 + */ + private Date auditDate; + + /** + *结算人工号 + */ + private String settleWorkerNo; + + /** + *结算时间 + */ + private Date settleDate; + + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :账户ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getAccountId() { + return this.accountId; + } + + /** + * 字段名称 :账户ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setAccountId(String accountId) { + this.accountId = accountId; + } + + /** + * 字段名称 :业务类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBusType() { + return this.busType; + } + + /** + * 字段名称 :业务类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setBusType(Integer busType) { + this.busType = busType; + } + + /** + * 字段名称 :发生金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :发生金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :支付方式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPayType() { + return this.payType; + } + + /** + * 字段名称 :支付方式 + * 数据类型 :int + * 是否必填 :false + */ + public void setPayType(Integer payType) { + this.payType = payType; + } + + /** + * 字段名称 :凭证号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getVoucherNo() { + return this.voucherNo; + } + + /** + * 字段名称 :凭证号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setVoucherNo(String voucherNo) { + this.voucherNo = voucherNo; + } + + /** + * 字段名称 :发生后余额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAftAmount() { + return this.aftAmount; + } + + /** + * 字段名称 :发生后余额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAftAmount(Double aftAmount) { + this.aftAmount = aftAmount; + } + + /** + * 字段名称 :申请人工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getApplyWorkerNo() { + return this.applyWorkerNo; + } + + /** + * 字段名称 :申请人工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setApplyWorkerNo(String applyWorkerNo) { + this.applyWorkerNo = applyWorkerNo; + } + + /** + * 字段名称 :申请时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getApplyDate() { + return this.applyDate; + } + + /** + * 字段名称 :申请时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setApplyDate(Date applyDate) { + this.applyDate = applyDate; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :来源标识 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSourceSign() { + return this.sourceSign; + } + + /** + * 字段名称 :来源标识 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSourceSign(String sourceSign) { + this.sourceSign = sourceSign; + } + + /** + * 字段名称 :取消人工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getCancelWorkerNo() { + return this.cancelWorkerNo; + } + + /** + * 字段名称 :取消人工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setCancelWorkerNo(String cancelWorkerNo) { + this.cancelWorkerNo = cancelWorkerNo; + } + + /** + * 字段名称 :取消原因 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getCancelReason() { + return this.cancelReason; + } + + /** + * 字段名称 :取消原因 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setCancelReason(String cancelReason) { + this.cancelReason = cancelReason; + } + + /** + * 字段名称 :取消时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCancelDate() { + return this.cancelDate; + } + + /** + * 字段名称 :取消时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCancelDate(Date cancelDate) { + this.cancelDate = cancelDate; + } + + /** + * 字段名称 :审核人工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getAuditWorkerNo() { + return this.auditWorkerNo; + } + + /** + * 字段名称 :审核人工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setAuditWorkerNo(String auditWorkerNo) { + this.auditWorkerNo = auditWorkerNo; + } + + /** + * 字段名称 :审核原因 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getAuditReason() { + return this.auditReason; + } + + /** + * 字段名称 :审核原因 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setAuditReason(String auditReason) { + this.auditReason = auditReason; + } + + /** + * 字段名称 :审核时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getAuditDate() { + return this.auditDate; + } + + /** + * 字段名称 :审核时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setAuditDate(Date auditDate) { + this.auditDate = auditDate; + } + + /** + * 字段名称 :结算人工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSettleWorkerNo() { + return this.settleWorkerNo; + } + + /** + * 字段名称 :结算人工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSettleWorkerNo(String settleWorkerNo) { + this.settleWorkerNo = settleWorkerNo; + } + + /** + * 字段名称 :结算时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSettleDate() { + return this.settleDate; + } + + /** + * 字段名称 :结算时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSettleDate(Date settleDate) { + this.settleDate = settleDate; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreEnchashmentRecordLog.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreEnchashmentRecordLog.java new file mode 100644 index 0000000..fd270f6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreEnchashmentRecordLog.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店余额提现操作记录 + * 表代码:cy_store_enchashment_record_log + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreEnchashmentRecordLog") +public class StoreEnchashmentRecordLog extends BaseEntity { + + private static final long serialVersionUID = 1355609736705589199L; + + /** + *记录ID + */ + private String recordId; + + /** + *操作类型 + */ + private Integer type; + + /** + *操作状态 + */ + private Integer status; + + /** + *来源标识 + */ + private String sourceSign; + + /** + *操作员工号 + */ + private String workerNo; + + /** + *描述 + */ + private String description; + + + /** + * 字段名称 :记录ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getRecordId() { + return this.recordId; + } + + /** + * 字段名称 :记录ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setRecordId(String recordId) { + this.recordId = recordId; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :来源标识 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSourceSign() { + return this.sourceSign; + } + + /** + * 字段名称 :来源标识 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSourceSign(String sourceSign) { + this.sourceSign = sourceSign; + } + + /** + * 字段名称 :操作员工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getWorkerNo() { + return this.workerNo; + } + + /** + * 字段名称 :操作员工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setWorkerNo(String workerNo) { + this.workerNo = workerNo; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreFeeCutLog.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreFeeCutLog.java new file mode 100644 index 0000000..7bec34d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreFeeCutLog.java @@ -0,0 +1,272 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店费用扣款记录 + * 表代码:cy_store_fee_cut_log + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreFeeCutLog") +public class StoreFeeCutLog extends BaseEntity { + + private static final long serialVersionUID = 1889071424035083663L; + + /** + *账户ID + */ + private String accountId; + + /** + *门店Id + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *费用类型 + */ + private Integer feeType; + + /** + *费用名称 + */ + private String feeName; + + /** + *扣款周期类型 + */ + private Integer cutPaymentType; + + /** + *状态 + */ + private Integer status; + + /** + *发生金额 + */ + private Double amount; + + /** + *发生后账户余额 + */ + private Double aftAmount; + + /** + *备注 + */ + private String description; + + + /** + * 字段名称 :账户ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getAccountId() { + return this.accountId; + } + + /** + * 字段名称 :账户ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setAccountId(String accountId) { + this.accountId = accountId; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :费用类型 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getFeeType() { + return this.feeType; + } + + /** + * 字段名称 :费用类型 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setFeeType(Integer feeType) { + this.feeType = feeType; + } + + /** + * 字段名称 :费用名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getFeeName() { + return this.feeName; + } + + /** + * 字段名称 :费用名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setFeeName(String feeName) { + this.feeName = feeName; + } + + /** + * 字段名称 :扣款周期类型 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getCutPaymentType() { + return this.cutPaymentType; + } + + /** + * 字段名称 :扣款周期类型 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setCutPaymentType(Integer cutPaymentType) { + this.cutPaymentType = cutPaymentType; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :发生金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :发生金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :发生后账户余额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAftAmount() { + return this.aftAmount; + } + + /** + * 字段名称 :发生后账户余额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAftAmount(Double aftAmount) { + this.aftAmount = aftAmount; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreHandover.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreHandover.java new file mode 100644 index 0000000..469ac55 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreHandover.java @@ -0,0 +1,1008 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店交班主表 + * 表代码:cy_store_handover + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreHandover") +public class StoreHandover extends BaseEntity { + + private static final long serialVersionUID = 1546772954476021747L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *交班单号 + */ + private String no; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *员工ID + */ + private String workId; + + /** + *员工编号 + */ + private String workNo; + + /** + *员工名称 + */ + private String workName; + + /** + *班次 + */ + private String shiftNo; + + /** + *班次名称 + */ + private String shiftName; + + /** + *开始时间 + */ + private Date datetimeBegin; + + /** + *结束时间 + */ + private Date datetimeEnd; + + /** + *交班时间 + */ + private Date datetimeShift; + + /** + *交单工号 + */ + private String acceptWorkerNo; + + /** + *交单POS + */ + private String posNo; + + /** + *备注 + */ + private String memo; + + /** + *总人数 + */ + private Integer peopleCount; + + /** + *成交单数 + */ + private Integer dealTicketCount; + + /** + *成交金额 + */ + private Double dealAmount; + + /** + *退单次数 + */ + private Integer backTicketCount; + + /** + *退单金额 + */ + private Double backAmount; + + /** + *合计单数 + */ + private Integer ticketCount; + + /** + *合计金额 + */ + private Double amount; + + /** + *优惠金额 + */ + private Double discountMoney; + + /** + *电子券抵扣金额 + */ + private Double couponDiscountMoney; + + /** + *其他优惠金额 + */ + private Double otherDiscountMoney; + + /** + *应收金额 + */ + private Double receivable; + + /** + *抹零金额 + */ + private Double maling; + + /** + *实收金额 + */ + private Double paid; + + /** + *充值笔数 + */ + private Integer cardCount; + + /** + *卡充值金额 + */ + private Double cardRealMoney; + + /** + *退卡笔数 + */ + private Integer cardRefundCount; + + /** + *退卡金额 + */ + private Double cardRefundMoney; + + /** + *营业收入金额 + */ + private Double sumRealMoney; + + /** + *非营业收入 + */ + private Double inmoney; + + /** + *非营业支出 + */ + private Double outmoney; + + /** + *配送费(微信点餐) + */ + private Double distributionFee; + + /** + *班次总收入金额 + */ + private Double shiftAmount; + + /** + *备用金 + */ + private Double imprest; + + /** + *设备名称 + */ + private String deviceName; + + /** + *设备MAC + */ + private String deviceMac; + + /** + *设备IP + */ + private String deviceIp; + + /** + *是否失效 + */ + private Integer isInvalid; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :交班单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :交班单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :员工ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getWorkId() { + return this.workId; + } + + /** + * 字段名称 :员工ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setWorkId(String workId) { + this.workId = workId; + } + + /** + * 字段名称 :员工编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getWorkNo() { + return this.workNo; + } + + /** + * 字段名称 :员工编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setWorkNo(String workNo) { + this.workNo = workNo; + } + + /** + * 字段名称 :员工名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getWorkName() { + return this.workName; + } + + /** + * 字段名称 :员工名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setWorkName(String workName) { + this.workName = workName; + } + + /** + * 字段名称 :班次 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getShiftNo() { + return this.shiftNo; + } + + /** + * 字段名称 :班次 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setShiftNo(String shiftNo) { + this.shiftNo = shiftNo; + } + + /** + * 字段名称 :班次名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getShiftName() { + return this.shiftName; + } + + /** + * 字段名称 :班次名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setShiftName(String shiftName) { + this.shiftName = shiftName; + } + + /** + * 字段名称 :开始时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getDatetimeBegin() { + return this.datetimeBegin; + } + + /** + * 字段名称 :开始时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setDatetimeBegin(Date datetimeBegin) { + this.datetimeBegin = datetimeBegin; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getDatetimeEnd() { + return this.datetimeEnd; + } + + /** + * 字段名称 :结束时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setDatetimeEnd(Date datetimeEnd) { + this.datetimeEnd = datetimeEnd; + } + + /** + * 字段名称 :交班时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getDatetimeShift() { + return this.datetimeShift; + } + + /** + * 字段名称 :交班时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setDatetimeShift(Date datetimeShift) { + this.datetimeShift = datetimeShift; + } + + /** + * 字段名称 :交单工号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getAcceptWorkerNo() { + return this.acceptWorkerNo; + } + + /** + * 字段名称 :交单工号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setAcceptWorkerNo(String acceptWorkerNo) { + this.acceptWorkerNo = acceptWorkerNo; + } + + /** + * 字段名称 :交单POS + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :交单POS + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getMemo() { + return this.memo; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setMemo(String memo) { + this.memo = memo; + } + + /** + * 字段名称 :总人数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPeopleCount() { + return this.peopleCount; + } + + /** + * 字段名称 :总人数 + * 数据类型 :int + * 是否必填 :false + */ + public void setPeopleCount(Integer peopleCount) { + this.peopleCount = peopleCount; + } + + /** + * 字段名称 :成交单数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDealTicketCount() { + return this.dealTicketCount; + } + + /** + * 字段名称 :成交单数 + * 数据类型 :int + * 是否必填 :false + */ + public void setDealTicketCount(Integer dealTicketCount) { + this.dealTicketCount = dealTicketCount; + } + + /** + * 字段名称 :成交金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDealAmount() { + return this.dealAmount; + } + + /** + * 字段名称 :成交金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDealAmount(Double dealAmount) { + this.dealAmount = dealAmount; + } + + /** + * 字段名称 :退单次数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBackTicketCount() { + return this.backTicketCount; + } + + /** + * 字段名称 :退单次数 + * 数据类型 :int + * 是否必填 :false + */ + public void setBackTicketCount(Integer backTicketCount) { + this.backTicketCount = backTicketCount; + } + + /** + * 字段名称 :退单金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getBackAmount() { + return this.backAmount; + } + + /** + * 字段名称 :退单金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setBackAmount(Double backAmount) { + this.backAmount = backAmount; + } + + /** + * 字段名称 :合计单数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getTicketCount() { + return this.ticketCount; + } + + /** + * 字段名称 :合计单数 + * 数据类型 :int + * 是否必填 :false + */ + public void setTicketCount(Integer ticketCount) { + this.ticketCount = ticketCount; + } + + /** + * 字段名称 :合计金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :合计金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountMoney() { + return this.discountMoney; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountMoney(Double discountMoney) { + this.discountMoney = discountMoney; + } + + /** + * 字段名称 :电子券抵扣金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCouponDiscountMoney() { + return this.couponDiscountMoney; + } + + /** + * 字段名称 :电子券抵扣金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCouponDiscountMoney(Double couponDiscountMoney) { + this.couponDiscountMoney = couponDiscountMoney; + } + + /** + * 字段名称 :其他优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getOtherDiscountMoney() { + return this.otherDiscountMoney; + } + + /** + * 字段名称 :其他优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setOtherDiscountMoney(Double otherDiscountMoney) { + this.otherDiscountMoney = otherDiscountMoney; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivable() { + return this.receivable; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivable(Double receivable) { + this.receivable = receivable; + } + + /** + * 字段名称 :抹零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMaling() { + return this.maling; + } + + /** + * 字段名称 :抹零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMaling(Double maling) { + this.maling = maling; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPaid() { + return this.paid; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPaid(Double paid) { + this.paid = paid; + } + + /** + * 字段名称 :充值笔数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getCardCount() { + return this.cardCount; + } + + /** + * 字段名称 :充值笔数 + * 数据类型 :int + * 是否必填 :false + */ + public void setCardCount(Integer cardCount) { + this.cardCount = cardCount; + } + + /** + * 字段名称 :卡充值金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCardRealMoney() { + return this.cardRealMoney; + } + + /** + * 字段名称 :卡充值金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCardRealMoney(Double cardRealMoney) { + this.cardRealMoney = cardRealMoney; + } + + /** + * 字段名称 :退卡笔数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getCardRefundCount() { + return this.cardRefundCount; + } + + /** + * 字段名称 :退卡笔数 + * 数据类型 :int + * 是否必填 :false + */ + public void setCardRefundCount(Integer cardRefundCount) { + this.cardRefundCount = cardRefundCount; + } + + /** + * 字段名称 :退卡金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCardRefundMoney() { + return this.cardRefundMoney; + } + + /** + * 字段名称 :退卡金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCardRefundMoney(Double cardRefundMoney) { + this.cardRefundMoney = cardRefundMoney; + } + + /** + * 字段名称 :营业收入金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getSumRealMoney() { + return this.sumRealMoney; + } + + /** + * 字段名称 :营业收入金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setSumRealMoney(Double sumRealMoney) { + this.sumRealMoney = sumRealMoney; + } + + /** + * 字段名称 :非营业收入 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getInmoney() { + return this.inmoney; + } + + /** + * 字段名称 :非营业收入 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setInmoney(Double inmoney) { + this.inmoney = inmoney; + } + + /** + * 字段名称 :非营业支出 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getOutmoney() { + return this.outmoney; + } + + /** + * 字段名称 :非营业支出 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setOutmoney(Double outmoney) { + this.outmoney = outmoney; + } + + /** + * 字段名称 :配送费(微信点餐) + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDistributionFee() { + return this.distributionFee; + } + + /** + * 字段名称 :配送费(微信点餐) + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDistributionFee(Double distributionFee) { + this.distributionFee = distributionFee; + } + + /** + * 字段名称 :班次总收入金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getShiftAmount() { + return this.shiftAmount; + } + + /** + * 字段名称 :班次总收入金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setShiftAmount(Double shiftAmount) { + this.shiftAmount = shiftAmount; + } + + /** + * 字段名称 :备用金 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getImprest() { + return this.imprest; + } + + /** + * 字段名称 :备用金 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setImprest(Double imprest) { + this.imprest = imprest; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeviceName() { + return this.deviceName; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeviceName(String deviceName) { + this.deviceName = deviceName; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public String getDeviceMac() { + return this.deviceMac; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public void setDeviceMac(String deviceMac) { + this.deviceMac = deviceMac; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeviceIp() { + return this.deviceIp; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeviceIp(String deviceIp) { + this.deviceIp = deviceIp; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreHandoverDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreHandoverDetail.java new file mode 100644 index 0000000..42495b2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreHandoverDetail.java @@ -0,0 +1,410 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店交班明细表 + * 表代码:cy_store_handover_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreHandoverDetail") +public class StoreHandoverDetail extends BaseEntity { + + private static final long serialVersionUID = 1962851623824717739L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *门店ID + */ + private String storeId; + + /** + *主单ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String busNo; + + /** + *收银方式编号 + */ + private String payModeNo; + + /** + *收银方式名称 + */ + private String payModeName; + + /** + *数量 + */ + private Integer count; + + /** + *金额 + */ + private Double money; + + /** + *手工金额 + */ + private Double handsMoney; + + /** + *卡务次数 + */ + private Integer cardCount; + + /** + *卡务金额 + */ + private Double cardMoney; + + /** + *总金额 + */ + private Double sumMoney; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *交单POS + */ + private String posNo; + + /** + *设备名称 + */ + private String deviceName; + + /** + *设备MAC + */ + private String deviceMac; + + /** + *设备IP + */ + private String deviceIp; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :主单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :主单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :收银方式编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPayModeNo() { + return this.payModeNo; + } + + /** + * 字段名称 :收银方式编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPayModeNo(String payModeNo) { + this.payModeNo = payModeNo; + } + + /** + * 字段名称 :收银方式名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getPayModeName() { + return this.payModeName; + } + + /** + * 字段名称 :收银方式名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setPayModeName(String payModeName) { + this.payModeName = payModeName; + } + + /** + * 字段名称 :数量 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getCount() { + return this.count; + } + + /** + * 字段名称 :数量 + * 数据类型 :int + * 是否必填 :false + */ + public void setCount(Integer count) { + this.count = count; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :手工金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getHandsMoney() { + return this.handsMoney; + } + + /** + * 字段名称 :手工金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setHandsMoney(Double handsMoney) { + this.handsMoney = handsMoney; + } + + /** + * 字段名称 :卡务次数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getCardCount() { + return this.cardCount; + } + + /** + * 字段名称 :卡务次数 + * 数据类型 :int + * 是否必填 :false + */ + public void setCardCount(Integer cardCount) { + this.cardCount = cardCount; + } + + /** + * 字段名称 :卡务金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCardMoney() { + return this.cardMoney; + } + + /** + * 字段名称 :卡务金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCardMoney(Double cardMoney) { + this.cardMoney = cardMoney; + } + + /** + * 字段名称 :总金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getSumMoney() { + return this.sumMoney; + } + + /** + * 字段名称 :总金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setSumMoney(Double sumMoney) { + this.sumMoney = sumMoney; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :交单POS + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :交单POS + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeviceName() { + return this.deviceName; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeviceName(String deviceName) { + this.deviceName = deviceName; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public String getDeviceMac() { + return this.deviceMac; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public void setDeviceMac(String deviceMac) { + this.deviceMac = deviceMac; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeviceIp() { + return this.deviceIp; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeviceIp(String deviceIp) { + this.deviceIp = deviceIp; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreHandoverDetailPart.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreHandoverDetailPart.java new file mode 100644 index 0000000..28b1a95 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreHandoverDetailPart.java @@ -0,0 +1,341 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店交班明细表(杯子/碗数) + * 表代码:cy_store_handover_detail_part + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreHandoverDetailPart") +public class StoreHandoverDetailPart extends BaseEntity { + + private static final long serialVersionUID = 1044055235208538147L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *门店ID + */ + private String storeId; + + /** + *主单ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String busNo; + + /** + *规格名称 + */ + private String specName; + + /** + *初始数量 + */ + private Double preCount; + + /** + *系统数量 + */ + private Double count; + + /** + *手工数量 + */ + private Double handsCount; + + /** + *差异数量 + */ + private Double difCount; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *交单POS + */ + private String posNo; + + /** + *设备名称 + */ + private String deviceName; + + /** + *设备MAC + */ + private String deviceMac; + + /** + *设备IP + */ + private String deviceIp; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :主单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :主单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :初始数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPreCount() { + return this.preCount; + } + + /** + * 字段名称 :初始数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPreCount(Double preCount) { + this.preCount = preCount; + } + + /** + * 字段名称 :系统数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCount() { + return this.count; + } + + /** + * 字段名称 :系统数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCount(Double count) { + this.count = count; + } + + /** + * 字段名称 :手工数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getHandsCount() { + return this.handsCount; + } + + /** + * 字段名称 :手工数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setHandsCount(Double handsCount) { + this.handsCount = handsCount; + } + + /** + * 字段名称 :差异数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDifCount() { + return this.difCount; + } + + /** + * 字段名称 :差异数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDifCount(Double difCount) { + this.difCount = difCount; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :交单POS + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :交单POS + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeviceName() { + return this.deviceName; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeviceName(String deviceName) { + this.deviceName = deviceName; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public String getDeviceMac() { + return this.deviceMac; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public void setDeviceMac(String deviceMac) { + this.deviceMac = deviceMac; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeviceIp() { + return this.deviceIp; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeviceIp(String deviceIp) { + this.deviceIp = deviceIp; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreHandoverDetailPay.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreHandoverDetailPay.java new file mode 100644 index 0000000..de86317 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreHandoverDetailPay.java @@ -0,0 +1,364 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店交班支付方式明细表 + * 表代码:cy_store_handover_detail_pay + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreHandoverDetailPay") +public class StoreHandoverDetailPay extends BaseEntity { + + private static final long serialVersionUID = 1922510640003414344L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *门店ID + */ + private String storeId; + + /** + *主单ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String busNo; + + /** + *收银方式编号 + */ + private String payModeNo; + + /** + *收银方式名称 + */ + private String payModeName; + + /** + *营业模式 + */ + private Integer busMode; + + /** + *金额 + */ + private Double money; + + /** + *数量 + */ + private Integer count; + + /** + *业务类型 + */ + private Integer busType; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *交单POS + */ + private String posNo; + + /** + *设备名称 + */ + private String deviceName; + + /** + *设备MAC + */ + private String deviceMac; + + /** + *设备IP + */ + private String deviceIp; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :主单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :主单ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :收银方式编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPayModeNo() { + return this.payModeNo; + } + + /** + * 字段名称 :收银方式编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPayModeNo(String payModeNo) { + this.payModeNo = payModeNo; + } + + /** + * 字段名称 :收银方式名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getPayModeName() { + return this.payModeName; + } + + /** + * 字段名称 :收银方式名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setPayModeName(String payModeName) { + this.payModeName = payModeName; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBusMode() { + return this.busMode; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public void setBusMode(Integer busMode) { + this.busMode = busMode; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :数量 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getCount() { + return this.count; + } + + /** + * 字段名称 :数量 + * 数据类型 :int + * 是否必填 :false + */ + public void setCount(Integer count) { + this.count = count; + } + + /** + * 字段名称 :业务类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBusType() { + return this.busType; + } + + /** + * 字段名称 :业务类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setBusType(Integer busType) { + this.busType = busType; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :交单POS + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :交单POS + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeviceName() { + return this.deviceName; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeviceName(String deviceName) { + this.deviceName = deviceName; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public String getDeviceMac() { + return this.deviceMac; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public void setDeviceMac(String deviceMac) { + this.deviceMac = deviceMac; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeviceIp() { + return this.deviceIp; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeviceIp(String deviceIp) { + this.deviceIp = deviceIp; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreLoginLog.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreLoginLog.java new file mode 100644 index 0000000..88b5844 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreLoginLog.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店登录日志 + * 表代码:cy_store_login_log + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreLoginLog") +public class StoreLoginLog extends BaseEntity { + + private static final long serialVersionUID = 1949930365076454487L; + + /** + *工号 + */ + private String workerNo; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名 + */ + private String storeName; + + /** + *登录时间 + */ + private Date loginTime; + + /** + *登录类型 + */ + private Integer type; + + /** + *POS编号 + */ + private String posNo; + + + /** + * 字段名称 :工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getWorkerNo() { + return this.workerNo; + } + + /** + * 字段名称 :工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setWorkerNo(String workerNo) { + this.workerNo = workerNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :登录时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getLoginTime() { + return this.loginTime; + } + + /** + * 字段名称 :登录时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setLoginTime(Date loginTime) { + this.loginTime = loginTime; + } + + /** + * 字段名称 :登录类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :登录类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :POS编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :POS编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreOperationLog.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreOperationLog.java new file mode 100644 index 0000000..5d497aa --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreOperationLog.java @@ -0,0 +1,410 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:前台操作日志记录 + * 表代码:cy_store_operation_log + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreOperationLog") +public class StoreOperationLog extends BaseEntity { + + private static final long serialVersionUID = 1698797504332973885L; + + /** + *门店Id + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *操作员工 + */ + private String workerNo; + + /** + *班次 + */ + private String shiftNo; + + /** + *班次名称 + */ + private String shiftName; + + /** + *设备名称 + */ + private String deviceName; + + /** + *设备MAC + */ + private String deviceMac; + + /** + *设备IP + */ + private String deviceIp; + + /** + *设备编号 + */ + private String posNo; + + /** + *操作时间 + */ + private String operationTime; + + /** + *操作类型 + */ + private String type; + + /** + *操作类型名称 + */ + private String typeTxt; + + /** + *操作说明 + */ + private String memo; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :操作员工 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getWorkerNo() { + return this.workerNo; + } + + /** + * 字段名称 :操作员工 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setWorkerNo(String workerNo) { + this.workerNo = workerNo; + } + + /** + * 字段名称 :班次 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getShiftNo() { + return this.shiftNo; + } + + /** + * 字段名称 :班次 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setShiftNo(String shiftNo) { + this.shiftNo = shiftNo; + } + + /** + * 字段名称 :班次名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getShiftName() { + return this.shiftName; + } + + /** + * 字段名称 :班次名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setShiftName(String shiftName) { + this.shiftName = shiftName; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDeviceName() { + return this.deviceName; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDeviceName(String deviceName) { + this.deviceName = deviceName; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public String getDeviceMac() { + return this.deviceMac; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public void setDeviceMac(String deviceMac) { + this.deviceMac = deviceMac; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeviceIp() { + return this.deviceIp; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeviceIp(String deviceIp) { + this.deviceIp = deviceIp; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :操作时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOperationTime() { + return this.operationTime; + } + + /** + * 字段名称 :操作时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOperationTime(String operationTime) { + this.operationTime = operationTime; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getType() { + return this.type; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setType(String type) { + this.type = type; + } + + /** + * 字段名称 :操作类型名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeTxt() { + return this.typeTxt; + } + + /** + * 字段名称 :操作类型名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeTxt(String typeTxt) { + this.typeTxt = typeTxt; + } + + /** + * 字段名称 :操作说明 + * 数据类型 :text + * 是否必填 :false + */ + public String getMemo() { + return this.memo; + } + + /** + * 字段名称 :操作说明 + * 数据类型 :text + * 是否必填 :false + */ + public void setMemo(String memo) { + this.memo = memo; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreOrderProduct.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreOrderProduct.java new file mode 100644 index 0000000..b45e8af --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreOrderProduct.java @@ -0,0 +1,1422 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店产品销售记录 + * 表代码:cy_store_order_product + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreOrderProduct") +public class StoreOrderProduct extends BaseEntity { + + private static final long serialVersionUID = 1064504959571038067L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *父记录ID + */ + private String parentId; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *销售单ID + */ + private String ticketId; + + /** + *销售单号 + */ + private String busNo; + + /** + *营业模式 + */ + private Integer busMode; + + /** + *桌号 + */ + private String tableNo; + + /** + *产品ID + */ + private String productId; + + /** + *产品编号 + */ + private String productNo; + + /** + *产品名称 + */ + private String productName; + + /** + *产品单位 + */ + private String productUnitId; + + /** + *产品单位名 + */ + private String productUnitName; + + /** + *大类ID + */ + private String seriesId; + + /** + *大类名称 + */ + private String seriesName; + + /** + *类别路径 + */ + private String typePath; + + /** + *类别ID + */ + private String typeId; + + /** + *类别名 + */ + private String typeName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *数量 + */ + private Double count; + + /** + *退菜数量 + */ + private Double rcount; + + /** + *销售价格 + */ + private Double price; + + /** + *产品原价 + */ + private Double priceOrg; + + /** + *折后价格 + */ + private Double discountPrice; + + /** + *是否套菜 + */ + private Integer isSuit; + + /** + *套菜ID + */ + private String suitId; + + /** + *工号 + */ + private String workerNo; + + /** + *销售时间 + */ + private Date saleDate; + + /** + *设备名称 + */ + private String deviceName; + + /** + *设备MAC + */ + private String deviceMac; + + /** + *设备IP + */ + private String deviceIp; + + /** + *设备编号 + */ + private String posNo; + + /** + *消费金额 + */ + private Double amount; + + /** + *优惠率 + */ + private Double discount; + + /** + *优惠额 + */ + private Double discountTotal; + + /** + *应收金额 + */ + private Double receivable; + + /** + *加价金额 + */ + private Double addPriceTotal; + + /** + *加价优惠金额 + */ + private Double discountAddTotal; + + /** + *加价应收金额 + */ + private Double amountAddTotal; + + /** + *消费总额 + */ + private Double amountTotal; + + /** + *应收总额 + */ + private Double receivableTotal; + + /** + *是否使用会员卡 + */ + private Integer isMember; + + /** + *会员卡号 + */ + private String memberNo; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *行号 + */ + private Integer lineNo; + + /** + *当日流水号 + */ + private String seqNo; + + /** + *天气 + */ + private String weather; + + /** + *星期 + */ + private String weeker; + + /** + *是否出库 + */ + private Integer isStockDeal; + + /** + *预估成本 + */ + private Double estimatedCost; + + /** + *预估毛利金额 + */ + private Double estimatedProfitAmount; + + /** + *预估毛利率 + */ + private Double estimatedProfitMargin; + + /** + *实际成本 + */ + private Double totalCost; + + /** + *实际毛利金额 + */ + private Double profitAmount; + + /** + *实际毛利率 + */ + private Double profitMargin; + + /** + *桌台名称 + */ + private String tableName; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :父记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getParentId() { + return this.parentId; + } + + /** + * 字段名称 :父记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setParentId(String parentId) { + this.parentId = parentId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBusMode() { + return this.busMode; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public void setBusMode(Integer busMode) { + this.busMode = busMode; + } + + /** + * 字段名称 :桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTableNo() { + return this.tableNo; + } + + /** + * 字段名称 :桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTableNo(String tableNo) { + this.tableNo = tableNo; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :产品名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :产品名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :产品单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductUnitId() { + return this.productUnitId; + } + + /** + * 字段名称 :产品单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductUnitId(String productUnitId) { + this.productUnitId = productUnitId; + } + + /** + * 字段名称 :产品单位名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductUnitName() { + return this.productUnitName; + } + + /** + * 字段名称 :产品单位名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductUnitName(String productUnitName) { + this.productUnitName = productUnitName; + } + + /** + * 字段名称 :大类ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSeriesId() { + return this.seriesId; + } + + /** + * 字段名称 :大类ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSeriesId(String seriesId) { + this.seriesId = seriesId; + } + + /** + * 字段名称 :大类名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getSeriesName() { + return this.seriesName; + } + + /** + * 字段名称 :大类名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setSeriesName(String seriesName) { + this.seriesName = seriesName; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getTypePath() { + return this.typePath; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setTypePath(String typePath) { + this.typePath = typePath; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTypeName() { + return this.typeName; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getCount() { + return this.count; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setCount(Double count) { + this.count = count; + } + + /** + * 字段名称 :退菜数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getRcount() { + return this.rcount; + } + + /** + * 字段名称 :退菜数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setRcount(Double rcount) { + this.rcount = rcount; + } + + /** + * 字段名称 :销售价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :销售价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :产品原价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPriceOrg() { + return this.priceOrg; + } + + /** + * 字段名称 :产品原价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPriceOrg(Double priceOrg) { + this.priceOrg = priceOrg; + } + + /** + * 字段名称 :折后价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountPrice() { + return this.discountPrice; + } + + /** + * 字段名称 :折后价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountPrice(Double discountPrice) { + this.discountPrice = discountPrice; + } + + /** + * 字段名称 :是否套菜 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsSuit() { + return this.isSuit; + } + + /** + * 字段名称 :是否套菜 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsSuit(Integer isSuit) { + this.isSuit = isSuit; + } + + /** + * 字段名称 :套菜ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSuitId() { + return this.suitId; + } + + /** + * 字段名称 :套菜ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSuitId(String suitId) { + this.suitId = suitId; + } + + /** + * 字段名称 :工号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getWorkerNo() { + return this.workerNo; + } + + /** + * 字段名称 :工号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setWorkerNo(String workerNo) { + this.workerNo = workerNo; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDeviceName() { + return this.deviceName; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDeviceName(String deviceName) { + this.deviceName = deviceName; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public String getDeviceMac() { + return this.deviceMac; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public void setDeviceMac(String deviceMac) { + this.deviceMac = deviceMac; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeviceIp() { + return this.deviceIp; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeviceIp(String deviceIp) { + this.deviceIp = deviceIp; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountTotal() { + return this.discountTotal; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountTotal(Double discountTotal) { + this.discountTotal = discountTotal; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivable() { + return this.receivable; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivable(Double receivable) { + this.receivable = receivable; + } + + /** + * 字段名称 :加价金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddPriceTotal() { + return this.addPriceTotal; + } + + /** + * 字段名称 :加价金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddPriceTotal(Double addPriceTotal) { + this.addPriceTotal = addPriceTotal; + } + + /** + * 字段名称 :加价优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountAddTotal() { + return this.discountAddTotal; + } + + /** + * 字段名称 :加价优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountAddTotal(Double discountAddTotal) { + this.discountAddTotal = discountAddTotal; + } + + /** + * 字段名称 :加价应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmountAddTotal() { + return this.amountAddTotal; + } + + /** + * 字段名称 :加价应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmountAddTotal(Double amountAddTotal) { + this.amountAddTotal = amountAddTotal; + } + + /** + * 字段名称 :消费总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmountTotal() { + return this.amountTotal; + } + + /** + * 字段名称 :消费总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmountTotal(Double amountTotal) { + this.amountTotal = amountTotal; + } + + /** + * 字段名称 :应收总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivableTotal() { + return this.receivableTotal; + } + + /** + * 字段名称 :应收总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivableTotal(Double receivableTotal) { + this.receivableTotal = receivableTotal; + } + + /** + * 字段名称 :是否使用会员卡 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsMember() { + return this.isMember; + } + + /** + * 字段名称 :是否使用会员卡 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsMember(Integer isMember) { + this.isMember = isMember; + } + + /** + * 字段名称 :会员卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMemberNo() { + return this.memberNo; + } + + /** + * 字段名称 :会员卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMemberNo(String memberNo) { + this.memberNo = memberNo; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :行号 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getLineNo() { + return this.lineNo; + } + + /** + * 字段名称 :行号 + * 数据类型 :int + * 是否必填 :false + */ + public void setLineNo(Integer lineNo) { + this.lineNo = lineNo; + } + + /** + * 字段名称 :当日流水号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSeqNo() { + return this.seqNo; + } + + /** + * 字段名称 :当日流水号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSeqNo(String seqNo) { + this.seqNo = seqNo; + } + + /** + * 字段名称 :天气 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getWeather() { + return this.weather; + } + + /** + * 字段名称 :天气 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setWeather(String weather) { + this.weather = weather; + } + + /** + * 字段名称 :星期 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getWeeker() { + return this.weeker; + } + + /** + * 字段名称 :星期 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setWeeker(String weeker) { + this.weeker = weeker; + } + + /** + * 字段名称 :是否出库 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsStockDeal() { + return this.isStockDeal; + } + + /** + * 字段名称 :是否出库 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsStockDeal(Integer isStockDeal) { + this.isStockDeal = isStockDeal; + } + + /** + * 字段名称 :预估成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getEstimatedCost() { + return this.estimatedCost; + } + + /** + * 字段名称 :预估成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setEstimatedCost(Double estimatedCost) { + this.estimatedCost = estimatedCost; + } + + /** + * 字段名称 :预估毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getEstimatedProfitAmount() { + return this.estimatedProfitAmount; + } + + /** + * 字段名称 :预估毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setEstimatedProfitAmount(Double estimatedProfitAmount) { + this.estimatedProfitAmount = estimatedProfitAmount; + } + + /** + * 字段名称 :预估毛利率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getEstimatedProfitMargin() { + return this.estimatedProfitMargin; + } + + /** + * 字段名称 :预估毛利率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setEstimatedProfitMargin(Double estimatedProfitMargin) { + this.estimatedProfitMargin = estimatedProfitMargin; + } + + /** + * 字段名称 :实际成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getTotalCost() { + return this.totalCost; + } + + /** + * 字段名称 :实际成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setTotalCost(Double totalCost) { + this.totalCost = totalCost; + } + + /** + * 字段名称 :实际毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getProfitAmount() { + return this.profitAmount; + } + + /** + * 字段名称 :实际毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setProfitAmount(Double profitAmount) { + this.profitAmount = profitAmount; + } + + /** + * 字段名称 :实际毛利率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getProfitMargin() { + return this.profitMargin; + } + + /** + * 字段名称 :实际毛利率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setProfitMargin(Double profitMargin) { + this.profitMargin = profitMargin; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTableName() { + return this.tableName; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTableName(String tableName) { + this.tableName = tableName; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreOrderProductDaysummary.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreOrderProductDaysummary.java new file mode 100644 index 0000000..8836eda --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreOrderProductDaysummary.java @@ -0,0 +1,962 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:前台单品销售日汇总 + * 表代码:cy_store_order_product_daysummary + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreOrderProductDaysummary") +public class StoreOrderProductDaysummary extends BaseEntity { + + private static final long serialVersionUID = 1502343858938251023L; + + /** + *日期 + */ + private Date summaryDay; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *营业模式 + */ + private Integer busMode; + + /** + *产品ID + */ + private String productId; + + /** + *产品编号 + */ + private String productNo; + + /** + *产品名称 + */ + private String productName; + + /** + *产品单位 + */ + private String productUnitId; + + /** + *产品单位名 + */ + private String productUnitName; + + /** + *大类ID + */ + private String seriesId; + + /** + *大类名称 + */ + private String seriesName; + + /** + *类别路径 + */ + private String typePath; + + /** + *类别ID + */ + private String typeId; + + /** + *类别名 + */ + private String typeName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *数量 + */ + private Double count; + + /** + *退菜数量 + */ + private Double rcount; + + /** + *销售价格 + */ + private Double price; + + /** + *产品原价 + */ + private Double priceOrg; + + /** + *折后价格 + */ + private Double discountPrice; + + /** + *是否套菜 + */ + private Integer isSuit; + + /** + *工号 + */ + private String workerNo; + + /** + *设备编号 + */ + private String posNo; + + /** + *消费金额 + */ + private Double amount; + + /** + *优惠额 + */ + private Double discountTotal; + + /** + *应收金额 + */ + private Double receivable; + + /** + *加价金额 + */ + private Double addPriceTotal; + + /** + *加价优惠金额 + */ + private Double discountAddTotal; + + /** + *加价应收金额 + */ + private Double amountAddTotal; + + /** + *消费总额 + */ + private Double amountTotal; + + /** + *应收总额 + */ + private Double receivableTotal; + + /** + *星期 + */ + private String weeker; + + /** + *预估成本 + */ + private Double estimatedCost; + + /** + *预估毛利金额 + */ + private Double estimatedProfitAmount; + + /** + *实际成本 + */ + private Double totalCost; + + /** + *实际毛利金额 + */ + private Double profitAmount; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :日期 + * 数据类型 :date + * 是否必填 :false + */ + public Date getSummaryDay() { + return this.summaryDay; + } + + /** + * 字段名称 :日期 + * 数据类型 :date + * 是否必填 :false + */ + public void setSummaryDay(Date summaryDay) { + this.summaryDay = summaryDay; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBusMode() { + return this.busMode; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public void setBusMode(Integer busMode) { + this.busMode = busMode; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :产品名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :产品名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :产品单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductUnitId() { + return this.productUnitId; + } + + /** + * 字段名称 :产品单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductUnitId(String productUnitId) { + this.productUnitId = productUnitId; + } + + /** + * 字段名称 :产品单位名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductUnitName() { + return this.productUnitName; + } + + /** + * 字段名称 :产品单位名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductUnitName(String productUnitName) { + this.productUnitName = productUnitName; + } + + /** + * 字段名称 :大类ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSeriesId() { + return this.seriesId; + } + + /** + * 字段名称 :大类ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSeriesId(String seriesId) { + this.seriesId = seriesId; + } + + /** + * 字段名称 :大类名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getSeriesName() { + return this.seriesName; + } + + /** + * 字段名称 :大类名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setSeriesName(String seriesName) { + this.seriesName = seriesName; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getTypePath() { + return this.typePath; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setTypePath(String typePath) { + this.typePath = typePath; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTypeName() { + return this.typeName; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getCount() { + return this.count; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setCount(Double count) { + this.count = count; + } + + /** + * 字段名称 :退菜数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getRcount() { + return this.rcount; + } + + /** + * 字段名称 :退菜数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setRcount(Double rcount) { + this.rcount = rcount; + } + + /** + * 字段名称 :销售价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :销售价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :产品原价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPriceOrg() { + return this.priceOrg; + } + + /** + * 字段名称 :产品原价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPriceOrg(Double priceOrg) { + this.priceOrg = priceOrg; + } + + /** + * 字段名称 :折后价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountPrice() { + return this.discountPrice; + } + + /** + * 字段名称 :折后价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountPrice(Double discountPrice) { + this.discountPrice = discountPrice; + } + + /** + * 字段名称 :是否套菜 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsSuit() { + return this.isSuit; + } + + /** + * 字段名称 :是否套菜 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsSuit(Integer isSuit) { + this.isSuit = isSuit; + } + + /** + * 字段名称 :工号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getWorkerNo() { + return this.workerNo; + } + + /** + * 字段名称 :工号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setWorkerNo(String workerNo) { + this.workerNo = workerNo; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountTotal() { + return this.discountTotal; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountTotal(Double discountTotal) { + this.discountTotal = discountTotal; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivable() { + return this.receivable; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivable(Double receivable) { + this.receivable = receivable; + } + + /** + * 字段名称 :加价金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddPriceTotal() { + return this.addPriceTotal; + } + + /** + * 字段名称 :加价金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddPriceTotal(Double addPriceTotal) { + this.addPriceTotal = addPriceTotal; + } + + /** + * 字段名称 :加价优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountAddTotal() { + return this.discountAddTotal; + } + + /** + * 字段名称 :加价优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountAddTotal(Double discountAddTotal) { + this.discountAddTotal = discountAddTotal; + } + + /** + * 字段名称 :加价应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmountAddTotal() { + return this.amountAddTotal; + } + + /** + * 字段名称 :加价应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmountAddTotal(Double amountAddTotal) { + this.amountAddTotal = amountAddTotal; + } + + /** + * 字段名称 :消费总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmountTotal() { + return this.amountTotal; + } + + /** + * 字段名称 :消费总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmountTotal(Double amountTotal) { + this.amountTotal = amountTotal; + } + + /** + * 字段名称 :应收总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivableTotal() { + return this.receivableTotal; + } + + /** + * 字段名称 :应收总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivableTotal(Double receivableTotal) { + this.receivableTotal = receivableTotal; + } + + /** + * 字段名称 :星期 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getWeeker() { + return this.weeker; + } + + /** + * 字段名称 :星期 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setWeeker(String weeker) { + this.weeker = weeker; + } + + /** + * 字段名称 :预估成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getEstimatedCost() { + return this.estimatedCost; + } + + /** + * 字段名称 :预估成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setEstimatedCost(Double estimatedCost) { + this.estimatedCost = estimatedCost; + } + + /** + * 字段名称 :预估毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getEstimatedProfitAmount() { + return this.estimatedProfitAmount; + } + + /** + * 字段名称 :预估毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setEstimatedProfitAmount(Double estimatedProfitAmount) { + this.estimatedProfitAmount = estimatedProfitAmount; + } + + /** + * 字段名称 :实际成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getTotalCost() { + return this.totalCost; + } + + /** + * 字段名称 :实际成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setTotalCost(Double totalCost) { + this.totalCost = totalCost; + } + + /** + * 字段名称 :实际毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getProfitAmount() { + return this.profitAmount; + } + + /** + * 字段名称 :实际毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setProfitAmount(Double profitAmount) { + this.profitAmount = profitAmount; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreOrderProductInfo.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreOrderProductInfo.java new file mode 100644 index 0000000..cb4dc84 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreOrderProductInfo.java @@ -0,0 +1,364 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店产品销售记录优惠明细 + * 表代码:cy_store_order_product_info + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreOrderProductInfo") +public class StoreOrderProductInfo extends BaseEntity { + + private static final long serialVersionUID = 1102000376466790135L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *订单明细记录ID + */ + private String orderItemId; + + /** + *门店ID + */ + private String storeId; + + /** + *销售单ID + */ + private String ticketId; + + /** + *销售单号 + */ + private String busNo; + + /** + *优惠类型 + */ + private Integer type; + + /** + *优惠说明 + */ + private String info; + + /** + *优惠金额 + */ + private Double discountMoney; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *销售时间 + */ + private Date saleDate; + + /** + *餐桌号 + */ + private String tableNo; + + /** + *桌台名称 + */ + private String tableName; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :订单明细记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOrderItemId() { + return this.orderItemId; + } + + /** + * 字段名称 :订单明细记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOrderItemId(String orderItemId) { + this.orderItemId = orderItemId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :优惠说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getInfo() { + return this.info; + } + + /** + * 字段名称 :优惠说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setInfo(String info) { + this.info = info; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountMoney() { + return this.discountMoney; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountMoney(Double discountMoney) { + this.discountMoney = discountMoney; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTableNo() { + return this.tableNo; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTableNo(String tableNo) { + this.tableNo = tableNo; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTableName() { + return this.tableName; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTableName(String tableName) { + this.tableName = tableName; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreOrderProductInfoDaysummary.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreOrderProductInfoDaysummary.java new file mode 100644 index 0000000..14af967 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreOrderProductInfoDaysummary.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:前台产品销售优惠日汇总 + * 表代码:cy_store_order_product_info_daysummary + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreOrderProductInfoDaysummary") +public class StoreOrderProductInfoDaysummary extends BaseEntity { + + private static final long serialVersionUID = 1725249875950385126L; + + /** + *日期 + */ + private Date summaryDay; + + /** + *门店ID + */ + private String storeId; + + /** + *优惠类型 + */ + private Integer type; + + /** + *优惠金额 + */ + private Double discountMoney; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :日期 + * 数据类型 :date + * 是否必填 :false + */ + public Date getSummaryDay() { + return this.summaryDay; + } + + /** + * 字段名称 :日期 + * 数据类型 :date + * 是否必填 :false + */ + public void setSummaryDay(Date summaryDay) { + this.summaryDay = summaryDay; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountMoney() { + return this.discountMoney; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountMoney(Double discountMoney) { + this.discountMoney = discountMoney; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreOrderProductMake.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreOrderProductMake.java new file mode 100644 index 0000000..99be749 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreOrderProductMake.java @@ -0,0 +1,594 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店销售单做法 + * 表代码:cy_store_order_product_make + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreOrderProductMake") +public class StoreOrderProductMake extends BaseEntity { + + private static final long serialVersionUID = 1846554775747663052L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *订单明细记录ID + */ + private String orderItemId; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *销售单ID + */ + private String ticketId; + + /** + *销售单号 + */ + private String busNo; + + /** + *做法ID + */ + private String makeId; + + /** + *做法名称 + */ + private String makeName; + + /** + *做法加价 + */ + private Double addPrice; + + /** + *做法折后加价 + */ + private Double discountPrice; + + /** + *做法数量 + */ + private Double count; + + /** + *做法退数量 + */ + private Double rcount; + + /** + *加价总额 + */ + private Double addTotal; + + /** + *折后总额 + */ + private Double discountAddTotal; + + /** + *折扣率 + */ + private Double discount; + + /** + *做法管理数量标识 + */ + private Integer qtyFlag; + + /** + *手写做法标识 + */ + private Integer hand; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *销售时间 + */ + private Date saleDate; + + /** + *餐桌号 + */ + private String tableNo; + + /** + *桌台名称 + */ + private String tableName; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :订单明细记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOrderItemId() { + return this.orderItemId; + } + + /** + * 字段名称 :订单明细记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOrderItemId(String orderItemId) { + this.orderItemId = orderItemId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :做法ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMakeId() { + return this.makeId; + } + + /** + * 字段名称 :做法ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMakeId(String makeId) { + this.makeId = makeId; + } + + /** + * 字段名称 :做法名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMakeName() { + return this.makeName; + } + + /** + * 字段名称 :做法名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMakeName(String makeName) { + this.makeName = makeName; + } + + /** + * 字段名称 :做法加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddPrice() { + return this.addPrice; + } + + /** + * 字段名称 :做法加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddPrice(Double addPrice) { + this.addPrice = addPrice; + } + + /** + * 字段名称 :做法折后加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountPrice() { + return this.discountPrice; + } + + /** + * 字段名称 :做法折后加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountPrice(Double discountPrice) { + this.discountPrice = discountPrice; + } + + /** + * 字段名称 :做法数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCount() { + return this.count; + } + + /** + * 字段名称 :做法数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCount(Double count) { + this.count = count; + } + + /** + * 字段名称 :做法退数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getRcount() { + return this.rcount; + } + + /** + * 字段名称 :做法退数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setRcount(Double rcount) { + this.rcount = rcount; + } + + /** + * 字段名称 :加价总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddTotal() { + return this.addTotal; + } + + /** + * 字段名称 :加价总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddTotal(Double addTotal) { + this.addTotal = addTotal; + } + + /** + * 字段名称 :折后总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountAddTotal() { + return this.discountAddTotal; + } + + /** + * 字段名称 :折后总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountAddTotal(Double discountAddTotal) { + this.discountAddTotal = discountAddTotal; + } + + /** + * 字段名称 :折扣率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :折扣率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :做法管理数量标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getQtyFlag() { + return this.qtyFlag; + } + + /** + * 字段名称 :做法管理数量标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setQtyFlag(Integer qtyFlag) { + this.qtyFlag = qtyFlag; + } + + /** + * 字段名称 :手写做法标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getHand() { + return this.hand; + } + + /** + * 字段名称 :手写做法标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setHand(Integer hand) { + this.hand = hand; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTableNo() { + return this.tableNo; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTableNo(String tableNo) { + this.tableNo = tableNo; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTableName() { + return this.tableName; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTableName(String tableName) { + this.tableName = tableName; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreOrderProductMakeDaysummary.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreOrderProductMakeDaysummary.java new file mode 100644 index 0000000..f26d0be --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreOrderProductMakeDaysummary.java @@ -0,0 +1,364 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:前台销售单做法日汇总 + * 表代码:cy_store_order_product_make_daysummary + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreOrderProductMakeDaysummary") +public class StoreOrderProductMakeDaysummary extends BaseEntity { + + private static final long serialVersionUID = 1963712983848446220L; + + /** + *日期 + */ + private Date summaryDay; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *做法ID + */ + private String makeId; + + /** + *做法名称 + */ + private String makeName; + + /** + *做法加价 + */ + private Double addPrice; + + /** + *做法折后加价 + */ + private Double discountPrice; + + /** + *做法数量 + */ + private Double count; + + /** + *做法退数量 + */ + private Double rcount; + + /** + *加价总额 + */ + private Double addTotal; + + /** + *折后总额 + */ + private Double discountAddTotal; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :日期 + * 数据类型 :date + * 是否必填 :false + */ + public Date getSummaryDay() { + return this.summaryDay; + } + + /** + * 字段名称 :日期 + * 数据类型 :date + * 是否必填 :false + */ + public void setSummaryDay(Date summaryDay) { + this.summaryDay = summaryDay; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :做法ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMakeId() { + return this.makeId; + } + + /** + * 字段名称 :做法ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMakeId(String makeId) { + this.makeId = makeId; + } + + /** + * 字段名称 :做法名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMakeName() { + return this.makeName; + } + + /** + * 字段名称 :做法名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMakeName(String makeName) { + this.makeName = makeName; + } + + /** + * 字段名称 :做法加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddPrice() { + return this.addPrice; + } + + /** + * 字段名称 :做法加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddPrice(Double addPrice) { + this.addPrice = addPrice; + } + + /** + * 字段名称 :做法折后加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountPrice() { + return this.discountPrice; + } + + /** + * 字段名称 :做法折后加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountPrice(Double discountPrice) { + this.discountPrice = discountPrice; + } + + /** + * 字段名称 :做法数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCount() { + return this.count; + } + + /** + * 字段名称 :做法数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCount(Double count) { + this.count = count; + } + + /** + * 字段名称 :做法退数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getRcount() { + return this.rcount; + } + + /** + * 字段名称 :做法退数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setRcount(Double rcount) { + this.rcount = rcount; + } + + /** + * 字段名称 :加价总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddTotal() { + return this.addTotal; + } + + /** + * 字段名称 :加价总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddTotal(Double addTotal) { + this.addTotal = addTotal; + } + + /** + * 字段名称 :折后总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountAddTotal() { + return this.discountAddTotal; + } + + /** + * 字段名称 :折后总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountAddTotal(Double discountAddTotal) { + this.discountAddTotal = discountAddTotal; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StorePay.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StorePay.java new file mode 100644 index 0000000..a6d9b59 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StorePay.java @@ -0,0 +1,847 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店收银流水 + * 表代码:cy_store_pay + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StorePay") +public class StorePay extends BaseEntity { + + private static final long serialVersionUID = 1147575752953188376L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *付款单号 + */ + private String payNo; + + /** + *销售单ID + */ + private String ticketId; + + /** + *销售单号 + */ + private String busNo; + + /** + *营业模式 + */ + private Integer busMode; + + /** + *餐桌号 + */ + private String tableNo; + + /** + *付款方式编号 + */ + private String payTypeNo; + + /** + *付款方式 + */ + private String payType; + + /** + *实收金额 + */ + private Double paid; + + /** + *找零金额 + */ + private Double rchange; + + /** + *已收金额 + */ + private Double money; + + /** + *溢出金额 + */ + private Double overAmount; + + /** + *操作员工号 + */ + private String workNo; + + /** + *收银设备 + */ + private String deviceName; + + /** + *设备MAC + */ + private String deviceMac; + + /** + *设备IP + */ + private String deviceIp; + + /** + *设备编号 + */ + private String posNo; + + /** + *凭证号 + */ + private String voucherNo; + + /** + *付款时间 + */ + private Date payDate; + + /** + *付款卡号 + */ + private String cardno; + + /** + *充值卡支付前余额 + */ + private Double cardYe; + + /** + *充值卡支付前积分 + */ + private Double cardJf; + + /** + *是否实收 + */ + private Integer incomeFlag; + + /** + *第三方扣费类型 + */ + private Integer otherRateType; + + /** + *第三方扣费值 + */ + private Double otherRateValue; + + /** + *第三方扣费 + */ + private Double otherRate; + + /** + *支付渠道 + */ + private Integer payChannel; + + /** + *备注 + */ + private String memo; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *桌台名称 + */ + private String tableName; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :付款单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPayNo() { + return this.payNo; + } + + /** + * 字段名称 :付款单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPayNo(String payNo) { + this.payNo = payNo; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBusMode() { + return this.busMode; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public void setBusMode(Integer busMode) { + this.busMode = busMode; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTableNo() { + return this.tableNo; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTableNo(String tableNo) { + this.tableNo = tableNo; + } + + /** + * 字段名称 :付款方式编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPayTypeNo() { + return this.payTypeNo; + } + + /** + * 字段名称 :付款方式编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPayTypeNo(String payTypeNo) { + this.payTypeNo = payTypeNo; + } + + /** + * 字段名称 :付款方式 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPayType() { + return this.payType; + } + + /** + * 字段名称 :付款方式 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPayType(String payType) { + this.payType = payType; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPaid() { + return this.paid; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPaid(Double paid) { + this.paid = paid; + } + + /** + * 字段名称 :找零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getRchange() { + return this.rchange; + } + + /** + * 字段名称 :找零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setRchange(Double rchange) { + this.rchange = rchange; + } + + /** + * 字段名称 :已收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :已收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :溢出金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getOverAmount() { + return this.overAmount; + } + + /** + * 字段名称 :溢出金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setOverAmount(Double overAmount) { + this.overAmount = overAmount; + } + + /** + * 字段名称 :操作员工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getWorkNo() { + return this.workNo; + } + + /** + * 字段名称 :操作员工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setWorkNo(String workNo) { + this.workNo = workNo; + } + + /** + * 字段名称 :收银设备 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDeviceName() { + return this.deviceName; + } + + /** + * 字段名称 :收银设备 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDeviceName(String deviceName) { + this.deviceName = deviceName; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public String getDeviceMac() { + return this.deviceMac; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public void setDeviceMac(String deviceMac) { + this.deviceMac = deviceMac; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeviceIp() { + return this.deviceIp; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeviceIp(String deviceIp) { + this.deviceIp = deviceIp; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :凭证号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getVoucherNo() { + return this.voucherNo; + } + + /** + * 字段名称 :凭证号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setVoucherNo(String voucherNo) { + this.voucherNo = voucherNo; + } + + /** + * 字段名称 :付款时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getPayDate() { + return this.payDate; + } + + /** + * 字段名称 :付款时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setPayDate(Date payDate) { + this.payDate = payDate; + } + + /** + * 字段名称 :付款卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCardno() { + return this.cardno; + } + + /** + * 字段名称 :付款卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCardno(String cardno) { + this.cardno = cardno; + } + + /** + * 字段名称 :充值卡支付前余额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCardYe() { + return this.cardYe; + } + + /** + * 字段名称 :充值卡支付前余额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCardYe(Double cardYe) { + this.cardYe = cardYe; + } + + /** + * 字段名称 :充值卡支付前积分 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCardJf() { + return this.cardJf; + } + + /** + * 字段名称 :充值卡支付前积分 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCardJf(Double cardJf) { + this.cardJf = cardJf; + } + + /** + * 字段名称 :是否实收 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIncomeFlag() { + return this.incomeFlag; + } + + /** + * 字段名称 :是否实收 + * 数据类型 :int + * 是否必填 :false + */ + public void setIncomeFlag(Integer incomeFlag) { + this.incomeFlag = incomeFlag; + } + + /** + * 字段名称 :第三方扣费类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOtherRateType() { + return this.otherRateType; + } + + /** + * 字段名称 :第三方扣费类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setOtherRateType(Integer otherRateType) { + this.otherRateType = otherRateType; + } + + /** + * 字段名称 :第三方扣费值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOtherRateValue() { + return this.otherRateValue; + } + + /** + * 字段名称 :第三方扣费值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOtherRateValue(Double otherRateValue) { + this.otherRateValue = otherRateValue; + } + + /** + * 字段名称 :第三方扣费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getOtherRate() { + return this.otherRate; + } + + /** + * 字段名称 :第三方扣费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setOtherRate(Double otherRate) { + this.otherRate = otherRate; + } + + /** + * 字段名称 :支付渠道 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPayChannel() { + return this.payChannel; + } + + /** + * 字段名称 :支付渠道 + * 数据类型 :int + * 是否必填 :false + */ + public void setPayChannel(Integer payChannel) { + this.payChannel = payChannel; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getMemo() { + return this.memo; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setMemo(String memo) { + this.memo = memo; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTableName() { + return this.tableName; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTableName(String tableName) { + this.tableName = tableName; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StorePayDaysummary.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StorePayDaysummary.java new file mode 100644 index 0000000..125d4df --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StorePayDaysummary.java @@ -0,0 +1,502 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:前台支付日汇总 + * 表代码:cy_store_pay_daysummary + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StorePayDaysummary") +public class StorePayDaysummary extends BaseEntity { + + private static final long serialVersionUID = 1165725899867098887L; + + /** + *日期 + */ + private Date summaryDay; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *营业模式 + */ + private Integer busMode; + + /** + *付款方式编号 + */ + private String payTypeNo; + + /** + *付款方式 + */ + private String payType; + + /** + *实收金额 + */ + private Double paid; + + /** + *找零金额 + */ + private Double rchange; + + /** + *已收金额 + */ + private Double money; + + /** + *溢出金额 + */ + private Double overAmount; + + /** + *操作员工号 + */ + private String workNo; + + /** + *设备编号 + */ + private String posNo; + + /** + *是否实收 + */ + private Integer incomeFlag; + + /** + *第三方扣费类型 + */ + private Integer otherRateType; + + /** + *第三方扣费值 + */ + private Double otherRateValue; + + /** + *第三方扣费 + */ + private Double otherRate; + + /** + *支付渠道 + */ + private Integer payChannel; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :日期 + * 数据类型 :date + * 是否必填 :false + */ + public Date getSummaryDay() { + return this.summaryDay; + } + + /** + * 字段名称 :日期 + * 数据类型 :date + * 是否必填 :false + */ + public void setSummaryDay(Date summaryDay) { + this.summaryDay = summaryDay; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBusMode() { + return this.busMode; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public void setBusMode(Integer busMode) { + this.busMode = busMode; + } + + /** + * 字段名称 :付款方式编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPayTypeNo() { + return this.payTypeNo; + } + + /** + * 字段名称 :付款方式编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPayTypeNo(String payTypeNo) { + this.payTypeNo = payTypeNo; + } + + /** + * 字段名称 :付款方式 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPayType() { + return this.payType; + } + + /** + * 字段名称 :付款方式 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPayType(String payType) { + this.payType = payType; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPaid() { + return this.paid; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPaid(Double paid) { + this.paid = paid; + } + + /** + * 字段名称 :找零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getRchange() { + return this.rchange; + } + + /** + * 字段名称 :找零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setRchange(Double rchange) { + this.rchange = rchange; + } + + /** + * 字段名称 :已收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :已收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :溢出金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getOverAmount() { + return this.overAmount; + } + + /** + * 字段名称 :溢出金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setOverAmount(Double overAmount) { + this.overAmount = overAmount; + } + + /** + * 字段名称 :操作员工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getWorkNo() { + return this.workNo; + } + + /** + * 字段名称 :操作员工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setWorkNo(String workNo) { + this.workNo = workNo; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :是否实收 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIncomeFlag() { + return this.incomeFlag; + } + + /** + * 字段名称 :是否实收 + * 数据类型 :int + * 是否必填 :false + */ + public void setIncomeFlag(Integer incomeFlag) { + this.incomeFlag = incomeFlag; + } + + /** + * 字段名称 :第三方扣费类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOtherRateType() { + return this.otherRateType; + } + + /** + * 字段名称 :第三方扣费类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setOtherRateType(Integer otherRateType) { + this.otherRateType = otherRateType; + } + + /** + * 字段名称 :第三方扣费值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOtherRateValue() { + return this.otherRateValue; + } + + /** + * 字段名称 :第三方扣费值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOtherRateValue(Double otherRateValue) { + this.otherRateValue = otherRateValue; + } + + /** + * 字段名称 :第三方扣费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getOtherRate() { + return this.otherRate; + } + + /** + * 字段名称 :第三方扣费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setOtherRate(Double otherRate) { + this.otherRate = otherRate; + } + + /** + * 字段名称 :支付渠道 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPayChannel() { + return this.payChannel; + } + + /** + * 字段名称 :支付渠道 + * 数据类型 :int + * 是否必填 :false + */ + public void setPayChannel(Integer payChannel) { + this.payChannel = payChannel; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreProduct.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreProduct.java new file mode 100644 index 0000000..ffc80c0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreProduct.java @@ -0,0 +1,502 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店商品关联表 + * 表代码:cy_store_product + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreProduct") +public class StoreProduct extends BaseEntity { + + private static final long serialVersionUID = 1016426733510674402L; + + /** + *门店ID + */ + private String storeId; + + /** + *商品ID + */ + private String productId; + + /** + *规格ID + */ + private String specId; + + /** + *单位ID + */ + private String productUnitId; + + /** + *类别ID + */ + private String typeId; + + /** + *类别路径 + */ + private String typePath; + + /** + *零售价 + */ + private Double price; + + /** + *最低售价 + */ + private Double minPrice; + + /** + *会员价 + */ + private Double memberPrice; + + /** + *第三方价 + */ + private Double otherPrice; + + /** + *成本价 + */ + private Double costPrice; + + /** + *采购参考价 + */ + private Double purchasePrice; + + /** + *批发参考价 + */ + private Double dispatchPrice; + + /** + *理论万元用量 + */ + private Double thUseLevel; + + /** + *实际万元用量 + */ + private Double realThUseLevel; + + /** + *单项成本 + */ + private Double cost; + + /** + *在线售价 + */ + private Double wprice; + + /** + *在线会员价 + */ + private Double wmemberPrice; + + /** + *库存总数量 + */ + private Double totalStock; + + /** + *已出售数量 + */ + private Double saleStock; + + /** + *剩余数量 + */ + private Double stock; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :单位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductUnitId() { + return this.productUnitId; + } + + /** + * 字段名称 :单位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductUnitId(String productUnitId) { + this.productUnitId = productUnitId; + } + + /** + * 字段名称 :类别ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getTypePath() { + return this.typePath; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setTypePath(String typePath) { + this.typePath = typePath; + } + + /** + * 字段名称 :零售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :零售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :最低售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMinPrice() { + return this.minPrice; + } + + /** + * 字段名称 :最低售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMinPrice(Double minPrice) { + this.minPrice = minPrice; + } + + /** + * 字段名称 :会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMemberPrice() { + return this.memberPrice; + } + + /** + * 字段名称 :会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMemberPrice(Double memberPrice) { + this.memberPrice = memberPrice; + } + + /** + * 字段名称 :第三方价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOtherPrice() { + return this.otherPrice; + } + + /** + * 字段名称 :第三方价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOtherPrice(Double otherPrice) { + this.otherPrice = otherPrice; + } + + /** + * 字段名称 :成本价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getCostPrice() { + return this.costPrice; + } + + /** + * 字段名称 :成本价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setCostPrice(Double costPrice) { + this.costPrice = costPrice; + } + + /** + * 字段名称 :采购参考价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPurchasePrice() { + return this.purchasePrice; + } + + /** + * 字段名称 :采购参考价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPurchasePrice(Double purchasePrice) { + this.purchasePrice = purchasePrice; + } + + /** + * 字段名称 :批发参考价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDispatchPrice() { + return this.dispatchPrice; + } + + /** + * 字段名称 :批发参考价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDispatchPrice(Double dispatchPrice) { + this.dispatchPrice = dispatchPrice; + } + + /** + * 字段名称 :理论万元用量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getThUseLevel() { + return this.thUseLevel; + } + + /** + * 字段名称 :理论万元用量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setThUseLevel(Double thUseLevel) { + this.thUseLevel = thUseLevel; + } + + /** + * 字段名称 :实际万元用量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getRealThUseLevel() { + return this.realThUseLevel; + } + + /** + * 字段名称 :实际万元用量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setRealThUseLevel(Double realThUseLevel) { + this.realThUseLevel = realThUseLevel; + } + + /** + * 字段名称 :单项成本 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCost() { + return this.cost; + } + + /** + * 字段名称 :单项成本 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCost(Double cost) { + this.cost = cost; + } + + /** + * 字段名称 :在线售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getWprice() { + return this.wprice; + } + + /** + * 字段名称 :在线售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setWprice(Double wprice) { + this.wprice = wprice; + } + + /** + * 字段名称 :在线会员价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getWmemberPrice() { + return this.wmemberPrice; + } + + /** + * 字段名称 :在线会员价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setWmemberPrice(Double wmemberPrice) { + this.wmemberPrice = wmemberPrice; + } + + /** + * 字段名称 :库存总数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTotalStock() { + return this.totalStock; + } + + /** + * 字段名称 :库存总数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTotalStock(Double totalStock) { + this.totalStock = totalStock; + } + + /** + * 字段名称 :已出售数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getSaleStock() { + return this.saleStock; + } + + /** + * 字段名称 :已出售数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setSaleStock(Double saleStock) { + this.saleStock = saleStock; + } + + /** + * 字段名称 :剩余数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getStock() { + return this.stock; + } + + /** + * 字段名称 :剩余数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setStock(Double stock) { + this.stock = stock; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreProductSaleStock.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreProductSaleStock.java new file mode 100644 index 0000000..d861e10 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreProductSaleStock.java @@ -0,0 +1,502 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店商品规格库存 + * 表代码:cy_store_product_sale_stock + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreProductSaleStock") +public class StoreProductSaleStock extends BaseEntity { + + private static final long serialVersionUID = 1138369773695866191L; + + /** + *大类ID + */ + private String seriesId; + + /** + *大类名称 + */ + private String seriesName; + + /** + *类别路径 + */ + private String typePath; + + /** + *类别ID + */ + private String typeId; + + /** + *类别名 + */ + private String typeName; + + /** + *商品ID + */ + private String productId; + + /** + *商品编号 + */ + private String productNo; + + /** + *商品名称 + */ + private String productName; + + /** + *商品规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String sepcName; + + /** + *产品单位 + */ + private String productUnitId; + + /** + *产品单位名 + */ + private String productUnitName; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *库存总数量 + */ + private Double totalStock; + + /** + *已出售数量 + */ + private Double saleStock; + + /** + *剩余数量 + */ + private Double stock; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :大类ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSeriesId() { + return this.seriesId; + } + + /** + * 字段名称 :大类ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSeriesId(String seriesId) { + this.seriesId = seriesId; + } + + /** + * 字段名称 :大类名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getSeriesName() { + return this.seriesName; + } + + /** + * 字段名称 :大类名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setSeriesName(String seriesName) { + this.seriesName = seriesName; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getTypePath() { + return this.typePath; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setTypePath(String typePath) { + this.typePath = typePath; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTypeName() { + return this.typeName; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :商品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :商品规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSepcName() { + return this.sepcName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSepcName(String sepcName) { + this.sepcName = sepcName; + } + + /** + * 字段名称 :产品单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductUnitId() { + return this.productUnitId; + } + + /** + * 字段名称 :产品单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductUnitId(String productUnitId) { + this.productUnitId = productUnitId; + } + + /** + * 字段名称 :产品单位名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductUnitName() { + return this.productUnitName; + } + + /** + * 字段名称 :产品单位名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductUnitName(String productUnitName) { + this.productUnitName = productUnitName; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :库存总数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTotalStock() { + return this.totalStock; + } + + /** + * 字段名称 :库存总数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTotalStock(Double totalStock) { + this.totalStock = totalStock; + } + + /** + * 字段名称 :已出售数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getSaleStock() { + return this.saleStock; + } + + /** + * 字段名称 :已出售数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setSaleStock(Double saleStock) { + this.saleStock = saleStock; + } + + /** + * 字段名称 :剩余数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getStock() { + return this.stock; + } + + /** + * 字段名称 :剩余数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setStock(Double stock) { + this.stock = stock; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStockCheckTemplate.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStockCheckTemplate.java new file mode 100644 index 0000000..de33a57 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStockCheckTemplate.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:总部门店库存盘点模板 + * 表代码:cy_store_stock_check_template + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreStockCheckTemplate") +public class StoreStockCheckTemplate extends BaseEntity { + + private static final long serialVersionUID = 1279000726832851043L; + + /** + *编号 + */ + private String no; + + /** + *名称 + */ + private String name; + + /** + *备注信息 + */ + private String description; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStockCheckTemplateDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStockCheckTemplateDetail.java new file mode 100644 index 0000000..7fb2061 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStockCheckTemplateDetail.java @@ -0,0 +1,226 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:总部门店库存盘点模块明细 + * 表代码:cy_store_stock_check_template_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreStockCheckTemplateDetail") +public class StoreStockCheckTemplateDetail extends BaseEntity { + + private static final long serialVersionUID = 1877898817711171745L; + + /** + *盘点模板ID + */ + private String ticketId; + + /** + *商品ID + */ + private String productId; + + /** + *商品编号 + */ + private String productNo; + + /** + *商品名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *商品说明 + */ + private String productDescription; + + /** + *库存单位ID + */ + private String stockUnitId; + + /** + *库存单位名称 + */ + private String stockUnitName; + + + /** + * 字段名称 :盘点模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :盘点模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :商品说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :商品说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :库存单位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStockUnitId() { + return this.stockUnitId; + } + + /** + * 字段名称 :库存单位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStockUnitId(String stockUnitId) { + this.stockUnitId = stockUnitId; + } + + /** + * 字段名称 :库存单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStockUnitName() { + return this.stockUnitName; + } + + /** + * 字段名称 :库存单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStockUnitName(String stockUnitName) { + this.stockUnitName = stockUnitName; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStockCheckTemplateStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStockCheckTemplateStore.java new file mode 100644 index 0000000..5ed36e5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStockCheckTemplateStore.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:总部门店库存盘点模板门店关联 + * 表代码:cy_store_stock_check_template_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreStockCheckTemplateStore") +public class StoreStockCheckTemplateStore extends BaseEntity { + + private static final long serialVersionUID = 1035080350145760218L; + + /** + *门店ID + */ + private String storeId; + + /** + *总部门店库存盘点模板ID + */ + private String ticketId; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :总部门店库存盘点模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :总部门店库存盘点模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStockCheckTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStockCheckTicket.java new file mode 100644 index 0000000..32323cc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStockCheckTicket.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店库存盘点单 + * 表代码:cy_store_stock_check_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreStockCheckTicket") +public class StoreStockCheckTicket extends BaseEntity { + + private static final long serialVersionUID = 1656077481872459217L; + + /** + *门店ID + */ + private String storeId; + + /** + *单据编号 + */ + private String no; + + /** + *单据状态 + */ + private Integer status; + + /** + *备注信息 + */ + private String description; + + /** + *制单人 + */ + private String setMan; + + /** + *制单日期 + */ + private Date setDate; + + /** + *审核人 + */ + private String checkMan; + + /** + *审核日期 + */ + private Date checkDate; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetMan() { + return this.setMan; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetMan(String setMan) { + this.setMan = setMan; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSetDate() { + return this.setDate; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSetDate(Date setDate) { + this.setDate = setDate; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCheckMan() { + return this.checkMan; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCheckMan(String checkMan) { + this.checkMan = checkMan; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckDate() { + return this.checkDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckDate(Date checkDate) { + this.checkDate = checkDate; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStockCheckTicketDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStockCheckTicketDetail.java new file mode 100644 index 0000000..21dd4f6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStockCheckTicketDetail.java @@ -0,0 +1,456 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店库存盘点单明细 + * 表代码:cy_store_stock_check_ticket_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreStockCheckTicketDetail") +public class StoreStockCheckTicketDetail extends BaseEntity { + + private static final long serialVersionUID = 1409733798080805229L; + + /** + *盘点单Id + */ + private String ticketId; + + /** + *仓库ID + */ + private String storageId; + + /** + *仓库名称 + */ + private String storageName; + + /** + *商品ID + */ + private String productId; + + /** + *商品编号 + */ + private String productNo; + + /** + *商品名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *商品说明 + */ + private String productDescription; + + /** + *库存单位ID + */ + private String stockUnitId; + + /** + *库存单位名称 + */ + private String stockUnitName; + + /** + *系统价格 + */ + private Double sysPrice; + + /** + *系统数量 + */ + private Double sysAmount; + + /** + *盘点数量 + */ + private Double checkAmount; + + /** + *差异数量 + */ + private Double differenceAmount; + + /** + *系统金额 + */ + private Double sysMoney; + + /** + *盘点金额 + */ + private Double checkMoney; + + /** + *差异金额 + */ + private Double differenceMoney; + + /** + *备注说明 + */ + private String description; + + + /** + * 字段名称 :盘点单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :盘点单Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStorageName() { + return this.storageName; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStorageName(String storageName) { + this.storageName = storageName; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :商品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :商品说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :商品说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :库存单位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStockUnitId() { + return this.stockUnitId; + } + + /** + * 字段名称 :库存单位ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStockUnitId(String stockUnitId) { + this.stockUnitId = stockUnitId; + } + + /** + * 字段名称 :库存单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStockUnitName() { + return this.stockUnitName; + } + + /** + * 字段名称 :库存单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStockUnitName(String stockUnitName) { + this.stockUnitName = stockUnitName; + } + + /** + * 字段名称 :系统价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getSysPrice() { + return this.sysPrice; + } + + /** + * 字段名称 :系统价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setSysPrice(Double sysPrice) { + this.sysPrice = sysPrice; + } + + /** + * 字段名称 :系统数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getSysAmount() { + return this.sysAmount; + } + + /** + * 字段名称 :系统数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setSysAmount(Double sysAmount) { + this.sysAmount = sysAmount; + } + + /** + * 字段名称 :盘点数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCheckAmount() { + return this.checkAmount; + } + + /** + * 字段名称 :盘点数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCheckAmount(Double checkAmount) { + this.checkAmount = checkAmount; + } + + /** + * 字段名称 :差异数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDifferenceAmount() { + return this.differenceAmount; + } + + /** + * 字段名称 :差异数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDifferenceAmount(Double differenceAmount) { + this.differenceAmount = differenceAmount; + } + + /** + * 字段名称 :系统金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getSysMoney() { + return this.sysMoney; + } + + /** + * 字段名称 :系统金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setSysMoney(Double sysMoney) { + this.sysMoney = sysMoney; + } + + /** + * 字段名称 :盘点金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCheckMoney() { + return this.checkMoney; + } + + /** + * 字段名称 :盘点金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCheckMoney(Double checkMoney) { + this.checkMoney = checkMoney; + } + + /** + * 字段名称 :差异金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDifferenceMoney() { + return this.differenceMoney; + } + + /** + * 字段名称 :差异金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDifferenceMoney(Double differenceMoney) { + this.differenceMoney = differenceMoney; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStockCheckTicketLog.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStockCheckTicketLog.java new file mode 100644 index 0000000..7eee628 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStockCheckTicketLog.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店库存盘点单操作记录 + * 表代码:cy_store_stock_check_ticket_log + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreStockCheckTicketLog") +public class StoreStockCheckTicketLog extends BaseEntity { + + private static final long serialVersionUID = 1864751694817021313L; + + /** + *主单ID + */ + private String ticketId; + + /** + *主单编号 + */ + private String ticketNo; + + /** + *操作类型 + */ + private Integer type; + + /** + *操作状态 + */ + private Integer status; + + /** + *描述 + */ + private String description; + + + /** + * 字段名称 :主单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :主单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :主单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :主单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStorage.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStorage.java new file mode 100644 index 0000000..5f2ff69 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStorage.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店仓库 + * 表代码:cy_store_storage + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreStorage") +public class StoreStorage extends BaseEntity { + + private static final long serialVersionUID = 1571657452574992223L; + + /** + *名称 + */ + private String name; + + /** + *编号 + */ + private String no; + + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStorageOutTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStorageOutTicket.java new file mode 100644 index 0000000..583c1f6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStorageOutTicket.java @@ -0,0 +1,318 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店出库单 + * 表代码:cy_store_storage_out_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreStorageOutTicket") +public class StoreStorageOutTicket extends BaseEntity { + + private static final long serialVersionUID = 1499677266491143249L; + + /** + *单据编号 + */ + private String no; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *出库类型 + */ + private Integer type; + + /** + *仓库ID + */ + private String storageId; + + /** + *仓库名称 + */ + private String storageName; + + /** + *备注信息 + */ + private String description; + + /** + *单据状态 + */ + private Integer status; + + /** + *制单人 + */ + private String setMan; + + /** + *制单日期 + */ + private Date setDate; + + /** + *审核人 + */ + private String checkMan; + + /** + *审核日期 + */ + private Date checkDate; + + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :出库类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :出库类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStorageName() { + return this.storageName; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStorageName(String storageName) { + this.storageName = storageName; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetMan() { + return this.setMan; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetMan(String setMan) { + this.setMan = setMan; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSetDate() { + return this.setDate; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSetDate(Date setDate) { + this.setDate = setDate; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCheckMan() { + return this.checkMan; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCheckMan(String checkMan) { + this.checkMan = checkMan; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckDate() { + return this.checkDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckDate(Date checkDate) { + this.checkDate = checkDate; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStorageOutTicketDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStorageOutTicketDetail.java new file mode 100644 index 0000000..446199e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStorageOutTicketDetail.java @@ -0,0 +1,341 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店出库单明细 + * 表代码:cy_store_storage_out_ticket_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreStorageOutTicketDetail") +public class StoreStorageOutTicketDetail extends BaseEntity { + + private static final long serialVersionUID = 1923687425377055931L; + + /** + *主单ID + */ + private String ticketId; + + /** + *主单编号 + */ + private String ticketNo; + + /** + *原料ID + */ + private String productId; + + /** + *原料编号 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *库存单位 + */ + private String stockUnitId; + + /** + *库存单位名称 + */ + private String stockUnitName; + + /** + *出库数量 + */ + private Double amount; + + /** + *价格 + */ + private Double price; + + /** + *金额 + */ + private Double money; + + /** + *备注说明 + */ + private String description; + + + /** + * 字段名称 :主单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :主单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :主单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :主单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStockUnitId() { + return this.stockUnitId; + } + + /** + * 字段名称 :库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStockUnitId(String stockUnitId) { + this.stockUnitId = stockUnitId; + } + + /** + * 字段名称 :库存单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStockUnitName() { + return this.stockUnitName; + } + + /** + * 字段名称 :库存单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStockUnitName(String stockUnitName) { + this.stockUnitName = stockUnitName; + } + + /** + * 字段名称 :出库数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :出库数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStorageOutTicketLog.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStorageOutTicketLog.java new file mode 100644 index 0000000..92c73a2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStorageOutTicketLog.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店出库单操作记录 + * 表代码:cy_store_storage_out_ticket_log + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreStorageOutTicketLog") +public class StoreStorageOutTicketLog extends BaseEntity { + + private static final long serialVersionUID = 1552213450760448851L; + + /** + *主单ID + */ + private String ticketId; + + /** + *主单编号 + */ + private String ticketNo; + + /** + *操作类型 + */ + private Integer type; + + /** + *操作状态 + */ + private Integer status; + + /** + *描述 + */ + private String description; + + + /** + * 字段名称 :主单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :主单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :主单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :主单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStorageTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStorageTicket.java new file mode 100644 index 0000000..02a8007 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStorageTicket.java @@ -0,0 +1,318 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店入库单 + * 表代码:cy_store_storage_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreStorageTicket") +public class StoreStorageTicket extends BaseEntity { + + private static final long serialVersionUID = 1190530738183019781L; + + /** + *单据编号 + */ + private String no; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *入库类型 + */ + private Integer type; + + /** + *仓库ID + */ + private String storageId; + + /** + *仓库名称 + */ + private String storageName; + + /** + *备注信息 + */ + private String description; + + /** + *单据状态 + */ + private Integer status; + + /** + *制单人 + */ + private String setMan; + + /** + *制单日期 + */ + private Date setDate; + + /** + *审核人 + */ + private String checkMan; + + /** + *审核日期 + */ + private Date checkDate; + + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :入库类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :入库类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStorageId() { + return this.storageId; + } + + /** + * 字段名称 :仓库ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStorageId(String storageId) { + this.storageId = storageId; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStorageName() { + return this.storageName; + } + + /** + * 字段名称 :仓库名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStorageName(String storageName) { + this.storageName = storageName; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetMan() { + return this.setMan; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetMan(String setMan) { + this.setMan = setMan; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSetDate() { + return this.setDate; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSetDate(Date setDate) { + this.setDate = setDate; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCheckMan() { + return this.checkMan; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCheckMan(String checkMan) { + this.checkMan = checkMan; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckDate() { + return this.checkDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckDate(Date checkDate) { + this.checkDate = checkDate; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStorageTicketDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStorageTicketDetail.java new file mode 100644 index 0000000..2a1e180 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStorageTicketDetail.java @@ -0,0 +1,341 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店入库单明细 + * 表代码:cy_store_storage_ticket_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreStorageTicketDetail") +public class StoreStorageTicketDetail extends BaseEntity { + + private static final long serialVersionUID = 1111176910268973756L; + + /** + *主单ID + */ + private String ticketId; + + /** + *主单编号 + */ + private String ticketNo; + + /** + *原料ID + */ + private String productId; + + /** + *原料编号 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *库存单位 + */ + private String stockUnitId; + + /** + *库存单位名称 + */ + private String stockUnitName; + + /** + *入库数量 + */ + private Double amount; + + /** + *价格 + */ + private Double price; + + /** + *金额 + */ + private Double money; + + /** + *备注说明 + */ + private String description; + + + /** + * 字段名称 :主单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :主单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :主单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :主单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStockUnitId() { + return this.stockUnitId; + } + + /** + * 字段名称 :库存单位 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStockUnitId(String stockUnitId) { + this.stockUnitId = stockUnitId; + } + + /** + * 字段名称 :库存单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStockUnitName() { + return this.stockUnitName; + } + + /** + * 字段名称 :库存单位名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStockUnitName(String stockUnitName) { + this.stockUnitName = stockUnitName; + } + + /** + * 字段名称 :入库数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :入库数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :价格 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStorageTicketLog.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStorageTicketLog.java new file mode 100644 index 0000000..21523ab --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreStorageTicketLog.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店入库单操作记录 + * 表代码:cy_store_storage_ticket_log + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreStorageTicketLog") +public class StoreStorageTicketLog extends BaseEntity { + + private static final long serialVersionUID = 1411485436168775997L; + + /** + *主单ID + */ + private String ticketId; + + /** + *主单编号 + */ + private String ticketNo; + + /** + *操作类型 + */ + private Integer type; + + /** + *操作状态 + */ + private Integer status; + + /** + *描述 + */ + private String description; + + + /** + * 字段名称 :主单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :主单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :主单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :主单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreType.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreType.java new file mode 100644 index 0000000..355ba4e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreType.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店类型 + * 表代码:cy_store_type + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreType") +public class StoreType extends BaseEntity { + + private static final long serialVersionUID = 1148400367709554687L; + + /** + *分类编号 + */ + private String no; + + /** + *分类名称 + */ + private String name; + + /** + *标识符 + */ + private String sign; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :分类编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :分类编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :分类名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :分类名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :标识符 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSign() { + return this.sign; + } + + /** + * 字段名称 :标识符 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSign(String sign) { + this.sign = sign; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreWorker.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreWorker.java new file mode 100644 index 0000000..675fe9b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreWorker.java @@ -0,0 +1,341 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店员工管理 + * 表代码:cy_store_worker + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreWorker") +public class StoreWorker extends BaseEntity { + + private static final long serialVersionUID = 1958236881562051966L; + + /** + *门店ID + */ + private String storeId; + + /** + *部门ID + */ + private String departmentId; + + /** + *人员工号 + */ + private String no; + + /** + *人员姓名 + */ + private String name; + + /** + *性别 + */ + private Integer sex; + + /** + *出生日期 + */ + private Date birthday; + + /** + *邮箱 + */ + private String email; + + /** + *手机 + */ + private String mobile; + + /** + *是否登陆后台 + */ + private Integer isAdmin; + + /** + *登录密码 + */ + private String passwd; + + /** + *是否启用 + */ + private Integer enabled; + + /** + *备注 + */ + private String description; + + /** + *删除标识 + */ + private Integer deleteFlag; + + /** + *编号类型 + */ + private Integer noType; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :部门ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getDepartmentId() { + return this.departmentId; + } + + /** + * 字段名称 :部门ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setDepartmentId(String departmentId) { + this.departmentId = departmentId; + } + + /** + * 字段名称 :人员工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :人员工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :人员姓名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :人员姓名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :性别 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSex() { + return this.sex; + } + + /** + * 字段名称 :性别 + * 数据类型 :int + * 是否必填 :false + */ + public void setSex(Integer sex) { + this.sex = sex; + } + + /** + * 字段名称 :出生日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getBirthday() { + return this.birthday; + } + + /** + * 字段名称 :出生日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setBirthday(Date birthday) { + this.birthday = birthday; + } + + /** + * 字段名称 :邮箱 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getEmail() { + return this.email; + } + + /** + * 字段名称 :邮箱 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setEmail(String email) { + this.email = email; + } + + /** + * 字段名称 :手机 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getMobile() { + return this.mobile; + } + + /** + * 字段名称 :手机 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setMobile(String mobile) { + this.mobile = mobile; + } + + /** + * 字段名称 :是否登陆后台 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsAdmin() { + return this.isAdmin; + } + + /** + * 字段名称 :是否登陆后台 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsAdmin(Integer isAdmin) { + this.isAdmin = isAdmin; + } + + /** + * 字段名称 :登录密码 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getPasswd() { + return this.passwd; + } + + /** + * 字段名称 :登录密码 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setPasswd(String passwd) { + this.passwd = passwd; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnabled() { + return this.enabled; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setEnabled(Integer enabled) { + this.enabled = enabled; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + + /** + * 字段名称 :编号类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getNoType() { + return this.noType; + } + + /** + * 字段名称 :编号类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setNoType(Integer noType) { + this.noType = noType; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreWorkerExt.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreWorkerExt.java new file mode 100644 index 0000000..cca0471 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreWorkerExt.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店员工扩展信息 + * 表代码:cy_store_worker_ext + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreWorkerExt") +public class StoreWorkerExt extends BaseEntity { + + private static final long serialVersionUID = 1769267829562341155L; + + /** + *员工ID + */ + private String workerId; + + /** + *员工工号 + */ + private String workerNo; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *登录密码 + */ + private String passwd; + + /** + *备注 + */ + private String description; + + + /** + * 字段名称 :员工ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getWorkerId() { + return this.workerId; + } + + /** + * 字段名称 :员工ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setWorkerId(String workerId) { + this.workerId = workerId; + } + + /** + * 字段名称 :员工工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getWorkerNo() { + return this.workerNo; + } + + /** + * 字段名称 :员工工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setWorkerNo(String workerNo) { + this.workerNo = workerNo; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :登录密码 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getPasswd() { + return this.passwd; + } + + /** + * 字段名称 :登录密码 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setPasswd(String passwd) { + this.passwd = passwd; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreWorkerRole.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreWorkerRole.java new file mode 100644 index 0000000..a60f47a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoreWorkerRole.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:员工前台角色表 + * 表代码:cy_store_worker_role + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoreWorkerRole") +public class StoreWorkerRole extends BaseEntity { + + private static final long serialVersionUID = 1562585648520156265L; + + /** + *员工ID + */ + private String workerId; + + /** + *角色ID + */ + private String roleId; + + + /** + * 字段名称 :员工ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getWorkerId() { + return this.workerId; + } + + /** + * 字段名称 :员工ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setWorkerId(String workerId) { + this.workerId = workerId; + } + + /** + * 字段名称 :角色ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getRoleId() { + return this.roleId; + } + + /** + * 字段名称 :角色ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setRoleId(String roleId) { + this.roleId = roleId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Storetable.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Storetable.java new file mode 100644 index 0000000..eb51975 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Storetable.java @@ -0,0 +1,226 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:餐桌资料 + * 表代码:cy_storetable + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"Storetable") +public class Storetable extends BaseEntity { + + private static final long serialVersionUID = 1015549357952271116L; + + /** + *门店ID + */ + private String storeId; + + /** + *区域ID + */ + private String areaId; + + /** + *类型ID + */ + private String typeId; + + /** + *编号 + */ + private String no; + + /** + *名称 + */ + private String name; + + /** + *人数 + */ + private Integer number; + + /** + *删除标识 + */ + private Integer deleteFlag; + + /** + *别名 + */ + private String aliasName; + + /** + *备注 + */ + private String description; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :区域ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getAreaId() { + return this.areaId; + } + + /** + * 字段名称 :区域ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setAreaId(String areaId) { + this.areaId = areaId; + } + + /** + * 字段名称 :类型ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类型ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :人数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getNumber() { + return this.number; + } + + /** + * 字段名称 :人数 + * 数据类型 :int + * 是否必填 :false + */ + public void setNumber(Integer number) { + this.number = number; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + + /** + * 字段名称 :别名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getAliasName() { + return this.aliasName; + } + + /** + * 字段名称 :别名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setAliasName(String aliasName) { + this.aliasName = aliasName; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoretableArea.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoretableArea.java new file mode 100644 index 0000000..ffee041 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoretableArea.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:餐桌区域 + * 表代码:cy_storetable_area + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoretableArea") +public class StoretableArea extends BaseEntity { + + private static final long serialVersionUID = 1718186438932070081L; + + /** + *编号 + */ + private String no; + + /** + *名称 + */ + private String name; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoretableType.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoretableType.java new file mode 100644 index 0000000..b4f6df6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/StoretableType.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:餐桌类型 + * 表代码:cy_storetable_type + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"StoretableType") +public class StoretableType extends BaseEntity { + + private static final long serialVersionUID = 1478510825822409119L; + + /** + *编号 + */ + private String no; + + /** + *名称 + */ + private String name; + + /** + *颜色 + */ + private String color; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :颜色 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getColor() { + return this.color; + } + + /** + * 字段名称 :颜色 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setColor(String color) { + this.color = color; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Supplier.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Supplier.java new file mode 100644 index 0000000..1d1340f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Supplier.java @@ -0,0 +1,410 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:供应商信息 + * 表代码:cy_supplier + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"Supplier") +public class Supplier extends BaseEntity { + + private static final long serialVersionUID = 1243831346813601955L; + + /** + *类别ID + */ + private String typeId; + + /** + *供应商编号 + */ + private String no; + + /** + *供应商名称 + */ + private String name; + + /** + *供应商简称 + */ + private String shortName; + + /** + *单位性质 + */ + private String enterpriseNature; + + /** + *状态 + */ + private Integer status; + + /** + *地址 + */ + private String address; + + /** + *联系人 + */ + private String linkMan; + + /** + *联系电话 + */ + private String mobile; + + /** + *传真 + */ + private String fax; + + /** + *邮编 + */ + private String code; + + /** + *电子邮箱 + */ + private String email; + + /** + *开户银行 + */ + private String depositBank; + + /** + *信誉等级 + */ + private String reputationLevel; + + /** + *银行账号 + */ + private String bankAccount; + + /** + *登记日期 + */ + private Date registerDate; + + /** + *备注描述 + */ + private String description; + + + /** + * 字段名称 :类别ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :供应商编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :供应商编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :供应商名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :供应商名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :供应商简称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getShortName() { + return this.shortName; + } + + /** + * 字段名称 :供应商简称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setShortName(String shortName) { + this.shortName = shortName; + } + + /** + * 字段名称 :单位性质 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getEnterpriseNature() { + return this.enterpriseNature; + } + + /** + * 字段名称 :单位性质 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setEnterpriseNature(String enterpriseNature) { + this.enterpriseNature = enterpriseNature; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :地址 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getAddress() { + return this.address; + } + + /** + * 字段名称 :地址 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setAddress(String address) { + this.address = address; + } + + /** + * 字段名称 :联系人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLinkMan() { + return this.linkMan; + } + + /** + * 字段名称 :联系人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLinkMan(String linkMan) { + this.linkMan = linkMan; + } + + /** + * 字段名称 :联系电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getMobile() { + return this.mobile; + } + + /** + * 字段名称 :联系电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setMobile(String mobile) { + this.mobile = mobile; + } + + /** + * 字段名称 :传真 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getFax() { + return this.fax; + } + + /** + * 字段名称 :传真 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setFax(String fax) { + this.fax = fax; + } + + /** + * 字段名称 :邮编 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getCode() { + return this.code; + } + + /** + * 字段名称 :邮编 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setCode(String code) { + this.code = code; + } + + /** + * 字段名称 :电子邮箱 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getEmail() { + return this.email; + } + + /** + * 字段名称 :电子邮箱 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setEmail(String email) { + this.email = email; + } + + /** + * 字段名称 :开户银行 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDepositBank() { + return this.depositBank; + } + + /** + * 字段名称 :开户银行 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDepositBank(String depositBank) { + this.depositBank = depositBank; + } + + /** + * 字段名称 :信誉等级 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getReputationLevel() { + return this.reputationLevel; + } + + /** + * 字段名称 :信誉等级 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setReputationLevel(String reputationLevel) { + this.reputationLevel = reputationLevel; + } + + /** + * 字段名称 :银行账号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBankAccount() { + return this.bankAccount; + } + + /** + * 字段名称 :银行账号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBankAccount(String bankAccount) { + this.bankAccount = bankAccount; + } + + /** + * 字段名称 :登记日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getRegisterDate() { + return this.registerDate; + } + + /** + * 字段名称 :登记日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setRegisterDate(Date registerDate) { + this.registerDate = registerDate; + } + + /** + * 字段名称 :备注描述 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注描述 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SupplierType.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SupplierType.java new file mode 100644 index 0000000..ca68af5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/SupplierType.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:供应商类别 + * 表代码:cy_supplier_type + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"SupplierType") +public class SupplierType extends BaseEntity { + + private static final long serialVersionUID = 1280431400230392162L; + + /** + *类别编号 + */ + private String no; + + /** + *类别名称 + */ + private String name; + + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :类别编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :类别名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :类别名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/TaskSchedule.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/TaskSchedule.java new file mode 100644 index 0000000..d82672d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/TaskSchedule.java @@ -0,0 +1,249 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:任务管理 + * 表代码:cy_task_schedule + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"TaskSchedule") +public class TaskSchedule extends BaseEntity { + + private static final long serialVersionUID = 1769081822363797137L; + + /** + *执行器标识 + */ + private String groupSign; + + /** + *标识 + */ + private String sign; + + /** + *任务描述 + */ + private String jobDesc; + + /** + *cron表达式 + */ + private String jobCron; + + /** + *执行器Handler + */ + private String executorHandler; + + /** + *执行参数 + */ + private String executorParam; + + /** + *报警邮件 + */ + private String alarmEmail; + + /** + *负责人 + */ + private String author; + + /** + *状态 + */ + private Integer status; + + /** + *描述 + */ + private String description; + + + /** + * 字段名称 :执行器标识 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getGroupSign() { + return this.groupSign; + } + + /** + * 字段名称 :执行器标识 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setGroupSign(String groupSign) { + this.groupSign = groupSign; + } + + /** + * 字段名称 :标识 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSign() { + return this.sign; + } + + /** + * 字段名称 :标识 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSign(String sign) { + this.sign = sign; + } + + /** + * 字段名称 :任务描述 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getJobDesc() { + return this.jobDesc; + } + + /** + * 字段名称 :任务描述 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setJobDesc(String jobDesc) { + this.jobDesc = jobDesc; + } + + /** + * 字段名称 :cron表达式 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getJobCron() { + return this.jobCron; + } + + /** + * 字段名称 :cron表达式 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setJobCron(String jobCron) { + this.jobCron = jobCron; + } + + /** + * 字段名称 :执行器Handler + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getExecutorHandler() { + return this.executorHandler; + } + + /** + * 字段名称 :执行器Handler + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setExecutorHandler(String executorHandler) { + this.executorHandler = executorHandler; + } + + /** + * 字段名称 :执行参数 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getExecutorParam() { + return this.executorParam; + } + + /** + * 字段名称 :执行参数 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setExecutorParam(String executorParam) { + this.executorParam = executorParam; + } + + /** + * 字段名称 :报警邮件 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getAlarmEmail() { + return this.alarmEmail; + } + + /** + * 字段名称 :报警邮件 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setAlarmEmail(String alarmEmail) { + this.alarmEmail = alarmEmail; + } + + /** + * 字段名称 :负责人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getAuthor() { + return this.author; + } + + /** + * 字段名称 :负责人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setAuthor(String author) { + this.author = author; + } + + /** + * 字段名称 :状态 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ThuselevelTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ThuselevelTicket.java new file mode 100644 index 0000000..5c1532f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ThuselevelTicket.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:万元用量管理 + * 表代码:cy_thuselevel_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ThuselevelTicket") +public class ThuselevelTicket extends BaseEntity { + + private static final long serialVersionUID = 1158913717493895386L; + + /** + *单据编号 + */ + private String no; + + /** + *单据状态 + */ + private Integer status; + + /** + *制单人 + */ + private String makeUser; + + /** + *制单日期 + */ + private Date makeDate; + + /** + *审核人 + */ + private String checkUser; + + /** + *审核日期 + */ + private Date checkDate; + + /** + *备注说明 + */ + private String description; + + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMakeUser() { + return this.makeUser; + } + + /** + * 字段名称 :制单人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMakeUser(String makeUser) { + this.makeUser = makeUser; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getMakeDate() { + return this.makeDate; + } + + /** + * 字段名称 :制单日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setMakeDate(Date makeDate) { + this.makeDate = makeDate; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCheckUser() { + return this.checkUser; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCheckUser(String checkUser) { + this.checkUser = checkUser; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckDate() { + return this.checkDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckDate(Date checkDate) { + this.checkDate = checkDate; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ThuselevelTicketMaterial.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ThuselevelTicketMaterial.java new file mode 100644 index 0000000..be8ec6b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ThuselevelTicketMaterial.java @@ -0,0 +1,295 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:万元用量原料 + * 表代码:cy_thuselevel_ticket_material + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ThuselevelTicketMaterial") +public class ThuselevelTicketMaterial extends BaseEntity { + + private static final long serialVersionUID = 1854075369677715623L; + + /** + *万元用量单ID + */ + private String ticketId; + + /** + *原料ID + */ + private String productId; + + /** + *原料编号 + */ + private String productNo; + + /** + *原料名称 + */ + private String productName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *原料说明 + */ + private String productDescription; + + /** + *包装单位(分店库存单位) + */ + private String packUnitId; + + /** + *包装单位 + */ + private String packUnit; + + /** + *理论万元用量 + */ + private Double thUseLevel; + + /** + *单项成本 + */ + private Double cost; + + /** + *备注 + */ + private String description; + + + /** + * 字段名称 :万元用量单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :万元用量单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :原料ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :原料编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :原料名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getProductDescription() { + return this.productDescription; + } + + /** + * 字段名称 :原料说明 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setProductDescription(String productDescription) { + this.productDescription = productDescription; + } + + /** + * 字段名称 :包装单位(分店库存单位) + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getPackUnitId() { + return this.packUnitId; + } + + /** + * 字段名称 :包装单位(分店库存单位) + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setPackUnitId(String packUnitId) { + this.packUnitId = packUnitId; + } + + /** + * 字段名称 :包装单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPackUnit() { + return this.packUnit; + } + + /** + * 字段名称 :包装单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPackUnit(String packUnit) { + this.packUnit = packUnit; + } + + /** + * 字段名称 :理论万元用量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getThUseLevel() { + return this.thUseLevel; + } + + /** + * 字段名称 :理论万元用量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setThUseLevel(Double thUseLevel) { + this.thUseLevel = thUseLevel; + } + + /** + * 字段名称 :单项成本 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCost() { + return this.cost; + } + + /** + * 字段名称 :单项成本 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCost(Double cost) { + this.cost = cost; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ThuselevelTicketStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ThuselevelTicketStore.java new file mode 100644 index 0000000..7127edc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/ThuselevelTicketStore.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:万元用量单门店 + * 表代码:cy_thuselevel_ticket_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"ThuselevelTicketStore") +public class ThuselevelTicketStore extends BaseEntity { + + private static final long serialVersionUID = 1243733956080538619L; + + /** + *万元用量单ID + */ + private String ticketId; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + + /** + * 字段名称 :万元用量单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :万元用量单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/TicketPrintSetting.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/TicketPrintSetting.java new file mode 100644 index 0000000..427a579 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/TicketPrintSetting.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:单据打印设置 + * 表代码:cy_ticket_print_setting + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"TicketPrintSetting") +public class TicketPrintSetting extends BaseEntity { + + private static final long serialVersionUID = 1428287465014485478L; + + /** + *单据标识 + */ + private String ticketSign; + + /** + *键 + */ + private String key; + + /** + *值 + */ + private String value; + + /** + *备注信息 + */ + private String description; + + + /** + * 字段名称 :单据标识 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketSign() { + return this.ticketSign; + } + + /** + * 字段名称 :单据标识 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketSign(String ticketSign) { + this.ticketSign = ticketSign; + } + + /** + * 字段名称 :键 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getKey() { + return this.key; + } + + /** + * 字段名称 :键 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setKey(String key) { + this.key = key; + } + + /** + * 字段名称 :值 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getValue() { + return this.value; + } + + /** + * 字段名称 :值 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setValue(String value) { + this.value = value; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/TidianOrder.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/TidianOrder.java new file mode 100644 index 0000000..a16ff9b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/TidianOrder.java @@ -0,0 +1,870 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:提点订单表 + * 表代码:cy_tidian_order + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"TidianOrder") +public class TidianOrder extends BaseEntity { + + private static final long serialVersionUID = 1940339875164329701L; + + /** + *消息 + */ + private String message; + + /** + *巨为门店id + */ + private String storeId; + + /** + *订单号 + */ + private String orderNumber; + + /** + *用餐时段编号 + */ + private String timePeriodNumber; + + /** + *商户号 + */ + private String mcNo; + + /** + *订单来源 + */ + private String source; + + /** + *渠道值 + */ + private String channel; + + /** + *小票序号 + */ + private String seq; + + /** + *门店编号 + */ + private String storeNumber; + + /** + *用餐人数 + */ + private Integer people; + + /** + *开单时间 + */ + private String openTime; + + /** + *菜品总价 + */ + private Double menuTotal; + + /** + *折扣合计 + */ + private Double discountTotal; + + /** + *订单合计 + */ + private Double orderTotal; + + /** + *订单类型 + */ + private Integer transType; + + /** + *是否预约 + */ + private String reservation; + + /** + *打包费 + */ + private Double packTtl; + + /** + *配送费 + */ + private Double deliverTtl; + + /** + *桌牌号 + */ + private String tableNumber; + + /** + *外卖渠道 + */ + private String outChannel; + + /** + *外卖渠道序号 + */ + private String outSeq; + + /** + *平台编号 + */ + private String platform; + + /** + *预约时间 + */ + private String reservationTime; + + /** + *订单明细 + */ + private String transactions; + + /** + *顾客名称 + */ + private String customerName; + + /** + *顾客电话 + */ + private String customerTele; + + /** + *顾客地址 + */ + private String customerAddress; + + /** + *维度 + */ + private String lat; + + /** + *经度 + */ + private String lng; + + /** + *订单备注 + */ + private String customerDesc; + + /** + *支付详情 + */ + private String payment; + + /** + *会员标识 + */ + private String openId; + + /** + *会员名称 + */ + private String nickname; + + /** + *会员电话 + */ + private String mobile; + + /** + *扩展字段1 + */ + private String ext1; + + /** + *扩展字段2 + */ + private String ext2; + + /** + *扩展字段3 + */ + private String ext3; + + + /** + * 字段名称 :消息 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getMessage() { + return this.message; + } + + /** + * 字段名称 :消息 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setMessage(String message) { + this.message = message; + } + + /** + * 字段名称 :巨为门店id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :巨为门店id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :订单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderNumber() { + return this.orderNumber; + } + + /** + * 字段名称 :订单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderNumber(String orderNumber) { + this.orderNumber = orderNumber; + } + + /** + * 字段名称 :用餐时段编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTimePeriodNumber() { + return this.timePeriodNumber; + } + + /** + * 字段名称 :用餐时段编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTimePeriodNumber(String timePeriodNumber) { + this.timePeriodNumber = timePeriodNumber; + } + + /** + * 字段名称 :商户号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMcNo() { + return this.mcNo; + } + + /** + * 字段名称 :商户号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMcNo(String mcNo) { + this.mcNo = mcNo; + } + + /** + * 字段名称 :订单来源 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSource() { + return this.source; + } + + /** + * 字段名称 :订单来源 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSource(String source) { + this.source = source; + } + + /** + * 字段名称 :渠道值 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getChannel() { + return this.channel; + } + + /** + * 字段名称 :渠道值 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setChannel(String channel) { + this.channel = channel; + } + + /** + * 字段名称 :小票序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSeq() { + return this.seq; + } + + /** + * 字段名称 :小票序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSeq(String seq) { + this.seq = seq; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNumber() { + return this.storeNumber; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNumber(String storeNumber) { + this.storeNumber = storeNumber; + } + + /** + * 字段名称 :用餐人数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPeople() { + return this.people; + } + + /** + * 字段名称 :用餐人数 + * 数据类型 :int + * 是否必填 :false + */ + public void setPeople(Integer people) { + this.people = people; + } + + /** + * 字段名称 :开单时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOpenTime() { + return this.openTime; + } + + /** + * 字段名称 :开单时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOpenTime(String openTime) { + this.openTime = openTime; + } + + /** + * 字段名称 :菜品总价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMenuTotal() { + return this.menuTotal; + } + + /** + * 字段名称 :菜品总价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMenuTotal(Double menuTotal) { + this.menuTotal = menuTotal; + } + + /** + * 字段名称 :折扣合计 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountTotal() { + return this.discountTotal; + } + + /** + * 字段名称 :折扣合计 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountTotal(Double discountTotal) { + this.discountTotal = discountTotal; + } + + /** + * 字段名称 :订单合计 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getOrderTotal() { + return this.orderTotal; + } + + /** + * 字段名称 :订单合计 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setOrderTotal(Double orderTotal) { + this.orderTotal = orderTotal; + } + + /** + * 字段名称 :订单类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getTransType() { + return this.transType; + } + + /** + * 字段名称 :订单类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setTransType(Integer transType) { + this.transType = transType; + } + + /** + * 字段名称 :是否预约 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getReservation() { + return this.reservation; + } + + /** + * 字段名称 :是否预约 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setReservation(String reservation) { + this.reservation = reservation; + } + + /** + * 字段名称 :打包费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPackTtl() { + return this.packTtl; + } + + /** + * 字段名称 :打包费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPackTtl(Double packTtl) { + this.packTtl = packTtl; + } + + /** + * 字段名称 :配送费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDeliverTtl() { + return this.deliverTtl; + } + + /** + * 字段名称 :配送费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDeliverTtl(Double deliverTtl) { + this.deliverTtl = deliverTtl; + } + + /** + * 字段名称 :桌牌号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTableNumber() { + return this.tableNumber; + } + + /** + * 字段名称 :桌牌号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTableNumber(String tableNumber) { + this.tableNumber = tableNumber; + } + + /** + * 字段名称 :外卖渠道 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOutChannel() { + return this.outChannel; + } + + /** + * 字段名称 :外卖渠道 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOutChannel(String outChannel) { + this.outChannel = outChannel; + } + + /** + * 字段名称 :外卖渠道序号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOutSeq() { + return this.outSeq; + } + + /** + * 字段名称 :外卖渠道序号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOutSeq(String outSeq) { + this.outSeq = outSeq; + } + + /** + * 字段名称 :平台编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPlatform() { + return this.platform; + } + + /** + * 字段名称 :平台编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPlatform(String platform) { + this.platform = platform; + } + + /** + * 字段名称 :预约时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getReservationTime() { + return this.reservationTime; + } + + /** + * 字段名称 :预约时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setReservationTime(String reservationTime) { + this.reservationTime = reservationTime; + } + + /** + * 字段名称 :订单明细 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getTransactions() { + return this.transactions; + } + + /** + * 字段名称 :订单明细 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setTransactions(String transactions) { + this.transactions = transactions; + } + + /** + * 字段名称 :顾客名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getCustomerName() { + return this.customerName; + } + + /** + * 字段名称 :顾客名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + /** + * 字段名称 :顾客电话 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getCustomerTele() { + return this.customerTele; + } + + /** + * 字段名称 :顾客电话 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setCustomerTele(String customerTele) { + this.customerTele = customerTele; + } + + /** + * 字段名称 :顾客地址 + * 数据类型 :text + * 是否必填 :false + */ + public String getCustomerAddress() { + return this.customerAddress; + } + + /** + * 字段名称 :顾客地址 + * 数据类型 :text + * 是否必填 :false + */ + public void setCustomerAddress(String customerAddress) { + this.customerAddress = customerAddress; + } + + /** + * 字段名称 :维度 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLat() { + return this.lat; + } + + /** + * 字段名称 :维度 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLat(String lat) { + this.lat = lat; + } + + /** + * 字段名称 :经度 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLng() { + return this.lng; + } + + /** + * 字段名称 :经度 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLng(String lng) { + this.lng = lng; + } + + /** + * 字段名称 :订单备注 + * 数据类型 :text + * 是否必填 :false + */ + public String getCustomerDesc() { + return this.customerDesc; + } + + /** + * 字段名称 :订单备注 + * 数据类型 :text + * 是否必填 :false + */ + public void setCustomerDesc(String customerDesc) { + this.customerDesc = customerDesc; + } + + /** + * 字段名称 :支付详情 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getPayment() { + return this.payment; + } + + /** + * 字段名称 :支付详情 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setPayment(String payment) { + this.payment = payment; + } + + /** + * 字段名称 :会员标识 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOpenId() { + return this.openId; + } + + /** + * 字段名称 :会员标识 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOpenId(String openId) { + this.openId = openId; + } + + /** + * 字段名称 :会员名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getNickname() { + return this.nickname; + } + + /** + * 字段名称 :会员名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setNickname(String nickname) { + this.nickname = nickname; + } + + /** + * 字段名称 :会员电话 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMobile() { + return this.mobile; + } + + /** + * 字段名称 :会员电话 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMobile(String mobile) { + this.mobile = mobile; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/TidianOrderDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/TidianOrderDetail.java new file mode 100644 index 0000000..0fbb835 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/TidianOrderDetail.java @@ -0,0 +1,433 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:提点订单详情 + * 表代码:cy_tidian_order_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"TidianOrderDetail") +public class TidianOrderDetail extends BaseEntity { + + private static final long serialVersionUID = 1927668391742313129L; + + /** + *消息 + */ + private String message; + + /** + *巨为门店id + */ + private String storeId; + + /** + *订单号 + */ + private String orderNumber; + + /** + *明细ID + */ + private String detailNumber; + + /** + *明细序号 + */ + private String seq; + + /** + *父ID + */ + private String parentDetailNumber; + + /** + *父序号 + */ + private String parentSeq; + + /** + *明细类型 + */ + private String detailType; + + /** + *数量 + */ + private Double quantity; + + /** + *单价 + */ + private Double unitPrice; + + /** + *总额 + */ + private Double totalPrice; + + /** + *明细编号 + */ + private String detailTargetNumber; + + /** + *名称名称 + */ + private String detailTargetName; + + /** + *合计金额 + */ + private Double rptTtl; + + /** + *点餐时间 + */ + private String addTime; + + /** + *扩展字段1 + */ + private String ext1; + + /** + *扩展字段2 + */ + private String ext2; + + /** + *扩展字段3 + */ + private String ext3; + + + /** + * 字段名称 :消息 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getMessage() { + return this.message; + } + + /** + * 字段名称 :消息 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setMessage(String message) { + this.message = message; + } + + /** + * 字段名称 :巨为门店id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :巨为门店id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :订单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderNumber() { + return this.orderNumber; + } + + /** + * 字段名称 :订单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderNumber(String orderNumber) { + this.orderNumber = orderNumber; + } + + /** + * 字段名称 :明细ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDetailNumber() { + return this.detailNumber; + } + + /** + * 字段名称 :明细ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDetailNumber(String detailNumber) { + this.detailNumber = detailNumber; + } + + /** + * 字段名称 :明细序号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSeq() { + return this.seq; + } + + /** + * 字段名称 :明细序号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSeq(String seq) { + this.seq = seq; + } + + /** + * 字段名称 :父ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getParentDetailNumber() { + return this.parentDetailNumber; + } + + /** + * 字段名称 :父ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setParentDetailNumber(String parentDetailNumber) { + this.parentDetailNumber = parentDetailNumber; + } + + /** + * 字段名称 :父序号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getParentSeq() { + return this.parentSeq; + } + + /** + * 字段名称 :父序号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setParentSeq(String parentSeq) { + this.parentSeq = parentSeq; + } + + /** + * 字段名称 :明细类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getDetailType() { + return this.detailType; + } + + /** + * 字段名称 :明细类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setDetailType(String detailType) { + this.detailType = detailType; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getQuantity() { + return this.quantity; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setQuantity(Double quantity) { + this.quantity = quantity; + } + + /** + * 字段名称 :单价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getUnitPrice() { + return this.unitPrice; + } + + /** + * 字段名称 :单价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setUnitPrice(Double unitPrice) { + this.unitPrice = unitPrice; + } + + /** + * 字段名称 :总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getTotalPrice() { + return this.totalPrice; + } + + /** + * 字段名称 :总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setTotalPrice(Double totalPrice) { + this.totalPrice = totalPrice; + } + + /** + * 字段名称 :明细编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getDetailTargetNumber() { + return this.detailTargetNumber; + } + + /** + * 字段名称 :明细编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setDetailTargetNumber(String detailTargetNumber) { + this.detailTargetNumber = detailTargetNumber; + } + + /** + * 字段名称 :名称名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDetailTargetName() { + return this.detailTargetName; + } + + /** + * 字段名称 :名称名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDetailTargetName(String detailTargetName) { + this.detailTargetName = detailTargetName; + } + + /** + * 字段名称 :合计金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getRptTtl() { + return this.rptTtl; + } + + /** + * 字段名称 :合计金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setRptTtl(Double rptTtl) { + this.rptTtl = rptTtl; + } + + /** + * 字段名称 :点餐时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getAddTime() { + return this.addTime; + } + + /** + * 字段名称 :点餐时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setAddTime(String addTime) { + this.addTime = addTime; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/TidianOrderPay.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/TidianOrderPay.java new file mode 100644 index 0000000..9c86f3d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/TidianOrderPay.java @@ -0,0 +1,295 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:提点订单支付 + * 表代码:cy_tidian_order_pay + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"TidianOrderPay") +public class TidianOrderPay extends BaseEntity { + + private static final long serialVersionUID = 1664089552143293764L; + + /** + *消息 + */ + private String message; + + /** + *巨为门店id + */ + private String storeId; + + /** + *订单号 + */ + private String orderNumber; + + /** + *支付时间 + */ + private String paymentTime; + + /** + *支付方式名称 + */ + private String paymentmethodName; + + /** + *支付方式类型 + */ + private String paymentmethodAction; + + /** + *支付方式编号 + */ + private String paymentmethodNumber; + + /** + *支付单号 + */ + private String outterTraxNo; + + /** + *支付金额 + */ + private Double amount; + + /** + *扩展字段1 + */ + private String ext1; + + /** + *扩展字段2 + */ + private String ext2; + + /** + *扩展字段3 + */ + private String ext3; + + + /** + * 字段名称 :消息 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getMessage() { + return this.message; + } + + /** + * 字段名称 :消息 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setMessage(String message) { + this.message = message; + } + + /** + * 字段名称 :巨为门店id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :巨为门店id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :订单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getOrderNumber() { + return this.orderNumber; + } + + /** + * 字段名称 :订单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setOrderNumber(String orderNumber) { + this.orderNumber = orderNumber; + } + + /** + * 字段名称 :支付时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPaymentTime() { + return this.paymentTime; + } + + /** + * 字段名称 :支付时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPaymentTime(String paymentTime) { + this.paymentTime = paymentTime; + } + + /** + * 字段名称 :支付方式名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getPaymentmethodName() { + return this.paymentmethodName; + } + + /** + * 字段名称 :支付方式名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setPaymentmethodName(String paymentmethodName) { + this.paymentmethodName = paymentmethodName; + } + + /** + * 字段名称 :支付方式类型 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPaymentmethodAction() { + return this.paymentmethodAction; + } + + /** + * 字段名称 :支付方式类型 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPaymentmethodAction(String paymentmethodAction) { + this.paymentmethodAction = paymentmethodAction; + } + + /** + * 字段名称 :支付方式编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPaymentmethodNumber() { + return this.paymentmethodNumber; + } + + /** + * 字段名称 :支付方式编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPaymentmethodNumber(String paymentmethodNumber) { + this.paymentmethodNumber = paymentmethodNumber; + } + + /** + * 字段名称 :支付单号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOutterTraxNo() { + return this.outterTraxNo; + } + + /** + * 字段名称 :支付单号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOutterTraxNo(String outterTraxNo) { + this.outterTraxNo = outterTraxNo; + } + + /** + * 字段名称 :支付金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :支付金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/TidianStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/TidianStore.java new file mode 100644 index 0000000..2df4a56 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/TidianStore.java @@ -0,0 +1,525 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:提点门店表 + * 表代码:cy_tidian_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"TidianStore") +public class TidianStore extends BaseEntity { + + private static final long serialVersionUID = 1551007136145238735L; + + /** + *店铺设置ID + */ + private String setId; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *门店类型 + */ + private String storeType; + + /** + *省份ID + */ + private String province; + + /** + *城市ID + */ + private String city; + + /** + *地址 + */ + private String address; + + /** + *店电话号码 + */ + private String telephone; + + /** + *邮政编码 + */ + private String zipcode; + + /** + *门店联系人 + */ + private String contactName; + + /** + *联系人电话 + */ + private String contactTelephone; + + /** + *门店开业时间 + */ + private String openTime; + + /** + *经度 + */ + private Double longitude; + + /** + *纬度 + */ + private Double latitude; + + /** + *开始营业时间 + */ + private String busiStart; + + /** + *结束营业时间 + */ + private String busiEnd; + + /** + *外卖起送费用 + */ + private Double minDeliveryAmount; + + /** + *门店交易类型 + */ + private String transNumbers; + + /** + *扩展字段1 + */ + private String ext1; + + /** + *扩展字段2 + */ + private String ext2; + + /** + *扩展字段3 + */ + private String ext3; + + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSetId() { + return this.setId; + } + + /** + * 字段名称 :店铺设置ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSetId(String setId) { + this.setId = setId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :门店类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getStoreType() { + return this.storeType; + } + + /** + * 字段名称 :门店类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setStoreType(String storeType) { + this.storeType = storeType; + } + + /** + * 字段名称 :省份ID + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProvince() { + return this.province; + } + + /** + * 字段名称 :省份ID + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProvince(String province) { + this.province = province; + } + + /** + * 字段名称 :城市ID + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getCity() { + return this.city; + } + + /** + * 字段名称 :城市ID + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setCity(String city) { + this.city = city; + } + + /** + * 字段名称 :地址 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getAddress() { + return this.address; + } + + /** + * 字段名称 :地址 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setAddress(String address) { + this.address = address; + } + + /** + * 字段名称 :店电话号码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTelephone() { + return this.telephone; + } + + /** + * 字段名称 :店电话号码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTelephone(String telephone) { + this.telephone = telephone; + } + + /** + * 字段名称 :邮政编码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getZipcode() { + return this.zipcode; + } + + /** + * 字段名称 :邮政编码 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setZipcode(String zipcode) { + this.zipcode = zipcode; + } + + /** + * 字段名称 :门店联系人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getContactName() { + return this.contactName; + } + + /** + * 字段名称 :门店联系人 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setContactName(String contactName) { + this.contactName = contactName; + } + + /** + * 字段名称 :联系人电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getContactTelephone() { + return this.contactTelephone; + } + + /** + * 字段名称 :联系人电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setContactTelephone(String contactTelephone) { + this.contactTelephone = contactTelephone; + } + + /** + * 字段名称 :门店开业时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getOpenTime() { + return this.openTime; + } + + /** + * 字段名称 :门店开业时间 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setOpenTime(String openTime) { + this.openTime = openTime; + } + + /** + * 字段名称 :经度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public Double getLongitude() { + return this.longitude; + } + + /** + * 字段名称 :经度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public void setLongitude(Double longitude) { + this.longitude = longitude; + } + + /** + * 字段名称 :纬度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public Double getLatitude() { + return this.latitude; + } + + /** + * 字段名称 :纬度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public void setLatitude(Double latitude) { + this.latitude = latitude; + } + + /** + * 字段名称 :开始营业时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusiStart() { + return this.busiStart; + } + + /** + * 字段名称 :开始营业时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusiStart(String busiStart) { + this.busiStart = busiStart; + } + + /** + * 字段名称 :结束营业时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusiEnd() { + return this.busiEnd; + } + + /** + * 字段名称 :结束营业时间 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusiEnd(String busiEnd) { + this.busiEnd = busiEnd; + } + + /** + * 字段名称 :外卖起送费用 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMinDeliveryAmount() { + return this.minDeliveryAmount; + } + + /** + * 字段名称 :外卖起送费用 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMinDeliveryAmount(Double minDeliveryAmount) { + this.minDeliveryAmount = minDeliveryAmount; + } + + /** + * 字段名称 :门店交易类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTransNumbers() { + return this.transNumbers; + } + + /** + * 字段名称 :门店交易类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTransNumbers(String transNumbers) { + this.transNumbers = transNumbers; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展字段1 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展字段2 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展字段3 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Visitor.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Visitor.java new file mode 100644 index 0000000..9b3557d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/Visitor.java @@ -0,0 +1,295 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:熟客信息 + * 表代码:cy_visitor + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"Visitor") +public class Visitor extends BaseEntity { + + private static final long serialVersionUID = 1307772963785658662L; + + /** + *门店ID + */ + private String storeId; + + /** + *编号 + */ + private String no; + + /** + *来电号码 + */ + private String tel; + + /** + *姓名 + */ + private String name; + + /** + *拼音 + */ + private String spell; + + /** + *性别 + */ + private Integer sex; + + /** + *称谓 + */ + private String title; + + /** + *职位 + */ + private String position; + + /** + *联系方式一 + */ + private String fphone; + + /** + *联系方式二 + */ + private String sphone; + + /** + *备注说明 + */ + private String description; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :来电号码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTel() { + return this.tel; + } + + /** + * 字段名称 :来电号码 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTel(String tel) { + this.tel = tel; + } + + /** + * 字段名称 :姓名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :姓名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :拼音 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getSpell() { + return this.spell; + } + + /** + * 字段名称 :拼音 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setSpell(String spell) { + this.spell = spell; + } + + /** + * 字段名称 :性别 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSex() { + return this.sex; + } + + /** + * 字段名称 :性别 + * 数据类型 :int + * 是否必填 :false + */ + public void setSex(Integer sex) { + this.sex = sex; + } + + /** + * 字段名称 :称谓 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTitle() { + return this.title; + } + + /** + * 字段名称 :称谓 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTitle(String title) { + this.title = title; + } + + /** + * 字段名称 :职位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPosition() { + return this.position; + } + + /** + * 字段名称 :职位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPosition(String position) { + this.position = position; + } + + /** + * 字段名称 :联系方式一 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getFphone() { + return this.fphone; + } + + /** + * 字段名称 :联系方式一 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setFphone(String fphone) { + this.fphone = fphone; + } + + /** + * 字段名称 :联系方式二 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSphone() { + return this.sphone; + } + + /** + * 字段名称 :联系方式二 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSphone(String sphone) { + this.sphone = sphone; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VisitorAddress.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VisitorAddress.java new file mode 100644 index 0000000..4301deb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VisitorAddress.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:熟客常用地址 + * 表代码:cy_visitor_address + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"VisitorAddress") +public class VisitorAddress extends BaseEntity { + + private static final long serialVersionUID = 1401649232484131148L; + + /** + *门店ID + */ + private String storeId; + + /** + *熟客ID + */ + private String visitorId; + + /** + *联系人 + */ + private String name; + + /** + *联系电话 + */ + private String telephone; + + /** + *所在地区 + */ + private String areaName; + + /** + *详细地址 + */ + private String address; + + /** + *备注说明 + */ + private String description; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :熟客ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getVisitorId() { + return this.visitorId; + } + + /** + * 字段名称 :熟客ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setVisitorId(String visitorId) { + this.visitorId = visitorId; + } + + /** + * 字段名称 :联系人 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :联系人 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :联系电话 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTelephone() { + return this.telephone; + } + + /** + * 字段名称 :联系电话 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTelephone(String telephone) { + this.telephone = telephone; + } + + /** + * 字段名称 :所在地区 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getAreaName() { + return this.areaName; + } + + /** + * 字段名称 :所在地区 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setAreaName(String areaName) { + this.areaName = areaName; + } + + /** + * 字段名称 :详细地址 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getAddress() { + return this.address; + } + + /** + * 字段名称 :详细地址 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setAddress(String address) { + this.address = address; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VisitorTag.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VisitorTag.java new file mode 100644 index 0000000..e77b9b1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VisitorTag.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:熟客标签 + * 表代码:cy_visitor_tag + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"VisitorTag") +public class VisitorTag extends BaseEntity { + + private static final long serialVersionUID = 1413589956343827372L; + + /** + *门店ID + */ + private String storeId; + + /** + *熟客ID + */ + private String visitorId; + + /** + *标签名称 + */ + private String name; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :熟客ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getVisitorId() { + return this.visitorId; + } + + /** + * 字段名称 :熟客ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setVisitorId(String visitorId) { + this.visitorId = visitorId; + } + + /** + * 字段名称 :标签名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :标签名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposAdPicture.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposAdPicture.java new file mode 100644 index 0000000..0506a1c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposAdPicture.java @@ -0,0 +1,226 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:广告图片 + * 表代码:cy_vpos_ad_picture + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"VposAdPicture") +public class VposAdPicture extends BaseEntity { + + private static final long serialVersionUID = 1205102063771240695L; + + /** + *类型 + */ + private Integer type; + + /** + *显示序号 + */ + private String orderNo; + + /** + *图片名称 + */ + private String name; + + /** + *图片宽度 + */ + private Integer width; + + /** + *图片高度 + */ + private Integer height; + + /** + *存储组名 + */ + private String groupName; + + /** + *存储文件名 + */ + private String storageFileName; + + /** + *链接地址 + */ + private String linkUrl; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setOrderNo(String orderNo) { + this.orderNo = orderNo; + } + + /** + * 字段名称 :图片名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :图片名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getWidth() { + return this.width; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public void setWidth(Integer width) { + this.width = width; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getHeight() { + return this.height; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public void setHeight(Integer height) { + this.height = height; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getGroupName() { + return this.groupName; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getStorageFileName() { + return this.storageFileName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setStorageFileName(String storageFileName) { + this.storageFileName = storageFileName; + } + + /** + * 字段名称 :链接地址 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getLinkUrl() { + return this.linkUrl; + } + + /** + * 字段名称 :链接地址 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setLinkUrl(String linkUrl) { + this.linkUrl = linkUrl; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposCcbfzAccount.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposCcbfzAccount.java new file mode 100644 index 0000000..b7dfddc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposCcbfzAccount.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:档口商户建行分账账户信息 + * 表代码:cy_vpos_ccbfz_account + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"VposCcbfzAccount") +public class VposCcbfzAccount extends BaseEntity { + + private static final long serialVersionUID = 1740616212297200913L; + + /** + *档口Id + */ + private String seriesId; + + /** + *编号类型 + */ + private String receiveNoType; + + /** + *收款编号 + */ + private String receiveNo; + + /** + *账号类型 + */ + private String acountType; + + /** + *费用名称 + */ + private String feeName; + + /** + *退款标志 + */ + private Integer refundSign; + + + /** + * 字段名称 :档口Id + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getSeriesId() { + return this.seriesId; + } + + /** + * 字段名称 :档口Id + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setSeriesId(String seriesId) { + this.seriesId = seriesId; + } + + /** + * 字段名称 :编号类型 + * 数据类型 :varchar(4) + * 是否必填 :false + */ + public String getReceiveNoType() { + return this.receiveNoType; + } + + /** + * 字段名称 :编号类型 + * 数据类型 :varchar(4) + * 是否必填 :false + */ + public void setReceiveNoType(String receiveNoType) { + this.receiveNoType = receiveNoType; + } + + /** + * 字段名称 :收款编号 + * 数据类型 :varchar(27) + * 是否必填 :false + */ + public String getReceiveNo() { + return this.receiveNo; + } + + /** + * 字段名称 :收款编号 + * 数据类型 :varchar(27) + * 是否必填 :false + */ + public void setReceiveNo(String receiveNo) { + this.receiveNo = receiveNo; + } + + /** + * 字段名称 :账号类型 + * 数据类型 :varchar(4) + * 是否必填 :false + */ + public String getAcountType() { + return this.acountType; + } + + /** + * 字段名称 :账号类型 + * 数据类型 :varchar(4) + * 是否必填 :false + */ + public void setAcountType(String acountType) { + this.acountType = acountType; + } + + /** + * 字段名称 :费用名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getFeeName() { + return this.feeName; + } + + /** + * 字段名称 :费用名称 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setFeeName(String feeName) { + this.feeName = feeName; + } + + /** + * 字段名称 :退款标志 + * 数据类型 :int(4) + * 是否必填 :false + */ + public Integer getRefundSign() { + return this.refundSign; + } + + /** + * 字段名称 :退款标志 + * 数据类型 :int(4) + * 是否必填 :false + */ + public void setRefundSign(Integer refundSign) { + this.refundSign = refundSign; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposProductEvaluate.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposProductEvaluate.java new file mode 100644 index 0000000..52b7ceb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposProductEvaluate.java @@ -0,0 +1,502 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:商品评价表 + * 表代码:cy_vpos_product_evaluate + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"VposProductEvaluate") +public class VposProductEvaluate extends BaseEntity { + + private static final long serialVersionUID = 1230869343633266219L; + + /** + *会员ID + */ + private String memberId; + + /** + *会员openId + */ + private String openId; + + /** + *手机号 + */ + private String mobile; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *大类ID + */ + private String seriesId; + + /** + *大类名称 + */ + private String seriesName; + + /** + *类别路径 + */ + private String typePath; + + /** + *类别ID + */ + private String typeId; + + /** + *类别名 + */ + private String typeName; + + /** + *产品ID + */ + private String productId; + + /** + *产品编号 + */ + private String productNo; + + /** + *产品名称 + */ + private String productName; + + /** + *头像 + */ + private String touxiang; + + /** + *会员姓名 + */ + private String memberName; + + /** + *评价内容 + */ + private String memo; + + /** + *评价类型 + */ + private Integer type; + + /** + *评级 + */ + private Integer level; + + /** + *评价时间 + */ + private Date tickingTime; + + /** + *状态 + */ + private Integer status; + + + /** + * 字段名称 :会员ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMemberId() { + return this.memberId; + } + + /** + * 字段名称 :会员ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMemberId(String memberId) { + this.memberId = memberId; + } + + /** + * 字段名称 :会员openId + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOpenId() { + return this.openId; + } + + /** + * 字段名称 :会员openId + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOpenId(String openId) { + this.openId = openId; + } + + /** + * 字段名称 :手机号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMobile() { + return this.mobile; + } + + /** + * 字段名称 :手机号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMobile(String mobile) { + this.mobile = mobile; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :大类ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSeriesId() { + return this.seriesId; + } + + /** + * 字段名称 :大类ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSeriesId(String seriesId) { + this.seriesId = seriesId; + } + + /** + * 字段名称 :大类名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getSeriesName() { + return this.seriesName; + } + + /** + * 字段名称 :大类名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setSeriesName(String seriesName) { + this.seriesName = seriesName; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getTypePath() { + return this.typePath; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setTypePath(String typePath) { + this.typePath = typePath; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTypeName() { + return this.typeName; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :产品名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :产品名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :头像 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getTouxiang() { + return this.touxiang; + } + + /** + * 字段名称 :头像 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setTouxiang(String touxiang) { + this.touxiang = touxiang; + } + + /** + * 字段名称 :会员姓名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMemberName() { + return this.memberName; + } + + /** + * 字段名称 :会员姓名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMemberName(String memberName) { + this.memberName = memberName; + } + + /** + * 字段名称 :评价内容 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getMemo() { + return this.memo; + } + + /** + * 字段名称 :评价内容 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setMemo(String memo) { + this.memo = memo; + } + + /** + * 字段名称 :评价类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :评价类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :评级 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getLevel() { + return this.level; + } + + /** + * 字段名称 :评级 + * 数据类型 :int + * 是否必填 :false + */ + public void setLevel(Integer level) { + this.level = level; + } + + /** + * 字段名称 :评价时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getTickingTime() { + return this.tickingTime; + } + + /** + * 字段名称 :评价时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setTickingTime(Date tickingTime) { + this.tickingTime = tickingTime; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposProductEvaluateImage.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposProductEvaluateImage.java new file mode 100644 index 0000000..7e12dc1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposProductEvaluateImage.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:商品评价图片表 + * 表代码:cy_vpos_product_evaluate_image + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"VposProductEvaluateImage") +public class VposProductEvaluateImage extends BaseEntity { + + private static final long serialVersionUID = 1271544331137171005L; + + /** + *评价ID + */ + private String evaluateId; + + /** + *图片宽度 + */ + private Integer width; + + /** + *图片高度 + */ + private Integer height; + + /** + *存储组名 + */ + private String groupName; + + /** + *存储文件名 + */ + private String storageFileName; + + /** + *显示序号 + */ + private String orderNo; + + + /** + * 字段名称 :评价ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getEvaluateId() { + return this.evaluateId; + } + + /** + * 字段名称 :评价ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setEvaluateId(String evaluateId) { + this.evaluateId = evaluateId; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getWidth() { + return this.width; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public void setWidth(Integer width) { + this.width = width; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getHeight() { + return this.height; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public void setHeight(Integer height) { + this.height = height; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getGroupName() { + return this.groupName; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getStorageFileName() { + return this.storageFileName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setStorageFileName(String storageFileName) { + this.storageFileName = storageFileName; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setOrderNo(String orderNo) { + this.orderNo = orderNo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposStoreBusinessTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposStoreBusinessTicket.java new file mode 100644 index 0000000..b6346f0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposStoreBusinessTicket.java @@ -0,0 +1,1077 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:移动端销售单 + * 表代码:cy_vpos_store_business_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"VposStoreBusinessTicket") +public class VposStoreBusinessTicket extends BaseEntity { + + private static final long serialVersionUID = 1741741176212280883L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *会员ID + */ + private String memberId; + + /** + *会员openId + */ + private String openId; + + /** + *手机号 + */ + private String mobile; + + /** + *单据编号 + */ + private String no; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *单据状态 + */ + private Integer status; + + /** + *操作员工号 + */ + private String workNo; + + /** + *销售时间 + */ + private Date saleDate; + + /** + *餐桌号 + */ + private String tableNo; + + /** + *人数 + */ + private Integer people; + + /** + *营业模式 + */ + private Integer busMode; + + /** + *班次 + */ + private String shiftNo; + + /** + *班次名称 + */ + private String shiftName; + + /** + *消费金额 + */ + private Double amount; + + /** + *优惠率 + */ + private Double discount; + + /** + *优惠额 + */ + private Double discountTotal; + + /** + *应收金额 + */ + private Double receivable; + + /** + *抹零金额 + */ + private Double maling; + + /** + *实收金额 + */ + private Double paid; + + /** + *原单号 + */ + private String noOrg; + + /** + *退单原因 + */ + private String backCause; + + /** + *是否使用会员卡 + */ + private Integer isMember; + + /** + *会员卡号 + */ + private String memberNo; + + /** + *本单积分 + */ + private Double memberJifen; + + /** + *设备名称 + */ + private String deviceName; + + /** + *设备MAC + */ + private String deviceMac; + + /** + *设备IP + */ + private String deviceIp; + + /** + *设备编号 + */ + private String posNo; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *当日流水号 + */ + private String seqNo; + + /** + *天气 + */ + private String weather; + + /** + *星期 + */ + private String weeker; + + /** + *是否出库 + */ + private Integer isStockDeal; + + /** + *预估成本 + */ + private Double estimatedCost; + + /** + *预估毛利金额 + */ + private Double estimatedProfitAmount; + + /** + *预估毛利率 + */ + private Double estimatedProfitMargin; + + /** + *实际成本 + */ + private Double totalCost; + + /** + *实际毛利金额 + */ + private Double profitAmount; + + /** + *实际毛利率 + */ + private Double profitMargin; + + /** + *桌台名称 + */ + private String tableName; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :会员ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMemberId() { + return this.memberId; + } + + /** + * 字段名称 :会员ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMemberId(String memberId) { + this.memberId = memberId; + } + + /** + * 字段名称 :会员openId + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOpenId() { + return this.openId; + } + + /** + * 字段名称 :会员openId + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOpenId(String openId) { + this.openId = openId; + } + + /** + * 字段名称 :手机号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMobile() { + return this.mobile; + } + + /** + * 字段名称 :手机号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMobile(String mobile) { + this.mobile = mobile; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :操作员工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getWorkNo() { + return this.workNo; + } + + /** + * 字段名称 :操作员工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setWorkNo(String workNo) { + this.workNo = workNo; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTableNo() { + return this.tableNo; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTableNo(String tableNo) { + this.tableNo = tableNo; + } + + /** + * 字段名称 :人数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPeople() { + return this.people; + } + + /** + * 字段名称 :人数 + * 数据类型 :int + * 是否必填 :false + */ + public void setPeople(Integer people) { + this.people = people; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBusMode() { + return this.busMode; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public void setBusMode(Integer busMode) { + this.busMode = busMode; + } + + /** + * 字段名称 :班次 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getShiftNo() { + return this.shiftNo; + } + + /** + * 字段名称 :班次 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setShiftNo(String shiftNo) { + this.shiftNo = shiftNo; + } + + /** + * 字段名称 :班次名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getShiftName() { + return this.shiftName; + } + + /** + * 字段名称 :班次名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setShiftName(String shiftName) { + this.shiftName = shiftName; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountTotal() { + return this.discountTotal; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountTotal(Double discountTotal) { + this.discountTotal = discountTotal; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivable() { + return this.receivable; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivable(Double receivable) { + this.receivable = receivable; + } + + /** + * 字段名称 :抹零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMaling() { + return this.maling; + } + + /** + * 字段名称 :抹零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMaling(Double maling) { + this.maling = maling; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPaid() { + return this.paid; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPaid(Double paid) { + this.paid = paid; + } + + /** + * 字段名称 :原单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNoOrg() { + return this.noOrg; + } + + /** + * 字段名称 :原单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNoOrg(String noOrg) { + this.noOrg = noOrg; + } + + /** + * 字段名称 :退单原因 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getBackCause() { + return this.backCause; + } + + /** + * 字段名称 :退单原因 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setBackCause(String backCause) { + this.backCause = backCause; + } + + /** + * 字段名称 :是否使用会员卡 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsMember() { + return this.isMember; + } + + /** + * 字段名称 :是否使用会员卡 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsMember(Integer isMember) { + this.isMember = isMember; + } + + /** + * 字段名称 :会员卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMemberNo() { + return this.memberNo; + } + + /** + * 字段名称 :会员卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMemberNo(String memberNo) { + this.memberNo = memberNo; + } + + /** + * 字段名称 :本单积分 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMemberJifen() { + return this.memberJifen; + } + + /** + * 字段名称 :本单积分 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMemberJifen(Double memberJifen) { + this.memberJifen = memberJifen; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDeviceName() { + return this.deviceName; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDeviceName(String deviceName) { + this.deviceName = deviceName; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public String getDeviceMac() { + return this.deviceMac; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public void setDeviceMac(String deviceMac) { + this.deviceMac = deviceMac; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeviceIp() { + return this.deviceIp; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeviceIp(String deviceIp) { + this.deviceIp = deviceIp; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :当日流水号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSeqNo() { + return this.seqNo; + } + + /** + * 字段名称 :当日流水号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSeqNo(String seqNo) { + this.seqNo = seqNo; + } + + /** + * 字段名称 :天气 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getWeather() { + return this.weather; + } + + /** + * 字段名称 :天气 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setWeather(String weather) { + this.weather = weather; + } + + /** + * 字段名称 :星期 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getWeeker() { + return this.weeker; + } + + /** + * 字段名称 :星期 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setWeeker(String weeker) { + this.weeker = weeker; + } + + /** + * 字段名称 :是否出库 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsStockDeal() { + return this.isStockDeal; + } + + /** + * 字段名称 :是否出库 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsStockDeal(Integer isStockDeal) { + this.isStockDeal = isStockDeal; + } + + /** + * 字段名称 :预估成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getEstimatedCost() { + return this.estimatedCost; + } + + /** + * 字段名称 :预估成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setEstimatedCost(Double estimatedCost) { + this.estimatedCost = estimatedCost; + } + + /** + * 字段名称 :预估毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getEstimatedProfitAmount() { + return this.estimatedProfitAmount; + } + + /** + * 字段名称 :预估毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setEstimatedProfitAmount(Double estimatedProfitAmount) { + this.estimatedProfitAmount = estimatedProfitAmount; + } + + /** + * 字段名称 :预估毛利率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getEstimatedProfitMargin() { + return this.estimatedProfitMargin; + } + + /** + * 字段名称 :预估毛利率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setEstimatedProfitMargin(Double estimatedProfitMargin) { + this.estimatedProfitMargin = estimatedProfitMargin; + } + + /** + * 字段名称 :实际成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getTotalCost() { + return this.totalCost; + } + + /** + * 字段名称 :实际成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setTotalCost(Double totalCost) { + this.totalCost = totalCost; + } + + /** + * 字段名称 :实际毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getProfitAmount() { + return this.profitAmount; + } + + /** + * 字段名称 :实际毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setProfitAmount(Double profitAmount) { + this.profitAmount = profitAmount; + } + + /** + * 字段名称 :实际毛利率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getProfitMargin() { + return this.profitMargin; + } + + /** + * 字段名称 :实际毛利率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setProfitMargin(Double profitMargin) { + this.profitMargin = profitMargin; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTableName() { + return this.tableName; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTableName(String tableName) { + this.tableName = tableName; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposStoreBusinessTicketInfo.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposStoreBusinessTicketInfo.java new file mode 100644 index 0000000..20a6bb1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposStoreBusinessTicketInfo.java @@ -0,0 +1,295 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:移动端销售单优惠明细 + * 表代码:cy_vpos_store_business_ticket_info + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"VposStoreBusinessTicketInfo") +public class VposStoreBusinessTicketInfo extends BaseEntity { + + private static final long serialVersionUID = 1547332772386030939L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *门店ID + */ + private String storeId; + + /** + *销售单ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String busNo; + + /** + *优惠类型 + */ + private Integer type; + + /** + *优惠说明 + */ + private String info; + + /** + *优惠金额 + */ + private Double discountMoney; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *销售时间 + */ + private Date saleDate; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :优惠说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getInfo() { + return this.info; + } + + /** + * 字段名称 :优惠说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setInfo(String info) { + this.info = info; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountMoney() { + return this.discountMoney; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountMoney(Double discountMoney) { + this.discountMoney = discountMoney; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposStoreOrderProduct.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposStoreOrderProduct.java new file mode 100644 index 0000000..96113f4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposStoreOrderProduct.java @@ -0,0 +1,1445 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:移动端产品销售记录 + * 表代码:cy_vpos_store_order_product + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"VposStoreOrderProduct") +public class VposStoreOrderProduct extends BaseEntity { + + private static final long serialVersionUID = 1284503630897317474L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *父记录ID + */ + private String parentId; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *销售单ID + */ + private String ticketId; + + /** + *销售单号 + */ + private String busNo; + + /** + *营业模式 + */ + private Integer busMode; + + /** + *桌号 + */ + private String tableNo; + + /** + *产品ID + */ + private String productId; + + /** + *产品编号 + */ + private String productNo; + + /** + *产品名称 + */ + private String productName; + + /** + *产品单位 + */ + private String productUnitId; + + /** + *产品单位名 + */ + private String productUnitName; + + /** + *商品图片 + */ + private String productImageUrl; + + /** + *大类ID + */ + private String seriesId; + + /** + *大类名称 + */ + private String seriesName; + + /** + *类别路径 + */ + private String typePath; + + /** + *类别ID + */ + private String typeId; + + /** + *类别名 + */ + private String typeName; + + /** + *规格ID + */ + private String specId; + + /** + *规格名称 + */ + private String specName; + + /** + *数量 + */ + private Double count; + + /** + *退菜数量 + */ + private Double rcount; + + /** + *销售价格 + */ + private Double price; + + /** + *产品原价 + */ + private Double priceOrg; + + /** + *折后价格 + */ + private Double discountPrice; + + /** + *是否套菜 + */ + private Integer isSuit; + + /** + *套菜ID + */ + private String suitId; + + /** + *工号 + */ + private String workerNo; + + /** + *销售时间 + */ + private Date saleDate; + + /** + *设备名称 + */ + private String deviceName; + + /** + *设备MAC + */ + private String deviceMac; + + /** + *设备IP + */ + private String deviceIp; + + /** + *设备编号 + */ + private String posNo; + + /** + *消费金额 + */ + private Double amount; + + /** + *优惠率 + */ + private Double discount; + + /** + *优惠额 + */ + private Double discountTotal; + + /** + *应收金额 + */ + private Double receivable; + + /** + *加价金额 + */ + private Double addPriceTotal; + + /** + *加价优惠金额 + */ + private Double discountAddTotal; + + /** + *加价应收金额 + */ + private Double amountAddTotal; + + /** + *消费总额 + */ + private Double amountTotal; + + /** + *应收总额 + */ + private Double receivableTotal; + + /** + *是否使用会员卡 + */ + private Integer isMember; + + /** + *会员卡号 + */ + private String memberNo; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *行号 + */ + private Integer lineNo; + + /** + *当日流水号 + */ + private String seqNo; + + /** + *天气 + */ + private String weather; + + /** + *星期 + */ + private String weeker; + + /** + *是否出库 + */ + private Integer isStockDeal; + + /** + *预估成本 + */ + private Double estimatedCost; + + /** + *预估毛利金额 + */ + private Double estimatedProfitAmount; + + /** + *预估毛利率 + */ + private Double estimatedProfitMargin; + + /** + *实际成本 + */ + private Double totalCost; + + /** + *实际毛利金额 + */ + private Double profitAmount; + + /** + *实际毛利率 + */ + private Double profitMargin; + + /** + *桌台名称 + */ + private String tableName; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :父记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getParentId() { + return this.parentId; + } + + /** + * 字段名称 :父记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setParentId(String parentId) { + this.parentId = parentId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBusMode() { + return this.busMode; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public void setBusMode(Integer busMode) { + this.busMode = busMode; + } + + /** + * 字段名称 :桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTableNo() { + return this.tableNo; + } + + /** + * 字段名称 :桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTableNo(String tableNo) { + this.tableNo = tableNo; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :产品名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getProductName() { + return this.productName; + } + + /** + * 字段名称 :产品名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setProductName(String productName) { + this.productName = productName; + } + + /** + * 字段名称 :产品单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductUnitId() { + return this.productUnitId; + } + + /** + * 字段名称 :产品单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductUnitId(String productUnitId) { + this.productUnitId = productUnitId; + } + + /** + * 字段名称 :产品单位名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductUnitName() { + return this.productUnitName; + } + + /** + * 字段名称 :产品单位名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductUnitName(String productUnitName) { + this.productUnitName = productUnitName; + } + + /** + * 字段名称 :商品图片 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getProductImageUrl() { + return this.productImageUrl; + } + + /** + * 字段名称 :商品图片 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setProductImageUrl(String productImageUrl) { + this.productImageUrl = productImageUrl; + } + + /** + * 字段名称 :大类ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSeriesId() { + return this.seriesId; + } + + /** + * 字段名称 :大类ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSeriesId(String seriesId) { + this.seriesId = seriesId; + } + + /** + * 字段名称 :大类名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getSeriesName() { + return this.seriesName; + } + + /** + * 字段名称 :大类名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setSeriesName(String seriesName) { + this.seriesName = seriesName; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getTypePath() { + return this.typePath; + } + + /** + * 字段名称 :类别路径 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setTypePath(String typePath) { + this.typePath = typePath; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :类别ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getTypeName() { + return this.typeName; + } + + /** + * 字段名称 :类别名 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + /** + * 字段名称 :规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getCount() { + return this.count; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setCount(Double count) { + this.count = count; + } + + /** + * 字段名称 :退菜数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getRcount() { + return this.rcount; + } + + /** + * 字段名称 :退菜数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setRcount(Double rcount) { + this.rcount = rcount; + } + + /** + * 字段名称 :销售价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :销售价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :产品原价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPriceOrg() { + return this.priceOrg; + } + + /** + * 字段名称 :产品原价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPriceOrg(Double priceOrg) { + this.priceOrg = priceOrg; + } + + /** + * 字段名称 :折后价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountPrice() { + return this.discountPrice; + } + + /** + * 字段名称 :折后价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountPrice(Double discountPrice) { + this.discountPrice = discountPrice; + } + + /** + * 字段名称 :是否套菜 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsSuit() { + return this.isSuit; + } + + /** + * 字段名称 :是否套菜 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsSuit(Integer isSuit) { + this.isSuit = isSuit; + } + + /** + * 字段名称 :套菜ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSuitId() { + return this.suitId; + } + + /** + * 字段名称 :套菜ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSuitId(String suitId) { + this.suitId = suitId; + } + + /** + * 字段名称 :工号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getWorkerNo() { + return this.workerNo; + } + + /** + * 字段名称 :工号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setWorkerNo(String workerNo) { + this.workerNo = workerNo; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDeviceName() { + return this.deviceName; + } + + /** + * 字段名称 :设备名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDeviceName(String deviceName) { + this.deviceName = deviceName; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public String getDeviceMac() { + return this.deviceMac; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public void setDeviceMac(String deviceMac) { + this.deviceMac = deviceMac; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeviceIp() { + return this.deviceIp; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeviceIp(String deviceIp) { + this.deviceIp = deviceIp; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountTotal() { + return this.discountTotal; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountTotal(Double discountTotal) { + this.discountTotal = discountTotal; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivable() { + return this.receivable; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivable(Double receivable) { + this.receivable = receivable; + } + + /** + * 字段名称 :加价金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddPriceTotal() { + return this.addPriceTotal; + } + + /** + * 字段名称 :加价金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddPriceTotal(Double addPriceTotal) { + this.addPriceTotal = addPriceTotal; + } + + /** + * 字段名称 :加价优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountAddTotal() { + return this.discountAddTotal; + } + + /** + * 字段名称 :加价优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountAddTotal(Double discountAddTotal) { + this.discountAddTotal = discountAddTotal; + } + + /** + * 字段名称 :加价应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmountAddTotal() { + return this.amountAddTotal; + } + + /** + * 字段名称 :加价应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmountAddTotal(Double amountAddTotal) { + this.amountAddTotal = amountAddTotal; + } + + /** + * 字段名称 :消费总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmountTotal() { + return this.amountTotal; + } + + /** + * 字段名称 :消费总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmountTotal(Double amountTotal) { + this.amountTotal = amountTotal; + } + + /** + * 字段名称 :应收总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivableTotal() { + return this.receivableTotal; + } + + /** + * 字段名称 :应收总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivableTotal(Double receivableTotal) { + this.receivableTotal = receivableTotal; + } + + /** + * 字段名称 :是否使用会员卡 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsMember() { + return this.isMember; + } + + /** + * 字段名称 :是否使用会员卡 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsMember(Integer isMember) { + this.isMember = isMember; + } + + /** + * 字段名称 :会员卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMemberNo() { + return this.memberNo; + } + + /** + * 字段名称 :会员卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMemberNo(String memberNo) { + this.memberNo = memberNo; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :行号 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getLineNo() { + return this.lineNo; + } + + /** + * 字段名称 :行号 + * 数据类型 :int + * 是否必填 :false + */ + public void setLineNo(Integer lineNo) { + this.lineNo = lineNo; + } + + /** + * 字段名称 :当日流水号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSeqNo() { + return this.seqNo; + } + + /** + * 字段名称 :当日流水号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSeqNo(String seqNo) { + this.seqNo = seqNo; + } + + /** + * 字段名称 :天气 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getWeather() { + return this.weather; + } + + /** + * 字段名称 :天气 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setWeather(String weather) { + this.weather = weather; + } + + /** + * 字段名称 :星期 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getWeeker() { + return this.weeker; + } + + /** + * 字段名称 :星期 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setWeeker(String weeker) { + this.weeker = weeker; + } + + /** + * 字段名称 :是否出库 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsStockDeal() { + return this.isStockDeal; + } + + /** + * 字段名称 :是否出库 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsStockDeal(Integer isStockDeal) { + this.isStockDeal = isStockDeal; + } + + /** + * 字段名称 :预估成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getEstimatedCost() { + return this.estimatedCost; + } + + /** + * 字段名称 :预估成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setEstimatedCost(Double estimatedCost) { + this.estimatedCost = estimatedCost; + } + + /** + * 字段名称 :预估毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getEstimatedProfitAmount() { + return this.estimatedProfitAmount; + } + + /** + * 字段名称 :预估毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setEstimatedProfitAmount(Double estimatedProfitAmount) { + this.estimatedProfitAmount = estimatedProfitAmount; + } + + /** + * 字段名称 :预估毛利率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getEstimatedProfitMargin() { + return this.estimatedProfitMargin; + } + + /** + * 字段名称 :预估毛利率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setEstimatedProfitMargin(Double estimatedProfitMargin) { + this.estimatedProfitMargin = estimatedProfitMargin; + } + + /** + * 字段名称 :实际成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getTotalCost() { + return this.totalCost; + } + + /** + * 字段名称 :实际成本 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setTotalCost(Double totalCost) { + this.totalCost = totalCost; + } + + /** + * 字段名称 :实际毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getProfitAmount() { + return this.profitAmount; + } + + /** + * 字段名称 :实际毛利金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setProfitAmount(Double profitAmount) { + this.profitAmount = profitAmount; + } + + /** + * 字段名称 :实际毛利率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getProfitMargin() { + return this.profitMargin; + } + + /** + * 字段名称 :实际毛利率 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setProfitMargin(Double profitMargin) { + this.profitMargin = profitMargin; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTableName() { + return this.tableName; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTableName(String tableName) { + this.tableName = tableName; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposStoreOrderProductInfo.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposStoreOrderProductInfo.java new file mode 100644 index 0000000..a8cdfa2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposStoreOrderProductInfo.java @@ -0,0 +1,364 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:移动端产品销售记录优惠明细 + * 表代码:cy_vpos_store_order_product_info + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"VposStoreOrderProductInfo") +public class VposStoreOrderProductInfo extends BaseEntity { + + private static final long serialVersionUID = 1070469578223862068L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *订单明细记录ID + */ + private String orderItemId; + + /** + *门店ID + */ + private String storeId; + + /** + *销售单ID + */ + private String ticketId; + + /** + *销售单号 + */ + private String busNo; + + /** + *优惠类型 + */ + private Integer type; + + /** + *优惠说明 + */ + private String info; + + /** + *优惠金额 + */ + private Double discountMoney; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *销售时间 + */ + private Date saleDate; + + /** + *餐桌号 + */ + private String tableNo; + + /** + *桌台名称 + */ + private String tableName; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :订单明细记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOrderItemId() { + return this.orderItemId; + } + + /** + * 字段名称 :订单明细记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOrderItemId(String orderItemId) { + this.orderItemId = orderItemId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :优惠说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getInfo() { + return this.info; + } + + /** + * 字段名称 :优惠说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setInfo(String info) { + this.info = info; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountMoney() { + return this.discountMoney; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountMoney(Double discountMoney) { + this.discountMoney = discountMoney; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTableNo() { + return this.tableNo; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTableNo(String tableNo) { + this.tableNo = tableNo; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTableName() { + return this.tableName; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTableName(String tableName) { + this.tableName = tableName; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposStoreOrderProductMake.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposStoreOrderProductMake.java new file mode 100644 index 0000000..f4b6f4d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposStoreOrderProductMake.java @@ -0,0 +1,594 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:移动端销售单做法 + * 表代码:cy_vpos_store_order_product_make + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"VposStoreOrderProductMake") +public class VposStoreOrderProductMake extends BaseEntity { + + private static final long serialVersionUID = 1640355016195725877L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *订单明细记录ID + */ + private String orderItemId; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *销售单ID + */ + private String ticketId; + + /** + *销售单号 + */ + private String busNo; + + /** + *做法ID + */ + private String makeId; + + /** + *做法名称 + */ + private String makeName; + + /** + *做法加价 + */ + private Double addPrice; + + /** + *做法折后加价 + */ + private Double discountPrice; + + /** + *做法数量 + */ + private Double count; + + /** + *做法退数量 + */ + private Double rcount; + + /** + *加价总额 + */ + private Double addTotal; + + /** + *折后总额 + */ + private Double discountAddTotal; + + /** + *折扣率 + */ + private Double discount; + + /** + *做法管理数量标识 + */ + private Integer qtyFlag; + + /** + *手写做法标识 + */ + private Integer hand; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *销售时间 + */ + private Date saleDate; + + /** + *餐桌号 + */ + private String tableNo; + + /** + *桌台名称 + */ + private String tableName; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :订单明细记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOrderItemId() { + return this.orderItemId; + } + + /** + * 字段名称 :订单明细记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOrderItemId(String orderItemId) { + this.orderItemId = orderItemId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :做法ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMakeId() { + return this.makeId; + } + + /** + * 字段名称 :做法ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMakeId(String makeId) { + this.makeId = makeId; + } + + /** + * 字段名称 :做法名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMakeName() { + return this.makeName; + } + + /** + * 字段名称 :做法名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMakeName(String makeName) { + this.makeName = makeName; + } + + /** + * 字段名称 :做法加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddPrice() { + return this.addPrice; + } + + /** + * 字段名称 :做法加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddPrice(Double addPrice) { + this.addPrice = addPrice; + } + + /** + * 字段名称 :做法折后加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountPrice() { + return this.discountPrice; + } + + /** + * 字段名称 :做法折后加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountPrice(Double discountPrice) { + this.discountPrice = discountPrice; + } + + /** + * 字段名称 :做法数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCount() { + return this.count; + } + + /** + * 字段名称 :做法数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCount(Double count) { + this.count = count; + } + + /** + * 字段名称 :做法退数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getRcount() { + return this.rcount; + } + + /** + * 字段名称 :做法退数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setRcount(Double rcount) { + this.rcount = rcount; + } + + /** + * 字段名称 :加价总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddTotal() { + return this.addTotal; + } + + /** + * 字段名称 :加价总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddTotal(Double addTotal) { + this.addTotal = addTotal; + } + + /** + * 字段名称 :折后总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountAddTotal() { + return this.discountAddTotal; + } + + /** + * 字段名称 :折后总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountAddTotal(Double discountAddTotal) { + this.discountAddTotal = discountAddTotal; + } + + /** + * 字段名称 :折扣率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :折扣率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :做法管理数量标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getQtyFlag() { + return this.qtyFlag; + } + + /** + * 字段名称 :做法管理数量标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setQtyFlag(Integer qtyFlag) { + this.qtyFlag = qtyFlag; + } + + /** + * 字段名称 :手写做法标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getHand() { + return this.hand; + } + + /** + * 字段名称 :手写做法标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setHand(Integer hand) { + this.hand = hand; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTableNo() { + return this.tableNo; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTableNo(String tableNo) { + this.tableNo = tableNo; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTableName() { + return this.tableName; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTableName(String tableName) { + this.tableName = tableName; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposStorePay.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposStorePay.java new file mode 100644 index 0000000..c92ce30 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposStorePay.java @@ -0,0 +1,847 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:移动端收银流水 + * 表代码:cy_vpos_store_pay + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"VposStorePay") +public class VposStorePay extends BaseEntity { + + private static final long serialVersionUID = 1339219587772296495L; + + /** + *前台系统ID + */ + private String clientId; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *付款单号 + */ + private String payNo; + + /** + *销售单ID + */ + private String ticketId; + + /** + *销售单号 + */ + private String busNo; + + /** + *营业模式 + */ + private Integer busMode; + + /** + *餐桌号 + */ + private String tableNo; + + /** + *付款方式编号 + */ + private String payTypeNo; + + /** + *付款方式 + */ + private String payType; + + /** + *实收金额 + */ + private Double paid; + + /** + *找零金额 + */ + private Double rchange; + + /** + *已收金额 + */ + private Double money; + + /** + *溢出金额 + */ + private Double overAmount; + + /** + *操作员工号 + */ + private String workNo; + + /** + *收银设备 + */ + private String deviceName; + + /** + *设备MAC + */ + private String deviceMac; + + /** + *设备IP + */ + private String deviceIp; + + /** + *设备编号 + */ + private String posNo; + + /** + *凭证号 + */ + private String voucherNo; + + /** + *付款时间 + */ + private Date payDate; + + /** + *付款卡号 + */ + private String cardno; + + /** + *充值卡支付前余额 + */ + private Double cardYe; + + /** + *充值卡支付前积分 + */ + private Double cardJf; + + /** + *是否实收 + */ + private Integer incomeFlag; + + /** + *第三方扣费类型 + */ + private Integer otherRateType; + + /** + *第三方扣费值 + */ + private Double otherRateValue; + + /** + *第三方扣费 + */ + private Double otherRate; + + /** + *支付渠道 + */ + private Integer payChannel; + + /** + *备注 + */ + private String memo; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *桌台名称 + */ + private String tableName; + + /** + *扩展信息1 + */ + private String ext1; + + /** + *扩展信息2 + */ + private String ext2; + + /** + *扩展信息3 + */ + private String ext3; + + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getClientId() { + return this.clientId; + } + + /** + * 字段名称 :前台系统ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :付款单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPayNo() { + return this.payNo; + } + + /** + * 字段名称 :付款单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPayNo(String payNo) { + this.payNo = payNo; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBusMode() { + return this.busMode; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public void setBusMode(Integer busMode) { + this.busMode = busMode; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTableNo() { + return this.tableNo; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTableNo(String tableNo) { + this.tableNo = tableNo; + } + + /** + * 字段名称 :付款方式编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPayTypeNo() { + return this.payTypeNo; + } + + /** + * 字段名称 :付款方式编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPayTypeNo(String payTypeNo) { + this.payTypeNo = payTypeNo; + } + + /** + * 字段名称 :付款方式 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPayType() { + return this.payType; + } + + /** + * 字段名称 :付款方式 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPayType(String payType) { + this.payType = payType; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPaid() { + return this.paid; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPaid(Double paid) { + this.paid = paid; + } + + /** + * 字段名称 :找零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getRchange() { + return this.rchange; + } + + /** + * 字段名称 :找零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setRchange(Double rchange) { + this.rchange = rchange; + } + + /** + * 字段名称 :已收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :已收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :溢出金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getOverAmount() { + return this.overAmount; + } + + /** + * 字段名称 :溢出金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setOverAmount(Double overAmount) { + this.overAmount = overAmount; + } + + /** + * 字段名称 :操作员工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getWorkNo() { + return this.workNo; + } + + /** + * 字段名称 :操作员工号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setWorkNo(String workNo) { + this.workNo = workNo; + } + + /** + * 字段名称 :收银设备 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getDeviceName() { + return this.deviceName; + } + + /** + * 字段名称 :收银设备 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setDeviceName(String deviceName) { + this.deviceName = deviceName; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public String getDeviceMac() { + return this.deviceMac; + } + + /** + * 字段名称 :设备MAC + * 数据类型 :varchar(1024) + * 是否必填 :false + */ + public void setDeviceMac(String deviceMac) { + this.deviceMac = deviceMac; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeviceIp() { + return this.deviceIp; + } + + /** + * 字段名称 :设备IP + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeviceIp(String deviceIp) { + this.deviceIp = deviceIp; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :设备编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :凭证号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getVoucherNo() { + return this.voucherNo; + } + + /** + * 字段名称 :凭证号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setVoucherNo(String voucherNo) { + this.voucherNo = voucherNo; + } + + /** + * 字段名称 :付款时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getPayDate() { + return this.payDate; + } + + /** + * 字段名称 :付款时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setPayDate(Date payDate) { + this.payDate = payDate; + } + + /** + * 字段名称 :付款卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCardno() { + return this.cardno; + } + + /** + * 字段名称 :付款卡号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCardno(String cardno) { + this.cardno = cardno; + } + + /** + * 字段名称 :充值卡支付前余额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCardYe() { + return this.cardYe; + } + + /** + * 字段名称 :充值卡支付前余额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCardYe(Double cardYe) { + this.cardYe = cardYe; + } + + /** + * 字段名称 :充值卡支付前积分 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCardJf() { + return this.cardJf; + } + + /** + * 字段名称 :充值卡支付前积分 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCardJf(Double cardJf) { + this.cardJf = cardJf; + } + + /** + * 字段名称 :是否实收 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIncomeFlag() { + return this.incomeFlag; + } + + /** + * 字段名称 :是否实收 + * 数据类型 :int + * 是否必填 :false + */ + public void setIncomeFlag(Integer incomeFlag) { + this.incomeFlag = incomeFlag; + } + + /** + * 字段名称 :第三方扣费类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOtherRateType() { + return this.otherRateType; + } + + /** + * 字段名称 :第三方扣费类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setOtherRateType(Integer otherRateType) { + this.otherRateType = otherRateType; + } + + /** + * 字段名称 :第三方扣费值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getOtherRateValue() { + return this.otherRateValue; + } + + /** + * 字段名称 :第三方扣费值 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setOtherRateValue(Double otherRateValue) { + this.otherRateValue = otherRateValue; + } + + /** + * 字段名称 :第三方扣费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getOtherRate() { + return this.otherRate; + } + + /** + * 字段名称 :第三方扣费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setOtherRate(Double otherRate) { + this.otherRate = otherRate; + } + + /** + * 字段名称 :支付渠道 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPayChannel() { + return this.payChannel; + } + + /** + * 字段名称 :支付渠道 + * 数据类型 :int + * 是否必填 :false + */ + public void setPayChannel(Integer payChannel) { + this.payChannel = payChannel; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getMemo() { + return this.memo; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setMemo(String memo) { + this.memo = memo; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTableName() { + return this.tableName; + } + + /** + * 字段名称 :桌台名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTableName(String tableName) { + this.tableName = tableName; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt1() { + return this.ext1; + } + + /** + * 字段名称 :扩展信息1 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt1(String ext1) { + this.ext1 = ext1; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt2() { + return this.ext2; + } + + /** + * 字段名称 :扩展信息2 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt2(String ext2) { + this.ext2 = ext2; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getExt3() { + return this.ext3; + } + + /** + * 字段名称 :扩展信息3 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setExt3(String ext3) { + this.ext3 = ext3; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposUser.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposUser.java new file mode 100644 index 0000000..40d77e6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposUser.java @@ -0,0 +1,249 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:档口商户信息 + * 表代码:cy_vpos_user + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"VposUser") +public class VposUser extends BaseEntity { + + private static final long serialVersionUID = 1059011551234223830L; + + /** + *人员编号 + */ + private String no; + + /** + *人员姓名 + */ + private String name; + + /** + *性别 + */ + private Integer sex; + + /** + *出生日期 + */ + private Date birthday; + + /** + *邮箱 + */ + private String email; + + /** + *手机 + */ + private String mobile; + + /** + *是否登陆 + */ + private Integer isLogin; + + /** + *登录密码 + */ + private String passwd; + + /** + *是否启用 + */ + private Integer enable; + + /** + *备注 + */ + private String description; + + + /** + * 字段名称 :人员编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :人员编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :人员姓名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :人员姓名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :性别 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSex() { + return this.sex; + } + + /** + * 字段名称 :性别 + * 数据类型 :int + * 是否必填 :false + */ + public void setSex(Integer sex) { + this.sex = sex; + } + + /** + * 字段名称 :出生日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getBirthday() { + return this.birthday; + } + + /** + * 字段名称 :出生日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setBirthday(Date birthday) { + this.birthday = birthday; + } + + /** + * 字段名称 :邮箱 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getEmail() { + return this.email; + } + + /** + * 字段名称 :邮箱 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setEmail(String email) { + this.email = email; + } + + /** + * 字段名称 :手机 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getMobile() { + return this.mobile; + } + + /** + * 字段名称 :手机 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setMobile(String mobile) { + this.mobile = mobile; + } + + /** + * 字段名称 :是否登陆 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsLogin() { + return this.isLogin; + } + + /** + * 字段名称 :是否登陆 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsLogin(Integer isLogin) { + this.isLogin = isLogin; + } + + /** + * 字段名称 :登录密码 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getPasswd() { + return this.passwd; + } + + /** + * 字段名称 :登录密码 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setPasswd(String passwd) { + this.passwd = passwd; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnable() { + return this.enable; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setEnable(Integer enable) { + this.enable = enable; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposUserSeries.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposUserSeries.java new file mode 100644 index 0000000..71cd566 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/VposUserSeries.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:档口商户分类关联 + * 表代码:cy_vpos_user_series + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"VposUserSeries") +public class VposUserSeries extends BaseEntity { + + private static final long serialVersionUID = 1097198008788848310L; + + /** + *商户ID + */ + private String userId; + + /** + *档口Id + */ + private String seriesId; + + /** + *档口编号 + */ + private String seriesNo; + + /** + *档口名称 + */ + private String seriesName; + + + /** + * 字段名称 :商户ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getUserId() { + return this.userId; + } + + /** + * 字段名称 :商户ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setUserId(String userId) { + this.userId = userId; + } + + /** + * 字段名称 :档口Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSeriesId() { + return this.seriesId; + } + + /** + * 字段名称 :档口Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSeriesId(String seriesId) { + this.seriesId = seriesId; + } + + /** + * 字段名称 :档口编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSeriesNo() { + return this.seriesNo; + } + + /** + * 字段名称 :档口编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSeriesNo(String seriesNo) { + this.seriesNo = seriesNo; + } + + /** + * 字段名称 :档口名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getSeriesName() { + return this.seriesName; + } + + /** + * 字段名称 :档口名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setSeriesName(String seriesName) { + this.seriesName = seriesName; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WorkerStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WorkerStore.java new file mode 100644 index 0000000..9b442cb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WorkerStore.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:员工可登陆门店 + * 表代码:cy_worker_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WorkerStore") +public class WorkerStore extends BaseEntity { + + private static final long serialVersionUID = 1929036928403622108L; + + /** + *员工ID + */ + private String workerId; + + /** + *门店ID + */ + private String storeId; + + + /** + * 字段名称 :员工ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getWorkerId() { + return this.workerId; + } + + /** + * 字段名称 :员工ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setWorkerId(String workerId) { + this.workerId = workerId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxAdPicture.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxAdPicture.java new file mode 100644 index 0000000..0f32bf2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxAdPicture.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信广告图片 + * 表代码:cy_wx_ad_picture + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxAdPicture") +public class WxAdPicture extends BaseEntity { + + private static final long serialVersionUID = 1454080765092165765L; + + /** + *显示序号 + */ + private String orderNo; + + /** + *图片名称 + */ + private String name; + + /** + *图片宽度 + */ + private Integer width; + + /** + *图片高度 + */ + private Integer height; + + /** + *存储组名 + */ + private String groupName; + + /** + *存储文件名 + */ + private String storageFileName; + + /** + *链接地址 + */ + private String linkUrl; + + /** + *删除标识 + */ + private Integer deleteFlag; + + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setOrderNo(String orderNo) { + this.orderNo = orderNo; + } + + /** + * 字段名称 :图片名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :图片名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getWidth() { + return this.width; + } + + /** + * 字段名称 :图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public void setWidth(Integer width) { + this.width = width; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getHeight() { + return this.height; + } + + /** + * 字段名称 :图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public void setHeight(Integer height) { + this.height = height; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getGroupName() { + return this.groupName; + } + + /** + * 字段名称 :存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getStorageFileName() { + return this.storageFileName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setStorageFileName(String storageFileName) { + this.storageFileName = storageFileName; + } + + /** + * 字段名称 :链接地址 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getLinkUrl() { + return this.linkUrl; + } + + /** + * 字段名称 :链接地址 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setLinkUrl(String linkUrl) { + this.linkUrl = linkUrl; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxAdjustPriceGoods.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxAdjustPriceGoods.java new file mode 100644 index 0000000..88ad9ed --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxAdjustPriceGoods.java @@ -0,0 +1,180 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信调价单商品明细 + * 表代码:cy_wx_adjust_price_goods + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxAdjustPriceGoods") +public class WxAdjustPriceGoods extends BaseEntity { + + private static final long serialVersionUID = 1550378718154421911L; + + /** + *单据ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String ticketNo; + + /** + *商品ID + */ + private String goodsId; + + /** + *产品ID + */ + private String productId; + + /** + *规格ID + */ + private String specId; + + /** + *售价 + */ + private Double price; + + /** + *会员价 + */ + private Double memberPrice; + + + /** + * 字段名称 :单据ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :单据ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getGoodsId() { + return this.goodsId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setGoodsId(String goodsId) { + this.goodsId = goodsId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMemberPrice() { + return this.memberPrice; + } + + /** + * 字段名称 :会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMemberPrice(Double memberPrice) { + this.memberPrice = memberPrice; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxAdjustPriceStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxAdjustPriceStore.java new file mode 100644 index 0000000..e706c37 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxAdjustPriceStore.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信调价单门店明细 + * 表代码:cy_wx_adjust_price_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxAdjustPriceStore") +public class WxAdjustPriceStore extends BaseEntity { + + private static final long serialVersionUID = 1244843276722087535L; + + /** + *单据ID + */ + private String ticketId; + + /** + *单据编号 + */ + private String ticketNo; + + /** + *门店ID + */ + private String storeId; + + + /** + * 字段名称 :单据ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :单据ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxAdjustPriceTicket.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxAdjustPriceTicket.java new file mode 100644 index 0000000..a75ebe7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxAdjustPriceTicket.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信商品调价单 + * 表代码:cy_wx_adjust_price_ticket + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxAdjustPriceTicket") +public class WxAdjustPriceTicket extends BaseEntity { + + private static final long serialVersionUID = 1785380426016729836L; + + /** + *单据编号 + */ + private String no; + + /** + *生效时间 + */ + private Date effectDate; + + /** + *备注信息 + */ + private String description; + + /** + *单据状态 + */ + private Integer status; + + /** + *审核人 + */ + private String checkPeople; + + /** + *审核日期 + */ + private Date checkDate; + + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :生效时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getEffectDate() { + return this.effectDate; + } + + /** + * 字段名称 :生效时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setEffectDate(Date effectDate) { + this.effectDate = effectDate; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getCheckPeople() { + return this.checkPeople; + } + + /** + * 字段名称 :审核人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setCheckPeople(String checkPeople) { + this.checkPeople = checkPeople; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCheckDate() { + return this.checkDate; + } + + /** + * 字段名称 :审核日期 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCheckDate(Date checkDate) { + this.checkDate = checkDate; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxGoods.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxGoods.java new file mode 100644 index 0000000..cc0119b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxGoods.java @@ -0,0 +1,433 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信商品信息 + * 表代码:cy_wx_goods + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxGoods") +public class WxGoods extends BaseEntity { + + private static final long serialVersionUID = 1437395602788762725L; + + /** + *产品ID + */ + private String productId; + + /** + *产品编号 + */ + private String productNo; + + /** + *规格ID + */ + private String specId; + + /** + *商品名称 + */ + private String name; + + /** + *规格名称 + */ + private String specName; + + /** + *商品描述 + */ + private String description; + + /** + *分类ID + */ + private String categoryId; + + /** + *分类路径 + */ + private String categoryPath; + + /** + *显示序号 + */ + private Integer orderNo; + + /** + *是否新品 + */ + private Integer isNew; + + /** + *售价 + */ + private Double price; + + /** + *会员价 + */ + private Double memberPrice; + + /** + *最小购买量 + */ + private Double minCount; + + /** + *限购数量 + */ + private Double limitCount; + + /** + *是否套餐 + */ + private Integer suitFlag; + + /** + *删除标识 + */ + private Integer deleteFlag; + + /** + *餐盒费 + */ + private Double boxPrice; + + /** + *英文名称 + */ + private String nameEn; + + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :商品描述 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :商品描述 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :分类ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getCategoryId() { + return this.categoryId; + } + + /** + * 字段名称 :分类ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setCategoryId(String categoryId) { + this.categoryId = categoryId; + } + + /** + * 字段名称 :分类路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getCategoryPath() { + return this.categoryPath; + } + + /** + * 字段名称 :分类路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setCategoryPath(String categoryPath) { + this.categoryPath = categoryPath; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :int + * 是否必填 :false + */ + public void setOrderNo(Integer orderNo) { + this.orderNo = orderNo; + } + + /** + * 字段名称 :是否新品 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsNew() { + return this.isNew; + } + + /** + * 字段名称 :是否新品 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsNew(Integer isNew) { + this.isNew = isNew; + } + + /** + * 字段名称 :售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :售价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :会员价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMemberPrice() { + return this.memberPrice; + } + + /** + * 字段名称 :会员价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMemberPrice(Double memberPrice) { + this.memberPrice = memberPrice; + } + + /** + * 字段名称 :最小购买量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMinCount() { + return this.minCount; + } + + /** + * 字段名称 :最小购买量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMinCount(Double minCount) { + this.minCount = minCount; + } + + /** + * 字段名称 :限购数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getLimitCount() { + return this.limitCount; + } + + /** + * 字段名称 :限购数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setLimitCount(Double limitCount) { + this.limitCount = limitCount; + } + + /** + * 字段名称 :是否套餐 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSuitFlag() { + return this.suitFlag; + } + + /** + * 字段名称 :是否套餐 + * 数据类型 :int + * 是否必填 :false + */ + public void setSuitFlag(Integer suitFlag) { + this.suitFlag = suitFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + + /** + * 字段名称 :餐盒费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getBoxPrice() { + return this.boxPrice; + } + + /** + * 字段名称 :餐盒费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setBoxPrice(Double boxPrice) { + this.boxPrice = boxPrice; + } + + /** + * 字段名称 :英文名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getNameEn() { + return this.nameEn; + } + + /** + * 字段名称 :英文名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setNameEn(String nameEn) { + this.nameEn = nameEn; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxGoodsCategory.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxGoodsCategory.java new file mode 100644 index 0000000..c2a10b3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxGoodsCategory.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信商品分类 + * 表代码:cy_wx_goods_category + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxGoodsCategory") +public class WxGoodsCategory extends BaseEntity { + + private static final long serialVersionUID = 1724783937658041350L; + + /** + *分类名称 + */ + private String name; + + /** + *分类描述 + */ + private String description; + + /** + *显示序号 + */ + private Integer orderNo; + + /** + *分类路径 + */ + private String path; + + /** + *删除标识 + */ + private Integer deleteFlag; + + /** + *英文名称 + */ + private String nameEn; + + /** + *关联类别Id + */ + private String typeId; + + /** + *关联类别路径 + */ + private String typePath; + + + /** + * 字段名称 :分类名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :分类名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :分类描述 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :分类描述 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOrderNo() { + return this.orderNo; + } + + /** + * 字段名称 :显示序号 + * 数据类型 :int + * 是否必填 :false + */ + public void setOrderNo(Integer orderNo) { + this.orderNo = orderNo; + } + + /** + * 字段名称 :分类路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getPath() { + return this.path; + } + + /** + * 字段名称 :分类路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setPath(String path) { + this.path = path; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + + /** + * 字段名称 :英文名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getNameEn() { + return this.nameEn; + } + + /** + * 字段名称 :英文名称 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setNameEn(String nameEn) { + this.nameEn = nameEn; + } + + /** + * 字段名称 :关联类别Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :关联类别Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :关联类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getTypePath() { + return this.typePath; + } + + /** + * 字段名称 :关联类别路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setTypePath(String typePath) { + this.typePath = typePath; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxGoodsMake.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxGoodsMake.java new file mode 100644 index 0000000..4189bee --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxGoodsMake.java @@ -0,0 +1,111 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信商品做法关联 + * 表代码:cy_wx_goods_make + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxGoodsMake") +public class WxGoodsMake extends BaseEntity { + + private static final long serialVersionUID = 1423082530012778538L; + + /** + *产品ID + */ + private String productId; + + /** + *做法类型 + */ + private String typeId; + + /** + *做法 + */ + private String makeId; + + /** + *加价 + */ + private Double addPrice; + + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :做法类型 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTypeId() { + return this.typeId; + } + + /** + * 字段名称 :做法类型 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTypeId(String typeId) { + this.typeId = typeId; + } + + /** + * 字段名称 :做法 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getMakeId() { + return this.makeId; + } + + /** + * 字段名称 :做法 + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setMakeId(String makeId) { + this.makeId = makeId; + } + + /** + * 字段名称 :加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddPrice() { + return this.addPrice; + } + + /** + * 字段名称 :加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddPrice(Double addPrice) { + this.addPrice = addPrice; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxGoodsTemplate.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxGoodsTemplate.java new file mode 100644 index 0000000..2ecf32f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxGoodsTemplate.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信商品模板 + * 表代码:cy_wx_goods_template + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxGoodsTemplate") +public class WxGoodsTemplate extends BaseEntity { + + private static final long serialVersionUID = 1977261852955760667L; + + /** + *编号 + */ + private String no; + + /** + *名称 + */ + private String name; + + /** + *备注 + */ + private String description; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :名称 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxGoodsTemplateDetail.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxGoodsTemplateDetail.java new file mode 100644 index 0000000..56a938b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxGoodsTemplateDetail.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信商品模板明细 + * 表代码:cy_wx_goods_template_detail + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxGoodsTemplateDetail") +public class WxGoodsTemplateDetail extends BaseEntity { + + private static final long serialVersionUID = 1457130947763742334L; + + /** + *模板ID + */ + private String templateId; + + /** + *商品ID + */ + private String goodsId; + + /** + *产品ID + */ + private String productId; + + /** + *规格ID + */ + private String specId; + + /** + *售价 + */ + private Double price; + + /** + *会员价 + */ + private Double memberPrice; + + + /** + * 字段名称 :模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTemplateId() { + return this.templateId; + } + + /** + * 字段名称 :模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTemplateId(String templateId) { + this.templateId = templateId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getGoodsId() { + return this.goodsId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setGoodsId(String goodsId) { + this.goodsId = goodsId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMemberPrice() { + return this.memberPrice; + } + + /** + * 字段名称 :会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMemberPrice(Double memberPrice) { + this.memberPrice = memberPrice; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxGoodsTemplateStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxGoodsTemplateStore.java new file mode 100644 index 0000000..5afb805 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxGoodsTemplateStore.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信商品模板门店明细 + * 表代码:cy_wx_goods_template_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxGoodsTemplateStore") +public class WxGoodsTemplateStore extends BaseEntity { + + private static final long serialVersionUID = 1770455082842044157L; + + /** + *模板ID + */ + private String templateId; + + /** + *门店ID + */ + private String storeId; + + + /** + * 字段名称 :模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTemplateId() { + return this.templateId; + } + + /** + * 字段名称 :模板ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTemplateId(String templateId) { + this.templateId = templateId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxPaymentParameter.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxPaymentParameter.java new file mode 100644 index 0000000..5da7040 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxPaymentParameter.java @@ -0,0 +1,157 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信点餐支付参数方案 + * 表代码:cy_wx_payment_parameter + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxPaymentParameter") +public class WxPaymentParameter extends BaseEntity { + + private static final long serialVersionUID = 1158471758397843961L; + + /** + *编号 + */ + private String no; + + /** + *方案名称 + */ + private String name; + + /** + *支付类型 + */ + private String sign; + + /** + *支付参数 + */ + private String pbody; + + /** + *是否启用 + */ + private Integer enabled; + + /** + *证书内容 + */ + private String certText; + + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :方案名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :方案名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :支付类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getSign() { + return this.sign; + } + + /** + * 字段名称 :支付类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setSign(String sign) { + this.sign = sign; + } + + /** + * 字段名称 :支付参数 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getPbody() { + return this.pbody; + } + + /** + * 字段名称 :支付参数 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setPbody(String pbody) { + this.pbody = pbody; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnabled() { + return this.enabled; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setEnabled(Integer enabled) { + this.enabled = enabled; + } + + /** + * 字段名称 :证书内容 + * 数据类型 :text + * 是否必填 :false + */ + public String getCertText() { + return this.certText; + } + + /** + * 字段名称 :证书内容 + * 数据类型 :text + * 是否必填 :false + */ + public void setCertText(String certText) { + this.certText = certText; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxPaymentParameterStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxPaymentParameterStore.java new file mode 100644 index 0000000..c1b123a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxPaymentParameterStore.java @@ -0,0 +1,88 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信点餐支付参数门店关联 + * 表代码:cy_wx_payment_parameter_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxPaymentParameterStore") +public class WxPaymentParameterStore extends BaseEntity { + + private static final long serialVersionUID = 1777034646403892832L; + + /** + *门店ID + */ + private String storeId; + + /** + *微信门店ID + */ + private String wxStoreId; + + /** + *支付参数ID + */ + private String parameterId; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :微信门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getWxStoreId() { + return this.wxStoreId; + } + + /** + * 字段名称 :微信门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setWxStoreId(String wxStoreId) { + this.wxStoreId = wxStoreId; + } + + /** + * 字段名称 :支付参数ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getParameterId() { + return this.parameterId; + } + + /** + * 字段名称 :支付参数ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setParameterId(String parameterId) { + this.parameterId = parameterId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxQrcodeSetting.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxQrcodeSetting.java new file mode 100644 index 0000000..726fa05 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxQrcodeSetting.java @@ -0,0 +1,226 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信二维码图片设置 + * 表代码:cy_wx_qrcode_setting + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxQrcodeSetting") +public class WxQrcodeSetting extends BaseEntity { + + private static final long serialVersionUID = 1237190847374132362L; + + /** + *宽度设置 + */ + private Integer width; + + /** + *高度设置 + */ + private Integer height; + + /** + *链接地址 + */ + private String linkAddress; + + /** + *logo图片名称 + */ + private String logoName; + + /** + *logo图片宽度 + */ + private Integer logoWidth; + + /** + *logo图片高度 + */ + private Integer logoHeight; + + /** + *logo存储组名 + */ + private String groupName; + + /** + *存储文件名 + */ + private String storageFileName; + + /** + *logo图片路径 + */ + private String imgLink; + + + /** + * 字段名称 :宽度设置 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getWidth() { + return this.width; + } + + /** + * 字段名称 :宽度设置 + * 数据类型 :int + * 是否必填 :false + */ + public void setWidth(Integer width) { + this.width = width; + } + + /** + * 字段名称 :高度设置 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getHeight() { + return this.height; + } + + /** + * 字段名称 :高度设置 + * 数据类型 :int + * 是否必填 :false + */ + public void setHeight(Integer height) { + this.height = height; + } + + /** + * 字段名称 :链接地址 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getLinkAddress() { + return this.linkAddress; + } + + /** + * 字段名称 :链接地址 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setLinkAddress(String linkAddress) { + this.linkAddress = linkAddress; + } + + /** + * 字段名称 :logo图片名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLogoName() { + return this.logoName; + } + + /** + * 字段名称 :logo图片名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLogoName(String logoName) { + this.logoName = logoName; + } + + /** + * 字段名称 :logo图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getLogoWidth() { + return this.logoWidth; + } + + /** + * 字段名称 :logo图片宽度 + * 数据类型 :int + * 是否必填 :false + */ + public void setLogoWidth(Integer logoWidth) { + this.logoWidth = logoWidth; + } + + /** + * 字段名称 :logo图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getLogoHeight() { + return this.logoHeight; + } + + /** + * 字段名称 :logo图片高度 + * 数据类型 :int + * 是否必填 :false + */ + public void setLogoHeight(Integer logoHeight) { + this.logoHeight = logoHeight; + } + + /** + * 字段名称 :logo存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getGroupName() { + return this.groupName; + } + + /** + * 字段名称 :logo存储组名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getStorageFileName() { + return this.storageFileName; + } + + /** + * 字段名称 :存储文件名 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setStorageFileName(String storageFileName) { + this.storageFileName = storageFileName; + } + + /** + * 字段名称 :logo图片路径 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getImgLink() { + return this.imgLink; + } + + /** + * 字段名称 :logo图片路径 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setImgLink(String imgLink) { + this.imgLink = imgLink; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxSalesDiscountInfo.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxSalesDiscountInfo.java new file mode 100644 index 0000000..f0edb1a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxSalesDiscountInfo.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信销售订单优惠明细 + * 表代码:cy_wx_sales_discount_info + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxSalesDiscountInfo") +public class WxSalesDiscountInfo extends BaseEntity { + + private static final long serialVersionUID = 1017633639709311616L; + + /** + *门店ID + */ + private String storeId; + + /** + *销售单ID + */ + private String ticketId; + + /** + *销售单编号 + */ + private String busNo; + + /** + *会员ID + */ + private String memberId; + + /** + *优惠类型 + */ + private Integer type; + + /** + *优惠说明 + */ + private String info; + + /** + *优惠金额 + */ + private Double discountMoney; + + /** + *销售时间 + */ + private Date saleDate; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :销售单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :销售单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :会员ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getMemberId() { + return this.memberId; + } + + /** + * 字段名称 :会员ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setMemberId(String memberId) { + this.memberId = memberId; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :优惠说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getInfo() { + return this.info; + } + + /** + * 字段名称 :优惠说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setInfo(String info) { + this.info = info; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountMoney() { + return this.discountMoney; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountMoney(Double discountMoney) { + this.discountMoney = discountMoney; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxSalesOrder.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxSalesOrder.java new file mode 100644 index 0000000..1139fcb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxSalesOrder.java @@ -0,0 +1,916 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信销售订单 + * 表代码:cy_wx_sales_order + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxSalesOrder") +public class WxSalesOrder extends BaseEntity { + + private static final long serialVersionUID = 1153593444996131989L; + + /** + *单据编号 + */ + private String no; + + /** + *公众号主键 + */ + private String wid; + + /** + *会员ID + */ + private String memberId; + + /** + *用户手机号 + */ + private String phone; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *流水号 + */ + private String daySeq; + + /** + *取餐号 + */ + private String takeNo; + + /** + *单据状态 + */ + private Integer status; + + /** + *退单状态 + */ + private Integer refundStatus; + + /** + *销售渠道 + */ + private String channel; + + /** + *销售时间 + */ + private Date saleDate; + + /** + *餐桌号 + */ + private String tableNo; + + /** + *餐桌名称 + */ + private String tableName; + + /** + *人数 + */ + private Integer people; + + /** + *营业模式 + */ + private Integer busMode; + + /** + *消费金额 + */ + private Double amount; + + /** + *优惠率 + */ + private Double discount; + + /** + *优惠额 + */ + private Double discountTotal; + + /** + *应收金额 + */ + private Double receivable; + + /** + *抹零金额 + */ + private Double maling; + + /** + *实收金额 + */ + private Double paid; + + /** + *原单号 + */ + private String noOrg; + + /** + *退单原因 + */ + private String backCause; + + /** + *是否使用会员卡 + */ + private Integer isMember; + + /** + *是否失效 + */ + private Integer isInvalid; + + /** + *备注说明 + */ + private String description; + + /** + *付款类型 + */ + private String payType; + + /** + *付款方式 + */ + private String payMode; + + /** + *付款时间 + */ + private Date payDate; + + /** + *取消时间 + */ + private Date cancelDate; + + /** + *取消原因 + */ + private String cancelReason; + + /** + *门店意见 + */ + private String storeReason; + + /** + *收货人姓名 + */ + private String receiveName; + + /** + *收货人手机号 + */ + private String receiveMobile; + + /** + *收货地址 + */ + private String receiveAddress; + + /** + *餐盒费 + */ + private Double boxFee; + + /** + *配送费 + */ + private Double distributionFee; + + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :单据编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :公众号主键 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getWid() { + return this.wid; + } + + /** + * 字段名称 :公众号主键 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setWid(String wid) { + this.wid = wid; + } + + /** + * 字段名称 :会员ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getMemberId() { + return this.memberId; + } + + /** + * 字段名称 :会员ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setMemberId(String memberId) { + this.memberId = memberId; + } + + /** + * 字段名称 :用户手机号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPhone() { + return this.phone; + } + + /** + * 字段名称 :用户手机号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPhone(String phone) { + this.phone = phone; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :流水号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getDaySeq() { + return this.daySeq; + } + + /** + * 字段名称 :流水号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setDaySeq(String daySeq) { + this.daySeq = daySeq; + } + + /** + * 字段名称 :取餐号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTakeNo() { + return this.takeNo; + } + + /** + * 字段名称 :取餐号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTakeNo(String takeNo) { + this.takeNo = takeNo; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :退单状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getRefundStatus() { + return this.refundStatus; + } + + /** + * 字段名称 :退单状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setRefundStatus(Integer refundStatus) { + this.refundStatus = refundStatus; + } + + /** + * 字段名称 :销售渠道 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getChannel() { + return this.channel; + } + + /** + * 字段名称 :销售渠道 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setChannel(String channel) { + this.channel = channel; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTableNo() { + return this.tableNo; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTableNo(String tableNo) { + this.tableNo = tableNo; + } + + /** + * 字段名称 :餐桌名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTableName() { + return this.tableName; + } + + /** + * 字段名称 :餐桌名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTableName(String tableName) { + this.tableName = tableName; + } + + /** + * 字段名称 :人数 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getPeople() { + return this.people; + } + + /** + * 字段名称 :人数 + * 数据类型 :int + * 是否必填 :false + */ + public void setPeople(Integer people) { + this.people = people; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getBusMode() { + return this.busMode; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :int + * 是否必填 :false + */ + public void setBusMode(Integer busMode) { + this.busMode = busMode; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountTotal() { + return this.discountTotal; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountTotal(Double discountTotal) { + this.discountTotal = discountTotal; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivable() { + return this.receivable; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivable(Double receivable) { + this.receivable = receivable; + } + + /** + * 字段名称 :抹零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMaling() { + return this.maling; + } + + /** + * 字段名称 :抹零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMaling(Double maling) { + this.maling = maling; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPaid() { + return this.paid; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPaid(Double paid) { + this.paid = paid; + } + + /** + * 字段名称 :原单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getNoOrg() { + return this.noOrg; + } + + /** + * 字段名称 :原单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setNoOrg(String noOrg) { + this.noOrg = noOrg; + } + + /** + * 字段名称 :退单原因 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getBackCause() { + return this.backCause; + } + + /** + * 字段名称 :退单原因 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setBackCause(String backCause) { + this.backCause = backCause; + } + + /** + * 字段名称 :是否使用会员卡 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsMember() { + return this.isMember; + } + + /** + * 字段名称 :是否使用会员卡 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsMember(Integer isMember) { + this.isMember = isMember; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsInvalid() { + return this.isInvalid; + } + + /** + * 字段名称 :是否失效 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsInvalid(Integer isInvalid) { + this.isInvalid = isInvalid; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注说明 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :付款类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPayType() { + return this.payType; + } + + /** + * 字段名称 :付款类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPayType(String payType) { + this.payType = payType; + } + + /** + * 字段名称 :付款方式 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPayMode() { + return this.payMode; + } + + /** + * 字段名称 :付款方式 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPayMode(String payMode) { + this.payMode = payMode; + } + + /** + * 字段名称 :付款时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getPayDate() { + return this.payDate; + } + + /** + * 字段名称 :付款时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setPayDate(Date payDate) { + this.payDate = payDate; + } + + /** + * 字段名称 :取消时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getCancelDate() { + return this.cancelDate; + } + + /** + * 字段名称 :取消时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setCancelDate(Date cancelDate) { + this.cancelDate = cancelDate; + } + + /** + * 字段名称 :取消原因 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getCancelReason() { + return this.cancelReason; + } + + /** + * 字段名称 :取消原因 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setCancelReason(String cancelReason) { + this.cancelReason = cancelReason; + } + + /** + * 字段名称 :门店意见 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getStoreReason() { + return this.storeReason; + } + + /** + * 字段名称 :门店意见 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setStoreReason(String storeReason) { + this.storeReason = storeReason; + } + + /** + * 字段名称 :收货人姓名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getReceiveName() { + return this.receiveName; + } + + /** + * 字段名称 :收货人姓名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setReceiveName(String receiveName) { + this.receiveName = receiveName; + } + + /** + * 字段名称 :收货人手机号 + * 数据类型 :varchar(12) + * 是否必填 :false + */ + public String getReceiveMobile() { + return this.receiveMobile; + } + + /** + * 字段名称 :收货人手机号 + * 数据类型 :varchar(12) + * 是否必填 :false + */ + public void setReceiveMobile(String receiveMobile) { + this.receiveMobile = receiveMobile; + } + + /** + * 字段名称 :收货地址 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getReceiveAddress() { + return this.receiveAddress; + } + + /** + * 字段名称 :收货地址 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setReceiveAddress(String receiveAddress) { + this.receiveAddress = receiveAddress; + } + + /** + * 字段名称 :餐盒费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getBoxFee() { + return this.boxFee; + } + + /** + * 字段名称 :餐盒费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setBoxFee(Double boxFee) { + this.boxFee = boxFee; + } + + /** + * 字段名称 :配送费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDistributionFee() { + return this.distributionFee; + } + + /** + * 字段名称 :配送费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDistributionFee(Double distributionFee) { + this.distributionFee = distributionFee; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxSalesOrderItem.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxSalesOrderItem.java new file mode 100644 index 0000000..0fd5221 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxSalesOrderItem.java @@ -0,0 +1,962 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信销售订单明细 + * 表代码:cy_wx_sales_order_item + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxSalesOrderItem") +public class WxSalesOrderItem extends BaseEntity { + + private static final long serialVersionUID = 1494853335700116144L; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *销售单ID + */ + private String ticketId; + + /** + *销售单编号 + */ + private String busNo; + + /** + *会员ID + */ + private String memberId; + + /** + *餐桌号 + */ + private String tableNo; + + /** + *餐桌名称 + */ + private String tableName; + + /** + *行号 + */ + private Integer lineNo; + + /** + *商品ID + */ + private String goodsId; + + /** + *商品名称 + */ + private String goodsName; + + /** + *规格名称 + */ + private String specName; + + /** + *分类ID + */ + private String categoryId; + + /** + *分类路径 + */ + private String categoryPath; + + /** + *分类名称 + */ + private String categoryName; + + /** + *产品ID + */ + private String productId; + + /** + *产品编号 + */ + private String productNo; + + /** + *规格ID + */ + private String specId; + + /** + *产品单位 + */ + private String productUnitId; + + /** + *产品单位名 + */ + private String productUnitName; + + /** + *数量 + */ + private Double count; + + /** + *退菜数量 + */ + private Double rcount; + + /** + *销售价格 + */ + private Double price; + + /** + *产品原价 + */ + private Double priceOrg; + + /** + *折后价格 + */ + private Double discountPrice; + + /** + *销售时间 + */ + private Date saleDate; + + /** + *消费金额 + */ + private Double amount; + + /** + *优惠率 + */ + private Double discount; + + /** + *优惠额 + */ + private Double discountTotal; + + /** + *应收金额 + */ + private Double receivable; + + /** + *加价金额 + */ + private Double addPriceTotal; + + /** + *加价优惠金额 + */ + private Double discountAddTotal; + + /** + *加价应收金额 + */ + private Double amountAddTotal; + + /** + *消费总额 + */ + private Double amountTotal; + + /** + *应收总额 + */ + private Double receivableTotal; + + /** + *是否使用会员卡 + */ + private Integer isMember; + + /** + *是否套菜 + */ + private Integer isSuit; + + /** + *套菜ID + */ + private String suitId; + + /** + *父记录ID + */ + private String parentId; + + /** + *餐盒数量 + */ + private Double boxNum; + + /** + *餐盒费 + */ + private Double boxPrice; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :销售单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :销售单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :会员ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getMemberId() { + return this.memberId; + } + + /** + * 字段名称 :会员ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setMemberId(String memberId) { + this.memberId = memberId; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getTableNo() { + return this.tableNo; + } + + /** + * 字段名称 :餐桌号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setTableNo(String tableNo) { + this.tableNo = tableNo; + } + + /** + * 字段名称 :餐桌名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTableName() { + return this.tableName; + } + + /** + * 字段名称 :餐桌名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTableName(String tableName) { + this.tableName = tableName; + } + + /** + * 字段名称 :行号 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getLineNo() { + return this.lineNo; + } + + /** + * 字段名称 :行号 + * 数据类型 :int + * 是否必填 :false + */ + public void setLineNo(Integer lineNo) { + this.lineNo = lineNo; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getGoodsId() { + return this.goodsId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setGoodsId(String goodsId) { + this.goodsId = goodsId; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getGoodsName() { + return this.goodsName; + } + + /** + * 字段名称 :商品名称 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setGoodsName(String goodsName) { + this.goodsName = goodsName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecName() { + return this.specName; + } + + /** + * 字段名称 :规格名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecName(String specName) { + this.specName = specName; + } + + /** + * 字段名称 :分类ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getCategoryId() { + return this.categoryId; + } + + /** + * 字段名称 :分类ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setCategoryId(String categoryId) { + this.categoryId = categoryId; + } + + /** + * 字段名称 :分类路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getCategoryPath() { + return this.categoryPath; + } + + /** + * 字段名称 :分类路径 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setCategoryPath(String categoryPath) { + this.categoryPath = categoryPath; + } + + /** + * 字段名称 :分类名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getCategoryName() { + return this.categoryName; + } + + /** + * 字段名称 :分类名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setCategoryName(String categoryName) { + this.categoryName = categoryName; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getProductNo() { + return this.productNo; + } + + /** + * 字段名称 :产品编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setProductNo(String productNo) { + this.productNo = productNo; + } + + /** + * 字段名称 :规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :产品单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductUnitId() { + return this.productUnitId; + } + + /** + * 字段名称 :产品单位 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductUnitId(String productUnitId) { + this.productUnitId = productUnitId; + } + + /** + * 字段名称 :产品单位名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getProductUnitName() { + return this.productUnitName; + } + + /** + * 字段名称 :产品单位名 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setProductUnitName(String productUnitName) { + this.productUnitName = productUnitName; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getCount() { + return this.count; + } + + /** + * 字段名称 :数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setCount(Double count) { + this.count = count; + } + + /** + * 字段名称 :退菜数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getRcount() { + return this.rcount; + } + + /** + * 字段名称 :退菜数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setRcount(Double rcount) { + this.rcount = rcount; + } + + /** + * 字段名称 :销售价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :销售价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :产品原价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPriceOrg() { + return this.priceOrg; + } + + /** + * 字段名称 :产品原价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPriceOrg(Double priceOrg) { + this.priceOrg = priceOrg; + } + + /** + * 字段名称 :折后价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountPrice() { + return this.discountPrice; + } + + /** + * 字段名称 :折后价格 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountPrice(Double discountPrice) { + this.discountPrice = discountPrice; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :消费金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :优惠率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountTotal() { + return this.discountTotal; + } + + /** + * 字段名称 :优惠额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountTotal(Double discountTotal) { + this.discountTotal = discountTotal; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivable() { + return this.receivable; + } + + /** + * 字段名称 :应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivable(Double receivable) { + this.receivable = receivable; + } + + /** + * 字段名称 :加价金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddPriceTotal() { + return this.addPriceTotal; + } + + /** + * 字段名称 :加价金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddPriceTotal(Double addPriceTotal) { + this.addPriceTotal = addPriceTotal; + } + + /** + * 字段名称 :加价优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountAddTotal() { + return this.discountAddTotal; + } + + /** + * 字段名称 :加价优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountAddTotal(Double discountAddTotal) { + this.discountAddTotal = discountAddTotal; + } + + /** + * 字段名称 :加价应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmountAddTotal() { + return this.amountAddTotal; + } + + /** + * 字段名称 :加价应收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmountAddTotal(Double amountAddTotal) { + this.amountAddTotal = amountAddTotal; + } + + /** + * 字段名称 :消费总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAmountTotal() { + return this.amountTotal; + } + + /** + * 字段名称 :消费总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAmountTotal(Double amountTotal) { + this.amountTotal = amountTotal; + } + + /** + * 字段名称 :应收总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getReceivableTotal() { + return this.receivableTotal; + } + + /** + * 字段名称 :应收总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setReceivableTotal(Double receivableTotal) { + this.receivableTotal = receivableTotal; + } + + /** + * 字段名称 :是否使用会员卡 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsMember() { + return this.isMember; + } + + /** + * 字段名称 :是否使用会员卡 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsMember(Integer isMember) { + this.isMember = isMember; + } + + /** + * 字段名称 :是否套菜 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsSuit() { + return this.isSuit; + } + + /** + * 字段名称 :是否套菜 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsSuit(Integer isSuit) { + this.isSuit = isSuit; + } + + /** + * 字段名称 :套菜ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getSuitId() { + return this.suitId; + } + + /** + * 字段名称 :套菜ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setSuitId(String suitId) { + this.suitId = suitId; + } + + /** + * 字段名称 :父记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getParentId() { + return this.parentId; + } + + /** + * 字段名称 :父记录ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setParentId(String parentId) { + this.parentId = parentId; + } + + /** + * 字段名称 :餐盒数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getBoxNum() { + return this.boxNum; + } + + /** + * 字段名称 :餐盒数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setBoxNum(Double boxNum) { + this.boxNum = boxNum; + } + + /** + * 字段名称 :餐盒费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getBoxPrice() { + return this.boxPrice; + } + + /** + * 字段名称 :餐盒费 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setBoxPrice(Double boxPrice) { + this.boxPrice = boxPrice; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxSalesOrderItemMake.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxSalesOrderItemMake.java new file mode 100644 index 0000000..437616b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxSalesOrderItemMake.java @@ -0,0 +1,433 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信销售订单明细项做法信息 + * 表代码:cy_wx_sales_order_item_make + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxSalesOrderItemMake") +public class WxSalesOrderItemMake extends BaseEntity { + + private static final long serialVersionUID = 1990310280698524305L; + + /** + *门店ID + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *销售单ID + */ + private String ticketId; + + /** + *销售单编号 + */ + private String busNo; + + /** + *会员ID + */ + private String memberId; + + /** + *订单明细ID + */ + private String orderItemId; + + /** + *做法ID + */ + private String makeId; + + /** + *做法名称 + */ + private String makeName; + + /** + *做法加价 + */ + private Double addPrice; + + /** + *做法折后加价 + */ + private Double discountPrice; + + /** + *做法数量 + */ + private Double count; + + /** + *做法退数量 + */ + private Double rcount; + + /** + *加价总额 + */ + private Double addTotal; + + /** + *折后总额 + */ + private Double discountAddTotal; + + /** + *折扣率 + */ + private Double discount; + + /** + *管理数量 + */ + private Integer qtyFlag; + + /** + *销售时间 + */ + private Date saleDate; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :销售单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :销售单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :会员ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getMemberId() { + return this.memberId; + } + + /** + * 字段名称 :会员ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setMemberId(String memberId) { + this.memberId = memberId; + } + + /** + * 字段名称 :订单明细ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOrderItemId() { + return this.orderItemId; + } + + /** + * 字段名称 :订单明细ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOrderItemId(String orderItemId) { + this.orderItemId = orderItemId; + } + + /** + * 字段名称 :做法ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMakeId() { + return this.makeId; + } + + /** + * 字段名称 :做法ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMakeId(String makeId) { + this.makeId = makeId; + } + + /** + * 字段名称 :做法名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getMakeName() { + return this.makeName; + } + + /** + * 字段名称 :做法名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setMakeName(String makeName) { + this.makeName = makeName; + } + + /** + * 字段名称 :做法加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddPrice() { + return this.addPrice; + } + + /** + * 字段名称 :做法加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddPrice(Double addPrice) { + this.addPrice = addPrice; + } + + /** + * 字段名称 :做法折后加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountPrice() { + return this.discountPrice; + } + + /** + * 字段名称 :做法折后加价 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountPrice(Double discountPrice) { + this.discountPrice = discountPrice; + } + + /** + * 字段名称 :做法数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getCount() { + return this.count; + } + + /** + * 字段名称 :做法数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setCount(Double count) { + this.count = count; + } + + /** + * 字段名称 :做法退数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getRcount() { + return this.rcount; + } + + /** + * 字段名称 :做法退数量 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setRcount(Double rcount) { + this.rcount = rcount; + } + + /** + * 字段名称 :加价总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAddTotal() { + return this.addTotal; + } + + /** + * 字段名称 :加价总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAddTotal(Double addTotal) { + this.addTotal = addTotal; + } + + /** + * 字段名称 :折后总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountAddTotal() { + return this.discountAddTotal; + } + + /** + * 字段名称 :折后总额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountAddTotal(Double discountAddTotal) { + this.discountAddTotal = discountAddTotal; + } + + /** + * 字段名称 :折扣率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscount() { + return this.discount; + } + + /** + * 字段名称 :折扣率 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscount(Double discount) { + this.discount = discount; + } + + /** + * 字段名称 :管理数量 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getQtyFlag() { + return this.qtyFlag; + } + + /** + * 字段名称 :管理数量 + * 数据类型 :int + * 是否必填 :false + */ + public void setQtyFlag(Integer qtyFlag) { + this.qtyFlag = qtyFlag; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxSalesOrderItemPromo.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxSalesOrderItemPromo.java new file mode 100644 index 0000000..8793f2c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxSalesOrderItemPromo.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信销售订单明细项优惠信息 + * 表代码:cy_wx_sales_order_item_promo + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxSalesOrderItemPromo") +public class WxSalesOrderItemPromo extends BaseEntity { + + private static final long serialVersionUID = 1331200838978322868L; + + /** + *门店ID + */ + private String storeId; + + /** + *销售单ID + */ + private String ticketId; + + /** + *销售单号 + */ + private String busNo; + + /** + *订单明细ID + */ + private String orderItemId; + + /** + *优惠类型 + */ + private Integer type; + + /** + *优惠说明 + */ + private String info; + + /** + *优惠金额 + */ + private Double discountMoney; + + /** + *销售时间 + */ + private Date saleDate; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :销售单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :订单明细ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOrderItemId() { + return this.orderItemId; + } + + /** + * 字段名称 :订单明细ID + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOrderItemId(String orderItemId) { + this.orderItemId = orderItemId; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :优惠类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :优惠说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getInfo() { + return this.info; + } + + /** + * 字段名称 :优惠说明 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setInfo(String info) { + this.info = info; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getDiscountMoney() { + return this.discountMoney; + } + + /** + * 字段名称 :优惠金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setDiscountMoney(Double discountMoney) { + this.discountMoney = discountMoney; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getSaleDate() { + return this.saleDate; + } + + /** + * 字段名称 :销售时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setSaleDate(Date saleDate) { + this.saleDate = saleDate; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxSalesOrderLog.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxSalesOrderLog.java new file mode 100644 index 0000000..a0d62f3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxSalesOrderLog.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信销售订单操作记录 + * 表代码:cy_wx_sales_order_log + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxSalesOrderLog") +public class WxSalesOrderLog extends BaseEntity { + + private static final long serialVersionUID = 1498783174963266461L; + + /** + *销售单ID + */ + private String ticketId; + + /** + *销售单编号 + */ + private String ticketNo; + + /** + *操作类型 + */ + private Integer type; + + /** + *操作状态 + */ + private Integer status; + + /** + *描述 + */ + private String description; + + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :销售单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTicketNo() { + return this.ticketNo; + } + + /** + * 字段名称 :销售单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTicketNo(String ticketNo) { + this.ticketNo = ticketNo; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getType() { + return this.type; + } + + /** + * 字段名称 :操作类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setType(Integer type) { + this.type = type; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :操作状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :描述 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxSalesPayment.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxSalesPayment.java new file mode 100644 index 0000000..58f8e40 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxSalesPayment.java @@ -0,0 +1,364 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信订单付款信息 + * 表代码:cy_wx_sales_payment + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxSalesPayment") +public class WxSalesPayment extends BaseEntity { + + private static final long serialVersionUID = 1855908199659095024L; + + /** + *门店ID + */ + private String storeId; + + /** + *销售单ID + */ + private String ticketId; + + /** + *销售单编号 + */ + private String busNo; + + /** + *会员ID + */ + private String memberId; + + /** + *付款单号 + */ + private String payNo; + + /** + *付款类型 + */ + private String payType; + + /** + *付款方式 + */ + private String payMode; + + /** + *单据状态 + */ + private Integer status; + + /** + *实收金额 + */ + private Double paid; + + /** + *找零金额 + */ + private Double rchange; + + /** + *已收金额 + */ + private Double money; + + /** + *凭证号 + */ + private String voucherNo; + + /** + *付款时间 + */ + private Date payDate; + + /** + *付款账号 + */ + private String payAccount; + + /** + *备注 + */ + private String memo; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getTicketId() { + return this.ticketId; + } + + /** + * 字段名称 :销售单ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setTicketId(String ticketId) { + this.ticketId = ticketId; + } + + /** + * 字段名称 :销售单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getBusNo() { + return this.busNo; + } + + /** + * 字段名称 :销售单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setBusNo(String busNo) { + this.busNo = busNo; + } + + /** + * 字段名称 :会员ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getMemberId() { + return this.memberId; + } + + /** + * 字段名称 :会员ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setMemberId(String memberId) { + this.memberId = memberId; + } + + /** + * 字段名称 :付款单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getPayNo() { + return this.payNo; + } + + /** + * 字段名称 :付款单号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setPayNo(String payNo) { + this.payNo = payNo; + } + + /** + * 字段名称 :付款类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPayType() { + return this.payType; + } + + /** + * 字段名称 :付款类型 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPayType(String payType) { + this.payType = payType; + } + + /** + * 字段名称 :付款方式 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPayMode() { + return this.payMode; + } + + /** + * 字段名称 :付款方式 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPayMode(String payMode) { + this.payMode = payMode; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :单据状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPaid() { + return this.paid; + } + + /** + * 字段名称 :实收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPaid(Double paid) { + this.paid = paid; + } + + /** + * 字段名称 :找零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getRchange() { + return this.rchange; + } + + /** + * 字段名称 :找零金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setRchange(Double rchange) { + this.rchange = rchange; + } + + /** + * 字段名称 :已收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getMoney() { + return this.money; + } + + /** + * 字段名称 :已收金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setMoney(Double money) { + this.money = money; + } + + /** + * 字段名称 :凭证号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getVoucherNo() { + return this.voucherNo; + } + + /** + * 字段名称 :凭证号 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setVoucherNo(String voucherNo) { + this.voucherNo = voucherNo; + } + + /** + * 字段名称 :付款时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public Date getPayDate() { + return this.payDate; + } + + /** + * 字段名称 :付款时间 + * 数据类型 :datetime + * 是否必填 :false + */ + public void setPayDate(Date payDate) { + this.payDate = payDate; + } + + /** + * 字段名称 :付款账号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getPayAccount() { + return this.payAccount; + } + + /** + * 字段名称 :付款账号 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setPayAccount(String payAccount) { + this.payAccount = payAccount; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getMemo() { + return this.memo; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setMemo(String memo) { + this.memo = memo; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxStore.java new file mode 100644 index 0000000..17db5c3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxStore.java @@ -0,0 +1,479 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信门店信息 + * 表代码:cy_wx_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxStore") +public class WxStore extends BaseEntity { + + private static final long serialVersionUID = 1678993013310230012L; + + /** + *门店编号 + */ + private String no; + + /** + *门店名称 + */ + private String name; + + /** + *订餐电话 + */ + private String orderTel; + + /** + *地址 + */ + private String address; + + /** + *是否启用 + */ + private Integer enabled; + + /** + *删除标识 + */ + private Integer deleteFlag; + + /** + *关联门店ID + */ + private String storeId; + + /** + *纬度 + */ + private Double latitude; + + /** + *经度 + */ + private Double longitude; + + /** + *公告信息 + */ + private String noticeInfo; + + /** + *是否营业 + */ + private Integer isOpen; + + /** + *营业时间类型 + */ + private Integer openTimeType; + + /** + *营业时间 + */ + private String openTime; + + /** + *配送费 + */ + private Double deliverFee; + + /** + *配送费减免类型 + */ + private Integer deliverFeeDiscountType; + + /** + *配送费减免规则 + */ + private String deliverFeeDiscountRule; + + /** + *公众号ID + */ + private String wid; + + /** + *小程序帐号Id + */ + private String litAppAccountId; + + /** + *POS编号 + */ + private String posNo; + + /** + *营业模式 + */ + private String busModes; + + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getNo() { + return this.no; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setNo(String no) { + this.no = no; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :订餐电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getOrderTel() { + return this.orderTel; + } + + /** + * 字段名称 :订餐电话 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setOrderTel(String orderTel) { + this.orderTel = orderTel; + } + + /** + * 字段名称 :地址 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getAddress() { + return this.address; + } + + /** + * 字段名称 :地址 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setAddress(String address) { + this.address = address; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnabled() { + return this.enabled; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setEnabled(Integer enabled) { + this.enabled = enabled; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeleteFlag() { + return this.deleteFlag; + } + + /** + * 字段名称 :删除标识 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeleteFlag(Integer deleteFlag) { + this.deleteFlag = deleteFlag; + } + + /** + * 字段名称 :关联门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :关联门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :纬度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public Double getLatitude() { + return this.latitude; + } + + /** + * 字段名称 :纬度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public void setLatitude(Double latitude) { + this.latitude = latitude; + } + + /** + * 字段名称 :经度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public Double getLongitude() { + return this.longitude; + } + + /** + * 字段名称 :经度 + * 数据类型 :decimal(24,8) + * 是否必填 :false + */ + public void setLongitude(Double longitude) { + this.longitude = longitude; + } + + /** + * 字段名称 :公告信息 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getNoticeInfo() { + return this.noticeInfo; + } + + /** + * 字段名称 :公告信息 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setNoticeInfo(String noticeInfo) { + this.noticeInfo = noticeInfo; + } + + /** + * 字段名称 :是否营业 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsOpen() { + return this.isOpen; + } + + /** + * 字段名称 :是否营业 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsOpen(Integer isOpen) { + this.isOpen = isOpen; + } + + /** + * 字段名称 :营业时间类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getOpenTimeType() { + return this.openTimeType; + } + + /** + * 字段名称 :营业时间类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setOpenTimeType(Integer openTimeType) { + this.openTimeType = openTimeType; + } + + /** + * 字段名称 :营业时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public String getOpenTime() { + return this.openTime; + } + + /** + * 字段名称 :营业时间 + * 数据类型 :varchar(64) + * 是否必填 :false + */ + public void setOpenTime(String openTime) { + this.openTime = openTime; + } + + /** + * 字段名称 :配送费 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getDeliverFee() { + return this.deliverFee; + } + + /** + * 字段名称 :配送费 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setDeliverFee(Double deliverFee) { + this.deliverFee = deliverFee; + } + + /** + * 字段名称 :配送费减免类型 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getDeliverFeeDiscountType() { + return this.deliverFeeDiscountType; + } + + /** + * 字段名称 :配送费减免类型 + * 数据类型 :int + * 是否必填 :false + */ + public void setDeliverFeeDiscountType(Integer deliverFeeDiscountType) { + this.deliverFeeDiscountType = deliverFeeDiscountType; + } + + /** + * 字段名称 :配送费减免规则 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getDeliverFeeDiscountRule() { + return this.deliverFeeDiscountRule; + } + + /** + * 字段名称 :配送费减免规则 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setDeliverFeeDiscountRule(String deliverFeeDiscountRule) { + this.deliverFeeDiscountRule = deliverFeeDiscountRule; + } + + /** + * 字段名称 :公众号ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getWid() { + return this.wid; + } + + /** + * 字段名称 :公众号ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setWid(String wid) { + this.wid = wid; + } + + /** + * 字段名称 :小程序帐号Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getLitAppAccountId() { + return this.litAppAccountId; + } + + /** + * 字段名称 :小程序帐号Id + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setLitAppAccountId(String litAppAccountId) { + this.litAppAccountId = litAppAccountId; + } + + /** + * 字段名称 :POS编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :POS编号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getBusModes() { + return this.busModes; + } + + /** + * 字段名称 :营业模式 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setBusModes(String busModes) { + this.busModes = busModes; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxStoreGoods.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxStoreGoods.java new file mode 100644 index 0000000..adf2a4e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxStoreGoods.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信门店商品关联表 + * 表代码:cy_wx_store_goods + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxStoreGoods") +public class WxStoreGoods extends BaseEntity { + + private static final long serialVersionUID = 1521431479054910707L; + + /** + *门店ID + */ + private String storeId; + + /** + *商品ID + */ + private String goodsId; + + /** + *产品ID + */ + private String productId; + + /** + *规格ID + */ + private String specId; + + /** + *售价 + */ + private Double price; + + /** + *会员价 + */ + private Double memberPrice; + + /** + *库存数量 + */ + private Double inventoryQuantity; + + /** + *售卖状态 + */ + private Integer saleStatus; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getGoodsId() { + return this.goodsId; + } + + /** + * 字段名称 :商品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setGoodsId(String goodsId) { + this.goodsId = goodsId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getProductId() { + return this.productId; + } + + /** + * 字段名称 :产品ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setProductId(String productId) { + this.productId = productId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSpecId() { + return this.specId; + } + + /** + * 字段名称 :规格ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSpecId(String specId) { + this.specId = specId; + } + + /** + * 字段名称 :售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrice() { + return this.price; + } + + /** + * 字段名称 :售价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrice(Double price) { + this.price = price; + } + + /** + * 字段名称 :会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getMemberPrice() { + return this.memberPrice; + } + + /** + * 字段名称 :会员价 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setMemberPrice(Double memberPrice) { + this.memberPrice = memberPrice; + } + + /** + * 字段名称 :库存数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getInventoryQuantity() { + return this.inventoryQuantity; + } + + /** + * 字段名称 :库存数量 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setInventoryQuantity(Double inventoryQuantity) { + this.inventoryQuantity = inventoryQuantity; + } + + /** + * 字段名称 :售卖状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getSaleStatus() { + return this.saleStatus; + } + + /** + * 字段名称 :售卖状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setSaleStatus(Integer saleStatus) { + this.saleStatus = saleStatus; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxdcDistributionAddress.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxdcDistributionAddress.java new file mode 100644 index 0000000..2b7e004 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxdcDistributionAddress.java @@ -0,0 +1,203 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信点餐饮配送地址 + * 表代码:mc_wxdc_distribution_address + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxdcDistributionAddress") +public class WxdcDistributionAddress extends BaseEntity { + + private static final long serialVersionUID = 1584318234991551935L; + + /** + *微信ID + */ + private String wid; + + /** + *微信openId + */ + private String openId; + + /** + *收货人 + */ + private String name; + + /** + *订餐人手机号 + */ + private String mobile; + + /** + *收货人手机号 + */ + private String receiveMobile; + + /** + *收货地址 + */ + private String receiveAddress; + + /** + *是否默认 + */ + private Integer isDefaullt; + + /** + *地址标签 + */ + private String addressLabel; + + + /** + * 字段名称 :微信ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getWid() { + return this.wid; + } + + /** + * 字段名称 :微信ID + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setWid(String wid) { + this.wid = wid; + } + + /** + * 字段名称 :微信openId + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getOpenId() { + return this.openId; + } + + /** + * 字段名称 :微信openId + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setOpenId(String openId) { + this.openId = openId; + } + + /** + * 字段名称 :收货人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :收货人 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :订餐人手机号 + * 数据类型 :varchar(12) + * 是否必填 :false + */ + public String getMobile() { + return this.mobile; + } + + /** + * 字段名称 :订餐人手机号 + * 数据类型 :varchar(12) + * 是否必填 :false + */ + public void setMobile(String mobile) { + this.mobile = mobile; + } + + /** + * 字段名称 :收货人手机号 + * 数据类型 :varchar(12) + * 是否必填 :false + */ + public String getReceiveMobile() { + return this.receiveMobile; + } + + /** + * 字段名称 :收货人手机号 + * 数据类型 :varchar(12) + * 是否必填 :false + */ + public void setReceiveMobile(String receiveMobile) { + this.receiveMobile = receiveMobile; + } + + /** + * 字段名称 :收货地址 + * 数据类型 :longtext + * 是否必填 :false + */ + public String getReceiveAddress() { + return this.receiveAddress; + } + + /** + * 字段名称 :收货地址 + * 数据类型 :longtext + * 是否必填 :false + */ + public void setReceiveAddress(String receiveAddress) { + this.receiveAddress = receiveAddress; + } + + /** + * 字段名称 :是否默认 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getIsDefaullt() { + return this.isDefaullt; + } + + /** + * 字段名称 :是否默认 + * 数据类型 :int + * 是否必填 :false + */ + public void setIsDefaullt(Integer isDefaullt) { + this.isDefaullt = isDefaullt; + } + + /** + * 字段名称 :地址标签 + * 数据类型 :varchar(27) + * 是否必填 :false + */ + public String getAddressLabel() { + return this.addressLabel; + } + + /** + * 字段名称 :地址标签 + * 数据类型 :varchar(27) + * 是否必填 :false + */ + public void setAddressLabel(String addressLabel) { + this.addressLabel = addressLabel; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxdcRechargeOrder.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxdcRechargeOrder.java new file mode 100644 index 0000000..d9e8a73 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/WxdcRechargeOrder.java @@ -0,0 +1,525 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:微信点餐会员卡充值订单 + * 表代码:wx_wxdc_recharge_order + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"WxdcRechargeOrder") +public class WxdcRechargeOrder extends BaseEntity { + + private static final long serialVersionUID = 1317165926331525921L; + + /** + *门店Id + */ + private String storeId; + + /** + *门店编号 + */ + private String storeNo; + + /** + *门店名称 + */ + private String storeName; + + /** + *门店posNo + */ + private String posNo; + + /** + *营业员 + */ + private String workerNo; + + /** + *订单编号 + */ + private String tradeNo; + + /** + *支付凭证 + */ + private String payVoucherNo; + + /** + *卡号 + */ + private String cardNo; + + /** + *手机号 + */ + private String mobile; + + /** + *充值方案Id + */ + private String schemeId; + + /** + *充值方案编号 + */ + private String schemeNo; + + /** + *充值金额 + */ + private Double amount; + + /** + *赠送金额 + */ + private Double giftAmount; + + /** + *赠送积分 + */ + private Double giftPoint; + + /** + *充值前金额 + */ + private Double preAmount; + + /** + *充值后金额 + */ + private Double aftAmount; + + /** + *充值前积分 + */ + private Double prePoint; + + /** + *充值后积分 + */ + private Double aftPoint; + + /** + *赠送明细 + */ + private String giftDetail; + + /** + *状态 + */ + private Integer status; + + /** + *充值结果 + */ + private String result; + + /** + *备注 + */ + private String description; + + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getStoreNo() { + return this.storeNo; + } + + /** + * 字段名称 :门店编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setStoreNo(String storeNo) { + this.storeNo = storeNo; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public String getStoreName() { + return this.storeName; + } + + /** + * 字段名称 :门店名称 + * 数据类型 :varchar(500) + * 是否必填 :false + */ + public void setStoreName(String storeName) { + this.storeName = storeName; + } + + /** + * 字段名称 :门店posNo + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getPosNo() { + return this.posNo; + } + + /** + * 字段名称 :门店posNo + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setPosNo(String posNo) { + this.posNo = posNo; + } + + /** + * 字段名称 :营业员 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getWorkerNo() { + return this.workerNo; + } + + /** + * 字段名称 :营业员 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setWorkerNo(String workerNo) { + this.workerNo = workerNo; + } + + /** + * 字段名称 :订单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTradeNo() { + return this.tradeNo; + } + + /** + * 字段名称 :订单编号 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTradeNo(String tradeNo) { + this.tradeNo = tradeNo; + } + + /** + * 字段名称 :支付凭证 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getPayVoucherNo() { + return this.payVoucherNo; + } + + /** + * 字段名称 :支付凭证 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setPayVoucherNo(String payVoucherNo) { + this.payVoucherNo = payVoucherNo; + } + + /** + * 字段名称 :卡号 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getCardNo() { + return this.cardNo; + } + + /** + * 字段名称 :卡号 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setCardNo(String cardNo) { + this.cardNo = cardNo; + } + + /** + * 字段名称 :手机号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public String getMobile() { + return this.mobile; + } + + /** + * 字段名称 :手机号 + * 数据类型 :varchar(16) + * 是否必填 :false + */ + public void setMobile(String mobile) { + this.mobile = mobile; + } + + /** + * 字段名称 :充值方案Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSchemeId() { + return this.schemeId; + } + + /** + * 字段名称 :充值方案Id + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSchemeId(String schemeId) { + this.schemeId = schemeId; + } + + /** + * 字段名称 :充值方案编号 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public String getSchemeNo() { + return this.schemeNo; + } + + /** + * 字段名称 :充值方案编号 + * 数据类型 :varchar(24) + * 是否必填 :false + */ + public void setSchemeNo(String schemeNo) { + this.schemeNo = schemeNo; + } + + /** + * 字段名称 :充值金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAmount() { + return this.amount; + } + + /** + * 字段名称 :充值金额 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAmount(Double amount) { + this.amount = amount; + } + + /** + * 字段名称 :赠送金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getGiftAmount() { + return this.giftAmount; + } + + /** + * 字段名称 :赠送金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setGiftAmount(Double giftAmount) { + this.giftAmount = giftAmount; + } + + /** + * 字段名称 :赠送积分 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getGiftPoint() { + return this.giftPoint; + } + + /** + * 字段名称 :赠送积分 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setGiftPoint(Double giftPoint) { + this.giftPoint = giftPoint; + } + + /** + * 字段名称 :充值前金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getPreAmount() { + return this.preAmount; + } + + /** + * 字段名称 :充值前金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setPreAmount(Double preAmount) { + this.preAmount = preAmount; + } + + /** + * 字段名称 :充值后金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public Double getAftAmount() { + return this.aftAmount; + } + + /** + * 字段名称 :充值后金额 + * 数据类型 :decimal(24,2) + * 是否必填 :false + */ + public void setAftAmount(Double aftAmount) { + this.aftAmount = aftAmount; + } + + /** + * 字段名称 :充值前积分 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getPrePoint() { + return this.prePoint; + } + + /** + * 字段名称 :充值前积分 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setPrePoint(Double prePoint) { + this.prePoint = prePoint; + } + + /** + * 字段名称 :充值后积分 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public Double getAftPoint() { + return this.aftPoint; + } + + /** + * 字段名称 :充值后积分 + * 数据类型 :decimal(24,4) + * 是否必填 :false + */ + public void setAftPoint(Double aftPoint) { + this.aftPoint = aftPoint; + } + + /** + * 字段名称 :赠送明细 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public String getGiftDetail() { + return this.giftDetail; + } + + /** + * 字段名称 :赠送明细 + * 数据类型 :varchar(256) + * 是否必填 :false + */ + public void setGiftDetail(String giftDetail) { + this.giftDetail = giftDetail; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getStatus() { + return this.status; + } + + /** + * 字段名称 :状态 + * 数据类型 :int + * 是否必填 :false + */ + public void setStatus(Integer status) { + this.status = status; + } + + /** + * 字段名称 :充值结果 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getResult() { + return this.result; + } + + /** + * 字段名称 :充值结果 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setResult(String result) { + this.result = result; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/YunposSet.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/YunposSet.java new file mode 100644 index 0000000..eaaebbb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/YunposSet.java @@ -0,0 +1,134 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店云参数设置 + * 表代码:cy_yunpos_set + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"YunposSet") +public class YunposSet extends BaseEntity { + + private static final long serialVersionUID = 1704362236084457093L; + + /** + *方案名称 + */ + private String name; + + /** + *终端版本 + */ + private String terminalType; + + /** + *备注信息 + */ + private String description; + + /** + *是否启用 + */ + private Integer enable; + + /** + *设置参数 + */ + private String pbody; + + + /** + * 字段名称 :方案名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getName() { + return this.name; + } + + /** + * 字段名称 :方案名称 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setName(String name) { + this.name = name; + } + + /** + * 字段名称 :终端版本 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public String getTerminalType() { + return this.terminalType; + } + + /** + * 字段名称 :终端版本 + * 数据类型 :varchar(32) + * 是否必填 :false + */ + public void setTerminalType(String terminalType) { + this.terminalType = terminalType; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public String getDescription() { + return this.description; + } + + /** + * 字段名称 :备注信息 + * 数据类型 :varchar(128) + * 是否必填 :false + */ + public void setDescription(String description) { + this.description = description; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public Integer getEnable() { + return this.enable; + } + + /** + * 字段名称 :是否启用 + * 数据类型 :int + * 是否必填 :false + */ + public void setEnable(Integer enable) { + this.enable = enable; + } + + /** + * 字段名称 :设置参数 + * 数据类型 :text + * 是否必填 :false + */ + public String getPbody() { + return this.pbody; + } + + /** + * 字段名称 :设置参数 + * 数据类型 :text + * 是否必填 :false + */ + public void setPbody(String pbody) { + this.pbody = pbody; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/YunposSetStore.java b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/YunposSetStore.java new file mode 100644 index 0000000..9f2559d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.entity.food/YunposSetStore.java @@ -0,0 +1,65 @@ +package com.jwsaas.entity.food; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:门店云参数设置门店关联 + * 表代码:cy_yunpos_set_store + */ +@Alias(com.jwsaas.Constants.FOOD_SIGN+"YunposSetStore") +public class YunposSetStore extends BaseEntity { + + private static final long serialVersionUID = 1731009386437471254L; + + /** + *门店ID + */ + private String storeId; + + /** + *设置ID + */ + private String setId; + + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getStoreId() { + return this.storeId; + } + + /** + * 字段名称 :门店ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public String getSetId() { + return this.setId; + } + + /** + * 字段名称 :设置ID + * 数据类型 :bigint(18) + * 是否必填 :false + */ + public void setSetId(String setId) { + this.setId = setId; + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AdjustPriceProductServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AdjustPriceProductServiceImpl.java new file mode 100644 index 0000000..317d8e6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AdjustPriceProductServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.AdjustPriceProductDao; +import com.jwsaas.entity.food.AdjustPriceProduct; +import com.jwsaas.service.food.AdjustPriceProductService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"AdjustPriceProductServiceImpl") +public class AdjustPriceProductServiceImpl extends BaseServiceImpl implements AdjustPriceProductService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"AdjustPriceProductDaoImpl") + private AdjustPriceProductDao adjustPriceProductDao; + + @Override + public BaseDao getBaseDao() { + return this.adjustPriceProductDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AdjustPriceStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AdjustPriceStoreServiceImpl.java new file mode 100644 index 0000000..86d5b74 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AdjustPriceStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.AdjustPriceStoreDao; +import com.jwsaas.entity.food.AdjustPriceStore; +import com.jwsaas.service.food.AdjustPriceStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"AdjustPriceStoreServiceImpl") +public class AdjustPriceStoreServiceImpl extends BaseServiceImpl implements AdjustPriceStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"AdjustPriceStoreDaoImpl") + private AdjustPriceStoreDao adjustPriceStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.adjustPriceStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AdjustPriceTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AdjustPriceTicketServiceImpl.java new file mode 100644 index 0000000..aa0bb90 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AdjustPriceTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.AdjustPriceTicketDao; +import com.jwsaas.entity.food.AdjustPriceTicket; +import com.jwsaas.service.food.AdjustPriceTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"AdjustPriceTicketServiceImpl") +public class AdjustPriceTicketServiceImpl extends BaseServiceImpl implements AdjustPriceTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"AdjustPriceTicketDaoImpl") + private AdjustPriceTicketDao adjustPriceTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.adjustPriceTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AdvertCaptionServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AdvertCaptionServiceImpl.java new file mode 100644 index 0000000..4c84f60 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AdvertCaptionServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.AdvertCaptionDao; +import com.jwsaas.entity.food.AdvertCaption; +import com.jwsaas.service.food.AdvertCaptionService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"AdvertCaptionServiceImpl") +public class AdvertCaptionServiceImpl extends BaseServiceImpl implements AdvertCaptionService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"AdvertCaptionDaoImpl") + private AdvertCaptionDao advertCaptionDao; + + @Override + public BaseDao getBaseDao() { + return this.advertCaptionDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AdvertCaptionStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AdvertCaptionStoreServiceImpl.java new file mode 100644 index 0000000..8c43a16 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AdvertCaptionStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.AdvertCaptionStoreDao; +import com.jwsaas.entity.food.AdvertCaptionStore; +import com.jwsaas.service.food.AdvertCaptionStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"AdvertCaptionStoreServiceImpl") +public class AdvertCaptionStoreServiceImpl extends BaseServiceImpl implements AdvertCaptionStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"AdvertCaptionStoreDaoImpl") + private AdvertCaptionStoreDao advertCaptionStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.advertCaptionStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AdvertPictureServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AdvertPictureServiceImpl.java new file mode 100644 index 0000000..8101e49 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AdvertPictureServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.AdvertPictureDao; +import com.jwsaas.entity.food.AdvertPicture; +import com.jwsaas.service.food.AdvertPictureService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"AdvertPictureServiceImpl") +public class AdvertPictureServiceImpl extends BaseServiceImpl implements AdvertPictureService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"AdvertPictureDaoImpl") + private AdvertPictureDao advertPictureDao; + + @Override + public BaseDao getBaseDao() { + return this.advertPictureDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AdvertPictureStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AdvertPictureStoreServiceImpl.java new file mode 100644 index 0000000..f994528 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AdvertPictureStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.AdvertPictureStoreDao; +import com.jwsaas.entity.food.AdvertPictureStore; +import com.jwsaas.service.food.AdvertPictureStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"AdvertPictureStoreServiceImpl") +public class AdvertPictureStoreServiceImpl extends BaseServiceImpl implements AdvertPictureStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"AdvertPictureStoreDaoImpl") + private AdvertPictureStoreDao advertPictureStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.advertPictureStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AgentServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AgentServiceImpl.java new file mode 100644 index 0000000..c17e003 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AgentServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.AgentDao; +import com.jwsaas.entity.food.Agent; +import com.jwsaas.service.food.AgentService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"AgentServiceImpl") +public class AgentServiceImpl extends BaseServiceImpl implements AgentService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"AgentDaoImpl") + private AgentDao agentDao; + + @Override + public BaseDao getBaseDao() { + return this.agentDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AgentStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AgentStoreServiceImpl.java new file mode 100644 index 0000000..763152d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AgentStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.AgentStoreDao; +import com.jwsaas.entity.food.AgentStore; +import com.jwsaas.service.food.AgentStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"AgentStoreServiceImpl") +public class AgentStoreServiceImpl extends BaseServiceImpl implements AgentStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"AgentStoreDaoImpl") + private AgentStoreDao agentStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.agentStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsDetailServiceImpl.java new file mode 100644 index 0000000..a410415 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.AskGoodsDetailDao; +import com.jwsaas.entity.food.AskGoodsDetail; +import com.jwsaas.service.food.AskGoodsDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"AskGoodsDetailServiceImpl") +public class AskGoodsDetailServiceImpl extends BaseServiceImpl implements AskGoodsDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"AskGoodsDetailDaoImpl") + private AskGoodsDetailDao askGoodsDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.askGoodsDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsSuitDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsSuitDetailServiceImpl.java new file mode 100644 index 0000000..d186669 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsSuitDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.AskGoodsSuitDetailDao; +import com.jwsaas.entity.food.AskGoodsSuitDetail; +import com.jwsaas.service.food.AskGoodsSuitDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"AskGoodsSuitDetailServiceImpl") +public class AskGoodsSuitDetailServiceImpl extends BaseServiceImpl implements AskGoodsSuitDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"AskGoodsSuitDetailDaoImpl") + private AskGoodsSuitDetailDao askGoodsSuitDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.askGoodsSuitDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsSuitServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsSuitServiceImpl.java new file mode 100644 index 0000000..dbf3be4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsSuitServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.AskGoodsSuitDao; +import com.jwsaas.entity.food.AskGoodsSuit; +import com.jwsaas.service.food.AskGoodsSuitService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"AskGoodsSuitServiceImpl") +public class AskGoodsSuitServiceImpl extends BaseServiceImpl implements AskGoodsSuitService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"AskGoodsSuitDaoImpl") + private AskGoodsSuitDao askGoodsSuitDao; + + @Override + public BaseDao getBaseDao() { + return this.askGoodsSuitDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsTemplateDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsTemplateDetailServiceImpl.java new file mode 100644 index 0000000..9abf45d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsTemplateDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.AskGoodsTemplateDetailDao; +import com.jwsaas.entity.food.AskGoodsTemplateDetail; +import com.jwsaas.service.food.AskGoodsTemplateDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"AskGoodsTemplateDetailServiceImpl") +public class AskGoodsTemplateDetailServiceImpl extends BaseServiceImpl implements AskGoodsTemplateDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"AskGoodsTemplateDetailDaoImpl") + private AskGoodsTemplateDetailDao askGoodsTemplateDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.askGoodsTemplateDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsTemplateServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsTemplateServiceImpl.java new file mode 100644 index 0000000..346595f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsTemplateServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.AskGoodsTemplateDao; +import com.jwsaas.entity.food.AskGoodsTemplate; +import com.jwsaas.service.food.AskGoodsTemplateService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"AskGoodsTemplateServiceImpl") +public class AskGoodsTemplateServiceImpl extends BaseServiceImpl implements AskGoodsTemplateService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"AskGoodsTemplateDaoImpl") + private AskGoodsTemplateDao askGoodsTemplateDao; + + @Override + public BaseDao getBaseDao() { + return this.askGoodsTemplateDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsTemplateStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsTemplateStoreServiceImpl.java new file mode 100644 index 0000000..64d86b0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsTemplateStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.AskGoodsTemplateStoreDao; +import com.jwsaas.entity.food.AskGoodsTemplateStore; +import com.jwsaas.service.food.AskGoodsTemplateStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"AskGoodsTemplateStoreServiceImpl") +public class AskGoodsTemplateStoreServiceImpl extends BaseServiceImpl implements AskGoodsTemplateStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"AskGoodsTemplateStoreDaoImpl") + private AskGoodsTemplateStoreDao askGoodsTemplateStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.askGoodsTemplateStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsTicketLogServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsTicketLogServiceImpl.java new file mode 100644 index 0000000..0c33f40 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsTicketLogServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.AskGoodsTicketLogDao; +import com.jwsaas.entity.food.AskGoodsTicketLog; +import com.jwsaas.service.food.AskGoodsTicketLogService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"AskGoodsTicketLogServiceImpl") +public class AskGoodsTicketLogServiceImpl extends BaseServiceImpl implements AskGoodsTicketLogService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"AskGoodsTicketLogDaoImpl") + private AskGoodsTicketLogDao askGoodsTicketLogDao; + + @Override + public BaseDao getBaseDao() { + return this.askGoodsTicketLogDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsTicketPayServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsTicketPayServiceImpl.java new file mode 100644 index 0000000..d21beea --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsTicketPayServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.AskGoodsTicketPayDao; +import com.jwsaas.entity.food.AskGoodsTicketPay; +import com.jwsaas.service.food.AskGoodsTicketPayService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"AskGoodsTicketPayServiceImpl") +public class AskGoodsTicketPayServiceImpl extends BaseServiceImpl implements AskGoodsTicketPayService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"AskGoodsTicketPayDaoImpl") + private AskGoodsTicketPayDao askGoodsTicketPayDao; + + @Override + public BaseDao getBaseDao() { + return this.askGoodsTicketPayDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsTicketServiceImpl.java new file mode 100644 index 0000000..1cbd856 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/AskGoodsTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.AskGoodsTicketDao; +import com.jwsaas.entity.food.AskGoodsTicket; +import com.jwsaas.service.food.AskGoodsTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"AskGoodsTicketServiceImpl") +public class AskGoodsTicketServiceImpl extends BaseServiceImpl implements AskGoodsTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"AskGoodsTicketDaoImpl") + private AskGoodsTicketDao askGoodsTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.askGoodsTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/BaiduFoodServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/BaiduFoodServiceImpl.java new file mode 100644 index 0000000..4260e7c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/BaiduFoodServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.BaiduFoodDao; +import com.jwsaas.entity.food.BaiduFood; +import com.jwsaas.service.food.BaiduFoodService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"BaiduFoodServiceImpl") +public class BaiduFoodServiceImpl extends BaseServiceImpl implements BaiduFoodService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"BaiduFoodDaoImpl") + private BaiduFoodDao baiduFoodDao; + + @Override + public BaseDao getBaseDao() { + return this.baiduFoodDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/BaiduOrderProductServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/BaiduOrderProductServiceImpl.java new file mode 100644 index 0000000..1faa036 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/BaiduOrderProductServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.BaiduOrderProductDao; +import com.jwsaas.entity.food.BaiduOrderProduct; +import com.jwsaas.service.food.BaiduOrderProductService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"BaiduOrderProductServiceImpl") +public class BaiduOrderProductServiceImpl extends BaseServiceImpl implements BaiduOrderProductService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"BaiduOrderProductDaoImpl") + private BaiduOrderProductDao baiduOrderProductDao; + + @Override + public BaseDao getBaseDao() { + return this.baiduOrderProductDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/BaiduOrderServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/BaiduOrderServiceImpl.java new file mode 100644 index 0000000..b8dbbca --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/BaiduOrderServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.BaiduOrderDao; +import com.jwsaas.entity.food.BaiduOrder; +import com.jwsaas.service.food.BaiduOrderService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"BaiduOrderServiceImpl") +public class BaiduOrderServiceImpl extends BaseServiceImpl implements BaiduOrderService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"BaiduOrderDaoImpl") + private BaiduOrderDao baiduOrderDao; + + @Override + public BaseDao getBaseDao() { + return this.baiduOrderDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/BrandServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/BrandServiceImpl.java new file mode 100644 index 0000000..1ad48cf --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/BrandServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.BrandDao; +import com.jwsaas.entity.food.Brand; +import com.jwsaas.service.food.BrandService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"BrandServiceImpl") +public class BrandServiceImpl extends BaseServiceImpl implements BrandService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"BrandDaoImpl") + private BrandDao brandDao; + + @Override + public BaseDao getBaseDao() { + return this.brandDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/BusinessPlanDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/BusinessPlanDetailServiceImpl.java new file mode 100644 index 0000000..f8c3351 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/BusinessPlanDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.BusinessPlanDetailDao; +import com.jwsaas.entity.food.BusinessPlanDetail; +import com.jwsaas.service.food.BusinessPlanDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"BusinessPlanDetailServiceImpl") +public class BusinessPlanDetailServiceImpl extends BaseServiceImpl implements BusinessPlanDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"BusinessPlanDetailDaoImpl") + private BusinessPlanDetailDao businessPlanDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.businessPlanDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/BusinessPlanServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/BusinessPlanServiceImpl.java new file mode 100644 index 0000000..e062777 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/BusinessPlanServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.BusinessPlanDao; +import com.jwsaas.entity.food.BusinessPlan; +import com.jwsaas.service.food.BusinessPlanService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"BusinessPlanServiceImpl") +public class BusinessPlanServiceImpl extends BaseServiceImpl implements BusinessPlanService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"BusinessPlanDaoImpl") + private BusinessPlanDao businessPlanDao; + + @Override + public BaseDao getBaseDao() { + return this.businessPlanDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/BusinessPlanStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/BusinessPlanStoreServiceImpl.java new file mode 100644 index 0000000..347f799 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/BusinessPlanStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.BusinessPlanStoreDao; +import com.jwsaas.entity.food.BusinessPlanStore; +import com.jwsaas.service.food.BusinessPlanStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"BusinessPlanStoreServiceImpl") +public class BusinessPlanStoreServiceImpl extends BaseServiceImpl implements BusinessPlanStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"BusinessPlanStoreDaoImpl") + private BusinessPlanStoreDao businessPlanStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.businessPlanStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CandaoProductPropertyServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CandaoProductPropertyServiceImpl.java new file mode 100644 index 0000000..174fa2a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CandaoProductPropertyServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CandaoProductPropertyDao; +import com.jwsaas.entity.food.CandaoProductProperty; +import com.jwsaas.service.food.CandaoProductPropertyService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CandaoProductPropertyServiceImpl") +public class CandaoProductPropertyServiceImpl extends BaseServiceImpl implements CandaoProductPropertyService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CandaoProductPropertyDaoImpl") + private CandaoProductPropertyDao candaoProductPropertyDao; + + @Override + public BaseDao getBaseDao() { + return this.candaoProductPropertyDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CandaoProductServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CandaoProductServiceImpl.java new file mode 100644 index 0000000..17d81f4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CandaoProductServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CandaoProductDao; +import com.jwsaas.entity.food.CandaoProduct; +import com.jwsaas.service.food.CandaoProductService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CandaoProductServiceImpl") +public class CandaoProductServiceImpl extends BaseServiceImpl implements CandaoProductService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CandaoProductDaoImpl") + private CandaoProductDao candaoProductDao; + + @Override + public BaseDao getBaseDao() { + return this.candaoProductDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CandaoProductSpecServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CandaoProductSpecServiceImpl.java new file mode 100644 index 0000000..544762d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CandaoProductSpecServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CandaoProductSpecDao; +import com.jwsaas.entity.food.CandaoProductSpec; +import com.jwsaas.service.food.CandaoProductSpecService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CandaoProductSpecServiceImpl") +public class CandaoProductSpecServiceImpl extends BaseServiceImpl implements CandaoProductSpecService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CandaoProductSpecDaoImpl") + private CandaoProductSpecDao candaoProductSpecDao; + + @Override + public BaseDao getBaseDao() { + return this.candaoProductSpecDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CandaoProductSuitServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CandaoProductSuitServiceImpl.java new file mode 100644 index 0000000..8068596 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CandaoProductSuitServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CandaoProductSuitDao; +import com.jwsaas.entity.food.CandaoProductSuit; +import com.jwsaas.service.food.CandaoProductSuitService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CandaoProductSuitServiceImpl") +public class CandaoProductSuitServiceImpl extends BaseServiceImpl implements CandaoProductSuitService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CandaoProductSuitDaoImpl") + private CandaoProductSuitDao candaoProductSuitDao; + + @Override + public BaseDao getBaseDao() { + return this.candaoProductSuitDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CandaoStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CandaoStoreServiceImpl.java new file mode 100644 index 0000000..08114c9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CandaoStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CandaoStoreDao; +import com.jwsaas.entity.food.CandaoStore; +import com.jwsaas.service.food.CandaoStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CandaoStoreServiceImpl") +public class CandaoStoreServiceImpl extends BaseServiceImpl implements CandaoStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CandaoStoreDaoImpl") + private CandaoStoreDao candaoStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.candaoStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CategoryServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CategoryServiceImpl.java new file mode 100644 index 0000000..559017a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CategoryServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CategoryDao; +import com.jwsaas.entity.food.Category; +import com.jwsaas.service.food.CategoryService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CategoryServiceImpl") +public class CategoryServiceImpl extends BaseServiceImpl implements CategoryService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CategoryDaoImpl") + private CategoryDao categoryDao; + + @Override + public BaseDao getBaseDao() { + return this.categoryDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CheckTemplateDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CheckTemplateDetailServiceImpl.java new file mode 100644 index 0000000..6e42db3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CheckTemplateDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CheckTemplateDetailDao; +import com.jwsaas.entity.food.CheckTemplateDetail; +import com.jwsaas.service.food.CheckTemplateDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CheckTemplateDetailServiceImpl") +public class CheckTemplateDetailServiceImpl extends BaseServiceImpl implements CheckTemplateDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CheckTemplateDetailDaoImpl") + private CheckTemplateDetailDao checkTemplateDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.checkTemplateDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CheckTemplateServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CheckTemplateServiceImpl.java new file mode 100644 index 0000000..3bdd48a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CheckTemplateServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CheckTemplateDao; +import com.jwsaas.entity.food.CheckTemplate; +import com.jwsaas.service.food.CheckTemplateService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CheckTemplateServiceImpl") +public class CheckTemplateServiceImpl extends BaseServiceImpl implements CheckTemplateService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CheckTemplateDaoImpl") + private CheckTemplateDao checkTemplateDao; + + @Override + public BaseDao getBaseDao() { + return this.checkTemplateDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CheckTicketDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CheckTicketDetailServiceImpl.java new file mode 100644 index 0000000..4ff58de --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CheckTicketDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CheckTicketDetailDao; +import com.jwsaas.entity.food.CheckTicketDetail; +import com.jwsaas.service.food.CheckTicketDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CheckTicketDetailServiceImpl") +public class CheckTicketDetailServiceImpl extends BaseServiceImpl implements CheckTicketDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CheckTicketDetailDaoImpl") + private CheckTicketDetailDao checkTicketDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.checkTicketDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CheckTicketLogServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CheckTicketLogServiceImpl.java new file mode 100644 index 0000000..db451a9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CheckTicketLogServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CheckTicketLogDao; +import com.jwsaas.entity.food.CheckTicketLog; +import com.jwsaas.service.food.CheckTicketLogService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CheckTicketLogServiceImpl") +public class CheckTicketLogServiceImpl extends BaseServiceImpl implements CheckTicketLogService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CheckTicketLogDaoImpl") + private CheckTicketLogDao checkTicketLogDao; + + @Override + public BaseDao getBaseDao() { + return this.checkTicketLogDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CheckTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CheckTicketServiceImpl.java new file mode 100644 index 0000000..85c1f2a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CheckTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CheckTicketDao; +import com.jwsaas.entity.food.CheckTicket; +import com.jwsaas.service.food.CheckTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CheckTicketServiceImpl") +public class CheckTicketServiceImpl extends BaseServiceImpl implements CheckTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CheckTicketDaoImpl") + private CheckTicketDao checkTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.checkTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostFeeItemServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostFeeItemServiceImpl.java new file mode 100644 index 0000000..41fe917 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostFeeItemServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CostFeeItemDao; +import com.jwsaas.entity.food.CostFeeItem; +import com.jwsaas.service.food.CostFeeItemService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CostFeeItemServiceImpl") +public class CostFeeItemServiceImpl extends BaseServiceImpl implements CostFeeItemService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CostFeeItemDaoImpl") + private CostFeeItemDao costFeeItemDao; + + @Override + public BaseDao getBaseDao() { + return this.costFeeItemDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostFeeTypeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostFeeTypeServiceImpl.java new file mode 100644 index 0000000..cc5982f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostFeeTypeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CostFeeTypeDao; +import com.jwsaas.entity.food.CostFeeType; +import com.jwsaas.service.food.CostFeeTypeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CostFeeTypeServiceImpl") +public class CostFeeTypeServiceImpl extends BaseServiceImpl implements CostFeeTypeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CostFeeTypeDaoImpl") + private CostFeeTypeDao costFeeTypeDao; + + @Override + public BaseDao getBaseDao() { + return this.costFeeTypeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketPayTypeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketPayTypeServiceImpl.java new file mode 100644 index 0000000..9feb6f0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketPayTypeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CostTicketPayTypeDao; +import com.jwsaas.entity.food.CostTicketPayType; +import com.jwsaas.service.food.CostTicketPayTypeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CostTicketPayTypeServiceImpl") +public class CostTicketPayTypeServiceImpl extends BaseServiceImpl implements CostTicketPayTypeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CostTicketPayTypeDaoImpl") + private CostTicketPayTypeDao costTicketPayTypeDao; + + @Override + public BaseDao getBaseDao() { + return this.costTicketPayTypeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketProductChangeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketProductChangeServiceImpl.java new file mode 100644 index 0000000..a26a3e8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketProductChangeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CostTicketProductChangeDao; +import com.jwsaas.entity.food.CostTicketProductChange; +import com.jwsaas.service.food.CostTicketProductChangeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CostTicketProductChangeServiceImpl") +public class CostTicketProductChangeServiceImpl extends BaseServiceImpl implements CostTicketProductChangeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CostTicketProductChangeDaoImpl") + private CostTicketProductChangeDao costTicketProductChangeDao; + + @Override + public BaseDao getBaseDao() { + return this.costTicketProductChangeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketProductFixedChangeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketProductFixedChangeServiceImpl.java new file mode 100644 index 0000000..90c09c3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketProductFixedChangeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CostTicketProductFixedChangeDao; +import com.jwsaas.entity.food.CostTicketProductFixedChange; +import com.jwsaas.service.food.CostTicketProductFixedChangeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CostTicketProductFixedChangeServiceImpl") +public class CostTicketProductFixedChangeServiceImpl extends BaseServiceImpl implements CostTicketProductFixedChangeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CostTicketProductFixedChangeDaoImpl") + private CostTicketProductFixedChangeDao costTicketProductFixedChangeDao; + + @Override + public BaseDao getBaseDao() { + return this.costTicketProductFixedChangeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketProductMoreChangeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketProductMoreChangeServiceImpl.java new file mode 100644 index 0000000..94fcaba --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketProductMoreChangeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CostTicketProductMoreChangeDao; +import com.jwsaas.entity.food.CostTicketProductMoreChange; +import com.jwsaas.service.food.CostTicketProductMoreChangeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CostTicketProductMoreChangeServiceImpl") +public class CostTicketProductMoreChangeServiceImpl extends BaseServiceImpl implements CostTicketProductMoreChangeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CostTicketProductMoreChangeDaoImpl") + private CostTicketProductMoreChangeDao costTicketProductMoreChangeDao; + + @Override + public BaseDao getBaseDao() { + return this.costTicketProductMoreChangeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketProductOtherChangeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketProductOtherChangeServiceImpl.java new file mode 100644 index 0000000..ce54897 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketProductOtherChangeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CostTicketProductOtherChangeDao; +import com.jwsaas.entity.food.CostTicketProductOtherChange; +import com.jwsaas.service.food.CostTicketProductOtherChangeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CostTicketProductOtherChangeServiceImpl") +public class CostTicketProductOtherChangeServiceImpl extends BaseServiceImpl implements CostTicketProductOtherChangeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CostTicketProductOtherChangeDaoImpl") + private CostTicketProductOtherChangeDao costTicketProductOtherChangeDao; + + @Override + public BaseDao getBaseDao() { + return this.costTicketProductOtherChangeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketProductTypeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketProductTypeServiceImpl.java new file mode 100644 index 0000000..196cedd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketProductTypeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CostTicketProductTypeDao; +import com.jwsaas.entity.food.CostTicketProductType; +import com.jwsaas.service.food.CostTicketProductTypeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CostTicketProductTypeServiceImpl") +public class CostTicketProductTypeServiceImpl extends BaseServiceImpl implements CostTicketProductTypeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CostTicketProductTypeDaoImpl") + private CostTicketProductTypeDao costTicketProductTypeDao; + + @Override + public BaseDao getBaseDao() { + return this.costTicketProductTypeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketServiceImpl.java new file mode 100644 index 0000000..bfe1c52 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CostTicketDao; +import com.jwsaas.entity.food.CostTicket; +import com.jwsaas.service.food.CostTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CostTicketServiceImpl") +public class CostTicketServiceImpl extends BaseServiceImpl implements CostTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CostTicketDaoImpl") + private CostTicketDao costTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.costTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketTemplateProductChangeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketTemplateProductChangeServiceImpl.java new file mode 100644 index 0000000..919caed --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketTemplateProductChangeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CostTicketTemplateProductChangeDao; +import com.jwsaas.entity.food.CostTicketTemplateProductChange; +import com.jwsaas.service.food.CostTicketTemplateProductChangeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CostTicketTemplateProductChangeServiceImpl") +public class CostTicketTemplateProductChangeServiceImpl extends BaseServiceImpl implements CostTicketTemplateProductChangeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CostTicketTemplateProductChangeDaoImpl") + private CostTicketTemplateProductChangeDao costTicketTemplateProductChangeDao; + + @Override + public BaseDao getBaseDao() { + return this.costTicketTemplateProductChangeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketTemplateProductFixedChangeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketTemplateProductFixedChangeServiceImpl.java new file mode 100644 index 0000000..b5ce1ca --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketTemplateProductFixedChangeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CostTicketTemplateProductFixedChangeDao; +import com.jwsaas.entity.food.CostTicketTemplateProductFixedChange; +import com.jwsaas.service.food.CostTicketTemplateProductFixedChangeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CostTicketTemplateProductFixedChangeServiceImpl") +public class CostTicketTemplateProductFixedChangeServiceImpl extends BaseServiceImpl implements CostTicketTemplateProductFixedChangeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CostTicketTemplateProductFixedChangeDaoImpl") + private CostTicketTemplateProductFixedChangeDao costTicketTemplateProductFixedChangeDao; + + @Override + public BaseDao getBaseDao() { + return this.costTicketTemplateProductFixedChangeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketTemplateProductMoreChangeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketTemplateProductMoreChangeServiceImpl.java new file mode 100644 index 0000000..f31f84a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketTemplateProductMoreChangeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CostTicketTemplateProductMoreChangeDao; +import com.jwsaas.entity.food.CostTicketTemplateProductMoreChange; +import com.jwsaas.service.food.CostTicketTemplateProductMoreChangeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CostTicketTemplateProductMoreChangeServiceImpl") +public class CostTicketTemplateProductMoreChangeServiceImpl extends BaseServiceImpl implements CostTicketTemplateProductMoreChangeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CostTicketTemplateProductMoreChangeDaoImpl") + private CostTicketTemplateProductMoreChangeDao costTicketTemplateProductMoreChangeDao; + + @Override + public BaseDao getBaseDao() { + return this.costTicketTemplateProductMoreChangeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketTemplateProductOtherChangeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketTemplateProductOtherChangeServiceImpl.java new file mode 100644 index 0000000..e4e08fd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketTemplateProductOtherChangeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CostTicketTemplateProductOtherChangeDao; +import com.jwsaas.entity.food.CostTicketTemplateProductOtherChange; +import com.jwsaas.service.food.CostTicketTemplateProductOtherChangeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CostTicketTemplateProductOtherChangeServiceImpl") +public class CostTicketTemplateProductOtherChangeServiceImpl extends BaseServiceImpl implements CostTicketTemplateProductOtherChangeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CostTicketTemplateProductOtherChangeDaoImpl") + private CostTicketTemplateProductOtherChangeDao costTicketTemplateProductOtherChangeDao; + + @Override + public BaseDao getBaseDao() { + return this.costTicketTemplateProductOtherChangeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketTemplateServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketTemplateServiceImpl.java new file mode 100644 index 0000000..cb81858 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketTemplateServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CostTicketTemplateDao; +import com.jwsaas.entity.food.CostTicketTemplate; +import com.jwsaas.service.food.CostTicketTemplateService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CostTicketTemplateServiceImpl") +public class CostTicketTemplateServiceImpl extends BaseServiceImpl implements CostTicketTemplateService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CostTicketTemplateDaoImpl") + private CostTicketTemplateDao costTicketTemplateDao; + + @Override + public BaseDao getBaseDao() { + return this.costTicketTemplateDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketTemplateStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketTemplateStoreServiceImpl.java new file mode 100644 index 0000000..4cbcee9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CostTicketTemplateStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CostTicketTemplateStoreDao; +import com.jwsaas.entity.food.CostTicketTemplateStore; +import com.jwsaas.service.food.CostTicketTemplateStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CostTicketTemplateStoreServiceImpl") +public class CostTicketTemplateStoreServiceImpl extends BaseServiceImpl implements CostTicketTemplateStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CostTicketTemplateStoreDaoImpl") + private CostTicketTemplateStoreDao costTicketTemplateStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.costTicketTemplateStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CouponCodeDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CouponCodeDetailServiceImpl.java new file mode 100644 index 0000000..6aa10e3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CouponCodeDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CouponCodeDetailDao; +import com.jwsaas.entity.food.CouponCodeDetail; +import com.jwsaas.service.food.CouponCodeDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CouponCodeDetailServiceImpl") +public class CouponCodeDetailServiceImpl extends BaseServiceImpl implements CouponCodeDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CouponCodeDetailDaoImpl") + private CouponCodeDetailDao couponCodeDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.couponCodeDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CouponServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CouponServiceImpl.java new file mode 100644 index 0000000..bbac995 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CouponServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CouponDao; +import com.jwsaas.entity.food.Coupon; +import com.jwsaas.service.food.CouponService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CouponServiceImpl") +public class CouponServiceImpl extends BaseServiceImpl implements CouponService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CouponDaoImpl") + private CouponDao couponDao; + + @Override + public BaseDao getBaseDao() { + return this.couponDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CouponStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CouponStoreServiceImpl.java new file mode 100644 index 0000000..de43128 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CouponStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CouponStoreDao; +import com.jwsaas.entity.food.CouponStore; +import com.jwsaas.service.food.CouponStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CouponStoreServiceImpl") +public class CouponStoreServiceImpl extends BaseServiceImpl implements CouponStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CouponStoreDaoImpl") + private CouponStoreDao couponStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.couponStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CouponTicketProductServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CouponTicketProductServiceImpl.java new file mode 100644 index 0000000..71c9ac7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CouponTicketProductServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CouponTicketProductDao; +import com.jwsaas.entity.food.CouponTicketProduct; +import com.jwsaas.service.food.CouponTicketProductService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CouponTicketProductServiceImpl") +public class CouponTicketProductServiceImpl extends BaseServiceImpl implements CouponTicketProductService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CouponTicketProductDaoImpl") + private CouponTicketProductDao couponTicketProductDao; + + @Override + public BaseDao getBaseDao() { + return this.couponTicketProductDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CouponTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CouponTicketServiceImpl.java new file mode 100644 index 0000000..d25ad50 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CouponTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CouponTicketDao; +import com.jwsaas.entity.food.CouponTicket; +import com.jwsaas.service.food.CouponTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CouponTicketServiceImpl") +public class CouponTicketServiceImpl extends BaseServiceImpl implements CouponTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CouponTicketDaoImpl") + private CouponTicketDao couponTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.couponTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CouponTicketStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CouponTicketStoreServiceImpl.java new file mode 100644 index 0000000..a73c229 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/CouponTicketStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.CouponTicketStoreDao; +import com.jwsaas.entity.food.CouponTicketStore; +import com.jwsaas.service.food.CouponTicketStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"CouponTicketStoreServiceImpl") +public class CouponTicketStoreServiceImpl extends BaseServiceImpl implements CouponTicketStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"CouponTicketStoreDaoImpl") + private CouponTicketStoreDao couponTicketStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.couponTicketStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DeliverServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DeliverServiceImpl.java new file mode 100644 index 0000000..a78dcfe --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DeliverServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.DeliverDao; +import com.jwsaas.entity.food.Deliver; +import com.jwsaas.service.food.DeliverService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"DeliverServiceImpl") +public class DeliverServiceImpl extends BaseServiceImpl implements DeliverService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"DeliverDaoImpl") + private DeliverDao deliverDao; + + @Override + public BaseDao getBaseDao() { + return this.deliverDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DeliverStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DeliverStoreServiceImpl.java new file mode 100644 index 0000000..b8ab9f7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DeliverStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.DeliverStoreDao; +import com.jwsaas.entity.food.DeliverStore; +import com.jwsaas.service.food.DeliverStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"DeliverStoreServiceImpl") +public class DeliverStoreServiceImpl extends BaseServiceImpl implements DeliverStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"DeliverStoreDaoImpl") + private DeliverStoreDao deliverStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.deliverStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchSettlePlanPayModeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchSettlePlanPayModeServiceImpl.java new file mode 100644 index 0000000..56d1257 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchSettlePlanPayModeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.DispatchSettlePlanPayModeDao; +import com.jwsaas.entity.food.DispatchSettlePlanPayMode; +import com.jwsaas.service.food.DispatchSettlePlanPayModeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"DispatchSettlePlanPayModeServiceImpl") +public class DispatchSettlePlanPayModeServiceImpl extends BaseServiceImpl implements DispatchSettlePlanPayModeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"DispatchSettlePlanPayModeDaoImpl") + private DispatchSettlePlanPayModeDao dispatchSettlePlanPayModeDao; + + @Override + public BaseDao getBaseDao() { + return this.dispatchSettlePlanPayModeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchSettlePlanServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchSettlePlanServiceImpl.java new file mode 100644 index 0000000..3346d4f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchSettlePlanServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.DispatchSettlePlanDao; +import com.jwsaas.entity.food.DispatchSettlePlan; +import com.jwsaas.service.food.DispatchSettlePlanService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"DispatchSettlePlanServiceImpl") +public class DispatchSettlePlanServiceImpl extends BaseServiceImpl implements DispatchSettlePlanService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"DispatchSettlePlanDaoImpl") + private DispatchSettlePlanDao dispatchSettlePlanDao; + + @Override + public BaseDao getBaseDao() { + return this.dispatchSettlePlanDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchSettlePlanStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchSettlePlanStoreServiceImpl.java new file mode 100644 index 0000000..f3305a2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchSettlePlanStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.DispatchSettlePlanStoreDao; +import com.jwsaas.entity.food.DispatchSettlePlanStore; +import com.jwsaas.service.food.DispatchSettlePlanStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"DispatchSettlePlanStoreServiceImpl") +public class DispatchSettlePlanStoreServiceImpl extends BaseServiceImpl implements DispatchSettlePlanStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"DispatchSettlePlanStoreDaoImpl") + private DispatchSettlePlanStoreDao dispatchSettlePlanStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.dispatchSettlePlanStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchTicketDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchTicketDetailServiceImpl.java new file mode 100644 index 0000000..9536254 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchTicketDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.DispatchTicketDetailDao; +import com.jwsaas.entity.food.DispatchTicketDetail; +import com.jwsaas.service.food.DispatchTicketDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"DispatchTicketDetailServiceImpl") +public class DispatchTicketDetailServiceImpl extends BaseServiceImpl implements DispatchTicketDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"DispatchTicketDetailDaoImpl") + private DispatchTicketDetailDao dispatchTicketDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.dispatchTicketDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchTicketLogServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchTicketLogServiceImpl.java new file mode 100644 index 0000000..605f70e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchTicketLogServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.DispatchTicketLogDao; +import com.jwsaas.entity.food.DispatchTicketLog; +import com.jwsaas.service.food.DispatchTicketLogService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"DispatchTicketLogServiceImpl") +public class DispatchTicketLogServiceImpl extends BaseServiceImpl implements DispatchTicketLogService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"DispatchTicketLogDaoImpl") + private DispatchTicketLogDao dispatchTicketLogDao; + + @Override + public BaseDao getBaseDao() { + return this.dispatchTicketLogDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchTicketServiceImpl.java new file mode 100644 index 0000000..4386fec --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.DispatchTicketDao; +import com.jwsaas.entity.food.DispatchTicket; +import com.jwsaas.service.food.DispatchTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"DispatchTicketServiceImpl") +public class DispatchTicketServiceImpl extends BaseServiceImpl implements DispatchTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"DispatchTicketDaoImpl") + private DispatchTicketDao dispatchTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.dispatchTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchpriceTicketMaterialServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchpriceTicketMaterialServiceImpl.java new file mode 100644 index 0000000..4baac09 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchpriceTicketMaterialServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.DispatchpriceTicketMaterialDao; +import com.jwsaas.entity.food.DispatchpriceTicketMaterial; +import com.jwsaas.service.food.DispatchpriceTicketMaterialService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"DispatchpriceTicketMaterialServiceImpl") +public class DispatchpriceTicketMaterialServiceImpl extends BaseServiceImpl implements DispatchpriceTicketMaterialService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"DispatchpriceTicketMaterialDaoImpl") + private DispatchpriceTicketMaterialDao dispatchpriceTicketMaterialDao; + + @Override + public BaseDao getBaseDao() { + return this.dispatchpriceTicketMaterialDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchpriceTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchpriceTicketServiceImpl.java new file mode 100644 index 0000000..27d631e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchpriceTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.DispatchpriceTicketDao; +import com.jwsaas.entity.food.DispatchpriceTicket; +import com.jwsaas.service.food.DispatchpriceTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"DispatchpriceTicketServiceImpl") +public class DispatchpriceTicketServiceImpl extends BaseServiceImpl implements DispatchpriceTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"DispatchpriceTicketDaoImpl") + private DispatchpriceTicketDao dispatchpriceTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.dispatchpriceTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchpriceTicketStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchpriceTicketStoreServiceImpl.java new file mode 100644 index 0000000..b9e7b14 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/DispatchpriceTicketStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.DispatchpriceTicketStoreDao; +import com.jwsaas.entity.food.DispatchpriceTicketStore; +import com.jwsaas.service.food.DispatchpriceTicketStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"DispatchpriceTicketStoreServiceImpl") +public class DispatchpriceTicketStoreServiceImpl extends BaseServiceImpl implements DispatchpriceTicketStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"DispatchpriceTicketStoreDaoImpl") + private DispatchpriceTicketStoreDao dispatchpriceTicketStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.dispatchpriceTicketStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ElemeCategoryFoodServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ElemeCategoryFoodServiceImpl.java new file mode 100644 index 0000000..fca27cb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ElemeCategoryFoodServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ElemeCategoryFoodDao; +import com.jwsaas.entity.food.ElemeCategoryFood; +import com.jwsaas.service.food.ElemeCategoryFoodService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ElemeCategoryFoodServiceImpl") +public class ElemeCategoryFoodServiceImpl extends BaseServiceImpl implements ElemeCategoryFoodService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ElemeCategoryFoodDaoImpl") + private ElemeCategoryFoodDao elemeCategoryFoodDao; + + @Override + public BaseDao getBaseDao() { + return this.elemeCategoryFoodDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ElemeFoodCategoryServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ElemeFoodCategoryServiceImpl.java new file mode 100644 index 0000000..df3689d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ElemeFoodCategoryServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ElemeFoodCategoryDao; +import com.jwsaas.entity.food.ElemeFoodCategory; +import com.jwsaas.service.food.ElemeFoodCategoryService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ElemeFoodCategoryServiceImpl") +public class ElemeFoodCategoryServiceImpl extends BaseServiceImpl implements ElemeFoodCategoryService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ElemeFoodCategoryDaoImpl") + private ElemeFoodCategoryDao elemeFoodCategoryDao; + + @Override + public BaseDao getBaseDao() { + return this.elemeFoodCategoryDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ElemeOrderDetailGroupServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ElemeOrderDetailGroupServiceImpl.java new file mode 100644 index 0000000..7cbe7d0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ElemeOrderDetailGroupServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ElemeOrderDetailGroupDao; +import com.jwsaas.entity.food.ElemeOrderDetailGroup; +import com.jwsaas.service.food.ElemeOrderDetailGroupService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ElemeOrderDetailGroupServiceImpl") +public class ElemeOrderDetailGroupServiceImpl extends BaseServiceImpl implements ElemeOrderDetailGroupService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ElemeOrderDetailGroupDaoImpl") + private ElemeOrderDetailGroupDao elemeOrderDetailGroupDao; + + @Override + public BaseDao getBaseDao() { + return this.elemeOrderDetailGroupDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ElemeOrderDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ElemeOrderDetailServiceImpl.java new file mode 100644 index 0000000..66d01f4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ElemeOrderDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ElemeOrderDetailDao; +import com.jwsaas.entity.food.ElemeOrderDetail; +import com.jwsaas.service.food.ElemeOrderDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ElemeOrderDetailServiceImpl") +public class ElemeOrderDetailServiceImpl extends BaseServiceImpl implements ElemeOrderDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ElemeOrderDetailDaoImpl") + private ElemeOrderDetailDao elemeOrderDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.elemeOrderDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ErpPosSetServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ErpPosSetServiceImpl.java new file mode 100644 index 0000000..c500843 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ErpPosSetServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ErpPosSetDao; +import com.jwsaas.entity.food.ErpPosSet; +import com.jwsaas.service.food.ErpPosSetService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ErpPosSetServiceImpl") +public class ErpPosSetServiceImpl extends BaseServiceImpl implements ErpPosSetService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ErpPosSetDaoImpl") + private ErpPosSetDao erpPosSetDao; + + @Override + public BaseDao getBaseDao() { + return this.erpPosSetDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/FeeItemServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/FeeItemServiceImpl.java new file mode 100644 index 0000000..3d1abfd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/FeeItemServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.FeeItemDao; +import com.jwsaas.entity.food.FeeItem; +import com.jwsaas.service.food.FeeItemService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"FeeItemServiceImpl") +public class FeeItemServiceImpl extends BaseServiceImpl implements FeeItemService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"FeeItemDaoImpl") + private FeeItemDao feeItemDao; + + @Override + public BaseDao getBaseDao() { + return this.feeItemDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/KdsPlanServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/KdsPlanServiceImpl.java new file mode 100644 index 0000000..1efcef9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/KdsPlanServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.KdsPlanDao; +import com.jwsaas.entity.food.KdsPlan; +import com.jwsaas.service.food.KdsPlanService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"KdsPlanServiceImpl") +public class KdsPlanServiceImpl extends BaseServiceImpl implements KdsPlanService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"KdsPlanDaoImpl") + private KdsPlanDao kdsPlanDao; + + @Override + public BaseDao getBaseDao() { + return this.kdsPlanDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/KdsPlanStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/KdsPlanStoreServiceImpl.java new file mode 100644 index 0000000..22498e1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/KdsPlanStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.KdsPlanStoreDao; +import com.jwsaas.entity.food.KdsPlanStore; +import com.jwsaas.service.food.KdsPlanStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"KdsPlanStoreServiceImpl") +public class KdsPlanStoreServiceImpl extends BaseServiceImpl implements KdsPlanStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"KdsPlanStoreDaoImpl") + private KdsPlanStoreDao kdsPlanStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.kdsPlanStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/KitPlanServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/KitPlanServiceImpl.java new file mode 100644 index 0000000..5838b2f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/KitPlanServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.KitPlanDao; +import com.jwsaas.entity.food.KitPlan; +import com.jwsaas.service.food.KitPlanService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"KitPlanServiceImpl") +public class KitPlanServiceImpl extends BaseServiceImpl implements KitPlanService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"KitPlanDaoImpl") + private KitPlanDao kitPlanDao; + + @Override + public BaseDao getBaseDao() { + return this.kitPlanDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/KitPlanStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/KitPlanStoreServiceImpl.java new file mode 100644 index 0000000..45f89ab --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/KitPlanStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.KitPlanStoreDao; +import com.jwsaas.entity.food.KitPlanStore; +import com.jwsaas.service.food.KitPlanStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"KitPlanStoreServiceImpl") +public class KitPlanStoreServiceImpl extends BaseServiceImpl implements KitPlanStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"KitPlanStoreDaoImpl") + private KitPlanStoreDao kitPlanStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.kitPlanStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MakeBurdenServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MakeBurdenServiceImpl.java new file mode 100644 index 0000000..3f97d9a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MakeBurdenServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.MakeBurdenDao; +import com.jwsaas.entity.food.MakeBurden; +import com.jwsaas.service.food.MakeBurdenService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"MakeBurdenServiceImpl") +public class MakeBurdenServiceImpl extends BaseServiceImpl implements MakeBurdenService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"MakeBurdenDaoImpl") + private MakeBurdenDao makeBurdenDao; + + @Override + public BaseDao getBaseDao() { + return this.makeBurdenDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MakeDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MakeDetailServiceImpl.java new file mode 100644 index 0000000..238f811 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MakeDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.MakeDetailDao; +import com.jwsaas.entity.food.MakeDetail; +import com.jwsaas.service.food.MakeDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"MakeDetailServiceImpl") +public class MakeDetailServiceImpl extends BaseServiceImpl implements MakeDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"MakeDetailDaoImpl") + private MakeDetailDao makeDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.makeDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MakeTypeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MakeTypeServiceImpl.java new file mode 100644 index 0000000..3dbbefc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MakeTypeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.MakeTypeDao; +import com.jwsaas.entity.food.MakeType; +import com.jwsaas.service.food.MakeTypeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"MakeTypeServiceImpl") +public class MakeTypeServiceImpl extends BaseServiceImpl implements MakeTypeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"MakeTypeDaoImpl") + private MakeTypeDao makeTypeDao; + + @Override + public BaseDao getBaseDao() { + return this.makeTypeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MeituanFoodCategoryServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MeituanFoodCategoryServiceImpl.java new file mode 100644 index 0000000..c421e39 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MeituanFoodCategoryServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.MeituanFoodCategoryDao; +import com.jwsaas.entity.food.MeituanFoodCategory; +import com.jwsaas.service.food.MeituanFoodCategoryService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"MeituanFoodCategoryServiceImpl") +public class MeituanFoodCategoryServiceImpl extends BaseServiceImpl implements MeituanFoodCategoryService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"MeituanFoodCategoryDaoImpl") + private MeituanFoodCategoryDao meituanFoodCategoryDao; + + @Override + public BaseDao getBaseDao() { + return this.meituanFoodCategoryDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MeituanFoodServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MeituanFoodServiceImpl.java new file mode 100644 index 0000000..9c2e5c4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MeituanFoodServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.MeituanFoodDao; +import com.jwsaas.entity.food.MeituanFood; +import com.jwsaas.service.food.MeituanFoodService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"MeituanFoodServiceImpl") +public class MeituanFoodServiceImpl extends BaseServiceImpl implements MeituanFoodService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"MeituanFoodDaoImpl") + private MeituanFoodDao meituanFoodDao; + + @Override + public BaseDao getBaseDao() { + return this.meituanFoodDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MeituanOrderExtraServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MeituanOrderExtraServiceImpl.java new file mode 100644 index 0000000..dcbd361 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MeituanOrderExtraServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.MeituanOrderExtraDao; +import com.jwsaas.entity.food.MeituanOrderExtra; +import com.jwsaas.service.food.MeituanOrderExtraService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"MeituanOrderExtraServiceImpl") +public class MeituanOrderExtraServiceImpl extends BaseServiceImpl implements MeituanOrderExtraService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"MeituanOrderExtraDaoImpl") + private MeituanOrderExtraDao meituanOrderExtraDao; + + @Override + public BaseDao getBaseDao() { + return this.meituanOrderExtraDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MeituanOrderItemServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MeituanOrderItemServiceImpl.java new file mode 100644 index 0000000..fa4798b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MeituanOrderItemServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.MeituanOrderItemDao; +import com.jwsaas.entity.food.MeituanOrderItem; +import com.jwsaas.service.food.MeituanOrderItemService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"MeituanOrderItemServiceImpl") +public class MeituanOrderItemServiceImpl extends BaseServiceImpl implements MeituanOrderItemService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"MeituanOrderItemDaoImpl") + private MeituanOrderItemDao meituanOrderItemDao; + + @Override + public BaseDao getBaseDao() { + return this.meituanOrderItemDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MeituanOrderServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MeituanOrderServiceImpl.java new file mode 100644 index 0000000..04a7921 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/MeituanOrderServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.MeituanOrderDao; +import com.jwsaas.entity.food.MeituanOrder; +import com.jwsaas.service.food.MeituanOrderService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"MeituanOrderServiceImpl") +public class MeituanOrderServiceImpl extends BaseServiceImpl implements MeituanOrderService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"MeituanOrderDaoImpl") + private MeituanOrderDao meituanOrderDao; + + @Override + public BaseDao getBaseDao() { + return this.meituanOrderDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/OtherStorageOutTicketDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/OtherStorageOutTicketDetailServiceImpl.java new file mode 100644 index 0000000..ed85f54 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/OtherStorageOutTicketDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.OtherStorageOutTicketDetailDao; +import com.jwsaas.entity.food.OtherStorageOutTicketDetail; +import com.jwsaas.service.food.OtherStorageOutTicketDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"OtherStorageOutTicketDetailServiceImpl") +public class OtherStorageOutTicketDetailServiceImpl extends BaseServiceImpl implements OtherStorageOutTicketDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"OtherStorageOutTicketDetailDaoImpl") + private OtherStorageOutTicketDetailDao otherStorageOutTicketDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.otherStorageOutTicketDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/OtherStorageOutTicketLogServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/OtherStorageOutTicketLogServiceImpl.java new file mode 100644 index 0000000..c1cb25b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/OtherStorageOutTicketLogServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.OtherStorageOutTicketLogDao; +import com.jwsaas.entity.food.OtherStorageOutTicketLog; +import com.jwsaas.service.food.OtherStorageOutTicketLogService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"OtherStorageOutTicketLogServiceImpl") +public class OtherStorageOutTicketLogServiceImpl extends BaseServiceImpl implements OtherStorageOutTicketLogService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"OtherStorageOutTicketLogDaoImpl") + private OtherStorageOutTicketLogDao otherStorageOutTicketLogDao; + + @Override + public BaseDao getBaseDao() { + return this.otherStorageOutTicketLogDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/OtherStorageOutTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/OtherStorageOutTicketServiceImpl.java new file mode 100644 index 0000000..3e19175 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/OtherStorageOutTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.OtherStorageOutTicketDao; +import com.jwsaas.entity.food.OtherStorageOutTicket; +import com.jwsaas.service.food.OtherStorageOutTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"OtherStorageOutTicketServiceImpl") +public class OtherStorageOutTicketServiceImpl extends BaseServiceImpl implements OtherStorageOutTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"OtherStorageOutTicketDaoImpl") + private OtherStorageOutTicketDao otherStorageOutTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.otherStorageOutTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/OtherStorageTicketDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/OtherStorageTicketDetailServiceImpl.java new file mode 100644 index 0000000..a84b55b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/OtherStorageTicketDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.OtherStorageTicketDetailDao; +import com.jwsaas.entity.food.OtherStorageTicketDetail; +import com.jwsaas.service.food.OtherStorageTicketDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"OtherStorageTicketDetailServiceImpl") +public class OtherStorageTicketDetailServiceImpl extends BaseServiceImpl implements OtherStorageTicketDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"OtherStorageTicketDetailDaoImpl") + private OtherStorageTicketDetailDao otherStorageTicketDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.otherStorageTicketDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/OtherStorageTicketLogServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/OtherStorageTicketLogServiceImpl.java new file mode 100644 index 0000000..60cca0a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/OtherStorageTicketLogServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.OtherStorageTicketLogDao; +import com.jwsaas.entity.food.OtherStorageTicketLog; +import com.jwsaas.service.food.OtherStorageTicketLogService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"OtherStorageTicketLogServiceImpl") +public class OtherStorageTicketLogServiceImpl extends BaseServiceImpl implements OtherStorageTicketLogService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"OtherStorageTicketLogDaoImpl") + private OtherStorageTicketLogDao otherStorageTicketLogDao; + + @Override + public BaseDao getBaseDao() { + return this.otherStorageTicketLogDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/OtherStorageTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/OtherStorageTicketServiceImpl.java new file mode 100644 index 0000000..a565793 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/OtherStorageTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.OtherStorageTicketDao; +import com.jwsaas.entity.food.OtherStorageTicket; +import com.jwsaas.service.food.OtherStorageTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"OtherStorageTicketServiceImpl") +public class OtherStorageTicketServiceImpl extends BaseServiceImpl implements OtherStorageTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"OtherStorageTicketDaoImpl") + private OtherStorageTicketDao otherStorageTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.otherStorageTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PayModeSeriesServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PayModeSeriesServiceImpl.java new file mode 100644 index 0000000..09fbd7e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PayModeSeriesServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PayModeSeriesDao; +import com.jwsaas.entity.food.PayModeSeries; +import com.jwsaas.service.food.PayModeSeriesService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PayModeSeriesServiceImpl") +public class PayModeSeriesServiceImpl extends BaseServiceImpl implements PayModeSeriesService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PayModeSeriesDaoImpl") + private PayModeSeriesDao payModeSeriesDao; + + @Override + public BaseDao getBaseDao() { + return this.payModeSeriesDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PayModeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PayModeServiceImpl.java new file mode 100644 index 0000000..c9c294b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PayModeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PayModeDao; +import com.jwsaas.entity.food.PayMode; +import com.jwsaas.service.food.PayModeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PayModeServiceImpl") +public class PayModeServiceImpl extends BaseServiceImpl implements PayModeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PayModeDaoImpl") + private PayModeDao payModeDao; + + @Override + public BaseDao getBaseDao() { + return this.payModeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PayModeStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PayModeStoreServiceImpl.java new file mode 100644 index 0000000..0058907 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PayModeStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PayModeStoreDao; +import com.jwsaas.entity.food.PayModeStore; +import com.jwsaas.service.food.PayModeStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PayModeStoreServiceImpl") +public class PayModeStoreServiceImpl extends BaseServiceImpl implements PayModeStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PayModeStoreDaoImpl") + private PayModeStoreDao payModeStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.payModeStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PayTypeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PayTypeServiceImpl.java new file mode 100644 index 0000000..3563ef4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PayTypeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PayTypeDao; +import com.jwsaas.entity.food.PayType; +import com.jwsaas.service.food.PayTypeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PayTypeServiceImpl") +public class PayTypeServiceImpl extends BaseServiceImpl implements PayTypeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PayTypeDaoImpl") + private PayTypeDao payTypeDao; + + @Override + public BaseDao getBaseDao() { + return this.payTypeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PaymentParameterServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PaymentParameterServiceImpl.java new file mode 100644 index 0000000..5e96499 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PaymentParameterServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PaymentParameterDao; +import com.jwsaas.entity.food.PaymentParameter; +import com.jwsaas.service.food.PaymentParameterService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PaymentParameterServiceImpl") +public class PaymentParameterServiceImpl extends BaseServiceImpl implements PaymentParameterService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PaymentParameterDaoImpl") + private PaymentParameterDao paymentParameterDao; + + @Override + public BaseDao getBaseDao() { + return this.paymentParameterDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PaymentParameterStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PaymentParameterStoreServiceImpl.java new file mode 100644 index 0000000..ec381b3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PaymentParameterStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PaymentParameterStoreDao; +import com.jwsaas.entity.food.PaymentParameterStore; +import com.jwsaas.service.food.PaymentParameterStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PaymentParameterStoreServiceImpl") +public class PaymentParameterStoreServiceImpl extends BaseServiceImpl implements PaymentParameterStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PaymentParameterStoreDaoImpl") + private PaymentParameterStoreDao paymentParameterStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.paymentParameterStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosInfoServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosInfoServiceImpl.java new file mode 100644 index 0000000..ffc1d74 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosInfoServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PosInfoDao; +import com.jwsaas.entity.food.PosInfo; +import com.jwsaas.service.food.PosInfoService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PosInfoServiceImpl") +public class PosInfoServiceImpl extends BaseServiceImpl implements PosInfoService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PosInfoDaoImpl") + private PosInfoDao posInfoDao; + + @Override + public BaseDao getBaseDao() { + return this.posInfoDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosPollcodeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosPollcodeServiceImpl.java new file mode 100644 index 0000000..e2d5413 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosPollcodeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PosPollcodeDao; +import com.jwsaas.entity.food.PosPollcode; +import com.jwsaas.service.food.PosPollcodeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PosPollcodeServiceImpl") +public class PosPollcodeServiceImpl extends BaseServiceImpl implements PosPollcodeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PosPollcodeDaoImpl") + private PosPollcodeDao posPollcodeDao; + + @Override + public BaseDao getBaseDao() { + return this.posPollcodeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosRoleModuleServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosRoleModuleServiceImpl.java new file mode 100644 index 0000000..5f0eb32 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosRoleModuleServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PosRoleModuleDao; +import com.jwsaas.entity.food.PosRoleModule; +import com.jwsaas.service.food.PosRoleModuleService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PosRoleModuleServiceImpl") +public class PosRoleModuleServiceImpl extends BaseServiceImpl implements PosRoleModuleService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PosRoleModuleDaoImpl") + private PosRoleModuleDao posRoleModuleDao; + + @Override + public BaseDao getBaseDao() { + return this.posRoleModuleDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosRoleServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosRoleServiceImpl.java new file mode 100644 index 0000000..4887363 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosRoleServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PosRoleDao; +import com.jwsaas.entity.food.PosRole; +import com.jwsaas.service.food.PosRoleService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PosRoleServiceImpl") +public class PosRoleServiceImpl extends BaseServiceImpl implements PosRoleService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PosRoleDaoImpl") + private PosRoleDao posRoleDao; + + @Override + public BaseDao getBaseDao() { + return this.posRoleDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosSetPlanConfigServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosSetPlanConfigServiceImpl.java new file mode 100644 index 0000000..2082730 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosSetPlanConfigServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PosSetPlanConfigDao; +import com.jwsaas.entity.food.PosSetPlanConfig; +import com.jwsaas.service.food.PosSetPlanConfigService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PosSetPlanConfigServiceImpl") +public class PosSetPlanConfigServiceImpl extends BaseServiceImpl implements PosSetPlanConfigService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PosSetPlanConfigDaoImpl") + private PosSetPlanConfigDao posSetPlanConfigDao; + + @Override + public BaseDao getBaseDao() { + return this.posSetPlanConfigDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosSetPlanModuleServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosSetPlanModuleServiceImpl.java new file mode 100644 index 0000000..f37e241 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosSetPlanModuleServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PosSetPlanModuleDao; +import com.jwsaas.entity.food.PosSetPlanModule; +import com.jwsaas.service.food.PosSetPlanModuleService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PosSetPlanModuleServiceImpl") +public class PosSetPlanModuleServiceImpl extends BaseServiceImpl implements PosSetPlanModuleService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PosSetPlanModuleDaoImpl") + private PosSetPlanModuleDao posSetPlanModuleDao; + + @Override + public BaseDao getBaseDao() { + return this.posSetPlanModuleDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosSetPlanResourcesServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosSetPlanResourcesServiceImpl.java new file mode 100644 index 0000000..adc7d4e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosSetPlanResourcesServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PosSetPlanResourcesDao; +import com.jwsaas.entity.food.PosSetPlanResources; +import com.jwsaas.service.food.PosSetPlanResourcesService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PosSetPlanResourcesServiceImpl") +public class PosSetPlanResourcesServiceImpl extends BaseServiceImpl implements PosSetPlanResourcesService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PosSetPlanResourcesDaoImpl") + private PosSetPlanResourcesDao posSetPlanResourcesDao; + + @Override + public BaseDao getBaseDao() { + return this.posSetPlanResourcesDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosSetPlanServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosSetPlanServiceImpl.java new file mode 100644 index 0000000..f120be1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosSetPlanServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PosSetPlanDao; +import com.jwsaas.entity.food.PosSetPlan; +import com.jwsaas.service.food.PosSetPlanService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PosSetPlanServiceImpl") +public class PosSetPlanServiceImpl extends BaseServiceImpl implements PosSetPlanService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PosSetPlanDaoImpl") + private PosSetPlanDao posSetPlanDao; + + @Override + public BaseDao getBaseDao() { + return this.posSetPlanDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosSetPlanShortcutServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosSetPlanShortcutServiceImpl.java new file mode 100644 index 0000000..04f290e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosSetPlanShortcutServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PosSetPlanShortcutDao; +import com.jwsaas.entity.food.PosSetPlanShortcut; +import com.jwsaas.service.food.PosSetPlanShortcutService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PosSetPlanShortcutServiceImpl") +public class PosSetPlanShortcutServiceImpl extends BaseServiceImpl implements PosSetPlanShortcutService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PosSetPlanShortcutDaoImpl") + private PosSetPlanShortcutDao posSetPlanShortcutDao; + + @Override + public BaseDao getBaseDao() { + return this.posSetPlanShortcutDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosSetPlanStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosSetPlanStoreServiceImpl.java new file mode 100644 index 0000000..0aa8b24 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PosSetPlanStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PosSetPlanStoreDao; +import com.jwsaas.entity.food.PosSetPlanStore; +import com.jwsaas.service.food.PosSetPlanStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PosSetPlanStoreServiceImpl") +public class PosSetPlanStoreServiceImpl extends BaseServiceImpl implements PosSetPlanStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PosSetPlanStoreDaoImpl") + private PosSetPlanStoreDao posSetPlanStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.posSetPlanStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PrintImageServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PrintImageServiceImpl.java new file mode 100644 index 0000000..90ffa45 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PrintImageServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PrintImageDao; +import com.jwsaas.entity.food.PrintImage; +import com.jwsaas.service.food.PrintImageService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PrintImageServiceImpl") +public class PrintImageServiceImpl extends BaseServiceImpl implements PrintImageService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PrintImageDaoImpl") + private PrintImageDao printImageDao; + + @Override + public BaseDao getBaseDao() { + return this.printImageDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PrintImageStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PrintImageStoreServiceImpl.java new file mode 100644 index 0000000..a69fb51 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PrintImageStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PrintImageStoreDao; +import com.jwsaas.entity.food.PrintImageStore; +import com.jwsaas.service.food.PrintImageStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PrintImageStoreServiceImpl") +public class PrintImageStoreServiceImpl extends BaseServiceImpl implements PrintImageStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PrintImageStoreDaoImpl") + private PrintImageStoreDao printImageStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.printImageStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductBatchNegativeStockDifferServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductBatchNegativeStockDifferServiceImpl.java new file mode 100644 index 0000000..09c1a11 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductBatchNegativeStockDifferServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductBatchNegativeStockDifferDao; +import com.jwsaas.entity.food.ProductBatchNegativeStockDiffer; +import com.jwsaas.service.food.ProductBatchNegativeStockDifferService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductBatchNegativeStockDifferServiceImpl") +public class ProductBatchNegativeStockDifferServiceImpl extends BaseServiceImpl implements ProductBatchNegativeStockDifferService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductBatchNegativeStockDifferDaoImpl") + private ProductBatchNegativeStockDifferDao productBatchNegativeStockDifferDao; + + @Override + public BaseDao getBaseDao() { + return this.productBatchNegativeStockDifferDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductBatchNegativeStockServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductBatchNegativeStockServiceImpl.java new file mode 100644 index 0000000..84d5d7c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductBatchNegativeStockServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductBatchNegativeStockDao; +import com.jwsaas.entity.food.ProductBatchNegativeStock; +import com.jwsaas.service.food.ProductBatchNegativeStockService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductBatchNegativeStockServiceImpl") +public class ProductBatchNegativeStockServiceImpl extends BaseServiceImpl implements ProductBatchNegativeStockService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductBatchNegativeStockDaoImpl") + private ProductBatchNegativeStockDao productBatchNegativeStockDao; + + @Override + public BaseDao getBaseDao() { + return this.productBatchNegativeStockDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductBatchNumberServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductBatchNumberServiceImpl.java new file mode 100644 index 0000000..087dbd5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductBatchNumberServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductBatchNumberDao; +import com.jwsaas.entity.food.ProductBatchNumber; +import com.jwsaas.service.food.ProductBatchNumberService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductBatchNumberServiceImpl") +public class ProductBatchNumberServiceImpl extends BaseServiceImpl implements ProductBatchNumberService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductBatchNumberDaoImpl") + private ProductBatchNumberDao productBatchNumberDao; + + @Override + public BaseDao getBaseDao() { + return this.productBatchNumberDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductBatchStockChangeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductBatchStockChangeServiceImpl.java new file mode 100644 index 0000000..daa0024 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductBatchStockChangeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductBatchStockChangeDao; +import com.jwsaas.entity.food.ProductBatchStockChange; +import com.jwsaas.service.food.ProductBatchStockChangeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductBatchStockChangeServiceImpl") +public class ProductBatchStockChangeServiceImpl extends BaseServiceImpl implements ProductBatchStockChangeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductBatchStockChangeDaoImpl") + private ProductBatchStockChangeDao productBatchStockChangeDao; + + @Override + public BaseDao getBaseDao() { + return this.productBatchStockChangeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductBatchStockServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductBatchStockServiceImpl.java new file mode 100644 index 0000000..62b4d4d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductBatchStockServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductBatchStockDao; +import com.jwsaas.entity.food.ProductBatchStock; +import com.jwsaas.service.food.ProductBatchStockService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductBatchStockServiceImpl") +public class ProductBatchStockServiceImpl extends BaseServiceImpl implements ProductBatchStockService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductBatchStockDaoImpl") + private ProductBatchStockDao productBatchStockDao; + + @Override + public BaseDao getBaseDao() { + return this.productBatchStockDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductBurdenServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductBurdenServiceImpl.java new file mode 100644 index 0000000..fb8ae01 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductBurdenServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductBurdenDao; +import com.jwsaas.entity.food.ProductBurden; +import com.jwsaas.service.food.ProductBurdenService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductBurdenServiceImpl") +public class ProductBurdenServiceImpl extends BaseServiceImpl implements ProductBurdenService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductBurdenDaoImpl") + private ProductBurdenDao productBurdenDao; + + @Override + public BaseDao getBaseDao() { + return this.productBurdenDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductImageServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductImageServiceImpl.java new file mode 100644 index 0000000..a69377c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductImageServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductImageDao; +import com.jwsaas.entity.food.ProductImage; +import com.jwsaas.service.food.ProductImageService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductImageServiceImpl") +public class ProductImageServiceImpl extends BaseServiceImpl implements ProductImageService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductImageDaoImpl") + private ProductImageDao productImageDao; + + @Override + public BaseDao getBaseDao() { + return this.productImageDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductKdsPlanServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductKdsPlanServiceImpl.java new file mode 100644 index 0000000..2c09a8a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductKdsPlanServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductKdsPlanDao; +import com.jwsaas.entity.food.ProductKdsPlan; +import com.jwsaas.service.food.ProductKdsPlanService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductKdsPlanServiceImpl") +public class ProductKdsPlanServiceImpl extends BaseServiceImpl implements ProductKdsPlanService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductKdsPlanDaoImpl") + private ProductKdsPlanDao productKdsPlanDao; + + @Override + public BaseDao getBaseDao() { + return this.productKdsPlanDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductKitPlanServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductKitPlanServiceImpl.java new file mode 100644 index 0000000..8cbc9f4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductKitPlanServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductKitPlanDao; +import com.jwsaas.entity.food.ProductKitPlan; +import com.jwsaas.service.food.ProductKitPlanService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductKitPlanServiceImpl") +public class ProductKitPlanServiceImpl extends BaseServiceImpl implements ProductKitPlanService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductKitPlanDaoImpl") + private ProductKitPlanDao productKitPlanDao; + + @Override + public BaseDao getBaseDao() { + return this.productKitPlanDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductMakeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductMakeServiceImpl.java new file mode 100644 index 0000000..cd0a0f8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductMakeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductMakeDao; +import com.jwsaas.entity.food.ProductMake; +import com.jwsaas.service.food.ProductMakeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductMakeServiceImpl") +public class ProductMakeServiceImpl extends BaseServiceImpl implements ProductMakeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductMakeDaoImpl") + private ProductMakeDao productMakeDao; + + @Override + public BaseDao getBaseDao() { + return this.productMakeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductMakeStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductMakeStoreServiceImpl.java new file mode 100644 index 0000000..70ab7cd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductMakeStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductMakeStoreDao; +import com.jwsaas.entity.food.ProductMakeStore; +import com.jwsaas.service.food.ProductMakeStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductMakeStoreServiceImpl") +public class ProductMakeStoreServiceImpl extends BaseServiceImpl implements ProductMakeStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductMakeStoreDaoImpl") + private ProductMakeStoreDao productMakeStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.productMakeStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductMakeTemplateDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductMakeTemplateDetailServiceImpl.java new file mode 100644 index 0000000..696195b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductMakeTemplateDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductMakeTemplateDetailDao; +import com.jwsaas.entity.food.ProductMakeTemplateDetail; +import com.jwsaas.service.food.ProductMakeTemplateDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductMakeTemplateDetailServiceImpl") +public class ProductMakeTemplateDetailServiceImpl extends BaseServiceImpl implements ProductMakeTemplateDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductMakeTemplateDetailDaoImpl") + private ProductMakeTemplateDetailDao productMakeTemplateDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.productMakeTemplateDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductMakeTemplateServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductMakeTemplateServiceImpl.java new file mode 100644 index 0000000..9290005 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductMakeTemplateServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductMakeTemplateDao; +import com.jwsaas.entity.food.ProductMakeTemplate; +import com.jwsaas.service.food.ProductMakeTemplateService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductMakeTemplateServiceImpl") +public class ProductMakeTemplateServiceImpl extends BaseServiceImpl implements ProductMakeTemplateService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductMakeTemplateDaoImpl") + private ProductMakeTemplateDao productMakeTemplateDao; + + @Override + public BaseDao getBaseDao() { + return this.productMakeTemplateDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductRatioServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductRatioServiceImpl.java new file mode 100644 index 0000000..c6e85ba --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductRatioServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductRatioDao; +import com.jwsaas.entity.food.ProductRatio; +import com.jwsaas.service.food.ProductRatioService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductRatioServiceImpl") +public class ProductRatioServiceImpl extends BaseServiceImpl implements ProductRatioService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductRatioDaoImpl") + private ProductRatioDao productRatioDao; + + @Override + public BaseDao getBaseDao() { + return this.productRatioDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductServiceImpl.java new file mode 100644 index 0000000..893fe9b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductDao; +import com.jwsaas.entity.food.Product; +import com.jwsaas.service.food.ProductService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductServiceImpl") +public class ProductServiceImpl extends BaseServiceImpl implements ProductService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductDaoImpl") + private ProductDao productDao; + + @Override + public BaseDao getBaseDao() { + return this.productDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductSpecServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductSpecServiceImpl.java new file mode 100644 index 0000000..b574493 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductSpecServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductSpecDao; +import com.jwsaas.entity.food.ProductSpec; +import com.jwsaas.service.food.ProductSpecService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductSpecServiceImpl") +public class ProductSpecServiceImpl extends BaseServiceImpl implements ProductSpecService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductSpecDaoImpl") + private ProductSpecDao productSpecDao; + + @Override + public BaseDao getBaseDao() { + return this.productSpecDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductStockLogServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductStockLogServiceImpl.java new file mode 100644 index 0000000..4bb3792 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductStockLogServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductStockLogDao; +import com.jwsaas.entity.food.ProductStockLog; +import com.jwsaas.service.food.ProductStockLogService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductStockLogServiceImpl") +public class ProductStockLogServiceImpl extends BaseServiceImpl implements ProductStockLogService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductStockLogDaoImpl") + private ProductStockLogDao productStockLogDao; + + @Override + public BaseDao getBaseDao() { + return this.productStockLogDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductStockServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductStockServiceImpl.java new file mode 100644 index 0000000..cc8156e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductStockServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductStockDao; +import com.jwsaas.entity.food.ProductStock; +import com.jwsaas.service.food.ProductStockService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductStockServiceImpl") +public class ProductStockServiceImpl extends BaseServiceImpl implements ProductStockService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductStockDaoImpl") + private ProductStockDao productStockDao; + + @Override + public BaseDao getBaseDao() { + return this.productStockDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductStoreOutCollectDayServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductStoreOutCollectDayServiceImpl.java new file mode 100644 index 0000000..63c4fbe --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductStoreOutCollectDayServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductStoreOutCollectDayDao; +import com.jwsaas.entity.food.ProductStoreOutCollectDay; +import com.jwsaas.service.food.ProductStoreOutCollectDayService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductStoreOutCollectDayServiceImpl") +public class ProductStoreOutCollectDayServiceImpl extends BaseServiceImpl implements ProductStoreOutCollectDayService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductStoreOutCollectDayDaoImpl") + private ProductStoreOutCollectDayDao productStoreOutCollectDayDao; + + @Override + public BaseDao getBaseDao() { + return this.productStoreOutCollectDayDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductStoreStockLogServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductStoreStockLogServiceImpl.java new file mode 100644 index 0000000..561888a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductStoreStockLogServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductStoreStockLogDao; +import com.jwsaas.entity.food.ProductStoreStockLog; +import com.jwsaas.service.food.ProductStoreStockLogService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductStoreStockLogServiceImpl") +public class ProductStoreStockLogServiceImpl extends BaseServiceImpl implements ProductStoreStockLogService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductStoreStockLogDaoImpl") + private ProductStoreStockLogDao productStoreStockLogDao; + + @Override + public BaseDao getBaseDao() { + return this.productStoreStockLogDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductStoreStockServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductStoreStockServiceImpl.java new file mode 100644 index 0000000..a31398d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductStoreStockServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductStoreStockDao; +import com.jwsaas.entity.food.ProductStoreStock; +import com.jwsaas.service.food.ProductStoreStockService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductStoreStockServiceImpl") +public class ProductStoreStockServiceImpl extends BaseServiceImpl implements ProductStoreStockService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductStoreStockDaoImpl") + private ProductStoreStockDao productStoreStockDao; + + @Override + public BaseDao getBaseDao() { + return this.productStoreStockDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductSuitDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductSuitDetailServiceImpl.java new file mode 100644 index 0000000..8814dba --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductSuitDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductSuitDetailDao; +import com.jwsaas.entity.food.ProductSuitDetail; +import com.jwsaas.service.food.ProductSuitDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductSuitDetailServiceImpl") +public class ProductSuitDetailServiceImpl extends BaseServiceImpl implements ProductSuitDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductSuitDetailDaoImpl") + private ProductSuitDetailDao productSuitDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.productSuitDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductSuitServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductSuitServiceImpl.java new file mode 100644 index 0000000..cdbb582 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductSuitServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductSuitDao; +import com.jwsaas.entity.food.ProductSuit; +import com.jwsaas.service.food.ProductSuitService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductSuitServiceImpl") +public class ProductSuitServiceImpl extends BaseServiceImpl implements ProductSuitService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductSuitDaoImpl") + private ProductSuitDao productSuitDao; + + @Override + public BaseDao getBaseDao() { + return this.productSuitDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductTemplateDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductTemplateDetailServiceImpl.java new file mode 100644 index 0000000..c470404 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductTemplateDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductTemplateDetailDao; +import com.jwsaas.entity.food.ProductTemplateDetail; +import com.jwsaas.service.food.ProductTemplateDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductTemplateDetailServiceImpl") +public class ProductTemplateDetailServiceImpl extends BaseServiceImpl implements ProductTemplateDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductTemplateDetailDaoImpl") + private ProductTemplateDetailDao productTemplateDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.productTemplateDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductTemplateServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductTemplateServiceImpl.java new file mode 100644 index 0000000..b145eab --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductTemplateServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductTemplateDao; +import com.jwsaas.entity.food.ProductTemplate; +import com.jwsaas.service.food.ProductTemplateService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductTemplateServiceImpl") +public class ProductTemplateServiceImpl extends BaseServiceImpl implements ProductTemplateService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductTemplateDaoImpl") + private ProductTemplateDao productTemplateDao; + + @Override + public BaseDao getBaseDao() { + return this.productTemplateDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductTypeBrandServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductTypeBrandServiceImpl.java new file mode 100644 index 0000000..740114e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductTypeBrandServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductTypeBrandDao; +import com.jwsaas.entity.food.ProductTypeBrand; +import com.jwsaas.service.food.ProductTypeBrandService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductTypeBrandServiceImpl") +public class ProductTypeBrandServiceImpl extends BaseServiceImpl implements ProductTypeBrandService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductTypeBrandDaoImpl") + private ProductTypeBrandDao productTypeBrandDao; + + @Override + public BaseDao getBaseDao() { + return this.productTypeBrandDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductTypeLabelInfoServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductTypeLabelInfoServiceImpl.java new file mode 100644 index 0000000..16e15ec --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductTypeLabelInfoServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductTypeLabelInfoDao; +import com.jwsaas.entity.food.ProductTypeLabelInfo; +import com.jwsaas.service.food.ProductTypeLabelInfoService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductTypeLabelInfoServiceImpl") +public class ProductTypeLabelInfoServiceImpl extends BaseServiceImpl implements ProductTypeLabelInfoService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductTypeLabelInfoDaoImpl") + private ProductTypeLabelInfoDao productTypeLabelInfoDao; + + @Override + public BaseDao getBaseDao() { + return this.productTypeLabelInfoDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductTypeLabelServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductTypeLabelServiceImpl.java new file mode 100644 index 0000000..b88af9a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductTypeLabelServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductTypeLabelDao; +import com.jwsaas.entity.food.ProductTypeLabel; +import com.jwsaas.service.food.ProductTypeLabelService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductTypeLabelServiceImpl") +public class ProductTypeLabelServiceImpl extends BaseServiceImpl implements ProductTypeLabelService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductTypeLabelDaoImpl") + private ProductTypeLabelDao productTypeLabelDao; + + @Override + public BaseDao getBaseDao() { + return this.productTypeLabelDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductTypeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductTypeServiceImpl.java new file mode 100644 index 0000000..ee90479 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductTypeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductTypeDao; +import com.jwsaas.entity.food.ProductType; +import com.jwsaas.service.food.ProductTypeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductTypeServiceImpl") +public class ProductTypeServiceImpl extends BaseServiceImpl implements ProductTypeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductTypeDaoImpl") + private ProductTypeDao productTypeDao; + + @Override + public BaseDao getBaseDao() { + return this.productTypeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductUnitServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductUnitServiceImpl.java new file mode 100644 index 0000000..688a3cb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProductUnitServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProductUnitDao; +import com.jwsaas.entity.food.ProductUnit; +import com.jwsaas.service.food.ProductUnitService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProductUnitServiceImpl") +public class ProductUnitServiceImpl extends BaseServiceImpl implements ProductUnitService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProductUnitDaoImpl") + private ProductUnitDao productUnitDao; + + @Override + public BaseDao getBaseDao() { + return this.productUnitDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramAdPictureServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramAdPictureServiceImpl.java new file mode 100644 index 0000000..a83040c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramAdPictureServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramAdPictureDao; +import com.jwsaas.entity.food.ProgramAdPicture; +import com.jwsaas.service.food.ProgramAdPictureService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramAdPictureServiceImpl") +public class ProgramAdPictureServiceImpl extends BaseServiceImpl implements ProgramAdPictureService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramAdPictureDaoImpl") + private ProgramAdPictureDao programAdPictureDao; + + @Override + public BaseDao getBaseDao() { + return this.programAdPictureDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramAdjustPriceProductServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramAdjustPriceProductServiceImpl.java new file mode 100644 index 0000000..1e2b536 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramAdjustPriceProductServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramAdjustPriceProductDao; +import com.jwsaas.entity.food.ProgramAdjustPriceProduct; +import com.jwsaas.service.food.ProgramAdjustPriceProductService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramAdjustPriceProductServiceImpl") +public class ProgramAdjustPriceProductServiceImpl extends BaseServiceImpl implements ProgramAdjustPriceProductService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramAdjustPriceProductDaoImpl") + private ProgramAdjustPriceProductDao programAdjustPriceProductDao; + + @Override + public BaseDao getBaseDao() { + return this.programAdjustPriceProductDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramAdjustPriceStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramAdjustPriceStoreServiceImpl.java new file mode 100644 index 0000000..de91dbe --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramAdjustPriceStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramAdjustPriceStoreDao; +import com.jwsaas.entity.food.ProgramAdjustPriceStore; +import com.jwsaas.service.food.ProgramAdjustPriceStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramAdjustPriceStoreServiceImpl") +public class ProgramAdjustPriceStoreServiceImpl extends BaseServiceImpl implements ProgramAdjustPriceStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramAdjustPriceStoreDaoImpl") + private ProgramAdjustPriceStoreDao programAdjustPriceStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.programAdjustPriceStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramAdjustPriceTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramAdjustPriceTicketServiceImpl.java new file mode 100644 index 0000000..cb14c62 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramAdjustPriceTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramAdjustPriceTicketDao; +import com.jwsaas.entity.food.ProgramAdjustPriceTicket; +import com.jwsaas.service.food.ProgramAdjustPriceTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramAdjustPriceTicketServiceImpl") +public class ProgramAdjustPriceTicketServiceImpl extends BaseServiceImpl implements ProgramAdjustPriceTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramAdjustPriceTicketDaoImpl") + private ProgramAdjustPriceTicketDao programAdjustPriceTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.programAdjustPriceTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramDeliverAddressServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramDeliverAddressServiceImpl.java new file mode 100644 index 0000000..9723825 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramDeliverAddressServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramDeliverAddressDao; +import com.jwsaas.entity.food.ProgramDeliverAddress; +import com.jwsaas.service.food.ProgramDeliverAddressService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramDeliverAddressServiceImpl") +public class ProgramDeliverAddressServiceImpl extends BaseServiceImpl implements ProgramDeliverAddressService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramDeliverAddressDaoImpl") + private ProgramDeliverAddressDao programDeliverAddressDao; + + @Override + public BaseDao getBaseDao() { + return this.programDeliverAddressDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramEvaluateImageServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramEvaluateImageServiceImpl.java new file mode 100644 index 0000000..606bdbe --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramEvaluateImageServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramEvaluateImageDao; +import com.jwsaas.entity.food.ProgramEvaluateImage; +import com.jwsaas.service.food.ProgramEvaluateImageService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramEvaluateImageServiceImpl") +public class ProgramEvaluateImageServiceImpl extends BaseServiceImpl implements ProgramEvaluateImageService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramEvaluateImageDaoImpl") + private ProgramEvaluateImageDao programEvaluateImageDao; + + @Override + public BaseDao getBaseDao() { + return this.programEvaluateImageDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramEvaluateServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramEvaluateServiceImpl.java new file mode 100644 index 0000000..1198b51 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramEvaluateServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramEvaluateDao; +import com.jwsaas.entity.food.ProgramEvaluate; +import com.jwsaas.service.food.ProgramEvaluateService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramEvaluateServiceImpl") +public class ProgramEvaluateServiceImpl extends BaseServiceImpl implements ProgramEvaluateService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramEvaluateDaoImpl") + private ProgramEvaluateDao programEvaluateDao; + + @Override + public BaseDao getBaseDao() { + return this.programEvaluateDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramIndexPictureServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramIndexPictureServiceImpl.java new file mode 100644 index 0000000..10eeb0f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramIndexPictureServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramIndexPictureDao; +import com.jwsaas.entity.food.ProgramIndexPicture; +import com.jwsaas.service.food.ProgramIndexPictureService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramIndexPictureServiceImpl") +public class ProgramIndexPictureServiceImpl extends BaseServiceImpl implements ProgramIndexPictureService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramIndexPictureDaoImpl") + private ProgramIndexPictureDao programIndexPictureDao; + + @Override + public BaseDao getBaseDao() { + return this.programIndexPictureDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPaymentParameterServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPaymentParameterServiceImpl.java new file mode 100644 index 0000000..27cbcb5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPaymentParameterServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramPaymentParameterDao; +import com.jwsaas.entity.food.ProgramPaymentParameter; +import com.jwsaas.service.food.ProgramPaymentParameterService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramPaymentParameterServiceImpl") +public class ProgramPaymentParameterServiceImpl extends BaseServiceImpl implements ProgramPaymentParameterService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramPaymentParameterDaoImpl") + private ProgramPaymentParameterDao programPaymentParameterDao; + + @Override + public BaseDao getBaseDao() { + return this.programPaymentParameterDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPaymentParameterStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPaymentParameterStoreServiceImpl.java new file mode 100644 index 0000000..a416b8d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPaymentParameterStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramPaymentParameterStoreDao; +import com.jwsaas.entity.food.ProgramPaymentParameterStore; +import com.jwsaas.service.food.ProgramPaymentParameterStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramPaymentParameterStoreServiceImpl") +public class ProgramPaymentParameterStoreServiceImpl extends BaseServiceImpl implements ProgramPaymentParameterStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramPaymentParameterStoreDaoImpl") + private ProgramPaymentParameterStoreDao programPaymentParameterStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.programPaymentParameterStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramProductCategoryServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramProductCategoryServiceImpl.java new file mode 100644 index 0000000..1357a51 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramProductCategoryServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramProductCategoryDao; +import com.jwsaas.entity.food.ProgramProductCategory; +import com.jwsaas.service.food.ProgramProductCategoryService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramProductCategoryServiceImpl") +public class ProgramProductCategoryServiceImpl extends BaseServiceImpl implements ProgramProductCategoryService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramProductCategoryDaoImpl") + private ProgramProductCategoryDao programProductCategoryDao; + + @Override + public BaseDao getBaseDao() { + return this.programProductCategoryDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramProductMakeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramProductMakeServiceImpl.java new file mode 100644 index 0000000..2c07931 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramProductMakeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramProductMakeDao; +import com.jwsaas.entity.food.ProgramProductMake; +import com.jwsaas.service.food.ProgramProductMakeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramProductMakeServiceImpl") +public class ProgramProductMakeServiceImpl extends BaseServiceImpl implements ProgramProductMakeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramProductMakeDaoImpl") + private ProgramProductMakeDao programProductMakeDao; + + @Override + public BaseDao getBaseDao() { + return this.programProductMakeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramProductTemplateDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramProductTemplateDetailServiceImpl.java new file mode 100644 index 0000000..0c64c23 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramProductTemplateDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramProductTemplateDetailDao; +import com.jwsaas.entity.food.ProgramProductTemplateDetail; +import com.jwsaas.service.food.ProgramProductTemplateDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramProductTemplateDetailServiceImpl") +public class ProgramProductTemplateDetailServiceImpl extends BaseServiceImpl implements ProgramProductTemplateDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramProductTemplateDetailDaoImpl") + private ProgramProductTemplateDetailDao programProductTemplateDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.programProductTemplateDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramProductTemplateServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramProductTemplateServiceImpl.java new file mode 100644 index 0000000..496206f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramProductTemplateServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramProductTemplateDao; +import com.jwsaas.entity.food.ProgramProductTemplate; +import com.jwsaas.service.food.ProgramProductTemplateService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramProductTemplateServiceImpl") +public class ProgramProductTemplateServiceImpl extends BaseServiceImpl implements ProgramProductTemplateService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramProductTemplateDaoImpl") + private ProgramProductTemplateDao programProductTemplateDao; + + @Override + public BaseDao getBaseDao() { + return this.programProductTemplateDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramProductTemplateStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramProductTemplateStoreServiceImpl.java new file mode 100644 index 0000000..6e9b591 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramProductTemplateStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramProductTemplateStoreDao; +import com.jwsaas.entity.food.ProgramProductTemplateStore; +import com.jwsaas.service.food.ProgramProductTemplateStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramProductTemplateStoreServiceImpl") +public class ProgramProductTemplateStoreServiceImpl extends BaseServiceImpl implements ProgramProductTemplateStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramProductTemplateStoreDaoImpl") + private ProgramProductTemplateStoreDao programProductTemplateStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.programProductTemplateStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionBlackListGoodsServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionBlackListGoodsServiceImpl.java new file mode 100644 index 0000000..4d95b10 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionBlackListGoodsServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramPromotionBlackListGoodsDao; +import com.jwsaas.entity.food.ProgramPromotionBlackListGoods; +import com.jwsaas.service.food.ProgramPromotionBlackListGoodsService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionBlackListGoodsServiceImpl") +public class ProgramPromotionBlackListGoodsServiceImpl extends BaseServiceImpl implements ProgramPromotionBlackListGoodsService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionBlackListGoodsDaoImpl") + private ProgramPromotionBlackListGoodsDao programPromotionBlackListGoodsDao; + + @Override + public BaseDao getBaseDao() { + return this.programPromotionBlackListGoodsDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionBlackListStoreAreaServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionBlackListStoreAreaServiceImpl.java new file mode 100644 index 0000000..bfc9c62 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionBlackListStoreAreaServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramPromotionBlackListStoreAreaDao; +import com.jwsaas.entity.food.ProgramPromotionBlackListStoreArea; +import com.jwsaas.service.food.ProgramPromotionBlackListStoreAreaService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionBlackListStoreAreaServiceImpl") +public class ProgramPromotionBlackListStoreAreaServiceImpl extends BaseServiceImpl implements ProgramPromotionBlackListStoreAreaService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionBlackListStoreAreaDaoImpl") + private ProgramPromotionBlackListStoreAreaDao programPromotionBlackListStoreAreaDao; + + @Override + public BaseDao getBaseDao() { + return this.programPromotionBlackListStoreAreaDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionBlackListStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionBlackListStoreServiceImpl.java new file mode 100644 index 0000000..adc4f0c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionBlackListStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramPromotionBlackListStoreDao; +import com.jwsaas.entity.food.ProgramPromotionBlackListStore; +import com.jwsaas.service.food.ProgramPromotionBlackListStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionBlackListStoreServiceImpl") +public class ProgramPromotionBlackListStoreServiceImpl extends BaseServiceImpl implements ProgramPromotionBlackListStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionBlackListStoreDaoImpl") + private ProgramPromotionBlackListStoreDao programPromotionBlackListStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.programPromotionBlackListStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionCategoryServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionCategoryServiceImpl.java new file mode 100644 index 0000000..8dcaa7c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionCategoryServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramPromotionCategoryDao; +import com.jwsaas.entity.food.ProgramPromotionCategory; +import com.jwsaas.service.food.ProgramPromotionCategoryService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionCategoryServiceImpl") +public class ProgramPromotionCategoryServiceImpl extends BaseServiceImpl implements ProgramPromotionCategoryService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionCategoryDaoImpl") + private ProgramPromotionCategoryDao programPromotionCategoryDao; + + @Override + public BaseDao getBaseDao() { + return this.programPromotionCategoryDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionGoodsServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionGoodsServiceImpl.java new file mode 100644 index 0000000..e49f10f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionGoodsServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramPromotionGoodsDao; +import com.jwsaas.entity.food.ProgramPromotionGoods; +import com.jwsaas.service.food.ProgramPromotionGoodsService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionGoodsServiceImpl") +public class ProgramPromotionGoodsServiceImpl extends BaseServiceImpl implements ProgramPromotionGoodsService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionGoodsDaoImpl") + private ProgramPromotionGoodsDao programPromotionGoodsDao; + + @Override + public BaseDao getBaseDao() { + return this.programPromotionGoodsDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionSchemeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionSchemeServiceImpl.java new file mode 100644 index 0000000..28017aa --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionSchemeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramPromotionSchemeDao; +import com.jwsaas.entity.food.ProgramPromotionScheme; +import com.jwsaas.service.food.ProgramPromotionSchemeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionSchemeServiceImpl") +public class ProgramPromotionSchemeServiceImpl extends BaseServiceImpl implements ProgramPromotionSchemeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionSchemeDaoImpl") + private ProgramPromotionSchemeDao programPromotionSchemeDao; + + @Override + public BaseDao getBaseDao() { + return this.programPromotionSchemeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionStoreAreaServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionStoreAreaServiceImpl.java new file mode 100644 index 0000000..44bb735 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionStoreAreaServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramPromotionStoreAreaDao; +import com.jwsaas.entity.food.ProgramPromotionStoreArea; +import com.jwsaas.service.food.ProgramPromotionStoreAreaService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionStoreAreaServiceImpl") +public class ProgramPromotionStoreAreaServiceImpl extends BaseServiceImpl implements ProgramPromotionStoreAreaService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionStoreAreaDaoImpl") + private ProgramPromotionStoreAreaDao programPromotionStoreAreaDao; + + @Override + public BaseDao getBaseDao() { + return this.programPromotionStoreAreaDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionStoreServiceImpl.java new file mode 100644 index 0000000..2282068 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramPromotionStoreDao; +import com.jwsaas.entity.food.ProgramPromotionStore; +import com.jwsaas.service.food.ProgramPromotionStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionStoreServiceImpl") +public class ProgramPromotionStoreServiceImpl extends BaseServiceImpl implements ProgramPromotionStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionStoreDaoImpl") + private ProgramPromotionStoreDao programPromotionStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.programPromotionStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionTaskServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionTaskServiceImpl.java new file mode 100644 index 0000000..ed9a209 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionTaskServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramPromotionTaskDao; +import com.jwsaas.entity.food.ProgramPromotionTask; +import com.jwsaas.service.food.ProgramPromotionTaskService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionTaskServiceImpl") +public class ProgramPromotionTaskServiceImpl extends BaseServiceImpl implements ProgramPromotionTaskService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionTaskDaoImpl") + private ProgramPromotionTaskDao programPromotionTaskDao; + + @Override + public BaseDao getBaseDao() { + return this.programPromotionTaskDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionTicketServiceImpl.java new file mode 100644 index 0000000..9dc2386 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramPromotionTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramPromotionTicketDao; +import com.jwsaas.entity.food.ProgramPromotionTicket; +import com.jwsaas.service.food.ProgramPromotionTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionTicketServiceImpl") +public class ProgramPromotionTicketServiceImpl extends BaseServiceImpl implements ProgramPromotionTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramPromotionTicketDaoImpl") + private ProgramPromotionTicketDao programPromotionTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.programPromotionTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramSettingServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramSettingServiceImpl.java new file mode 100644 index 0000000..526097b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramSettingServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramSettingDao; +import com.jwsaas.entity.food.ProgramSetting; +import com.jwsaas.service.food.ProgramSettingService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramSettingServiceImpl") +public class ProgramSettingServiceImpl extends BaseServiceImpl implements ProgramSettingService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramSettingDaoImpl") + private ProgramSettingDao programSettingDao; + + @Override + public BaseDao getBaseDao() { + return this.programSettingDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreBusinessTicketDeliverServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreBusinessTicketDeliverServiceImpl.java new file mode 100644 index 0000000..0b614d7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreBusinessTicketDeliverServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramStoreBusinessTicketDeliverDao; +import com.jwsaas.entity.food.ProgramStoreBusinessTicketDeliver; +import com.jwsaas.service.food.ProgramStoreBusinessTicketDeliverService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreBusinessTicketDeliverServiceImpl") +public class ProgramStoreBusinessTicketDeliverServiceImpl extends BaseServiceImpl implements ProgramStoreBusinessTicketDeliverService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreBusinessTicketDeliverDaoImpl") + private ProgramStoreBusinessTicketDeliverDao programStoreBusinessTicketDeliverDao; + + @Override + public BaseDao getBaseDao() { + return this.programStoreBusinessTicketDeliverDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreBusinessTicketInfoServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreBusinessTicketInfoServiceImpl.java new file mode 100644 index 0000000..9abac80 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreBusinessTicketInfoServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramStoreBusinessTicketInfoDao; +import com.jwsaas.entity.food.ProgramStoreBusinessTicketInfo; +import com.jwsaas.service.food.ProgramStoreBusinessTicketInfoService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreBusinessTicketInfoServiceImpl") +public class ProgramStoreBusinessTicketInfoServiceImpl extends BaseServiceImpl implements ProgramStoreBusinessTicketInfoService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreBusinessTicketInfoDaoImpl") + private ProgramStoreBusinessTicketInfoDao programStoreBusinessTicketInfoDao; + + @Override + public BaseDao getBaseDao() { + return this.programStoreBusinessTicketInfoDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreBusinessTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreBusinessTicketServiceImpl.java new file mode 100644 index 0000000..daa09f7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreBusinessTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramStoreBusinessTicketDao; +import com.jwsaas.entity.food.ProgramStoreBusinessTicket; +import com.jwsaas.service.food.ProgramStoreBusinessTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreBusinessTicketServiceImpl") +public class ProgramStoreBusinessTicketServiceImpl extends BaseServiceImpl implements ProgramStoreBusinessTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreBusinessTicketDaoImpl") + private ProgramStoreBusinessTicketDao programStoreBusinessTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.programStoreBusinessTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreMakeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreMakeServiceImpl.java new file mode 100644 index 0000000..febab97 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreMakeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramStoreMakeDao; +import com.jwsaas.entity.food.ProgramStoreMake; +import com.jwsaas.service.food.ProgramStoreMakeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreMakeServiceImpl") +public class ProgramStoreMakeServiceImpl extends BaseServiceImpl implements ProgramStoreMakeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreMakeDaoImpl") + private ProgramStoreMakeDao programStoreMakeDao; + + @Override + public BaseDao getBaseDao() { + return this.programStoreMakeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreOrderProductInfoServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreOrderProductInfoServiceImpl.java new file mode 100644 index 0000000..99083ca --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreOrderProductInfoServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramStoreOrderProductInfoDao; +import com.jwsaas.entity.food.ProgramStoreOrderProductInfo; +import com.jwsaas.service.food.ProgramStoreOrderProductInfoService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreOrderProductInfoServiceImpl") +public class ProgramStoreOrderProductInfoServiceImpl extends BaseServiceImpl implements ProgramStoreOrderProductInfoService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreOrderProductInfoDaoImpl") + private ProgramStoreOrderProductInfoDao programStoreOrderProductInfoDao; + + @Override + public BaseDao getBaseDao() { + return this.programStoreOrderProductInfoDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreOrderProductMakeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreOrderProductMakeServiceImpl.java new file mode 100644 index 0000000..c4e9df6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreOrderProductMakeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramStoreOrderProductMakeDao; +import com.jwsaas.entity.food.ProgramStoreOrderProductMake; +import com.jwsaas.service.food.ProgramStoreOrderProductMakeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreOrderProductMakeServiceImpl") +public class ProgramStoreOrderProductMakeServiceImpl extends BaseServiceImpl implements ProgramStoreOrderProductMakeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreOrderProductMakeDaoImpl") + private ProgramStoreOrderProductMakeDao programStoreOrderProductMakeDao; + + @Override + public BaseDao getBaseDao() { + return this.programStoreOrderProductMakeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreOrderProductServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreOrderProductServiceImpl.java new file mode 100644 index 0000000..24f8d93 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreOrderProductServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramStoreOrderProductDao; +import com.jwsaas.entity.food.ProgramStoreOrderProduct; +import com.jwsaas.service.food.ProgramStoreOrderProductService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreOrderProductServiceImpl") +public class ProgramStoreOrderProductServiceImpl extends BaseServiceImpl implements ProgramStoreOrderProductService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreOrderProductDaoImpl") + private ProgramStoreOrderProductDao programStoreOrderProductDao; + + @Override + public BaseDao getBaseDao() { + return this.programStoreOrderProductDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStorePayServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStorePayServiceImpl.java new file mode 100644 index 0000000..2a6e71d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStorePayServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramStorePayDao; +import com.jwsaas.entity.food.ProgramStorePay; +import com.jwsaas.service.food.ProgramStorePayService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramStorePayServiceImpl") +public class ProgramStorePayServiceImpl extends BaseServiceImpl implements ProgramStorePayService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramStorePayDaoImpl") + private ProgramStorePayDao programStorePayDao; + + @Override + public BaseDao getBaseDao() { + return this.programStorePayDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreProductServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreProductServiceImpl.java new file mode 100644 index 0000000..67e022d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreProductServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramStoreProductDao; +import com.jwsaas.entity.food.ProgramStoreProduct; +import com.jwsaas.service.food.ProgramStoreProductService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreProductServiceImpl") +public class ProgramStoreProductServiceImpl extends BaseServiceImpl implements ProgramStoreProductService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreProductDaoImpl") + private ProgramStoreProductDao programStoreProductDao; + + @Override + public BaseDao getBaseDao() { + return this.programStoreProductDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreServiceImpl.java new file mode 100644 index 0000000..0f92639 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ProgramStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ProgramStoreDao; +import com.jwsaas.entity.food.ProgramStore; +import com.jwsaas.service.food.ProgramStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreServiceImpl") +public class ProgramStoreServiceImpl extends BaseServiceImpl implements ProgramStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ProgramStoreDaoImpl") + private ProgramStoreDao programStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.programStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionBlackListGoodsServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionBlackListGoodsServiceImpl.java new file mode 100644 index 0000000..15e9d6e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionBlackListGoodsServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PromotionBlackListGoodsDao; +import com.jwsaas.entity.food.PromotionBlackListGoods; +import com.jwsaas.service.food.PromotionBlackListGoodsService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PromotionBlackListGoodsServiceImpl") +public class PromotionBlackListGoodsServiceImpl extends BaseServiceImpl implements PromotionBlackListGoodsService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PromotionBlackListGoodsDaoImpl") + private PromotionBlackListGoodsDao promotionBlackListGoodsDao; + + @Override + public BaseDao getBaseDao() { + return this.promotionBlackListGoodsDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionBlackListStoreAreaServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionBlackListStoreAreaServiceImpl.java new file mode 100644 index 0000000..8537416 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionBlackListStoreAreaServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PromotionBlackListStoreAreaDao; +import com.jwsaas.entity.food.PromotionBlackListStoreArea; +import com.jwsaas.service.food.PromotionBlackListStoreAreaService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PromotionBlackListStoreAreaServiceImpl") +public class PromotionBlackListStoreAreaServiceImpl extends BaseServiceImpl implements PromotionBlackListStoreAreaService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PromotionBlackListStoreAreaDaoImpl") + private PromotionBlackListStoreAreaDao promotionBlackListStoreAreaDao; + + @Override + public BaseDao getBaseDao() { + return this.promotionBlackListStoreAreaDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionBlackListStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionBlackListStoreServiceImpl.java new file mode 100644 index 0000000..b83a428 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionBlackListStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PromotionBlackListStoreDao; +import com.jwsaas.entity.food.PromotionBlackListStore; +import com.jwsaas.service.food.PromotionBlackListStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PromotionBlackListStoreServiceImpl") +public class PromotionBlackListStoreServiceImpl extends BaseServiceImpl implements PromotionBlackListStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PromotionBlackListStoreDaoImpl") + private PromotionBlackListStoreDao promotionBlackListStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.promotionBlackListStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionCategoryServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionCategoryServiceImpl.java new file mode 100644 index 0000000..bbf00c7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionCategoryServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PromotionCategoryDao; +import com.jwsaas.entity.food.PromotionCategory; +import com.jwsaas.service.food.PromotionCategoryService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PromotionCategoryServiceImpl") +public class PromotionCategoryServiceImpl extends BaseServiceImpl implements PromotionCategoryService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PromotionCategoryDaoImpl") + private PromotionCategoryDao promotionCategoryDao; + + @Override + public BaseDao getBaseDao() { + return this.promotionCategoryDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionGoodsServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionGoodsServiceImpl.java new file mode 100644 index 0000000..294f8d1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionGoodsServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PromotionGoodsDao; +import com.jwsaas.entity.food.PromotionGoods; +import com.jwsaas.service.food.PromotionGoodsService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PromotionGoodsServiceImpl") +public class PromotionGoodsServiceImpl extends BaseServiceImpl implements PromotionGoodsService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PromotionGoodsDaoImpl") + private PromotionGoodsDao promotionGoodsDao; + + @Override + public BaseDao getBaseDao() { + return this.promotionGoodsDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionScheduleServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionScheduleServiceImpl.java new file mode 100644 index 0000000..3803e9d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionScheduleServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PromotionScheduleDao; +import com.jwsaas.entity.food.PromotionSchedule; +import com.jwsaas.service.food.PromotionScheduleService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PromotionScheduleServiceImpl") +public class PromotionScheduleServiceImpl extends BaseServiceImpl implements PromotionScheduleService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PromotionScheduleDaoImpl") + private PromotionScheduleDao promotionScheduleDao; + + @Override + public BaseDao getBaseDao() { + return this.promotionScheduleDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionSchemeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionSchemeServiceImpl.java new file mode 100644 index 0000000..3b2c07c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionSchemeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PromotionSchemeDao; +import com.jwsaas.entity.food.PromotionScheme; +import com.jwsaas.service.food.PromotionSchemeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PromotionSchemeServiceImpl") +public class PromotionSchemeServiceImpl extends BaseServiceImpl implements PromotionSchemeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PromotionSchemeDaoImpl") + private PromotionSchemeDao promotionSchemeDao; + + @Override + public BaseDao getBaseDao() { + return this.promotionSchemeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionStoreAreaServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionStoreAreaServiceImpl.java new file mode 100644 index 0000000..5f7a02c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionStoreAreaServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PromotionStoreAreaDao; +import com.jwsaas.entity.food.PromotionStoreArea; +import com.jwsaas.service.food.PromotionStoreAreaService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PromotionStoreAreaServiceImpl") +public class PromotionStoreAreaServiceImpl extends BaseServiceImpl implements PromotionStoreAreaService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PromotionStoreAreaDaoImpl") + private PromotionStoreAreaDao promotionStoreAreaDao; + + @Override + public BaseDao getBaseDao() { + return this.promotionStoreAreaDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionStoreServiceImpl.java new file mode 100644 index 0000000..02f75ae --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PromotionStoreDao; +import com.jwsaas.entity.food.PromotionStore; +import com.jwsaas.service.food.PromotionStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PromotionStoreServiceImpl") +public class PromotionStoreServiceImpl extends BaseServiceImpl implements PromotionStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PromotionStoreDaoImpl") + private PromotionStoreDao promotionStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.promotionStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionTaskServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionTaskServiceImpl.java new file mode 100644 index 0000000..ce084c1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionTaskServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PromotionTaskDao; +import com.jwsaas.entity.food.PromotionTask; +import com.jwsaas.service.food.PromotionTaskService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PromotionTaskServiceImpl") +public class PromotionTaskServiceImpl extends BaseServiceImpl implements PromotionTaskService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PromotionTaskDaoImpl") + private PromotionTaskDao promotionTaskDao; + + @Override + public BaseDao getBaseDao() { + return this.promotionTaskDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionTicketServiceImpl.java new file mode 100644 index 0000000..168a8f7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PromotionTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PromotionTicketDao; +import com.jwsaas.entity.food.PromotionTicket; +import com.jwsaas.service.food.PromotionTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PromotionTicketServiceImpl") +public class PromotionTicketServiceImpl extends BaseServiceImpl implements PromotionTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PromotionTicketDaoImpl") + private PromotionTicketDao promotionTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.promotionTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseStorageTicketDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseStorageTicketDetailServiceImpl.java new file mode 100644 index 0000000..16584d1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseStorageTicketDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PurchaseStorageTicketDetailDao; +import com.jwsaas.entity.food.PurchaseStorageTicketDetail; +import com.jwsaas.service.food.PurchaseStorageTicketDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PurchaseStorageTicketDetailServiceImpl") +public class PurchaseStorageTicketDetailServiceImpl extends BaseServiceImpl implements PurchaseStorageTicketDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PurchaseStorageTicketDetailDaoImpl") + private PurchaseStorageTicketDetailDao purchaseStorageTicketDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.purchaseStorageTicketDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseStorageTicketLogServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseStorageTicketLogServiceImpl.java new file mode 100644 index 0000000..57d06da --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseStorageTicketLogServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PurchaseStorageTicketLogDao; +import com.jwsaas.entity.food.PurchaseStorageTicketLog; +import com.jwsaas.service.food.PurchaseStorageTicketLogService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PurchaseStorageTicketLogServiceImpl") +public class PurchaseStorageTicketLogServiceImpl extends BaseServiceImpl implements PurchaseStorageTicketLogService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PurchaseStorageTicketLogDaoImpl") + private PurchaseStorageTicketLogDao purchaseStorageTicketLogDao; + + @Override + public BaseDao getBaseDao() { + return this.purchaseStorageTicketLogDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseStorageTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseStorageTicketServiceImpl.java new file mode 100644 index 0000000..eb77d80 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseStorageTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PurchaseStorageTicketDao; +import com.jwsaas.entity.food.PurchaseStorageTicket; +import com.jwsaas.service.food.PurchaseStorageTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PurchaseStorageTicketServiceImpl") +public class PurchaseStorageTicketServiceImpl extends BaseServiceImpl implements PurchaseStorageTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PurchaseStorageTicketDaoImpl") + private PurchaseStorageTicketDao purchaseStorageTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.purchaseStorageTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseTemplateDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseTemplateDetailServiceImpl.java new file mode 100644 index 0000000..68d2615 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseTemplateDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PurchaseTemplateDetailDao; +import com.jwsaas.entity.food.PurchaseTemplateDetail; +import com.jwsaas.service.food.PurchaseTemplateDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PurchaseTemplateDetailServiceImpl") +public class PurchaseTemplateDetailServiceImpl extends BaseServiceImpl implements PurchaseTemplateDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PurchaseTemplateDetailDaoImpl") + private PurchaseTemplateDetailDao purchaseTemplateDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.purchaseTemplateDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseTemplateServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseTemplateServiceImpl.java new file mode 100644 index 0000000..1d76f61 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseTemplateServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PurchaseTemplateDao; +import com.jwsaas.entity.food.PurchaseTemplate; +import com.jwsaas.service.food.PurchaseTemplateService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PurchaseTemplateServiceImpl") +public class PurchaseTemplateServiceImpl extends BaseServiceImpl implements PurchaseTemplateService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PurchaseTemplateDaoImpl") + private PurchaseTemplateDao purchaseTemplateDao; + + @Override + public BaseDao getBaseDao() { + return this.purchaseTemplateDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseTicketDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseTicketDetailServiceImpl.java new file mode 100644 index 0000000..cef1d8f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseTicketDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PurchaseTicketDetailDao; +import com.jwsaas.entity.food.PurchaseTicketDetail; +import com.jwsaas.service.food.PurchaseTicketDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PurchaseTicketDetailServiceImpl") +public class PurchaseTicketDetailServiceImpl extends BaseServiceImpl implements PurchaseTicketDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PurchaseTicketDetailDaoImpl") + private PurchaseTicketDetailDao purchaseTicketDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.purchaseTicketDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseTicketLogServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseTicketLogServiceImpl.java new file mode 100644 index 0000000..fbdef1e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseTicketLogServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PurchaseTicketLogDao; +import com.jwsaas.entity.food.PurchaseTicketLog; +import com.jwsaas.service.food.PurchaseTicketLogService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PurchaseTicketLogServiceImpl") +public class PurchaseTicketLogServiceImpl extends BaseServiceImpl implements PurchaseTicketLogService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PurchaseTicketLogDaoImpl") + private PurchaseTicketLogDao purchaseTicketLogDao; + + @Override + public BaseDao getBaseDao() { + return this.purchaseTicketLogDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseTicketServiceImpl.java new file mode 100644 index 0000000..43ba0e1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchaseTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PurchaseTicketDao; +import com.jwsaas.entity.food.PurchaseTicket; +import com.jwsaas.service.food.PurchaseTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PurchaseTicketServiceImpl") +public class PurchaseTicketServiceImpl extends BaseServiceImpl implements PurchaseTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PurchaseTicketDaoImpl") + private PurchaseTicketDao purchaseTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.purchaseTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchasepriceServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchasepriceServiceImpl.java new file mode 100644 index 0000000..cdba593 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchasepriceServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PurchasepriceDao; +import com.jwsaas.entity.food.Purchaseprice; +import com.jwsaas.service.food.PurchasepriceService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PurchasepriceServiceImpl") +public class PurchasepriceServiceImpl extends BaseServiceImpl implements PurchasepriceService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PurchasepriceDaoImpl") + private PurchasepriceDao purchasepriceDao; + + @Override + public BaseDao getBaseDao() { + return this.purchasepriceDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchasepriceTicketMaterialServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchasepriceTicketMaterialServiceImpl.java new file mode 100644 index 0000000..ecedb8e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchasepriceTicketMaterialServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PurchasepriceTicketMaterialDao; +import com.jwsaas.entity.food.PurchasepriceTicketMaterial; +import com.jwsaas.service.food.PurchasepriceTicketMaterialService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PurchasepriceTicketMaterialServiceImpl") +public class PurchasepriceTicketMaterialServiceImpl extends BaseServiceImpl implements PurchasepriceTicketMaterialService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PurchasepriceTicketMaterialDaoImpl") + private PurchasepriceTicketMaterialDao purchasepriceTicketMaterialDao; + + @Override + public BaseDao getBaseDao() { + return this.purchasepriceTicketMaterialDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchasepriceTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchasepriceTicketServiceImpl.java new file mode 100644 index 0000000..80731de --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/PurchasepriceTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.PurchasepriceTicketDao; +import com.jwsaas.entity.food.PurchasepriceTicket; +import com.jwsaas.service.food.PurchasepriceTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"PurchasepriceTicketServiceImpl") +public class PurchasepriceTicketServiceImpl extends BaseServiceImpl implements PurchasepriceTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"PurchasepriceTicketDaoImpl") + private PurchasepriceTicketDao purchasepriceTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.purchasepriceTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiAdjustPriceGoodsServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiAdjustPriceGoodsServiceImpl.java new file mode 100644 index 0000000..619e325 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiAdjustPriceGoodsServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.QimaiAdjustPriceGoodsDao; +import com.jwsaas.entity.food.QimaiAdjustPriceGoods; +import com.jwsaas.service.food.QimaiAdjustPriceGoodsService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"QimaiAdjustPriceGoodsServiceImpl") +public class QimaiAdjustPriceGoodsServiceImpl extends BaseServiceImpl implements QimaiAdjustPriceGoodsService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"QimaiAdjustPriceGoodsDaoImpl") + private QimaiAdjustPriceGoodsDao qimaiAdjustPriceGoodsDao; + + @Override + public BaseDao getBaseDao() { + return this.qimaiAdjustPriceGoodsDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiAdjustPriceStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiAdjustPriceStoreServiceImpl.java new file mode 100644 index 0000000..40b6371 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiAdjustPriceStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.QimaiAdjustPriceStoreDao; +import com.jwsaas.entity.food.QimaiAdjustPriceStore; +import com.jwsaas.service.food.QimaiAdjustPriceStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"QimaiAdjustPriceStoreServiceImpl") +public class QimaiAdjustPriceStoreServiceImpl extends BaseServiceImpl implements QimaiAdjustPriceStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"QimaiAdjustPriceStoreDaoImpl") + private QimaiAdjustPriceStoreDao qimaiAdjustPriceStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.qimaiAdjustPriceStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiAdjustPriceTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiAdjustPriceTicketServiceImpl.java new file mode 100644 index 0000000..686f683 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiAdjustPriceTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.QimaiAdjustPriceTicketDao; +import com.jwsaas.entity.food.QimaiAdjustPriceTicket; +import com.jwsaas.service.food.QimaiAdjustPriceTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"QimaiAdjustPriceTicketServiceImpl") +public class QimaiAdjustPriceTicketServiceImpl extends BaseServiceImpl implements QimaiAdjustPriceTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"QimaiAdjustPriceTicketDaoImpl") + private QimaiAdjustPriceTicketDao qimaiAdjustPriceTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.qimaiAdjustPriceTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiAttributeCategoryServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiAttributeCategoryServiceImpl.java new file mode 100644 index 0000000..56b6861 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiAttributeCategoryServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.QimaiAttributeCategoryDao; +import com.jwsaas.entity.food.QimaiAttributeCategory; +import com.jwsaas.service.food.QimaiAttributeCategoryService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"QimaiAttributeCategoryServiceImpl") +public class QimaiAttributeCategoryServiceImpl extends BaseServiceImpl implements QimaiAttributeCategoryService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"QimaiAttributeCategoryDaoImpl") + private QimaiAttributeCategoryDao qimaiAttributeCategoryDao; + + @Override + public BaseDao getBaseDao() { + return this.qimaiAttributeCategoryDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiAttributeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiAttributeServiceImpl.java new file mode 100644 index 0000000..f7afbe3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiAttributeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.QimaiAttributeDao; +import com.jwsaas.entity.food.QimaiAttribute; +import com.jwsaas.service.food.QimaiAttributeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"QimaiAttributeServiceImpl") +public class QimaiAttributeServiceImpl extends BaseServiceImpl implements QimaiAttributeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"QimaiAttributeDaoImpl") + private QimaiAttributeDao qimaiAttributeDao; + + @Override + public BaseDao getBaseDao() { + return this.qimaiAttributeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiChargeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiChargeServiceImpl.java new file mode 100644 index 0000000..0cd4ec2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiChargeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.QimaiChargeDao; +import com.jwsaas.entity.food.QimaiCharge; +import com.jwsaas.service.food.QimaiChargeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"QimaiChargeServiceImpl") +public class QimaiChargeServiceImpl extends BaseServiceImpl implements QimaiChargeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"QimaiChargeDaoImpl") + private QimaiChargeDao qimaiChargeDao; + + @Override + public BaseDao getBaseDao() { + return this.qimaiChargeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiOrderItemServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiOrderItemServiceImpl.java new file mode 100644 index 0000000..1c8fb08 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiOrderItemServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.QimaiOrderItemDao; +import com.jwsaas.entity.food.QimaiOrderItem; +import com.jwsaas.service.food.QimaiOrderItemService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"QimaiOrderItemServiceImpl") +public class QimaiOrderItemServiceImpl extends BaseServiceImpl implements QimaiOrderItemService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"QimaiOrderItemDaoImpl") + private QimaiOrderItemDao qimaiOrderItemDao; + + @Override + public BaseDao getBaseDao() { + return this.qimaiOrderItemDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiOrderPayServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiOrderPayServiceImpl.java new file mode 100644 index 0000000..3406145 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiOrderPayServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.QimaiOrderPayDao; +import com.jwsaas.entity.food.QimaiOrderPay; +import com.jwsaas.service.food.QimaiOrderPayService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"QimaiOrderPayServiceImpl") +public class QimaiOrderPayServiceImpl extends BaseServiceImpl implements QimaiOrderPayService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"QimaiOrderPayDaoImpl") + private QimaiOrderPayDao qimaiOrderPayDao; + + @Override + public BaseDao getBaseDao() { + return this.qimaiOrderPayDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiOrderServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiOrderServiceImpl.java new file mode 100644 index 0000000..9af667b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiOrderServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.QimaiOrderDao; +import com.jwsaas.entity.food.QimaiOrder; +import com.jwsaas.service.food.QimaiOrderService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"QimaiOrderServiceImpl") +public class QimaiOrderServiceImpl extends BaseServiceImpl implements QimaiOrderService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"QimaiOrderDaoImpl") + private QimaiOrderDao qimaiOrderDao; + + @Override + public BaseDao getBaseDao() { + return this.qimaiOrderDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductAttributeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductAttributeServiceImpl.java new file mode 100644 index 0000000..7fa87ad --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductAttributeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.QimaiProductAttributeDao; +import com.jwsaas.entity.food.QimaiProductAttribute; +import com.jwsaas.service.food.QimaiProductAttributeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"QimaiProductAttributeServiceImpl") +public class QimaiProductAttributeServiceImpl extends BaseServiceImpl implements QimaiProductAttributeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"QimaiProductAttributeDaoImpl") + private QimaiProductAttributeDao qimaiProductAttributeDao; + + @Override + public BaseDao getBaseDao() { + return this.qimaiProductAttributeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductCategoryServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductCategoryServiceImpl.java new file mode 100644 index 0000000..99a74ca --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductCategoryServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.QimaiProductCategoryDao; +import com.jwsaas.entity.food.QimaiProductCategory; +import com.jwsaas.service.food.QimaiProductCategoryService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"QimaiProductCategoryServiceImpl") +public class QimaiProductCategoryServiceImpl extends BaseServiceImpl implements QimaiProductCategoryService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"QimaiProductCategoryDaoImpl") + private QimaiProductCategoryDao qimaiProductCategoryDao; + + @Override + public BaseDao getBaseDao() { + return this.qimaiProductCategoryDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductChargeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductChargeServiceImpl.java new file mode 100644 index 0000000..0844407 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductChargeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.QimaiProductChargeDao; +import com.jwsaas.entity.food.QimaiProductCharge; +import com.jwsaas.service.food.QimaiProductChargeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"QimaiProductChargeServiceImpl") +public class QimaiProductChargeServiceImpl extends BaseServiceImpl implements QimaiProductChargeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"QimaiProductChargeDaoImpl") + private QimaiProductChargeDao qimaiProductChargeDao; + + @Override + public BaseDao getBaseDao() { + return this.qimaiProductChargeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductServiceImpl.java new file mode 100644 index 0000000..cba5275 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.QimaiProductDao; +import com.jwsaas.entity.food.QimaiProduct; +import com.jwsaas.service.food.QimaiProductService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"QimaiProductServiceImpl") +public class QimaiProductServiceImpl extends BaseServiceImpl implements QimaiProductService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"QimaiProductDaoImpl") + private QimaiProductDao qimaiProductDao; + + @Override + public BaseDao getBaseDao() { + return this.qimaiProductDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductSpecServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductSpecServiceImpl.java new file mode 100644 index 0000000..f7c372a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductSpecServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.QimaiProductSpecDao; +import com.jwsaas.entity.food.QimaiProductSpec; +import com.jwsaas.service.food.QimaiProductSpecService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"QimaiProductSpecServiceImpl") +public class QimaiProductSpecServiceImpl extends BaseServiceImpl implements QimaiProductSpecService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"QimaiProductSpecDaoImpl") + private QimaiProductSpecDao qimaiProductSpecDao; + + @Override + public BaseDao getBaseDao() { + return this.qimaiProductSpecDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductTemplateDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductTemplateDetailServiceImpl.java new file mode 100644 index 0000000..9301030 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductTemplateDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.QimaiProductTemplateDetailDao; +import com.jwsaas.entity.food.QimaiProductTemplateDetail; +import com.jwsaas.service.food.QimaiProductTemplateDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"QimaiProductTemplateDetailServiceImpl") +public class QimaiProductTemplateDetailServiceImpl extends BaseServiceImpl implements QimaiProductTemplateDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"QimaiProductTemplateDetailDaoImpl") + private QimaiProductTemplateDetailDao qimaiProductTemplateDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.qimaiProductTemplateDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductTemplateServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductTemplateServiceImpl.java new file mode 100644 index 0000000..8e0f546 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductTemplateServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.QimaiProductTemplateDao; +import com.jwsaas.entity.food.QimaiProductTemplate; +import com.jwsaas.service.food.QimaiProductTemplateService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"QimaiProductTemplateServiceImpl") +public class QimaiProductTemplateServiceImpl extends BaseServiceImpl implements QimaiProductTemplateService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"QimaiProductTemplateDaoImpl") + private QimaiProductTemplateDao qimaiProductTemplateDao; + + @Override + public BaseDao getBaseDao() { + return this.qimaiProductTemplateDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductTemplateStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductTemplateStoreServiceImpl.java new file mode 100644 index 0000000..ec87d66 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiProductTemplateStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.QimaiProductTemplateStoreDao; +import com.jwsaas.entity.food.QimaiProductTemplateStore; +import com.jwsaas.service.food.QimaiProductTemplateStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"QimaiProductTemplateStoreServiceImpl") +public class QimaiProductTemplateStoreServiceImpl extends BaseServiceImpl implements QimaiProductTemplateStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"QimaiProductTemplateStoreDaoImpl") + private QimaiProductTemplateStoreDao qimaiProductTemplateStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.qimaiProductTemplateStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiStoreLableServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiStoreLableServiceImpl.java new file mode 100644 index 0000000..32d4c4f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiStoreLableServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.QimaiStoreLableDao; +import com.jwsaas.entity.food.QimaiStoreLable; +import com.jwsaas.service.food.QimaiStoreLableService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"QimaiStoreLableServiceImpl") +public class QimaiStoreLableServiceImpl extends BaseServiceImpl implements QimaiStoreLableService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"QimaiStoreLableDaoImpl") + private QimaiStoreLableDao qimaiStoreLableDao; + + @Override + public BaseDao getBaseDao() { + return this.qimaiStoreLableDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiStoreProductServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiStoreProductServiceImpl.java new file mode 100644 index 0000000..5714461 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiStoreProductServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.QimaiStoreProductDao; +import com.jwsaas.entity.food.QimaiStoreProduct; +import com.jwsaas.service.food.QimaiStoreProductService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"QimaiStoreProductServiceImpl") +public class QimaiStoreProductServiceImpl extends BaseServiceImpl implements QimaiStoreProductService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"QimaiStoreProductDaoImpl") + private QimaiStoreProductDao qimaiStoreProductDao; + + @Override + public BaseDao getBaseDao() { + return this.qimaiStoreProductDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiStoreServiceImpl.java new file mode 100644 index 0000000..07d7ebd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.QimaiStoreDao; +import com.jwsaas.entity.food.QimaiStore; +import com.jwsaas.service.food.QimaiStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"QimaiStoreServiceImpl") +public class QimaiStoreServiceImpl extends BaseServiceImpl implements QimaiStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"QimaiStoreDaoImpl") + private QimaiStoreDao qimaiStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.qimaiStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiSuitDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiSuitDetailServiceImpl.java new file mode 100644 index 0000000..fbd21ae --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/QimaiSuitDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.QimaiSuitDetailDao; +import com.jwsaas.entity.food.QimaiSuitDetail; +import com.jwsaas.service.food.QimaiSuitDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"QimaiSuitDetailServiceImpl") +public class QimaiSuitDetailServiceImpl extends BaseServiceImpl implements QimaiSuitDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"QimaiSuitDetailDaoImpl") + private QimaiSuitDetailDao qimaiSuitDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.qimaiSuitDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ReceiveDifferenceDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ReceiveDifferenceDetailServiceImpl.java new file mode 100644 index 0000000..4764323 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ReceiveDifferenceDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ReceiveDifferenceDetailDao; +import com.jwsaas.entity.food.ReceiveDifferenceDetail; +import com.jwsaas.service.food.ReceiveDifferenceDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ReceiveDifferenceDetailServiceImpl") +public class ReceiveDifferenceDetailServiceImpl extends BaseServiceImpl implements ReceiveDifferenceDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ReceiveDifferenceDetailDaoImpl") + private ReceiveDifferenceDetailDao receiveDifferenceDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.receiveDifferenceDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ReceiveDifferenceTicketLogServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ReceiveDifferenceTicketLogServiceImpl.java new file mode 100644 index 0000000..a55994a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ReceiveDifferenceTicketLogServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ReceiveDifferenceTicketLogDao; +import com.jwsaas.entity.food.ReceiveDifferenceTicketLog; +import com.jwsaas.service.food.ReceiveDifferenceTicketLogService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ReceiveDifferenceTicketLogServiceImpl") +public class ReceiveDifferenceTicketLogServiceImpl extends BaseServiceImpl implements ReceiveDifferenceTicketLogService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ReceiveDifferenceTicketLogDaoImpl") + private ReceiveDifferenceTicketLogDao receiveDifferenceTicketLogDao; + + @Override + public BaseDao getBaseDao() { + return this.receiveDifferenceTicketLogDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ReceiveDifferenceTicketPayServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ReceiveDifferenceTicketPayServiceImpl.java new file mode 100644 index 0000000..04e8894 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ReceiveDifferenceTicketPayServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ReceiveDifferenceTicketPayDao; +import com.jwsaas.entity.food.ReceiveDifferenceTicketPay; +import com.jwsaas.service.food.ReceiveDifferenceTicketPayService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ReceiveDifferenceTicketPayServiceImpl") +public class ReceiveDifferenceTicketPayServiceImpl extends BaseServiceImpl implements ReceiveDifferenceTicketPayService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ReceiveDifferenceTicketPayDaoImpl") + private ReceiveDifferenceTicketPayDao receiveDifferenceTicketPayDao; + + @Override + public BaseDao getBaseDao() { + return this.receiveDifferenceTicketPayDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ReceiveDifferenceTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ReceiveDifferenceTicketServiceImpl.java new file mode 100644 index 0000000..06fa9ae --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ReceiveDifferenceTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ReceiveDifferenceTicketDao; +import com.jwsaas.entity.food.ReceiveDifferenceTicket; +import com.jwsaas.service.food.ReceiveDifferenceTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ReceiveDifferenceTicketServiceImpl") +public class ReceiveDifferenceTicketServiceImpl extends BaseServiceImpl implements ReceiveDifferenceTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ReceiveDifferenceTicketDaoImpl") + private ReceiveDifferenceTicketDao receiveDifferenceTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.receiveDifferenceTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ReceiveGoodsDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ReceiveGoodsDetailServiceImpl.java new file mode 100644 index 0000000..d5fb5b7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ReceiveGoodsDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ReceiveGoodsDetailDao; +import com.jwsaas.entity.food.ReceiveGoodsDetail; +import com.jwsaas.service.food.ReceiveGoodsDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ReceiveGoodsDetailServiceImpl") +public class ReceiveGoodsDetailServiceImpl extends BaseServiceImpl implements ReceiveGoodsDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ReceiveGoodsDetailDaoImpl") + private ReceiveGoodsDetailDao receiveGoodsDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.receiveGoodsDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ReceiveGoodsTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ReceiveGoodsTicketServiceImpl.java new file mode 100644 index 0000000..14f8715 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ReceiveGoodsTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ReceiveGoodsTicketDao; +import com.jwsaas.entity.food.ReceiveGoodsTicket; +import com.jwsaas.service.food.ReceiveGoodsTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ReceiveGoodsTicketServiceImpl") +public class ReceiveGoodsTicketServiceImpl extends BaseServiceImpl implements ReceiveGoodsTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ReceiveGoodsTicketDaoImpl") + private ReceiveGoodsTicketDao receiveGoodsTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.receiveGoodsTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/RechargeParameterServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/RechargeParameterServiceImpl.java new file mode 100644 index 0000000..c444a43 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/RechargeParameterServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.RechargeParameterDao; +import com.jwsaas.entity.food.RechargeParameter; +import com.jwsaas.service.food.RechargeParameterService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"RechargeParameterServiceImpl") +public class RechargeParameterServiceImpl extends BaseServiceImpl implements RechargeParameterService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"RechargeParameterDaoImpl") + private RechargeParameterDao rechargeParameterDao; + + @Override + public BaseDao getBaseDao() { + return this.rechargeParameterDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/RechargeParameterStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/RechargeParameterStoreServiceImpl.java new file mode 100644 index 0000000..3d11eae --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/RechargeParameterStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.RechargeParameterStoreDao; +import com.jwsaas.entity.food.RechargeParameterStore; +import com.jwsaas.service.food.RechargeParameterStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"RechargeParameterStoreServiceImpl") +public class RechargeParameterStoreServiceImpl extends BaseServiceImpl implements RechargeParameterStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"RechargeParameterStoreDaoImpl") + private RechargeParameterStoreDao rechargeParameterStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.rechargeParameterStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SaleClearServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SaleClearServiceImpl.java new file mode 100644 index 0000000..a644d4b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SaleClearServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.SaleClearDao; +import com.jwsaas.entity.food.SaleClear; +import com.jwsaas.service.food.SaleClearService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"SaleClearServiceImpl") +public class SaleClearServiceImpl extends BaseServiceImpl implements SaleClearService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"SaleClearDaoImpl") + private SaleClearDao saleClearDao; + + @Override + public BaseDao getBaseDao() { + return this.saleClearDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ServerDataVersionServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ServerDataVersionServiceImpl.java new file mode 100644 index 0000000..d10fad2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ServerDataVersionServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ServerDataVersionDao; +import com.jwsaas.entity.food.ServerDataVersion; +import com.jwsaas.service.food.ServerDataVersionService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ServerDataVersionServiceImpl") +public class ServerDataVersionServiceImpl extends BaseServiceImpl implements ServerDataVersionService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ServerDataVersionDaoImpl") + private ServerDataVersionDao serverDataVersionDao; + + @Override + public BaseDao getBaseDao() { + return this.serverDataVersionDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ShopMeituanOrderExtraServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ShopMeituanOrderExtraServiceImpl.java new file mode 100644 index 0000000..643dfb8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ShopMeituanOrderExtraServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ShopMeituanOrderExtraDao; +import com.jwsaas.entity.food.ShopMeituanOrderExtra; +import com.jwsaas.service.food.ShopMeituanOrderExtraService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ShopMeituanOrderExtraServiceImpl") +public class ShopMeituanOrderExtraServiceImpl extends BaseServiceImpl implements ShopMeituanOrderExtraService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ShopMeituanOrderExtraDaoImpl") + private ShopMeituanOrderExtraDao shopMeituanOrderExtraDao; + + @Override + public BaseDao getBaseDao() { + return this.shopMeituanOrderExtraDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ShopMeituanOrderItemServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ShopMeituanOrderItemServiceImpl.java new file mode 100644 index 0000000..afdb600 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ShopMeituanOrderItemServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ShopMeituanOrderItemDao; +import com.jwsaas.entity.food.ShopMeituanOrderItem; +import com.jwsaas.service.food.ShopMeituanOrderItemService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ShopMeituanOrderItemServiceImpl") +public class ShopMeituanOrderItemServiceImpl extends BaseServiceImpl implements ShopMeituanOrderItemService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ShopMeituanOrderItemDaoImpl") + private ShopMeituanOrderItemDao shopMeituanOrderItemDao; + + @Override + public BaseDao getBaseDao() { + return this.shopMeituanOrderItemDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ShopMeituanOrderServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ShopMeituanOrderServiceImpl.java new file mode 100644 index 0000000..bfd652b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ShopMeituanOrderServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ShopMeituanOrderDao; +import com.jwsaas.entity.food.ShopMeituanOrder; +import com.jwsaas.service.food.ShopMeituanOrderService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ShopMeituanOrderServiceImpl") +public class ShopMeituanOrderServiceImpl extends BaseServiceImpl implements ShopMeituanOrderService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ShopMeituanOrderDaoImpl") + private ShopMeituanOrderDao shopMeituanOrderDao; + + @Override + public BaseDao getBaseDao() { + return this.shopMeituanOrderDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SplitFoodAccount2ServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SplitFoodAccount2ServiceImpl.java new file mode 100644 index 0000000..cf49305 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SplitFoodAccount2ServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.SplitFoodAccount2Dao; +import com.jwsaas.entity.food.SplitFoodAccount2; +import com.jwsaas.service.food.SplitFoodAccount2Service; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"SplitFoodAccount2ServiceImpl") +public class SplitFoodAccount2ServiceImpl extends BaseServiceImpl implements SplitFoodAccount2Service{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"SplitFoodAccount2DaoImpl") + private SplitFoodAccount2Dao splitFoodAccount2Dao; + + @Override + public BaseDao getBaseDao() { + return this.splitFoodAccount2Dao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SplitFoodAccountServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SplitFoodAccountServiceImpl.java new file mode 100644 index 0000000..e46803b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SplitFoodAccountServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.SplitFoodAccountDao; +import com.jwsaas.entity.food.SplitFoodAccount; +import com.jwsaas.service.food.SplitFoodAccountService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"SplitFoodAccountServiceImpl") +public class SplitFoodAccountServiceImpl extends BaseServiceImpl implements SplitFoodAccountService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"SplitFoodAccountDaoImpl") + private SplitFoodAccountDao splitFoodAccountDao; + + @Override + public BaseDao getBaseDao() { + return this.splitFoodAccountDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SplitPayLogServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SplitPayLogServiceImpl.java new file mode 100644 index 0000000..073fe89 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SplitPayLogServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.SplitPayLogDao; +import com.jwsaas.entity.food.SplitPayLog; +import com.jwsaas.service.food.SplitPayLogService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"SplitPayLogServiceImpl") +public class SplitPayLogServiceImpl extends BaseServiceImpl implements SplitPayLogService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"SplitPayLogDaoImpl") + private SplitPayLogDao splitPayLogDao; + + @Override + public BaseDao getBaseDao() { + return this.splitPayLogDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SplitPayResultServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SplitPayResultServiceImpl.java new file mode 100644 index 0000000..6efe2c7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SplitPayResultServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.SplitPayResultDao; +import com.jwsaas.entity.food.SplitPayResult; +import com.jwsaas.service.food.SplitPayResultService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"SplitPayResultServiceImpl") +public class SplitPayResultServiceImpl extends BaseServiceImpl implements SplitPayResultService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"SplitPayResultDaoImpl") + private SplitPayResultDao splitPayResultDao; + + @Override + public BaseDao getBaseDao() { + return this.splitPayResultDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SplitShopAccountServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SplitShopAccountServiceImpl.java new file mode 100644 index 0000000..cf4484f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SplitShopAccountServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.SplitShopAccountDao; +import com.jwsaas.entity.food.SplitShopAccount; +import com.jwsaas.service.food.SplitShopAccountService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"SplitShopAccountServiceImpl") +public class SplitShopAccountServiceImpl extends BaseServiceImpl implements SplitShopAccountService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"SplitShopAccountDaoImpl") + private SplitShopAccountDao splitShopAccountDao; + + @Override + public BaseDao getBaseDao() { + return this.splitShopAccountDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SplitShopWithdrawalServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SplitShopWithdrawalServiceImpl.java new file mode 100644 index 0000000..15a7352 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SplitShopWithdrawalServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.SplitShopWithdrawalDao; +import com.jwsaas.entity.food.SplitShopWithdrawal; +import com.jwsaas.service.food.SplitShopWithdrawalService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"SplitShopWithdrawalServiceImpl") +public class SplitShopWithdrawalServiceImpl extends BaseServiceImpl implements SplitShopWithdrawalService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"SplitShopWithdrawalDaoImpl") + private SplitShopWithdrawalDao splitShopWithdrawalDao; + + @Override + public BaseDao getBaseDao() { + return this.splitShopWithdrawalDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SplitStorePayServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SplitStorePayServiceImpl.java new file mode 100644 index 0000000..de90393 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SplitStorePayServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.SplitStorePayDao; +import com.jwsaas.entity.food.SplitStorePay; +import com.jwsaas.service.food.SplitStorePayService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"SplitStorePayServiceImpl") +public class SplitStorePayServiceImpl extends BaseServiceImpl implements SplitStorePayService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"SplitStorePayDaoImpl") + private SplitStorePayDao splitStorePayDao; + + @Override + public BaseDao getBaseDao() { + return this.splitStorePayDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StorageServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StorageServiceImpl.java new file mode 100644 index 0000000..7bab7de --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StorageServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StorageDao; +import com.jwsaas.entity.food.Storage; +import com.jwsaas.service.food.StorageService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StorageServiceImpl") +public class StorageServiceImpl extends BaseServiceImpl implements StorageService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StorageDaoImpl") + private StorageDao storageDao; + + @Override + public BaseDao getBaseDao() { + return this.storageDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StorageStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StorageStoreServiceImpl.java new file mode 100644 index 0000000..1fe3d90 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StorageStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StorageStoreDao; +import com.jwsaas.entity.food.StorageStore; +import com.jwsaas.service.food.StorageStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StorageStoreServiceImpl") +public class StorageStoreServiceImpl extends BaseServiceImpl implements StorageStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StorageStoreDaoImpl") + private StorageStoreDao storageStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.storageStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StorageTypeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StorageTypeServiceImpl.java new file mode 100644 index 0000000..178f03c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StorageTypeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StorageTypeDao; +import com.jwsaas.entity.food.StorageType; +import com.jwsaas.service.food.StorageTypeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StorageTypeServiceImpl") +public class StorageTypeServiceImpl extends BaseServiceImpl implements StorageTypeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StorageTypeDaoImpl") + private StorageTypeDao storageTypeDao; + + @Override + public BaseDao getBaseDao() { + return this.storageTypeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreAccountDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreAccountDetailServiceImpl.java new file mode 100644 index 0000000..a0ae7f5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreAccountDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreAccountDetailDao; +import com.jwsaas.entity.food.StoreAccountDetail; +import com.jwsaas.service.food.StoreAccountDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreAccountDetailServiceImpl") +public class StoreAccountDetailServiceImpl extends BaseServiceImpl implements StoreAccountDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreAccountDetailDaoImpl") + private StoreAccountDetailDao storeAccountDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.storeAccountDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreAccountRechargeParameterServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreAccountRechargeParameterServiceImpl.java new file mode 100644 index 0000000..cf9ef0b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreAccountRechargeParameterServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreAccountRechargeParameterDao; +import com.jwsaas.entity.food.StoreAccountRechargeParameter; +import com.jwsaas.service.food.StoreAccountRechargeParameterService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreAccountRechargeParameterServiceImpl") +public class StoreAccountRechargeParameterServiceImpl extends BaseServiceImpl implements StoreAccountRechargeParameterService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreAccountRechargeParameterDaoImpl") + private StoreAccountRechargeParameterDao storeAccountRechargeParameterDao; + + @Override + public BaseDao getBaseDao() { + return this.storeAccountRechargeParameterDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreAccountRechargeRecordServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreAccountRechargeRecordServiceImpl.java new file mode 100644 index 0000000..ddb15d3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreAccountRechargeRecordServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreAccountRechargeRecordDao; +import com.jwsaas.entity.food.StoreAccountRechargeRecord; +import com.jwsaas.service.food.StoreAccountRechargeRecordService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreAccountRechargeRecordServiceImpl") +public class StoreAccountRechargeRecordServiceImpl extends BaseServiceImpl implements StoreAccountRechargeRecordService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreAccountRechargeRecordDaoImpl") + private StoreAccountRechargeRecordDao storeAccountRechargeRecordDao; + + @Override + public BaseDao getBaseDao() { + return this.storeAccountRechargeRecordDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreAccountServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreAccountServiceImpl.java new file mode 100644 index 0000000..355527e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreAccountServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreAccountDao; +import com.jwsaas.entity.food.StoreAccount; +import com.jwsaas.service.food.StoreAccountService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreAccountServiceImpl") +public class StoreAccountServiceImpl extends BaseServiceImpl implements StoreAccountService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreAccountDaoImpl") + private StoreAccountDao storeAccountDao; + + @Override + public BaseDao getBaseDao() { + return this.storeAccountDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreAreaServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreAreaServiceImpl.java new file mode 100644 index 0000000..2cc0677 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreAreaServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreAreaDao; +import com.jwsaas.entity.food.StoreArea; +import com.jwsaas.service.food.StoreAreaService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreAreaServiceImpl") +public class StoreAreaServiceImpl extends BaseServiceImpl implements StoreAreaService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreAreaDaoImpl") + private StoreAreaDao storeAreaDao; + + @Override + public BaseDao getBaseDao() { + return this.storeAreaDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBrandServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBrandServiceImpl.java new file mode 100644 index 0000000..46e3271 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBrandServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreBrandDao; +import com.jwsaas.entity.food.StoreBrand; +import com.jwsaas.service.food.StoreBrandService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreBrandServiceImpl") +public class StoreBrandServiceImpl extends BaseServiceImpl implements StoreBrandService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreBrandDaoImpl") + private StoreBrandDao storeBrandDao; + + @Override + public BaseDao getBaseDao() { + return this.storeBrandDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBusinessTicketCheckServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBusinessTicketCheckServiceImpl.java new file mode 100644 index 0000000..73e8b96 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBusinessTicketCheckServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreBusinessTicketCheckDao; +import com.jwsaas.entity.food.StoreBusinessTicketCheck; +import com.jwsaas.service.food.StoreBusinessTicketCheckService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreBusinessTicketCheckServiceImpl") +public class StoreBusinessTicketCheckServiceImpl extends BaseServiceImpl implements StoreBusinessTicketCheckService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreBusinessTicketCheckDaoImpl") + private StoreBusinessTicketCheckDao storeBusinessTicketCheckDao; + + @Override + public BaseDao getBaseDao() { + return this.storeBusinessTicketCheckDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBusinessTicketDaysummaryServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBusinessTicketDaysummaryServiceImpl.java new file mode 100644 index 0000000..f490be7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBusinessTicketDaysummaryServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreBusinessTicketDaysummaryDao; +import com.jwsaas.entity.food.StoreBusinessTicketDaysummary; +import com.jwsaas.service.food.StoreBusinessTicketDaysummaryService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreBusinessTicketDaysummaryServiceImpl") +public class StoreBusinessTicketDaysummaryServiceImpl extends BaseServiceImpl implements StoreBusinessTicketDaysummaryService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreBusinessTicketDaysummaryDaoImpl") + private StoreBusinessTicketDaysummaryDao storeBusinessTicketDaysummaryDao; + + @Override + public BaseDao getBaseDao() { + return this.storeBusinessTicketDaysummaryDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBusinessTicketDeliveryServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBusinessTicketDeliveryServiceImpl.java new file mode 100644 index 0000000..68f3ab9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBusinessTicketDeliveryServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreBusinessTicketDeliveryDao; +import com.jwsaas.entity.food.StoreBusinessTicketDelivery; +import com.jwsaas.service.food.StoreBusinessTicketDeliveryService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreBusinessTicketDeliveryServiceImpl") +public class StoreBusinessTicketDeliveryServiceImpl extends BaseServiceImpl implements StoreBusinessTicketDeliveryService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreBusinessTicketDeliveryDaoImpl") + private StoreBusinessTicketDeliveryDao storeBusinessTicketDeliveryDao; + + @Override + public BaseDao getBaseDao() { + return this.storeBusinessTicketDeliveryDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBusinessTicketInfoDaysummaryServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBusinessTicketInfoDaysummaryServiceImpl.java new file mode 100644 index 0000000..b63161e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBusinessTicketInfoDaysummaryServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreBusinessTicketInfoDaysummaryDao; +import com.jwsaas.entity.food.StoreBusinessTicketInfoDaysummary; +import com.jwsaas.service.food.StoreBusinessTicketInfoDaysummaryService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreBusinessTicketInfoDaysummaryServiceImpl") +public class StoreBusinessTicketInfoDaysummaryServiceImpl extends BaseServiceImpl implements StoreBusinessTicketInfoDaysummaryService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreBusinessTicketInfoDaysummaryDaoImpl") + private StoreBusinessTicketInfoDaysummaryDao storeBusinessTicketInfoDaysummaryDao; + + @Override + public BaseDao getBaseDao() { + return this.storeBusinessTicketInfoDaysummaryDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBusinessTicketInfoServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBusinessTicketInfoServiceImpl.java new file mode 100644 index 0000000..ae5ef7d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBusinessTicketInfoServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreBusinessTicketInfoDao; +import com.jwsaas.entity.food.StoreBusinessTicketInfo; +import com.jwsaas.service.food.StoreBusinessTicketInfoService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreBusinessTicketInfoServiceImpl") +public class StoreBusinessTicketInfoServiceImpl extends BaseServiceImpl implements StoreBusinessTicketInfoService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreBusinessTicketInfoDaoImpl") + private StoreBusinessTicketInfoDao storeBusinessTicketInfoDao; + + @Override + public BaseDao getBaseDao() { + return this.storeBusinessTicketInfoDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBusinessTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBusinessTicketServiceImpl.java new file mode 100644 index 0000000..a864cac --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBusinessTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreBusinessTicketDao; +import com.jwsaas.entity.food.StoreBusinessTicket; +import com.jwsaas.service.food.StoreBusinessTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreBusinessTicketServiceImpl") +public class StoreBusinessTicketServiceImpl extends BaseServiceImpl implements StoreBusinessTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreBusinessTicketDaoImpl") + private StoreBusinessTicketDao storeBusinessTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.storeBusinessTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBusinessTicketTableServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBusinessTicketTableServiceImpl.java new file mode 100644 index 0000000..4c3e524 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreBusinessTicketTableServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreBusinessTicketTableDao; +import com.jwsaas.entity.food.StoreBusinessTicketTable; +import com.jwsaas.service.food.StoreBusinessTicketTableService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreBusinessTicketTableServiceImpl") +public class StoreBusinessTicketTableServiceImpl extends BaseServiceImpl implements StoreBusinessTicketTableService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreBusinessTicketTableDaoImpl") + private StoreBusinessTicketTableDao storeBusinessTicketTableDao; + + @Override + public BaseDao getBaseDao() { + return this.storeBusinessTicketTableDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreCostManageLogServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreCostManageLogServiceImpl.java new file mode 100644 index 0000000..0da5268 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreCostManageLogServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreCostManageLogDao; +import com.jwsaas.entity.food.StoreCostManageLog; +import com.jwsaas.service.food.StoreCostManageLogService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreCostManageLogServiceImpl") +public class StoreCostManageLogServiceImpl extends BaseServiceImpl implements StoreCostManageLogService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreCostManageLogDaoImpl") + private StoreCostManageLogDao storeCostManageLogDao; + + @Override + public BaseDao getBaseDao() { + return this.storeCostManageLogDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreCostManageServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreCostManageServiceImpl.java new file mode 100644 index 0000000..af38ac8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreCostManageServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreCostManageDao; +import com.jwsaas.entity.food.StoreCostManage; +import com.jwsaas.service.food.StoreCostManageService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreCostManageServiceImpl") +public class StoreCostManageServiceImpl extends BaseServiceImpl implements StoreCostManageService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreCostManageDaoImpl") + private StoreCostManageDao storeCostManageDao; + + @Override + public BaseDao getBaseDao() { + return this.storeCostManageDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreCostManageStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreCostManageStoreServiceImpl.java new file mode 100644 index 0000000..cb93335 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreCostManageStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreCostManageStoreDao; +import com.jwsaas.entity.food.StoreCostManageStore; +import com.jwsaas.service.food.StoreCostManageStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreCostManageStoreServiceImpl") +public class StoreCostManageStoreServiceImpl extends BaseServiceImpl implements StoreCostManageStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreCostManageStoreDaoImpl") + private StoreCostManageStoreDao storeCostManageStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.storeCostManageStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreCostRevenueServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreCostRevenueServiceImpl.java new file mode 100644 index 0000000..038b0db --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreCostRevenueServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreCostRevenueDao; +import com.jwsaas.entity.food.StoreCostRevenue; +import com.jwsaas.service.food.StoreCostRevenueService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreCostRevenueServiceImpl") +public class StoreCostRevenueServiceImpl extends BaseServiceImpl implements StoreCostRevenueService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreCostRevenueDaoImpl") + private StoreCostRevenueDao storeCostRevenueDao; + + @Override + public BaseDao getBaseDao() { + return this.storeCostRevenueDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreDeliveryOrderItemServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreDeliveryOrderItemServiceImpl.java new file mode 100644 index 0000000..46b64b7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreDeliveryOrderItemServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreDeliveryOrderItemDao; +import com.jwsaas.entity.food.StoreDeliveryOrderItem; +import com.jwsaas.service.food.StoreDeliveryOrderItemService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreDeliveryOrderItemServiceImpl") +public class StoreDeliveryOrderItemServiceImpl extends BaseServiceImpl implements StoreDeliveryOrderItemService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreDeliveryOrderItemDaoImpl") + private StoreDeliveryOrderItemDao storeDeliveryOrderItemDao; + + @Override + public BaseDao getBaseDao() { + return this.storeDeliveryOrderItemDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreDeliveryOrderServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreDeliveryOrderServiceImpl.java new file mode 100644 index 0000000..585f18d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreDeliveryOrderServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreDeliveryOrderDao; +import com.jwsaas.entity.food.StoreDeliveryOrder; +import com.jwsaas.service.food.StoreDeliveryOrderService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreDeliveryOrderServiceImpl") +public class StoreDeliveryOrderServiceImpl extends BaseServiceImpl implements StoreDeliveryOrderService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreDeliveryOrderDaoImpl") + private StoreDeliveryOrderDao storeDeliveryOrderDao; + + @Override + public BaseDao getBaseDao() { + return this.storeDeliveryOrderDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreDepartmentServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreDepartmentServiceImpl.java new file mode 100644 index 0000000..4bcb3c4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreDepartmentServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreDepartmentDao; +import com.jwsaas.entity.food.StoreDepartment; +import com.jwsaas.service.food.StoreDepartmentService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreDepartmentServiceImpl") +public class StoreDepartmentServiceImpl extends BaseServiceImpl implements StoreDepartmentService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreDepartmentDaoImpl") + private StoreDepartmentDao storeDepartmentDao; + + @Override + public BaseDao getBaseDao() { + return this.storeDepartmentDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreDispatchAccountLogServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreDispatchAccountLogServiceImpl.java new file mode 100644 index 0000000..1064145 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreDispatchAccountLogServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreDispatchAccountLogDao; +import com.jwsaas.entity.food.StoreDispatchAccountLog; +import com.jwsaas.service.food.StoreDispatchAccountLogService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreDispatchAccountLogServiceImpl") +public class StoreDispatchAccountLogServiceImpl extends BaseServiceImpl implements StoreDispatchAccountLogService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreDispatchAccountLogDaoImpl") + private StoreDispatchAccountLogDao storeDispatchAccountLogDao; + + @Override + public BaseDao getBaseDao() { + return this.storeDispatchAccountLogDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreDispatchAccountServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreDispatchAccountServiceImpl.java new file mode 100644 index 0000000..0d95b81 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreDispatchAccountServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreDispatchAccountDao; +import com.jwsaas.entity.food.StoreDispatchAccount; +import com.jwsaas.service.food.StoreDispatchAccountService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreDispatchAccountServiceImpl") +public class StoreDispatchAccountServiceImpl extends BaseServiceImpl implements StoreDispatchAccountService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreDispatchAccountDaoImpl") + private StoreDispatchAccountDao storeDispatchAccountDao; + + @Override + public BaseDao getBaseDao() { + return this.storeDispatchAccountDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreEnchashmentRecordLogServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreEnchashmentRecordLogServiceImpl.java new file mode 100644 index 0000000..2e09dc5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreEnchashmentRecordLogServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreEnchashmentRecordLogDao; +import com.jwsaas.entity.food.StoreEnchashmentRecordLog; +import com.jwsaas.service.food.StoreEnchashmentRecordLogService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreEnchashmentRecordLogServiceImpl") +public class StoreEnchashmentRecordLogServiceImpl extends BaseServiceImpl implements StoreEnchashmentRecordLogService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreEnchashmentRecordLogDaoImpl") + private StoreEnchashmentRecordLogDao storeEnchashmentRecordLogDao; + + @Override + public BaseDao getBaseDao() { + return this.storeEnchashmentRecordLogDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreEnchashmentRecordServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreEnchashmentRecordServiceImpl.java new file mode 100644 index 0000000..9b07658 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreEnchashmentRecordServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreEnchashmentRecordDao; +import com.jwsaas.entity.food.StoreEnchashmentRecord; +import com.jwsaas.service.food.StoreEnchashmentRecordService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreEnchashmentRecordServiceImpl") +public class StoreEnchashmentRecordServiceImpl extends BaseServiceImpl implements StoreEnchashmentRecordService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreEnchashmentRecordDaoImpl") + private StoreEnchashmentRecordDao storeEnchashmentRecordDao; + + @Override + public BaseDao getBaseDao() { + return this.storeEnchashmentRecordDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreFeeCutLogServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreFeeCutLogServiceImpl.java new file mode 100644 index 0000000..e1b32cd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreFeeCutLogServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreFeeCutLogDao; +import com.jwsaas.entity.food.StoreFeeCutLog; +import com.jwsaas.service.food.StoreFeeCutLogService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreFeeCutLogServiceImpl") +public class StoreFeeCutLogServiceImpl extends BaseServiceImpl implements StoreFeeCutLogService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreFeeCutLogDaoImpl") + private StoreFeeCutLogDao storeFeeCutLogDao; + + @Override + public BaseDao getBaseDao() { + return this.storeFeeCutLogDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreHandoverDetailPartServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreHandoverDetailPartServiceImpl.java new file mode 100644 index 0000000..ed6a787 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreHandoverDetailPartServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreHandoverDetailPartDao; +import com.jwsaas.entity.food.StoreHandoverDetailPart; +import com.jwsaas.service.food.StoreHandoverDetailPartService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreHandoverDetailPartServiceImpl") +public class StoreHandoverDetailPartServiceImpl extends BaseServiceImpl implements StoreHandoverDetailPartService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreHandoverDetailPartDaoImpl") + private StoreHandoverDetailPartDao storeHandoverDetailPartDao; + + @Override + public BaseDao getBaseDao() { + return this.storeHandoverDetailPartDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreHandoverDetailPayServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreHandoverDetailPayServiceImpl.java new file mode 100644 index 0000000..b0a9d37 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreHandoverDetailPayServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreHandoverDetailPayDao; +import com.jwsaas.entity.food.StoreHandoverDetailPay; +import com.jwsaas.service.food.StoreHandoverDetailPayService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreHandoverDetailPayServiceImpl") +public class StoreHandoverDetailPayServiceImpl extends BaseServiceImpl implements StoreHandoverDetailPayService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreHandoverDetailPayDaoImpl") + private StoreHandoverDetailPayDao storeHandoverDetailPayDao; + + @Override + public BaseDao getBaseDao() { + return this.storeHandoverDetailPayDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreHandoverDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreHandoverDetailServiceImpl.java new file mode 100644 index 0000000..5744104 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreHandoverDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreHandoverDetailDao; +import com.jwsaas.entity.food.StoreHandoverDetail; +import com.jwsaas.service.food.StoreHandoverDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreHandoverDetailServiceImpl") +public class StoreHandoverDetailServiceImpl extends BaseServiceImpl implements StoreHandoverDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreHandoverDetailDaoImpl") + private StoreHandoverDetailDao storeHandoverDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.storeHandoverDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreHandoverServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreHandoverServiceImpl.java new file mode 100644 index 0000000..7723891 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreHandoverServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreHandoverDao; +import com.jwsaas.entity.food.StoreHandover; +import com.jwsaas.service.food.StoreHandoverService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreHandoverServiceImpl") +public class StoreHandoverServiceImpl extends BaseServiceImpl implements StoreHandoverService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreHandoverDaoImpl") + private StoreHandoverDao storeHandoverDao; + + @Override + public BaseDao getBaseDao() { + return this.storeHandoverDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreLoginLogServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreLoginLogServiceImpl.java new file mode 100644 index 0000000..87e7627 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreLoginLogServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreLoginLogDao; +import com.jwsaas.entity.food.StoreLoginLog; +import com.jwsaas.service.food.StoreLoginLogService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreLoginLogServiceImpl") +public class StoreLoginLogServiceImpl extends BaseServiceImpl implements StoreLoginLogService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreLoginLogDaoImpl") + private StoreLoginLogDao storeLoginLogDao; + + @Override + public BaseDao getBaseDao() { + return this.storeLoginLogDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreOperationLogServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreOperationLogServiceImpl.java new file mode 100644 index 0000000..ecdd620 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreOperationLogServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreOperationLogDao; +import com.jwsaas.entity.food.StoreOperationLog; +import com.jwsaas.service.food.StoreOperationLogService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreOperationLogServiceImpl") +public class StoreOperationLogServiceImpl extends BaseServiceImpl implements StoreOperationLogService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreOperationLogDaoImpl") + private StoreOperationLogDao storeOperationLogDao; + + @Override + public BaseDao getBaseDao() { + return this.storeOperationLogDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreOrderProductDaysummaryServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreOrderProductDaysummaryServiceImpl.java new file mode 100644 index 0000000..c6ee7dc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreOrderProductDaysummaryServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreOrderProductDaysummaryDao; +import com.jwsaas.entity.food.StoreOrderProductDaysummary; +import com.jwsaas.service.food.StoreOrderProductDaysummaryService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreOrderProductDaysummaryServiceImpl") +public class StoreOrderProductDaysummaryServiceImpl extends BaseServiceImpl implements StoreOrderProductDaysummaryService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreOrderProductDaysummaryDaoImpl") + private StoreOrderProductDaysummaryDao storeOrderProductDaysummaryDao; + + @Override + public BaseDao getBaseDao() { + return this.storeOrderProductDaysummaryDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreOrderProductInfoDaysummaryServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreOrderProductInfoDaysummaryServiceImpl.java new file mode 100644 index 0000000..1f8eb05 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreOrderProductInfoDaysummaryServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreOrderProductInfoDaysummaryDao; +import com.jwsaas.entity.food.StoreOrderProductInfoDaysummary; +import com.jwsaas.service.food.StoreOrderProductInfoDaysummaryService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreOrderProductInfoDaysummaryServiceImpl") +public class StoreOrderProductInfoDaysummaryServiceImpl extends BaseServiceImpl implements StoreOrderProductInfoDaysummaryService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreOrderProductInfoDaysummaryDaoImpl") + private StoreOrderProductInfoDaysummaryDao storeOrderProductInfoDaysummaryDao; + + @Override + public BaseDao getBaseDao() { + return this.storeOrderProductInfoDaysummaryDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreOrderProductInfoServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreOrderProductInfoServiceImpl.java new file mode 100644 index 0000000..4d587aa --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreOrderProductInfoServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreOrderProductInfoDao; +import com.jwsaas.entity.food.StoreOrderProductInfo; +import com.jwsaas.service.food.StoreOrderProductInfoService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreOrderProductInfoServiceImpl") +public class StoreOrderProductInfoServiceImpl extends BaseServiceImpl implements StoreOrderProductInfoService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreOrderProductInfoDaoImpl") + private StoreOrderProductInfoDao storeOrderProductInfoDao; + + @Override + public BaseDao getBaseDao() { + return this.storeOrderProductInfoDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreOrderProductMakeDaysummaryServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreOrderProductMakeDaysummaryServiceImpl.java new file mode 100644 index 0000000..0d282a6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreOrderProductMakeDaysummaryServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreOrderProductMakeDaysummaryDao; +import com.jwsaas.entity.food.StoreOrderProductMakeDaysummary; +import com.jwsaas.service.food.StoreOrderProductMakeDaysummaryService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreOrderProductMakeDaysummaryServiceImpl") +public class StoreOrderProductMakeDaysummaryServiceImpl extends BaseServiceImpl implements StoreOrderProductMakeDaysummaryService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreOrderProductMakeDaysummaryDaoImpl") + private StoreOrderProductMakeDaysummaryDao storeOrderProductMakeDaysummaryDao; + + @Override + public BaseDao getBaseDao() { + return this.storeOrderProductMakeDaysummaryDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreOrderProductMakeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreOrderProductMakeServiceImpl.java new file mode 100644 index 0000000..715cfdf --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreOrderProductMakeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreOrderProductMakeDao; +import com.jwsaas.entity.food.StoreOrderProductMake; +import com.jwsaas.service.food.StoreOrderProductMakeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreOrderProductMakeServiceImpl") +public class StoreOrderProductMakeServiceImpl extends BaseServiceImpl implements StoreOrderProductMakeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreOrderProductMakeDaoImpl") + private StoreOrderProductMakeDao storeOrderProductMakeDao; + + @Override + public BaseDao getBaseDao() { + return this.storeOrderProductMakeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreOrderProductServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreOrderProductServiceImpl.java new file mode 100644 index 0000000..46f8c65 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreOrderProductServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreOrderProductDao; +import com.jwsaas.entity.food.StoreOrderProduct; +import com.jwsaas.service.food.StoreOrderProductService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreOrderProductServiceImpl") +public class StoreOrderProductServiceImpl extends BaseServiceImpl implements StoreOrderProductService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreOrderProductDaoImpl") + private StoreOrderProductDao storeOrderProductDao; + + @Override + public BaseDao getBaseDao() { + return this.storeOrderProductDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StorePayDaysummaryServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StorePayDaysummaryServiceImpl.java new file mode 100644 index 0000000..7f0ce46 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StorePayDaysummaryServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StorePayDaysummaryDao; +import com.jwsaas.entity.food.StorePayDaysummary; +import com.jwsaas.service.food.StorePayDaysummaryService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StorePayDaysummaryServiceImpl") +public class StorePayDaysummaryServiceImpl extends BaseServiceImpl implements StorePayDaysummaryService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StorePayDaysummaryDaoImpl") + private StorePayDaysummaryDao storePayDaysummaryDao; + + @Override + public BaseDao getBaseDao() { + return this.storePayDaysummaryDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StorePayServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StorePayServiceImpl.java new file mode 100644 index 0000000..91eb95d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StorePayServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StorePayDao; +import com.jwsaas.entity.food.StorePay; +import com.jwsaas.service.food.StorePayService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StorePayServiceImpl") +public class StorePayServiceImpl extends BaseServiceImpl implements StorePayService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StorePayDaoImpl") + private StorePayDao storePayDao; + + @Override + public BaseDao getBaseDao() { + return this.storePayDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreProductSaleStockServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreProductSaleStockServiceImpl.java new file mode 100644 index 0000000..6898efa --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreProductSaleStockServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreProductSaleStockDao; +import com.jwsaas.entity.food.StoreProductSaleStock; +import com.jwsaas.service.food.StoreProductSaleStockService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreProductSaleStockServiceImpl") +public class StoreProductSaleStockServiceImpl extends BaseServiceImpl implements StoreProductSaleStockService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreProductSaleStockDaoImpl") + private StoreProductSaleStockDao storeProductSaleStockDao; + + @Override + public BaseDao getBaseDao() { + return this.storeProductSaleStockDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreProductServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreProductServiceImpl.java new file mode 100644 index 0000000..b699ccb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreProductServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreProductDao; +import com.jwsaas.entity.food.StoreProduct; +import com.jwsaas.service.food.StoreProductService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreProductServiceImpl") +public class StoreProductServiceImpl extends BaseServiceImpl implements StoreProductService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreProductDaoImpl") + private StoreProductDao storeProductDao; + + @Override + public BaseDao getBaseDao() { + return this.storeProductDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreServiceImpl.java new file mode 100644 index 0000000..afb7792 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreDao; +import com.jwsaas.entity.food.Store; +import com.jwsaas.service.food.StoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreServiceImpl") +public class StoreServiceImpl extends BaseServiceImpl implements StoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreDaoImpl") + private StoreDao storeDao; + + @Override + public BaseDao getBaseDao() { + return this.storeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStockCheckTemplateDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStockCheckTemplateDetailServiceImpl.java new file mode 100644 index 0000000..cf20c16 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStockCheckTemplateDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreStockCheckTemplateDetailDao; +import com.jwsaas.entity.food.StoreStockCheckTemplateDetail; +import com.jwsaas.service.food.StoreStockCheckTemplateDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreStockCheckTemplateDetailServiceImpl") +public class StoreStockCheckTemplateDetailServiceImpl extends BaseServiceImpl implements StoreStockCheckTemplateDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreStockCheckTemplateDetailDaoImpl") + private StoreStockCheckTemplateDetailDao storeStockCheckTemplateDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.storeStockCheckTemplateDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStockCheckTemplateServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStockCheckTemplateServiceImpl.java new file mode 100644 index 0000000..a6ded5a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStockCheckTemplateServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreStockCheckTemplateDao; +import com.jwsaas.entity.food.StoreStockCheckTemplate; +import com.jwsaas.service.food.StoreStockCheckTemplateService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreStockCheckTemplateServiceImpl") +public class StoreStockCheckTemplateServiceImpl extends BaseServiceImpl implements StoreStockCheckTemplateService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreStockCheckTemplateDaoImpl") + private StoreStockCheckTemplateDao storeStockCheckTemplateDao; + + @Override + public BaseDao getBaseDao() { + return this.storeStockCheckTemplateDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStockCheckTemplateStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStockCheckTemplateStoreServiceImpl.java new file mode 100644 index 0000000..54b1972 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStockCheckTemplateStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreStockCheckTemplateStoreDao; +import com.jwsaas.entity.food.StoreStockCheckTemplateStore; +import com.jwsaas.service.food.StoreStockCheckTemplateStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreStockCheckTemplateStoreServiceImpl") +public class StoreStockCheckTemplateStoreServiceImpl extends BaseServiceImpl implements StoreStockCheckTemplateStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreStockCheckTemplateStoreDaoImpl") + private StoreStockCheckTemplateStoreDao storeStockCheckTemplateStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.storeStockCheckTemplateStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStockCheckTicketDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStockCheckTicketDetailServiceImpl.java new file mode 100644 index 0000000..e8947d7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStockCheckTicketDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreStockCheckTicketDetailDao; +import com.jwsaas.entity.food.StoreStockCheckTicketDetail; +import com.jwsaas.service.food.StoreStockCheckTicketDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreStockCheckTicketDetailServiceImpl") +public class StoreStockCheckTicketDetailServiceImpl extends BaseServiceImpl implements StoreStockCheckTicketDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreStockCheckTicketDetailDaoImpl") + private StoreStockCheckTicketDetailDao storeStockCheckTicketDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.storeStockCheckTicketDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStockCheckTicketLogServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStockCheckTicketLogServiceImpl.java new file mode 100644 index 0000000..dc6afde --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStockCheckTicketLogServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreStockCheckTicketLogDao; +import com.jwsaas.entity.food.StoreStockCheckTicketLog; +import com.jwsaas.service.food.StoreStockCheckTicketLogService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreStockCheckTicketLogServiceImpl") +public class StoreStockCheckTicketLogServiceImpl extends BaseServiceImpl implements StoreStockCheckTicketLogService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreStockCheckTicketLogDaoImpl") + private StoreStockCheckTicketLogDao storeStockCheckTicketLogDao; + + @Override + public BaseDao getBaseDao() { + return this.storeStockCheckTicketLogDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStockCheckTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStockCheckTicketServiceImpl.java new file mode 100644 index 0000000..80daf7e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStockCheckTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreStockCheckTicketDao; +import com.jwsaas.entity.food.StoreStockCheckTicket; +import com.jwsaas.service.food.StoreStockCheckTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreStockCheckTicketServiceImpl") +public class StoreStockCheckTicketServiceImpl extends BaseServiceImpl implements StoreStockCheckTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreStockCheckTicketDaoImpl") + private StoreStockCheckTicketDao storeStockCheckTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.storeStockCheckTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStorageOutTicketDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStorageOutTicketDetailServiceImpl.java new file mode 100644 index 0000000..3eb3f76 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStorageOutTicketDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreStorageOutTicketDetailDao; +import com.jwsaas.entity.food.StoreStorageOutTicketDetail; +import com.jwsaas.service.food.StoreStorageOutTicketDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreStorageOutTicketDetailServiceImpl") +public class StoreStorageOutTicketDetailServiceImpl extends BaseServiceImpl implements StoreStorageOutTicketDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreStorageOutTicketDetailDaoImpl") + private StoreStorageOutTicketDetailDao storeStorageOutTicketDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.storeStorageOutTicketDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStorageOutTicketLogServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStorageOutTicketLogServiceImpl.java new file mode 100644 index 0000000..192af93 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStorageOutTicketLogServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreStorageOutTicketLogDao; +import com.jwsaas.entity.food.StoreStorageOutTicketLog; +import com.jwsaas.service.food.StoreStorageOutTicketLogService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreStorageOutTicketLogServiceImpl") +public class StoreStorageOutTicketLogServiceImpl extends BaseServiceImpl implements StoreStorageOutTicketLogService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreStorageOutTicketLogDaoImpl") + private StoreStorageOutTicketLogDao storeStorageOutTicketLogDao; + + @Override + public BaseDao getBaseDao() { + return this.storeStorageOutTicketLogDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStorageOutTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStorageOutTicketServiceImpl.java new file mode 100644 index 0000000..43ca9a1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStorageOutTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreStorageOutTicketDao; +import com.jwsaas.entity.food.StoreStorageOutTicket; +import com.jwsaas.service.food.StoreStorageOutTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreStorageOutTicketServiceImpl") +public class StoreStorageOutTicketServiceImpl extends BaseServiceImpl implements StoreStorageOutTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreStorageOutTicketDaoImpl") + private StoreStorageOutTicketDao storeStorageOutTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.storeStorageOutTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStorageServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStorageServiceImpl.java new file mode 100644 index 0000000..72fa662 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStorageServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreStorageDao; +import com.jwsaas.entity.food.StoreStorage; +import com.jwsaas.service.food.StoreStorageService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreStorageServiceImpl") +public class StoreStorageServiceImpl extends BaseServiceImpl implements StoreStorageService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreStorageDaoImpl") + private StoreStorageDao storeStorageDao; + + @Override + public BaseDao getBaseDao() { + return this.storeStorageDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStorageTicketDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStorageTicketDetailServiceImpl.java new file mode 100644 index 0000000..db5558c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStorageTicketDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreStorageTicketDetailDao; +import com.jwsaas.entity.food.StoreStorageTicketDetail; +import com.jwsaas.service.food.StoreStorageTicketDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreStorageTicketDetailServiceImpl") +public class StoreStorageTicketDetailServiceImpl extends BaseServiceImpl implements StoreStorageTicketDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreStorageTicketDetailDaoImpl") + private StoreStorageTicketDetailDao storeStorageTicketDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.storeStorageTicketDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStorageTicketLogServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStorageTicketLogServiceImpl.java new file mode 100644 index 0000000..2c07186 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStorageTicketLogServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreStorageTicketLogDao; +import com.jwsaas.entity.food.StoreStorageTicketLog; +import com.jwsaas.service.food.StoreStorageTicketLogService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreStorageTicketLogServiceImpl") +public class StoreStorageTicketLogServiceImpl extends BaseServiceImpl implements StoreStorageTicketLogService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreStorageTicketLogDaoImpl") + private StoreStorageTicketLogDao storeStorageTicketLogDao; + + @Override + public BaseDao getBaseDao() { + return this.storeStorageTicketLogDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStorageTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStorageTicketServiceImpl.java new file mode 100644 index 0000000..ae428d7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreStorageTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreStorageTicketDao; +import com.jwsaas.entity.food.StoreStorageTicket; +import com.jwsaas.service.food.StoreStorageTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreStorageTicketServiceImpl") +public class StoreStorageTicketServiceImpl extends BaseServiceImpl implements StoreStorageTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreStorageTicketDaoImpl") + private StoreStorageTicketDao storeStorageTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.storeStorageTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreTypeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreTypeServiceImpl.java new file mode 100644 index 0000000..d9c2f90 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreTypeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreTypeDao; +import com.jwsaas.entity.food.StoreType; +import com.jwsaas.service.food.StoreTypeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreTypeServiceImpl") +public class StoreTypeServiceImpl extends BaseServiceImpl implements StoreTypeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreTypeDaoImpl") + private StoreTypeDao storeTypeDao; + + @Override + public BaseDao getBaseDao() { + return this.storeTypeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreWorkerExtServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreWorkerExtServiceImpl.java new file mode 100644 index 0000000..9cf9225 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreWorkerExtServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreWorkerExtDao; +import com.jwsaas.entity.food.StoreWorkerExt; +import com.jwsaas.service.food.StoreWorkerExtService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreWorkerExtServiceImpl") +public class StoreWorkerExtServiceImpl extends BaseServiceImpl implements StoreWorkerExtService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreWorkerExtDaoImpl") + private StoreWorkerExtDao storeWorkerExtDao; + + @Override + public BaseDao getBaseDao() { + return this.storeWorkerExtDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreWorkerRoleServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreWorkerRoleServiceImpl.java new file mode 100644 index 0000000..8ae33e0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreWorkerRoleServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreWorkerRoleDao; +import com.jwsaas.entity.food.StoreWorkerRole; +import com.jwsaas.service.food.StoreWorkerRoleService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreWorkerRoleServiceImpl") +public class StoreWorkerRoleServiceImpl extends BaseServiceImpl implements StoreWorkerRoleService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreWorkerRoleDaoImpl") + private StoreWorkerRoleDao storeWorkerRoleDao; + + @Override + public BaseDao getBaseDao() { + return this.storeWorkerRoleDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreWorkerServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreWorkerServiceImpl.java new file mode 100644 index 0000000..e8da085 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoreWorkerServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoreWorkerDao; +import com.jwsaas.entity.food.StoreWorker; +import com.jwsaas.service.food.StoreWorkerService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoreWorkerServiceImpl") +public class StoreWorkerServiceImpl extends BaseServiceImpl implements StoreWorkerService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoreWorkerDaoImpl") + private StoreWorkerDao storeWorkerDao; + + @Override + public BaseDao getBaseDao() { + return this.storeWorkerDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoretableAreaServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoretableAreaServiceImpl.java new file mode 100644 index 0000000..90aa298 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoretableAreaServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoretableAreaDao; +import com.jwsaas.entity.food.StoretableArea; +import com.jwsaas.service.food.StoretableAreaService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoretableAreaServiceImpl") +public class StoretableAreaServiceImpl extends BaseServiceImpl implements StoretableAreaService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoretableAreaDaoImpl") + private StoretableAreaDao storetableAreaDao; + + @Override + public BaseDao getBaseDao() { + return this.storetableAreaDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoretableServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoretableServiceImpl.java new file mode 100644 index 0000000..8b6d981 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoretableServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoretableDao; +import com.jwsaas.entity.food.Storetable; +import com.jwsaas.service.food.StoretableService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoretableServiceImpl") +public class StoretableServiceImpl extends BaseServiceImpl implements StoretableService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoretableDaoImpl") + private StoretableDao storetableDao; + + @Override + public BaseDao getBaseDao() { + return this.storetableDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoretableTypeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoretableTypeServiceImpl.java new file mode 100644 index 0000000..035299f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/StoretableTypeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.StoretableTypeDao; +import com.jwsaas.entity.food.StoretableType; +import com.jwsaas.service.food.StoretableTypeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"StoretableTypeServiceImpl") +public class StoretableTypeServiceImpl extends BaseServiceImpl implements StoretableTypeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"StoretableTypeDaoImpl") + private StoretableTypeDao storetableTypeDao; + + @Override + public BaseDao getBaseDao() { + return this.storetableTypeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SupplierServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SupplierServiceImpl.java new file mode 100644 index 0000000..c92c248 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SupplierServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.SupplierDao; +import com.jwsaas.entity.food.Supplier; +import com.jwsaas.service.food.SupplierService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"SupplierServiceImpl") +public class SupplierServiceImpl extends BaseServiceImpl implements SupplierService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"SupplierDaoImpl") + private SupplierDao supplierDao; + + @Override + public BaseDao getBaseDao() { + return this.supplierDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SupplierTypeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SupplierTypeServiceImpl.java new file mode 100644 index 0000000..da20b80 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/SupplierTypeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.SupplierTypeDao; +import com.jwsaas.entity.food.SupplierType; +import com.jwsaas.service.food.SupplierTypeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"SupplierTypeServiceImpl") +public class SupplierTypeServiceImpl extends BaseServiceImpl implements SupplierTypeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"SupplierTypeDaoImpl") + private SupplierTypeDao supplierTypeDao; + + @Override + public BaseDao getBaseDao() { + return this.supplierTypeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/TaskScheduleServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/TaskScheduleServiceImpl.java new file mode 100644 index 0000000..1760a05 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/TaskScheduleServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.TaskScheduleDao; +import com.jwsaas.entity.food.TaskSchedule; +import com.jwsaas.service.food.TaskScheduleService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"TaskScheduleServiceImpl") +public class TaskScheduleServiceImpl extends BaseServiceImpl implements TaskScheduleService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"TaskScheduleDaoImpl") + private TaskScheduleDao taskScheduleDao; + + @Override + public BaseDao getBaseDao() { + return this.taskScheduleDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ThuselevelTicketMaterialServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ThuselevelTicketMaterialServiceImpl.java new file mode 100644 index 0000000..0d4c4aa --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ThuselevelTicketMaterialServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ThuselevelTicketMaterialDao; +import com.jwsaas.entity.food.ThuselevelTicketMaterial; +import com.jwsaas.service.food.ThuselevelTicketMaterialService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ThuselevelTicketMaterialServiceImpl") +public class ThuselevelTicketMaterialServiceImpl extends BaseServiceImpl implements ThuselevelTicketMaterialService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ThuselevelTicketMaterialDaoImpl") + private ThuselevelTicketMaterialDao thuselevelTicketMaterialDao; + + @Override + public BaseDao getBaseDao() { + return this.thuselevelTicketMaterialDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ThuselevelTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ThuselevelTicketServiceImpl.java new file mode 100644 index 0000000..8304c9a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ThuselevelTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ThuselevelTicketDao; +import com.jwsaas.entity.food.ThuselevelTicket; +import com.jwsaas.service.food.ThuselevelTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ThuselevelTicketServiceImpl") +public class ThuselevelTicketServiceImpl extends BaseServiceImpl implements ThuselevelTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ThuselevelTicketDaoImpl") + private ThuselevelTicketDao thuselevelTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.thuselevelTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ThuselevelTicketStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ThuselevelTicketStoreServiceImpl.java new file mode 100644 index 0000000..b5f8fbc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/ThuselevelTicketStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.ThuselevelTicketStoreDao; +import com.jwsaas.entity.food.ThuselevelTicketStore; +import com.jwsaas.service.food.ThuselevelTicketStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"ThuselevelTicketStoreServiceImpl") +public class ThuselevelTicketStoreServiceImpl extends BaseServiceImpl implements ThuselevelTicketStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"ThuselevelTicketStoreDaoImpl") + private ThuselevelTicketStoreDao thuselevelTicketStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.thuselevelTicketStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/TicketPrintSettingServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/TicketPrintSettingServiceImpl.java new file mode 100644 index 0000000..d48f71d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/TicketPrintSettingServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.TicketPrintSettingDao; +import com.jwsaas.entity.food.TicketPrintSetting; +import com.jwsaas.service.food.TicketPrintSettingService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"TicketPrintSettingServiceImpl") +public class TicketPrintSettingServiceImpl extends BaseServiceImpl implements TicketPrintSettingService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"TicketPrintSettingDaoImpl") + private TicketPrintSettingDao ticketPrintSettingDao; + + @Override + public BaseDao getBaseDao() { + return this.ticketPrintSettingDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/TidianOrderDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/TidianOrderDetailServiceImpl.java new file mode 100644 index 0000000..cbd769e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/TidianOrderDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.TidianOrderDetailDao; +import com.jwsaas.entity.food.TidianOrderDetail; +import com.jwsaas.service.food.TidianOrderDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"TidianOrderDetailServiceImpl") +public class TidianOrderDetailServiceImpl extends BaseServiceImpl implements TidianOrderDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"TidianOrderDetailDaoImpl") + private TidianOrderDetailDao tidianOrderDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.tidianOrderDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/TidianOrderPayServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/TidianOrderPayServiceImpl.java new file mode 100644 index 0000000..eb0e069 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/TidianOrderPayServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.TidianOrderPayDao; +import com.jwsaas.entity.food.TidianOrderPay; +import com.jwsaas.service.food.TidianOrderPayService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"TidianOrderPayServiceImpl") +public class TidianOrderPayServiceImpl extends BaseServiceImpl implements TidianOrderPayService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"TidianOrderPayDaoImpl") + private TidianOrderPayDao tidianOrderPayDao; + + @Override + public BaseDao getBaseDao() { + return this.tidianOrderPayDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/TidianOrderServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/TidianOrderServiceImpl.java new file mode 100644 index 0000000..e54a9d6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/TidianOrderServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.TidianOrderDao; +import com.jwsaas.entity.food.TidianOrder; +import com.jwsaas.service.food.TidianOrderService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"TidianOrderServiceImpl") +public class TidianOrderServiceImpl extends BaseServiceImpl implements TidianOrderService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"TidianOrderDaoImpl") + private TidianOrderDao tidianOrderDao; + + @Override + public BaseDao getBaseDao() { + return this.tidianOrderDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/TidianStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/TidianStoreServiceImpl.java new file mode 100644 index 0000000..438d410 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/TidianStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.TidianStoreDao; +import com.jwsaas.entity.food.TidianStore; +import com.jwsaas.service.food.TidianStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"TidianStoreServiceImpl") +public class TidianStoreServiceImpl extends BaseServiceImpl implements TidianStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"TidianStoreDaoImpl") + private TidianStoreDao tidianStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.tidianStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VisitorAddressServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VisitorAddressServiceImpl.java new file mode 100644 index 0000000..0b81a10 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VisitorAddressServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.VisitorAddressDao; +import com.jwsaas.entity.food.VisitorAddress; +import com.jwsaas.service.food.VisitorAddressService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"VisitorAddressServiceImpl") +public class VisitorAddressServiceImpl extends BaseServiceImpl implements VisitorAddressService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"VisitorAddressDaoImpl") + private VisitorAddressDao visitorAddressDao; + + @Override + public BaseDao getBaseDao() { + return this.visitorAddressDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VisitorServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VisitorServiceImpl.java new file mode 100644 index 0000000..bcda99d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VisitorServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.VisitorDao; +import com.jwsaas.entity.food.Visitor; +import com.jwsaas.service.food.VisitorService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"VisitorServiceImpl") +public class VisitorServiceImpl extends BaseServiceImpl implements VisitorService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"VisitorDaoImpl") + private VisitorDao visitorDao; + + @Override + public BaseDao getBaseDao() { + return this.visitorDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VisitorTagServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VisitorTagServiceImpl.java new file mode 100644 index 0000000..a2bb019 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VisitorTagServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.VisitorTagDao; +import com.jwsaas.entity.food.VisitorTag; +import com.jwsaas.service.food.VisitorTagService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"VisitorTagServiceImpl") +public class VisitorTagServiceImpl extends BaseServiceImpl implements VisitorTagService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"VisitorTagDaoImpl") + private VisitorTagDao visitorTagDao; + + @Override + public BaseDao getBaseDao() { + return this.visitorTagDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposAdPictureServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposAdPictureServiceImpl.java new file mode 100644 index 0000000..094d4d2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposAdPictureServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.VposAdPictureDao; +import com.jwsaas.entity.food.VposAdPicture; +import com.jwsaas.service.food.VposAdPictureService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"VposAdPictureServiceImpl") +public class VposAdPictureServiceImpl extends BaseServiceImpl implements VposAdPictureService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"VposAdPictureDaoImpl") + private VposAdPictureDao vposAdPictureDao; + + @Override + public BaseDao getBaseDao() { + return this.vposAdPictureDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposCcbfzAccountServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposCcbfzAccountServiceImpl.java new file mode 100644 index 0000000..ca3b5b1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposCcbfzAccountServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.VposCcbfzAccountDao; +import com.jwsaas.entity.food.VposCcbfzAccount; +import com.jwsaas.service.food.VposCcbfzAccountService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"VposCcbfzAccountServiceImpl") +public class VposCcbfzAccountServiceImpl extends BaseServiceImpl implements VposCcbfzAccountService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"VposCcbfzAccountDaoImpl") + private VposCcbfzAccountDao vposCcbfzAccountDao; + + @Override + public BaseDao getBaseDao() { + return this.vposCcbfzAccountDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposProductEvaluateImageServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposProductEvaluateImageServiceImpl.java new file mode 100644 index 0000000..7ca9c3e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposProductEvaluateImageServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.VposProductEvaluateImageDao; +import com.jwsaas.entity.food.VposProductEvaluateImage; +import com.jwsaas.service.food.VposProductEvaluateImageService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"VposProductEvaluateImageServiceImpl") +public class VposProductEvaluateImageServiceImpl extends BaseServiceImpl implements VposProductEvaluateImageService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"VposProductEvaluateImageDaoImpl") + private VposProductEvaluateImageDao vposProductEvaluateImageDao; + + @Override + public BaseDao getBaseDao() { + return this.vposProductEvaluateImageDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposProductEvaluateServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposProductEvaluateServiceImpl.java new file mode 100644 index 0000000..a5932d2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposProductEvaluateServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.VposProductEvaluateDao; +import com.jwsaas.entity.food.VposProductEvaluate; +import com.jwsaas.service.food.VposProductEvaluateService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"VposProductEvaluateServiceImpl") +public class VposProductEvaluateServiceImpl extends BaseServiceImpl implements VposProductEvaluateService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"VposProductEvaluateDaoImpl") + private VposProductEvaluateDao vposProductEvaluateDao; + + @Override + public BaseDao getBaseDao() { + return this.vposProductEvaluateDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposStoreBusinessTicketInfoServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposStoreBusinessTicketInfoServiceImpl.java new file mode 100644 index 0000000..ea3905b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposStoreBusinessTicketInfoServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.VposStoreBusinessTicketInfoDao; +import com.jwsaas.entity.food.VposStoreBusinessTicketInfo; +import com.jwsaas.service.food.VposStoreBusinessTicketInfoService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"VposStoreBusinessTicketInfoServiceImpl") +public class VposStoreBusinessTicketInfoServiceImpl extends BaseServiceImpl implements VposStoreBusinessTicketInfoService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"VposStoreBusinessTicketInfoDaoImpl") + private VposStoreBusinessTicketInfoDao vposStoreBusinessTicketInfoDao; + + @Override + public BaseDao getBaseDao() { + return this.vposStoreBusinessTicketInfoDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposStoreBusinessTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposStoreBusinessTicketServiceImpl.java new file mode 100644 index 0000000..35b07a4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposStoreBusinessTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.VposStoreBusinessTicketDao; +import com.jwsaas.entity.food.VposStoreBusinessTicket; +import com.jwsaas.service.food.VposStoreBusinessTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"VposStoreBusinessTicketServiceImpl") +public class VposStoreBusinessTicketServiceImpl extends BaseServiceImpl implements VposStoreBusinessTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"VposStoreBusinessTicketDaoImpl") + private VposStoreBusinessTicketDao vposStoreBusinessTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.vposStoreBusinessTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposStoreOrderProductInfoServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposStoreOrderProductInfoServiceImpl.java new file mode 100644 index 0000000..224e382 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposStoreOrderProductInfoServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.VposStoreOrderProductInfoDao; +import com.jwsaas.entity.food.VposStoreOrderProductInfo; +import com.jwsaas.service.food.VposStoreOrderProductInfoService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"VposStoreOrderProductInfoServiceImpl") +public class VposStoreOrderProductInfoServiceImpl extends BaseServiceImpl implements VposStoreOrderProductInfoService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"VposStoreOrderProductInfoDaoImpl") + private VposStoreOrderProductInfoDao vposStoreOrderProductInfoDao; + + @Override + public BaseDao getBaseDao() { + return this.vposStoreOrderProductInfoDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposStoreOrderProductMakeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposStoreOrderProductMakeServiceImpl.java new file mode 100644 index 0000000..7fbd619 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposStoreOrderProductMakeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.VposStoreOrderProductMakeDao; +import com.jwsaas.entity.food.VposStoreOrderProductMake; +import com.jwsaas.service.food.VposStoreOrderProductMakeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"VposStoreOrderProductMakeServiceImpl") +public class VposStoreOrderProductMakeServiceImpl extends BaseServiceImpl implements VposStoreOrderProductMakeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"VposStoreOrderProductMakeDaoImpl") + private VposStoreOrderProductMakeDao vposStoreOrderProductMakeDao; + + @Override + public BaseDao getBaseDao() { + return this.vposStoreOrderProductMakeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposStoreOrderProductServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposStoreOrderProductServiceImpl.java new file mode 100644 index 0000000..579a22a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposStoreOrderProductServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.VposStoreOrderProductDao; +import com.jwsaas.entity.food.VposStoreOrderProduct; +import com.jwsaas.service.food.VposStoreOrderProductService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"VposStoreOrderProductServiceImpl") +public class VposStoreOrderProductServiceImpl extends BaseServiceImpl implements VposStoreOrderProductService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"VposStoreOrderProductDaoImpl") + private VposStoreOrderProductDao vposStoreOrderProductDao; + + @Override + public BaseDao getBaseDao() { + return this.vposStoreOrderProductDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposStorePayServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposStorePayServiceImpl.java new file mode 100644 index 0000000..f876b9a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposStorePayServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.VposStorePayDao; +import com.jwsaas.entity.food.VposStorePay; +import com.jwsaas.service.food.VposStorePayService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"VposStorePayServiceImpl") +public class VposStorePayServiceImpl extends BaseServiceImpl implements VposStorePayService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"VposStorePayDaoImpl") + private VposStorePayDao vposStorePayDao; + + @Override + public BaseDao getBaseDao() { + return this.vposStorePayDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposUserSeriesServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposUserSeriesServiceImpl.java new file mode 100644 index 0000000..ad78b49 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposUserSeriesServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.VposUserSeriesDao; +import com.jwsaas.entity.food.VposUserSeries; +import com.jwsaas.service.food.VposUserSeriesService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"VposUserSeriesServiceImpl") +public class VposUserSeriesServiceImpl extends BaseServiceImpl implements VposUserSeriesService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"VposUserSeriesDaoImpl") + private VposUserSeriesDao vposUserSeriesDao; + + @Override + public BaseDao getBaseDao() { + return this.vposUserSeriesDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposUserServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposUserServiceImpl.java new file mode 100644 index 0000000..5c24cda --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/VposUserServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.VposUserDao; +import com.jwsaas.entity.food.VposUser; +import com.jwsaas.service.food.VposUserService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"VposUserServiceImpl") +public class VposUserServiceImpl extends BaseServiceImpl implements VposUserService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"VposUserDaoImpl") + private VposUserDao vposUserDao; + + @Override + public BaseDao getBaseDao() { + return this.vposUserDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WorkerStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WorkerStoreServiceImpl.java new file mode 100644 index 0000000..344b263 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WorkerStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WorkerStoreDao; +import com.jwsaas.entity.food.WorkerStore; +import com.jwsaas.service.food.WorkerStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WorkerStoreServiceImpl") +public class WorkerStoreServiceImpl extends BaseServiceImpl implements WorkerStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WorkerStoreDaoImpl") + private WorkerStoreDao workerStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.workerStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxAdPictureServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxAdPictureServiceImpl.java new file mode 100644 index 0000000..b4ca215 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxAdPictureServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxAdPictureDao; +import com.jwsaas.entity.food.WxAdPicture; +import com.jwsaas.service.food.WxAdPictureService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxAdPictureServiceImpl") +public class WxAdPictureServiceImpl extends BaseServiceImpl implements WxAdPictureService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxAdPictureDaoImpl") + private WxAdPictureDao wxAdPictureDao; + + @Override + public BaseDao getBaseDao() { + return this.wxAdPictureDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxAdjustPriceGoodsServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxAdjustPriceGoodsServiceImpl.java new file mode 100644 index 0000000..3342938 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxAdjustPriceGoodsServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxAdjustPriceGoodsDao; +import com.jwsaas.entity.food.WxAdjustPriceGoods; +import com.jwsaas.service.food.WxAdjustPriceGoodsService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxAdjustPriceGoodsServiceImpl") +public class WxAdjustPriceGoodsServiceImpl extends BaseServiceImpl implements WxAdjustPriceGoodsService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxAdjustPriceGoodsDaoImpl") + private WxAdjustPriceGoodsDao wxAdjustPriceGoodsDao; + + @Override + public BaseDao getBaseDao() { + return this.wxAdjustPriceGoodsDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxAdjustPriceStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxAdjustPriceStoreServiceImpl.java new file mode 100644 index 0000000..b51fde1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxAdjustPriceStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxAdjustPriceStoreDao; +import com.jwsaas.entity.food.WxAdjustPriceStore; +import com.jwsaas.service.food.WxAdjustPriceStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxAdjustPriceStoreServiceImpl") +public class WxAdjustPriceStoreServiceImpl extends BaseServiceImpl implements WxAdjustPriceStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxAdjustPriceStoreDaoImpl") + private WxAdjustPriceStoreDao wxAdjustPriceStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.wxAdjustPriceStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxAdjustPriceTicketServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxAdjustPriceTicketServiceImpl.java new file mode 100644 index 0000000..52f4455 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxAdjustPriceTicketServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxAdjustPriceTicketDao; +import com.jwsaas.entity.food.WxAdjustPriceTicket; +import com.jwsaas.service.food.WxAdjustPriceTicketService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxAdjustPriceTicketServiceImpl") +public class WxAdjustPriceTicketServiceImpl extends BaseServiceImpl implements WxAdjustPriceTicketService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxAdjustPriceTicketDaoImpl") + private WxAdjustPriceTicketDao wxAdjustPriceTicketDao; + + @Override + public BaseDao getBaseDao() { + return this.wxAdjustPriceTicketDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxGoodsCategoryServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxGoodsCategoryServiceImpl.java new file mode 100644 index 0000000..cbdd27d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxGoodsCategoryServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxGoodsCategoryDao; +import com.jwsaas.entity.food.WxGoodsCategory; +import com.jwsaas.service.food.WxGoodsCategoryService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxGoodsCategoryServiceImpl") +public class WxGoodsCategoryServiceImpl extends BaseServiceImpl implements WxGoodsCategoryService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxGoodsCategoryDaoImpl") + private WxGoodsCategoryDao wxGoodsCategoryDao; + + @Override + public BaseDao getBaseDao() { + return this.wxGoodsCategoryDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxGoodsMakeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxGoodsMakeServiceImpl.java new file mode 100644 index 0000000..ddd9a13 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxGoodsMakeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxGoodsMakeDao; +import com.jwsaas.entity.food.WxGoodsMake; +import com.jwsaas.service.food.WxGoodsMakeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxGoodsMakeServiceImpl") +public class WxGoodsMakeServiceImpl extends BaseServiceImpl implements WxGoodsMakeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxGoodsMakeDaoImpl") + private WxGoodsMakeDao wxGoodsMakeDao; + + @Override + public BaseDao getBaseDao() { + return this.wxGoodsMakeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxGoodsServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxGoodsServiceImpl.java new file mode 100644 index 0000000..12562a3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxGoodsServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxGoodsDao; +import com.jwsaas.entity.food.WxGoods; +import com.jwsaas.service.food.WxGoodsService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxGoodsServiceImpl") +public class WxGoodsServiceImpl extends BaseServiceImpl implements WxGoodsService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxGoodsDaoImpl") + private WxGoodsDao wxGoodsDao; + + @Override + public BaseDao getBaseDao() { + return this.wxGoodsDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxGoodsTemplateDetailServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxGoodsTemplateDetailServiceImpl.java new file mode 100644 index 0000000..ec328c7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxGoodsTemplateDetailServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxGoodsTemplateDetailDao; +import com.jwsaas.entity.food.WxGoodsTemplateDetail; +import com.jwsaas.service.food.WxGoodsTemplateDetailService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxGoodsTemplateDetailServiceImpl") +public class WxGoodsTemplateDetailServiceImpl extends BaseServiceImpl implements WxGoodsTemplateDetailService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxGoodsTemplateDetailDaoImpl") + private WxGoodsTemplateDetailDao wxGoodsTemplateDetailDao; + + @Override + public BaseDao getBaseDao() { + return this.wxGoodsTemplateDetailDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxGoodsTemplateServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxGoodsTemplateServiceImpl.java new file mode 100644 index 0000000..04c4522 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxGoodsTemplateServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxGoodsTemplateDao; +import com.jwsaas.entity.food.WxGoodsTemplate; +import com.jwsaas.service.food.WxGoodsTemplateService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxGoodsTemplateServiceImpl") +public class WxGoodsTemplateServiceImpl extends BaseServiceImpl implements WxGoodsTemplateService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxGoodsTemplateDaoImpl") + private WxGoodsTemplateDao wxGoodsTemplateDao; + + @Override + public BaseDao getBaseDao() { + return this.wxGoodsTemplateDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxGoodsTemplateStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxGoodsTemplateStoreServiceImpl.java new file mode 100644 index 0000000..f897c21 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxGoodsTemplateStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxGoodsTemplateStoreDao; +import com.jwsaas.entity.food.WxGoodsTemplateStore; +import com.jwsaas.service.food.WxGoodsTemplateStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxGoodsTemplateStoreServiceImpl") +public class WxGoodsTemplateStoreServiceImpl extends BaseServiceImpl implements WxGoodsTemplateStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxGoodsTemplateStoreDaoImpl") + private WxGoodsTemplateStoreDao wxGoodsTemplateStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.wxGoodsTemplateStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxPaymentParameterServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxPaymentParameterServiceImpl.java new file mode 100644 index 0000000..e90fc76 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxPaymentParameterServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxPaymentParameterDao; +import com.jwsaas.entity.food.WxPaymentParameter; +import com.jwsaas.service.food.WxPaymentParameterService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxPaymentParameterServiceImpl") +public class WxPaymentParameterServiceImpl extends BaseServiceImpl implements WxPaymentParameterService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxPaymentParameterDaoImpl") + private WxPaymentParameterDao wxPaymentParameterDao; + + @Override + public BaseDao getBaseDao() { + return this.wxPaymentParameterDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxPaymentParameterStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxPaymentParameterStoreServiceImpl.java new file mode 100644 index 0000000..99b18d4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxPaymentParameterStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxPaymentParameterStoreDao; +import com.jwsaas.entity.food.WxPaymentParameterStore; +import com.jwsaas.service.food.WxPaymentParameterStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxPaymentParameterStoreServiceImpl") +public class WxPaymentParameterStoreServiceImpl extends BaseServiceImpl implements WxPaymentParameterStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxPaymentParameterStoreDaoImpl") + private WxPaymentParameterStoreDao wxPaymentParameterStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.wxPaymentParameterStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxQrcodeSettingServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxQrcodeSettingServiceImpl.java new file mode 100644 index 0000000..b09e81c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxQrcodeSettingServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxQrcodeSettingDao; +import com.jwsaas.entity.food.WxQrcodeSetting; +import com.jwsaas.service.food.WxQrcodeSettingService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxQrcodeSettingServiceImpl") +public class WxQrcodeSettingServiceImpl extends BaseServiceImpl implements WxQrcodeSettingService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxQrcodeSettingDaoImpl") + private WxQrcodeSettingDao wxQrcodeSettingDao; + + @Override + public BaseDao getBaseDao() { + return this.wxQrcodeSettingDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxSalesDiscountInfoServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxSalesDiscountInfoServiceImpl.java new file mode 100644 index 0000000..d7f541b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxSalesDiscountInfoServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxSalesDiscountInfoDao; +import com.jwsaas.entity.food.WxSalesDiscountInfo; +import com.jwsaas.service.food.WxSalesDiscountInfoService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxSalesDiscountInfoServiceImpl") +public class WxSalesDiscountInfoServiceImpl extends BaseServiceImpl implements WxSalesDiscountInfoService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxSalesDiscountInfoDaoImpl") + private WxSalesDiscountInfoDao wxSalesDiscountInfoDao; + + @Override + public BaseDao getBaseDao() { + return this.wxSalesDiscountInfoDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxSalesOrderItemMakeServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxSalesOrderItemMakeServiceImpl.java new file mode 100644 index 0000000..5ee6a16 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxSalesOrderItemMakeServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxSalesOrderItemMakeDao; +import com.jwsaas.entity.food.WxSalesOrderItemMake; +import com.jwsaas.service.food.WxSalesOrderItemMakeService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxSalesOrderItemMakeServiceImpl") +public class WxSalesOrderItemMakeServiceImpl extends BaseServiceImpl implements WxSalesOrderItemMakeService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxSalesOrderItemMakeDaoImpl") + private WxSalesOrderItemMakeDao wxSalesOrderItemMakeDao; + + @Override + public BaseDao getBaseDao() { + return this.wxSalesOrderItemMakeDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxSalesOrderItemPromoServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxSalesOrderItemPromoServiceImpl.java new file mode 100644 index 0000000..2d794d6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxSalesOrderItemPromoServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxSalesOrderItemPromoDao; +import com.jwsaas.entity.food.WxSalesOrderItemPromo; +import com.jwsaas.service.food.WxSalesOrderItemPromoService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxSalesOrderItemPromoServiceImpl") +public class WxSalesOrderItemPromoServiceImpl extends BaseServiceImpl implements WxSalesOrderItemPromoService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxSalesOrderItemPromoDaoImpl") + private WxSalesOrderItemPromoDao wxSalesOrderItemPromoDao; + + @Override + public BaseDao getBaseDao() { + return this.wxSalesOrderItemPromoDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxSalesOrderItemServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxSalesOrderItemServiceImpl.java new file mode 100644 index 0000000..c100469 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxSalesOrderItemServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxSalesOrderItemDao; +import com.jwsaas.entity.food.WxSalesOrderItem; +import com.jwsaas.service.food.WxSalesOrderItemService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxSalesOrderItemServiceImpl") +public class WxSalesOrderItemServiceImpl extends BaseServiceImpl implements WxSalesOrderItemService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxSalesOrderItemDaoImpl") + private WxSalesOrderItemDao wxSalesOrderItemDao; + + @Override + public BaseDao getBaseDao() { + return this.wxSalesOrderItemDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxSalesOrderLogServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxSalesOrderLogServiceImpl.java new file mode 100644 index 0000000..8bd8b50 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxSalesOrderLogServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxSalesOrderLogDao; +import com.jwsaas.entity.food.WxSalesOrderLog; +import com.jwsaas.service.food.WxSalesOrderLogService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxSalesOrderLogServiceImpl") +public class WxSalesOrderLogServiceImpl extends BaseServiceImpl implements WxSalesOrderLogService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxSalesOrderLogDaoImpl") + private WxSalesOrderLogDao wxSalesOrderLogDao; + + @Override + public BaseDao getBaseDao() { + return this.wxSalesOrderLogDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxSalesOrderServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxSalesOrderServiceImpl.java new file mode 100644 index 0000000..d6ca807 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxSalesOrderServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxSalesOrderDao; +import com.jwsaas.entity.food.WxSalesOrder; +import com.jwsaas.service.food.WxSalesOrderService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxSalesOrderServiceImpl") +public class WxSalesOrderServiceImpl extends BaseServiceImpl implements WxSalesOrderService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxSalesOrderDaoImpl") + private WxSalesOrderDao wxSalesOrderDao; + + @Override + public BaseDao getBaseDao() { + return this.wxSalesOrderDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxSalesPaymentServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxSalesPaymentServiceImpl.java new file mode 100644 index 0000000..05e3cc8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxSalesPaymentServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxSalesPaymentDao; +import com.jwsaas.entity.food.WxSalesPayment; +import com.jwsaas.service.food.WxSalesPaymentService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxSalesPaymentServiceImpl") +public class WxSalesPaymentServiceImpl extends BaseServiceImpl implements WxSalesPaymentService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxSalesPaymentDaoImpl") + private WxSalesPaymentDao wxSalesPaymentDao; + + @Override + public BaseDao getBaseDao() { + return this.wxSalesPaymentDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxStoreGoodsServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxStoreGoodsServiceImpl.java new file mode 100644 index 0000000..b146303 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxStoreGoodsServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxStoreGoodsDao; +import com.jwsaas.entity.food.WxStoreGoods; +import com.jwsaas.service.food.WxStoreGoodsService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxStoreGoodsServiceImpl") +public class WxStoreGoodsServiceImpl extends BaseServiceImpl implements WxStoreGoodsService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxStoreGoodsDaoImpl") + private WxStoreGoodsDao wxStoreGoodsDao; + + @Override + public BaseDao getBaseDao() { + return this.wxStoreGoodsDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxStoreServiceImpl.java new file mode 100644 index 0000000..eb8d163 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxStoreDao; +import com.jwsaas.entity.food.WxStore; +import com.jwsaas.service.food.WxStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxStoreServiceImpl") +public class WxStoreServiceImpl extends BaseServiceImpl implements WxStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxStoreDaoImpl") + private WxStoreDao wxStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.wxStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxdcDistributionAddressServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxdcDistributionAddressServiceImpl.java new file mode 100644 index 0000000..894c3b8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxdcDistributionAddressServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxdcDistributionAddressDao; +import com.jwsaas.entity.food.WxdcDistributionAddress; +import com.jwsaas.service.food.WxdcDistributionAddressService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxdcDistributionAddressServiceImpl") +public class WxdcDistributionAddressServiceImpl extends BaseServiceImpl implements WxdcDistributionAddressService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxdcDistributionAddressDaoImpl") + private WxdcDistributionAddressDao wxdcDistributionAddressDao; + + @Override + public BaseDao getBaseDao() { + return this.wxdcDistributionAddressDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxdcRechargeOrderServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxdcRechargeOrderServiceImpl.java new file mode 100644 index 0000000..e507480 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/WxdcRechargeOrderServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.WxdcRechargeOrderDao; +import com.jwsaas.entity.food.WxdcRechargeOrder; +import com.jwsaas.service.food.WxdcRechargeOrderService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"WxdcRechargeOrderServiceImpl") +public class WxdcRechargeOrderServiceImpl extends BaseServiceImpl implements WxdcRechargeOrderService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"WxdcRechargeOrderDaoImpl") + private WxdcRechargeOrderDao wxdcRechargeOrderDao; + + @Override + public BaseDao getBaseDao() { + return this.wxdcRechargeOrderDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/YunposSetServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/YunposSetServiceImpl.java new file mode 100644 index 0000000..1c07fa2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/YunposSetServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.YunposSetDao; +import com.jwsaas.entity.food.YunposSet; +import com.jwsaas.service.food.YunposSetService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"YunposSetServiceImpl") +public class YunposSetServiceImpl extends BaseServiceImpl implements YunposSetService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"YunposSetDaoImpl") + private YunposSetDao yunposSetDao; + + @Override + public BaseDao getBaseDao() { + return this.yunposSetDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/YunposSetStoreServiceImpl.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/YunposSetStoreServiceImpl.java new file mode 100644 index 0000000..a0adae4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food.impl/YunposSetStoreServiceImpl.java @@ -0,0 +1,26 @@ +package com.jwsaas.service.food.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.jwsaas.dao.BaseDao; +import com.jwsaas.dao.food.YunposSetStoreDao; +import com.jwsaas.entity.food.YunposSetStore; +import com.jwsaas.service.food.YunposSetStoreService; +import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(com.jwsaas.Constants.FOOD_SIGN+"YunposSetStoreServiceImpl") +public class YunposSetStoreServiceImpl extends BaseServiceImpl implements YunposSetStoreService{ + + @Resource(name=com.jwsaas.Constants.FOOD_SIGN+"YunposSetStoreDaoImpl") + private YunposSetStoreDao yunposSetStoreDao; + + @Override + public BaseDao getBaseDao() { + return this.yunposSetStoreDao; + } + +} + diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AdjustPriceProductService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AdjustPriceProductService.java new file mode 100644 index 0000000..5fd371d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AdjustPriceProductService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.AdjustPriceProduct; +import com.jwsaas.service.BaseService; + +/** + * 调价商品数据接口 + */ +public interface AdjustPriceProductService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AdjustPriceStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AdjustPriceStoreService.java new file mode 100644 index 0000000..5397a77 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AdjustPriceStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.AdjustPriceStore; +import com.jwsaas.service.BaseService; + +/** + * 调价单门店明细数据接口 + */ +public interface AdjustPriceStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AdjustPriceTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AdjustPriceTicketService.java new file mode 100644 index 0000000..4f7e2e3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AdjustPriceTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.AdjustPriceTicket; +import com.jwsaas.service.BaseService; + +/** + * 门店商品调价单数据接口 + */ +public interface AdjustPriceTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AdvertCaptionService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AdvertCaptionService.java new file mode 100644 index 0000000..2ec7052 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AdvertCaptionService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.AdvertCaption; +import com.jwsaas.service.BaseService; + +/** + * 双屏广告字幕数据接口 + */ +public interface AdvertCaptionService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AdvertCaptionStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AdvertCaptionStoreService.java new file mode 100644 index 0000000..10fe640 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AdvertCaptionStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.AdvertCaptionStore; +import com.jwsaas.service.BaseService; + +/** + * 双屏广告字幕门店关联数据接口 + */ +public interface AdvertCaptionStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AdvertPictureService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AdvertPictureService.java new file mode 100644 index 0000000..3048a10 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AdvertPictureService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.AdvertPicture; +import com.jwsaas.service.BaseService; + +/** + * 双屏广告图片数据接口 + */ +public interface AdvertPictureService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AdvertPictureStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AdvertPictureStoreService.java new file mode 100644 index 0000000..9beb245 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AdvertPictureStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.AdvertPictureStore; +import com.jwsaas.service.BaseService; + +/** + * 双屏广告图片门店关联数据接口 + */ +public interface AdvertPictureStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AgentService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AgentService.java new file mode 100644 index 0000000..8699ae3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AgentService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.Agent; +import com.jwsaas.service.BaseService; + +/** + * 总部代理商信息数据接口 + */ +public interface AgentService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AgentStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AgentStoreService.java new file mode 100644 index 0000000..5f5eac0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AgentStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.AgentStore; +import com.jwsaas.service.BaseService; + +/** + * 总部代理商门店关联数据接口 + */ +public interface AgentStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsDetailService.java new file mode 100644 index 0000000..4c28786 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.AskGoodsDetail; +import com.jwsaas.service.BaseService; + +/** + * 要货单明细数据接口 + */ +public interface AskGoodsDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsSuitDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsSuitDetailService.java new file mode 100644 index 0000000..785395f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsSuitDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.AskGoodsSuitDetail; +import com.jwsaas.service.BaseService; + +/** + * 要货商品套餐明细数据接口 + */ +public interface AskGoodsSuitDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsSuitService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsSuitService.java new file mode 100644 index 0000000..c7de446 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsSuitService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.AskGoodsSuit; +import com.jwsaas.service.BaseService; + +/** + * 要货商品套餐数据接口 + */ +public interface AskGoodsSuitService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsTemplateDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsTemplateDetailService.java new file mode 100644 index 0000000..395624c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsTemplateDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.AskGoodsTemplateDetail; +import com.jwsaas.service.BaseService; + +/** + * 要货单模板明细数据接口 + */ +public interface AskGoodsTemplateDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsTemplateService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsTemplateService.java new file mode 100644 index 0000000..50aa665 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsTemplateService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.AskGoodsTemplate; +import com.jwsaas.service.BaseService; + +/** + * 要货单模板数据接口 + */ +public interface AskGoodsTemplateService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsTemplateStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsTemplateStoreService.java new file mode 100644 index 0000000..366cec2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsTemplateStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.AskGoodsTemplateStore; +import com.jwsaas.service.BaseService; + +/** + * 要货单模板门店关联数据接口 + */ +public interface AskGoodsTemplateStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsTicketLogService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsTicketLogService.java new file mode 100644 index 0000000..6324689 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsTicketLogService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.AskGoodsTicketLog; +import com.jwsaas.service.BaseService; + +/** + * 要货操作记录数据接口 + */ +public interface AskGoodsTicketLogService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsTicketPayService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsTicketPayService.java new file mode 100644 index 0000000..8af8200 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsTicketPayService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.AskGoodsTicketPay; +import com.jwsaas.service.BaseService; + +/** + * 要货单付款明细数据接口 + */ +public interface AskGoodsTicketPayService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsTicketService.java new file mode 100644 index 0000000..e75c45a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/AskGoodsTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.AskGoodsTicket; +import com.jwsaas.service.BaseService; + +/** + * 要货单数据接口 + */ +public interface AskGoodsTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/BaiduFoodService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/BaiduFoodService.java new file mode 100644 index 0000000..3998abf --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/BaiduFoodService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.BaiduFood; +import com.jwsaas.service.BaseService; + +/** + * 百度菜品信息数据接口 + */ +public interface BaiduFoodService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/BaiduOrderProductService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/BaiduOrderProductService.java new file mode 100644 index 0000000..2349b23 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/BaiduOrderProductService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.BaiduOrderProduct; +import com.jwsaas.service.BaseService; + +/** + * 百度外卖订单商品信息数据接口 + */ +public interface BaiduOrderProductService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/BaiduOrderService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/BaiduOrderService.java new file mode 100644 index 0000000..77f0746 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/BaiduOrderService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.BaiduOrder; +import com.jwsaas.service.BaseService; + +/** + * 百度外卖订单数据接口 + */ +public interface BaiduOrderService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/BrandService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/BrandService.java new file mode 100644 index 0000000..04eb889 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/BrandService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.Brand; +import com.jwsaas.service.BaseService; + +/** + * 品牌管理数据接口 + */ +public interface BrandService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/BusinessPlanDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/BusinessPlanDetailService.java new file mode 100644 index 0000000..b829cf6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/BusinessPlanDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.BusinessPlanDetail; +import com.jwsaas.service.BaseService; + +/** + * 营业日方案班次数据接口 + */ +public interface BusinessPlanDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/BusinessPlanService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/BusinessPlanService.java new file mode 100644 index 0000000..1be5ddf --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/BusinessPlanService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.BusinessPlan; +import com.jwsaas.service.BaseService; + +/** + * 营业日方案数据接口 + */ +public interface BusinessPlanService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/BusinessPlanStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/BusinessPlanStoreService.java new file mode 100644 index 0000000..5ca0f29 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/BusinessPlanStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.BusinessPlanStore; +import com.jwsaas.service.BaseService; + +/** + * 营业日方案门店关联数据接口 + */ +public interface BusinessPlanStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CandaoProductPropertyService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CandaoProductPropertyService.java new file mode 100644 index 0000000..3f100b6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CandaoProductPropertyService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CandaoProductProperty; +import com.jwsaas.service.BaseService; + +/** + * 餐道商品属性信息数据接口 + */ +public interface CandaoProductPropertyService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CandaoProductService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CandaoProductService.java new file mode 100644 index 0000000..cc60cff --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CandaoProductService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CandaoProduct; +import com.jwsaas.service.BaseService; + +/** + * 餐道商品信息数据接口 + */ +public interface CandaoProductService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CandaoProductSpecService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CandaoProductSpecService.java new file mode 100644 index 0000000..7b7b4e7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CandaoProductSpecService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CandaoProductSpec; +import com.jwsaas.service.BaseService; + +/** + * 餐道商品规格信息数据接口 + */ +public interface CandaoProductSpecService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CandaoProductSuitService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CandaoProductSuitService.java new file mode 100644 index 0000000..2f30714 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CandaoProductSuitService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CandaoProductSuit; +import com.jwsaas.service.BaseService; + +/** + * 餐道商品套餐信息数据接口 + */ +public interface CandaoProductSuitService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CandaoStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CandaoStoreService.java new file mode 100644 index 0000000..d5da0c1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CandaoStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CandaoStore; +import com.jwsaas.service.BaseService; + +/** + * 餐道门店信息数据接口 + */ +public interface CandaoStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CategoryService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CategoryService.java new file mode 100644 index 0000000..fe56ba7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CategoryService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.Category; +import com.jwsaas.service.BaseService; + +/** + * 数据字典数据接口 + */ +public interface CategoryService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CheckTemplateDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CheckTemplateDetailService.java new file mode 100644 index 0000000..843536b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CheckTemplateDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CheckTemplateDetail; +import com.jwsaas.service.BaseService; + +/** + * 总部库存盘点模板明细数据接口 + */ +public interface CheckTemplateDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CheckTemplateService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CheckTemplateService.java new file mode 100644 index 0000000..90c9dc7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CheckTemplateService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CheckTemplate; +import com.jwsaas.service.BaseService; + +/** + * 总部库存盘点模板数据接口 + */ +public interface CheckTemplateService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CheckTicketDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CheckTicketDetailService.java new file mode 100644 index 0000000..b8c4355 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CheckTicketDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CheckTicketDetail; +import com.jwsaas.service.BaseService; + +/** + * 总部库存盘点单明细数据接口 + */ +public interface CheckTicketDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CheckTicketLogService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CheckTicketLogService.java new file mode 100644 index 0000000..6bd755a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CheckTicketLogService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CheckTicketLog; +import com.jwsaas.service.BaseService; + +/** + * 总部盘点单操作记录数据接口 + */ +public interface CheckTicketLogService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CheckTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CheckTicketService.java new file mode 100644 index 0000000..b8d92ac --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CheckTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CheckTicket; +import com.jwsaas.service.BaseService; + +/** + * 总部库存盘点单数据接口 + */ +public interface CheckTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostFeeItemService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostFeeItemService.java new file mode 100644 index 0000000..b7043b8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostFeeItemService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CostFeeItem; +import com.jwsaas.service.BaseService; + +/** + * 成本费用项目数据接口 + */ +public interface CostFeeItemService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostFeeTypeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostFeeTypeService.java new file mode 100644 index 0000000..f299cbd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostFeeTypeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CostFeeType; +import com.jwsaas.service.BaseService; + +/** + * 成本费用项目分类数据接口 + */ +public interface CostFeeTypeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketPayTypeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketPayTypeService.java new file mode 100644 index 0000000..bf2ea21 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketPayTypeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CostTicketPayType; +import com.jwsaas.service.BaseService; + +/** + * 经营会计报表支付方式统计数据接口 + */ +public interface CostTicketPayTypeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketProductChangeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketProductChangeService.java new file mode 100644 index 0000000..605dd99 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketProductChangeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CostTicketProductChange; +import com.jwsaas.service.BaseService; + +/** + * 经营会计报表生产变动费数据接口 + */ +public interface CostTicketProductChangeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketProductFixedChangeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketProductFixedChangeService.java new file mode 100644 index 0000000..c348be7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketProductFixedChangeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CostTicketProductFixedChange; +import com.jwsaas.service.BaseService; + +/** + * 经营会计报表固定费数据接口 + */ +public interface CostTicketProductFixedChangeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketProductMoreChangeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketProductMoreChangeService.java new file mode 100644 index 0000000..18c3ee0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketProductMoreChangeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CostTicketProductMoreChange; +import com.jwsaas.service.BaseService; + +/** + * 经营会计报表辅助生产变动费数据接口 + */ +public interface CostTicketProductMoreChangeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketProductOtherChangeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketProductOtherChangeService.java new file mode 100644 index 0000000..22d747f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketProductOtherChangeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CostTicketProductOtherChange; +import com.jwsaas.service.BaseService; + +/** + * 经营会计报表其他变动费数据接口 + */ +public interface CostTicketProductOtherChangeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketProductTypeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketProductTypeService.java new file mode 100644 index 0000000..658094b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketProductTypeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CostTicketProductType; +import com.jwsaas.service.BaseService; + +/** + * 经营会计报表分类统计数据接口 + */ +public interface CostTicketProductTypeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketService.java new file mode 100644 index 0000000..e98de31 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CostTicket; +import com.jwsaas.service.BaseService; + +/** + * 经营会计报表主单数据接口 + */ +public interface CostTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketTemplateProductChangeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketTemplateProductChangeService.java new file mode 100644 index 0000000..483d621 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketTemplateProductChangeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CostTicketTemplateProductChange; +import com.jwsaas.service.BaseService; + +/** + * 经营会计报表生产变动费模板数据接口 + */ +public interface CostTicketTemplateProductChangeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketTemplateProductFixedChangeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketTemplateProductFixedChangeService.java new file mode 100644 index 0000000..1427dc9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketTemplateProductFixedChangeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CostTicketTemplateProductFixedChange; +import com.jwsaas.service.BaseService; + +/** + * 经营会计报表固定费模板数据接口 + */ +public interface CostTicketTemplateProductFixedChangeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketTemplateProductMoreChangeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketTemplateProductMoreChangeService.java new file mode 100644 index 0000000..4506ca4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketTemplateProductMoreChangeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CostTicketTemplateProductMoreChange; +import com.jwsaas.service.BaseService; + +/** + * 经营会计报表辅助生产变动费模板数据接口 + */ +public interface CostTicketTemplateProductMoreChangeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketTemplateProductOtherChangeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketTemplateProductOtherChangeService.java new file mode 100644 index 0000000..aed07b6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketTemplateProductOtherChangeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CostTicketTemplateProductOtherChange; +import com.jwsaas.service.BaseService; + +/** + * 经营会计报表其他变动费模板数据接口 + */ +public interface CostTicketTemplateProductOtherChangeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketTemplateService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketTemplateService.java new file mode 100644 index 0000000..301bfb9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketTemplateService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CostTicketTemplate; +import com.jwsaas.service.BaseService; + +/** + * 经营会计报表模板数据接口 + */ +public interface CostTicketTemplateService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketTemplateStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketTemplateStoreService.java new file mode 100644 index 0000000..146a795 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CostTicketTemplateStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CostTicketTemplateStore; +import com.jwsaas.service.BaseService; + +/** + * 经营会计报表模板门店关联数据接口 + */ +public interface CostTicketTemplateStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CouponCodeDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CouponCodeDetailService.java new file mode 100644 index 0000000..aac321c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CouponCodeDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CouponCodeDetail; +import com.jwsaas.service.BaseService; + +/** + * 优惠券券码信息数据接口 + */ +public interface CouponCodeDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CouponService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CouponService.java new file mode 100644 index 0000000..2e36393 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CouponService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.Coupon; +import com.jwsaas.service.BaseService; + +/** + * 优惠券信息数据接口 + */ +public interface CouponService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CouponStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CouponStoreService.java new file mode 100644 index 0000000..a971d0a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CouponStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CouponStore; +import com.jwsaas.service.BaseService; + +/** + * 优惠券门店关联表数据接口 + */ +public interface CouponStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CouponTicketProductService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CouponTicketProductService.java new file mode 100644 index 0000000..28d756e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CouponTicketProductService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CouponTicketProduct; +import com.jwsaas.service.BaseService; + +/** + * 商品优惠券菜品信息数据接口 + */ +public interface CouponTicketProductService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CouponTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CouponTicketService.java new file mode 100644 index 0000000..c314847 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CouponTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CouponTicket; +import com.jwsaas.service.BaseService; + +/** + * 商品优惠券单据数据接口 + */ +public interface CouponTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CouponTicketStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CouponTicketStoreService.java new file mode 100644 index 0000000..c7a78d0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/CouponTicketStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.CouponTicketStore; +import com.jwsaas.service.BaseService; + +/** + * 商品优惠券门店数据接口 + */ +public interface CouponTicketStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DeliverService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DeliverService.java new file mode 100644 index 0000000..e1be4ca --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DeliverService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.Deliver; +import com.jwsaas.service.BaseService; + +/** + * 配送员信息数据接口 + */ +public interface DeliverService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DeliverStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DeliverStoreService.java new file mode 100644 index 0000000..383236c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DeliverStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.DeliverStore; +import com.jwsaas.service.BaseService; + +/** + * 配送员门店关联数据接口 + */ +public interface DeliverStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchSettlePlanPayModeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchSettlePlanPayModeService.java new file mode 100644 index 0000000..cdebffd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchSettlePlanPayModeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.DispatchSettlePlanPayMode; +import com.jwsaas.service.BaseService; + +/** + * 配送结算方案收银方式关联数据接口 + */ +public interface DispatchSettlePlanPayModeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchSettlePlanService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchSettlePlanService.java new file mode 100644 index 0000000..9741b62 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchSettlePlanService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.DispatchSettlePlan; +import com.jwsaas.service.BaseService; + +/** + * 配送结算方案数据接口 + */ +public interface DispatchSettlePlanService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchSettlePlanStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchSettlePlanStoreService.java new file mode 100644 index 0000000..b6ae9c1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchSettlePlanStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.DispatchSettlePlanStore; +import com.jwsaas.service.BaseService; + +/** + * 配送结算方案门店关联数据接口 + */ +public interface DispatchSettlePlanStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchTicketDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchTicketDetailService.java new file mode 100644 index 0000000..615745a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchTicketDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.DispatchTicketDetail; +import com.jwsaas.service.BaseService; + +/** + * 配送单明细数据接口 + */ +public interface DispatchTicketDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchTicketLogService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchTicketLogService.java new file mode 100644 index 0000000..1e41811 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchTicketLogService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.DispatchTicketLog; +import com.jwsaas.service.BaseService; + +/** + * 配送单操作记录数据接口 + */ +public interface DispatchTicketLogService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchTicketService.java new file mode 100644 index 0000000..b274de9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.DispatchTicket; +import com.jwsaas.service.BaseService; + +/** + * 配送单数据接口 + */ +public interface DispatchTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchpriceTicketMaterialService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchpriceTicketMaterialService.java new file mode 100644 index 0000000..52412fe --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchpriceTicketMaterialService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.DispatchpriceTicketMaterial; +import com.jwsaas.service.BaseService; + +/** + * 配送价格单原料数据接口 + */ +public interface DispatchpriceTicketMaterialService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchpriceTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchpriceTicketService.java new file mode 100644 index 0000000..4bd54b3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchpriceTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.DispatchpriceTicket; +import com.jwsaas.service.BaseService; + +/** + * 配送价格管理单数据接口 + */ +public interface DispatchpriceTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchpriceTicketStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchpriceTicketStoreService.java new file mode 100644 index 0000000..b391012 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/DispatchpriceTicketStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.DispatchpriceTicketStore; +import com.jwsaas.service.BaseService; + +/** + * 配送价格单门店数据接口 + */ +public interface DispatchpriceTicketStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ElemeCategoryFoodService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ElemeCategoryFoodService.java new file mode 100644 index 0000000..9485959 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ElemeCategoryFoodService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ElemeCategoryFood; +import com.jwsaas.service.BaseService; + +/** + * 饿了么分类菜品信息数据接口 + */ +public interface ElemeCategoryFoodService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ElemeFoodCategoryService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ElemeFoodCategoryService.java new file mode 100644 index 0000000..87ff147 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ElemeFoodCategoryService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ElemeFoodCategory; +import com.jwsaas.service.BaseService; + +/** + * 饿了么菜品分类数据接口 + */ +public interface ElemeFoodCategoryService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ElemeOrderDetailGroupService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ElemeOrderDetailGroupService.java new file mode 100644 index 0000000..25f1f91 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ElemeOrderDetailGroupService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ElemeOrderDetailGroup; +import com.jwsaas.service.BaseService; + +/** + * 饿了么订单篮子明细数据接口 + */ +public interface ElemeOrderDetailGroupService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ElemeOrderDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ElemeOrderDetailService.java new file mode 100644 index 0000000..d26cd18 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ElemeOrderDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ElemeOrderDetail; +import com.jwsaas.service.BaseService; + +/** + * 饿了么订单信息数据接口 + */ +public interface ElemeOrderDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ErpPosSetService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ErpPosSetService.java new file mode 100644 index 0000000..b78beb6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ErpPosSetService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ErpPosSet; +import com.jwsaas.service.BaseService; + +/** + * ERP方POS设置数据接口 + */ +public interface ErpPosSetService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/FeeItemService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/FeeItemService.java new file mode 100644 index 0000000..a1431c0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/FeeItemService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.FeeItem; +import com.jwsaas.service.BaseService; + +/** + * 费用项目数据接口 + */ +public interface FeeItemService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/KdsPlanService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/KdsPlanService.java new file mode 100644 index 0000000..a40700b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/KdsPlanService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.KdsPlan; +import com.jwsaas.service.BaseService; + +/** + * 厨房显示方案数据接口 + */ +public interface KdsPlanService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/KdsPlanStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/KdsPlanStoreService.java new file mode 100644 index 0000000..ccd24e9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/KdsPlanStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.KdsPlanStore; +import com.jwsaas.service.BaseService; + +/** + * 厨房显示方案门店关联数据接口 + */ +public interface KdsPlanStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/KitPlanService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/KitPlanService.java new file mode 100644 index 0000000..0a31887 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/KitPlanService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.KitPlan; +import com.jwsaas.service.BaseService; + +/** + * 厨房打印方案数据接口 + */ +public interface KitPlanService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/KitPlanStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/KitPlanStoreService.java new file mode 100644 index 0000000..ef364bc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/KitPlanStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.KitPlanStore; +import com.jwsaas.service.BaseService; + +/** + * 厨房打印方案门店关联数据接口 + */ +public interface KitPlanStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MakeBurdenService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MakeBurdenService.java new file mode 100644 index 0000000..6b95fbb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MakeBurdenService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.MakeBurden; +import com.jwsaas.service.BaseService; + +/** + * 做法配料BOM表数据接口 + */ +public interface MakeBurdenService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MakeDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MakeDetailService.java new file mode 100644 index 0000000..1c60153 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MakeDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.MakeDetail; +import com.jwsaas.service.BaseService; + +/** + * 菜品做法数据接口 + */ +public interface MakeDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MakeTypeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MakeTypeService.java new file mode 100644 index 0000000..3dcfd17 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MakeTypeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.MakeType; +import com.jwsaas.service.BaseService; + +/** + * 做法分类数据接口 + */ +public interface MakeTypeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MeituanFoodCategoryService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MeituanFoodCategoryService.java new file mode 100644 index 0000000..dd9e385 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MeituanFoodCategoryService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.MeituanFoodCategory; +import com.jwsaas.service.BaseService; + +/** + * 美团菜品分类数据接口 + */ +public interface MeituanFoodCategoryService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MeituanFoodService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MeituanFoodService.java new file mode 100644 index 0000000..1529235 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MeituanFoodService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.MeituanFood; +import com.jwsaas.service.BaseService; + +/** + * 美团菜品信息数据接口 + */ +public interface MeituanFoodService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MeituanOrderExtraService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MeituanOrderExtraService.java new file mode 100644 index 0000000..b9778d7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MeituanOrderExtraService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.MeituanOrderExtra; +import com.jwsaas.service.BaseService; + +/** + * 美团订单优惠信息数据接口 + */ +public interface MeituanOrderExtraService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MeituanOrderItemService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MeituanOrderItemService.java new file mode 100644 index 0000000..66cf550 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MeituanOrderItemService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.MeituanOrderItem; +import com.jwsaas.service.BaseService; + +/** + * 美团订单明细表数据接口 + */ +public interface MeituanOrderItemService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MeituanOrderService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MeituanOrderService.java new file mode 100644 index 0000000..496b440 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/MeituanOrderService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.MeituanOrder; +import com.jwsaas.service.BaseService; + +/** + * 美团订单表数据接口 + */ +public interface MeituanOrderService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/OtherStorageOutTicketDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/OtherStorageOutTicketDetailService.java new file mode 100644 index 0000000..b177ebe --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/OtherStorageOutTicketDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.OtherStorageOutTicketDetail; +import com.jwsaas.service.BaseService; + +/** + * 其他出库单明细数据接口 + */ +public interface OtherStorageOutTicketDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/OtherStorageOutTicketLogService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/OtherStorageOutTicketLogService.java new file mode 100644 index 0000000..c0de767 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/OtherStorageOutTicketLogService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.OtherStorageOutTicketLog; +import com.jwsaas.service.BaseService; + +/** + * 其他出库单操作记录数据接口 + */ +public interface OtherStorageOutTicketLogService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/OtherStorageOutTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/OtherStorageOutTicketService.java new file mode 100644 index 0000000..adcf211 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/OtherStorageOutTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.OtherStorageOutTicket; +import com.jwsaas.service.BaseService; + +/** + * 其他出库单数据接口 + */ +public interface OtherStorageOutTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/OtherStorageTicketDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/OtherStorageTicketDetailService.java new file mode 100644 index 0000000..659fc1d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/OtherStorageTicketDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.OtherStorageTicketDetail; +import com.jwsaas.service.BaseService; + +/** + * 其他入库单明细数据接口 + */ +public interface OtherStorageTicketDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/OtherStorageTicketLogService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/OtherStorageTicketLogService.java new file mode 100644 index 0000000..2f71dc2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/OtherStorageTicketLogService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.OtherStorageTicketLog; +import com.jwsaas.service.BaseService; + +/** + * 其他入库单操作记录数据接口 + */ +public interface OtherStorageTicketLogService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/OtherStorageTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/OtherStorageTicketService.java new file mode 100644 index 0000000..2c6ccbc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/OtherStorageTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.OtherStorageTicket; +import com.jwsaas.service.BaseService; + +/** + * 其他入库单数据接口 + */ +public interface OtherStorageTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PayModeSeriesService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PayModeSeriesService.java new file mode 100644 index 0000000..52fe0b5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PayModeSeriesService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PayModeSeries; +import com.jwsaas.service.BaseService; + +/** + * 档口支付方式数据接口 + */ +public interface PayModeSeriesService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PayModeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PayModeService.java new file mode 100644 index 0000000..95b0779 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PayModeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PayMode; +import com.jwsaas.service.BaseService; + +/** + * 收银方式数据接口 + */ +public interface PayModeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PayModeStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PayModeStoreService.java new file mode 100644 index 0000000..abd9221 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PayModeStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PayModeStore; +import com.jwsaas.service.BaseService; + +/** + * 门店支付方式数据接口 + */ +public interface PayModeStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PayTypeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PayTypeService.java new file mode 100644 index 0000000..032907d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PayTypeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PayType; +import com.jwsaas.service.BaseService; + +/** + * 付款类型数据接口 + */ +public interface PayTypeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PaymentParameterService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PaymentParameterService.java new file mode 100644 index 0000000..4749ca2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PaymentParameterService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PaymentParameter; +import com.jwsaas.service.BaseService; + +/** + * 支付参数方案数据接口 + */ +public interface PaymentParameterService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PaymentParameterStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PaymentParameterStoreService.java new file mode 100644 index 0000000..c73d927 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PaymentParameterStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PaymentParameterStore; +import com.jwsaas.service.BaseService; + +/** + * 支付参数门店关联数据接口 + */ +public interface PaymentParameterStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosInfoService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosInfoService.java new file mode 100644 index 0000000..456464d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosInfoService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PosInfo; +import com.jwsaas.service.BaseService; + +/** + * POS终端信息表数据接口 + */ +public interface PosInfoService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosPollcodeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosPollcodeService.java new file mode 100644 index 0000000..96d0f8f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosPollcodeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PosPollcode; +import com.jwsaas.service.BaseService; + +/** + * POS终端注册码数据接口 + */ +public interface PosPollcodeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosRoleModuleService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosRoleModuleService.java new file mode 100644 index 0000000..a7873ac --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosRoleModuleService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PosRoleModule; +import com.jwsaas.service.BaseService; + +/** + * 前台角色模块数据接口 + */ +public interface PosRoleModuleService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosRoleService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosRoleService.java new file mode 100644 index 0000000..5b4db2e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosRoleService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PosRole; +import com.jwsaas.service.BaseService; + +/** + * 前台角色数据接口 + */ +public interface PosRoleService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosSetPlanConfigService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosSetPlanConfigService.java new file mode 100644 index 0000000..695eb36 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosSetPlanConfigService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PosSetPlanConfig; +import com.jwsaas.service.BaseService; + +/** + * POS下载方案设置数据接口 + */ +public interface PosSetPlanConfigService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosSetPlanModuleService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosSetPlanModuleService.java new file mode 100644 index 0000000..969e816 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosSetPlanModuleService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PosSetPlanModule; +import com.jwsaas.service.BaseService; + +/** + * POS下载方案模块数据接口 + */ +public interface PosSetPlanModuleService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosSetPlanResourcesService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosSetPlanResourcesService.java new file mode 100644 index 0000000..5f2f2a5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosSetPlanResourcesService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PosSetPlanResources; +import com.jwsaas.service.BaseService; + +/** + * POS下载方案资源数据接口 + */ +public interface PosSetPlanResourcesService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosSetPlanService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosSetPlanService.java new file mode 100644 index 0000000..8171ea5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosSetPlanService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PosSetPlan; +import com.jwsaas.service.BaseService; + +/** + * POS下载方案数据接口 + */ +public interface PosSetPlanService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosSetPlanShortcutService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosSetPlanShortcutService.java new file mode 100644 index 0000000..d02d6d5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosSetPlanShortcutService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PosSetPlanShortcut; +import com.jwsaas.service.BaseService; + +/** + * POS下载方案快捷操作数据接口 + */ +public interface PosSetPlanShortcutService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosSetPlanStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosSetPlanStoreService.java new file mode 100644 index 0000000..c3763bb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PosSetPlanStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PosSetPlanStore; +import com.jwsaas.service.BaseService; + +/** + * POS下载方案门店关联数据接口 + */ +public interface PosSetPlanStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PrintImageService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PrintImageService.java new file mode 100644 index 0000000..353a441 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PrintImageService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PrintImage; +import com.jwsaas.service.BaseService; + +/** + * 小票打印图片数据接口 + */ +public interface PrintImageService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PrintImageStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PrintImageStoreService.java new file mode 100644 index 0000000..9ba9159 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PrintImageStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PrintImageStore; +import com.jwsaas.service.BaseService; + +/** + * 小票打印图片门店关联数据接口 + */ +public interface PrintImageStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductBatchNegativeStockDifferService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductBatchNegativeStockDifferService.java new file mode 100644 index 0000000..47ddb01 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductBatchNegativeStockDifferService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductBatchNegativeStockDiffer; +import com.jwsaas.service.BaseService; + +/** + * 负库存出库差异数据接口 + */ +public interface ProductBatchNegativeStockDifferService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductBatchNegativeStockService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductBatchNegativeStockService.java new file mode 100644 index 0000000..edc3064 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductBatchNegativeStockService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductBatchNegativeStock; +import com.jwsaas.service.BaseService; + +/** + * 负库存出库记录数据接口 + */ +public interface ProductBatchNegativeStockService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductBatchNumberService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductBatchNumberService.java new file mode 100644 index 0000000..703a3c6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductBatchNumberService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductBatchNumber; +import com.jwsaas.service.BaseService; + +/** + * 产品批次数据接口 + */ +public interface ProductBatchNumberService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductBatchStockChangeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductBatchStockChangeService.java new file mode 100644 index 0000000..c537b04 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductBatchStockChangeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductBatchStockChange; +import com.jwsaas.service.BaseService; + +/** + * 产品批次冲减记录数据接口 + */ +public interface ProductBatchStockChangeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductBatchStockService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductBatchStockService.java new file mode 100644 index 0000000..dc33c32 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductBatchStockService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductBatchStock; +import com.jwsaas.service.BaseService; + +/** + * 产品批次库存数据接口 + */ +public interface ProductBatchStockService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductBurdenService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductBurdenService.java new file mode 100644 index 0000000..c7ad08a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductBurdenService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductBurden; +import com.jwsaas.service.BaseService; + +/** + * 产品配料BOM表数据接口 + */ +public interface ProductBurdenService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductImageService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductImageService.java new file mode 100644 index 0000000..d935c55 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductImageService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductImage; +import com.jwsaas.service.BaseService; + +/** + * 商品图片表数据接口 + */ +public interface ProductImageService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductKdsPlanService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductKdsPlanService.java new file mode 100644 index 0000000..7111e55 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductKdsPlanService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductKdsPlan; +import com.jwsaas.service.BaseService; + +/** + * 商品厨房显示方案设置数据接口 + */ +public interface ProductKdsPlanService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductKitPlanService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductKitPlanService.java new file mode 100644 index 0000000..aa82697 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductKitPlanService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductKitPlan; +import com.jwsaas.service.BaseService; + +/** + * 商品厨房打印方案设置数据接口 + */ +public interface ProductKitPlanService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductMakeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductMakeService.java new file mode 100644 index 0000000..6e3276f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductMakeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductMake; +import com.jwsaas.service.BaseService; + +/** + * 产品私有做法数据接口 + */ +public interface ProductMakeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductMakeStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductMakeStoreService.java new file mode 100644 index 0000000..a6f05f3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductMakeStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductMakeStore; +import com.jwsaas.service.BaseService; + +/** + * 门店做法数据接口 + */ +public interface ProductMakeStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductMakeTemplateDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductMakeTemplateDetailService.java new file mode 100644 index 0000000..47c165d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductMakeTemplateDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductMakeTemplateDetail; +import com.jwsaas.service.BaseService; + +/** + * 做法模板明细数据接口 + */ +public interface ProductMakeTemplateDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductMakeTemplateService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductMakeTemplateService.java new file mode 100644 index 0000000..8491d78 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductMakeTemplateService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductMakeTemplate; +import com.jwsaas.service.BaseService; + +/** + * 做法模板数据接口 + */ +public interface ProductMakeTemplateService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductRatioService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductRatioService.java new file mode 100644 index 0000000..30e2c36 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductRatioService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductRatio; +import com.jwsaas.service.BaseService; + +/** + * 商品库存系数数据接口 + */ +public interface ProductRatioService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductService.java new file mode 100644 index 0000000..ee0f59e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.Product; +import com.jwsaas.service.BaseService; + +/** + * 商品资料数据接口 + */ +public interface ProductService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductSpecService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductSpecService.java new file mode 100644 index 0000000..db4fb21 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductSpecService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductSpec; +import com.jwsaas.service.BaseService; + +/** + * 商品规格信息数据接口 + */ +public interface ProductSpecService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductStockLogService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductStockLogService.java new file mode 100644 index 0000000..05fd465 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductStockLogService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductStockLog; +import com.jwsaas.service.BaseService; + +/** + * 总部库存流水数据接口 + */ +public interface ProductStockLogService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductStockService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductStockService.java new file mode 100644 index 0000000..b2536cd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductStockService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductStock; +import com.jwsaas.service.BaseService; + +/** + * 总部原料库存数据接口 + */ +public interface ProductStockService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductStoreOutCollectDayService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductStoreOutCollectDayService.java new file mode 100644 index 0000000..9199e5d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductStoreOutCollectDayService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductStoreOutCollectDay; +import com.jwsaas.service.BaseService; + +/** + * 门店销售出库汇总-按天汇总数据接口 + */ +public interface ProductStoreOutCollectDayService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductStoreStockLogService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductStoreStockLogService.java new file mode 100644 index 0000000..c10cdc8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductStoreStockLogService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductStoreStockLog; +import com.jwsaas.service.BaseService; + +/** + * 门店库存流水数据接口 + */ +public interface ProductStoreStockLogService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductStoreStockService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductStoreStockService.java new file mode 100644 index 0000000..3ae2d0f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductStoreStockService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductStoreStock; +import com.jwsaas.service.BaseService; + +/** + * 门店原料库存数据接口 + */ +public interface ProductStoreStockService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductSuitDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductSuitDetailService.java new file mode 100644 index 0000000..da4ace7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductSuitDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductSuitDetail; +import com.jwsaas.service.BaseService; + +/** + * 道菜明细数据接口 + */ +public interface ProductSuitDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductSuitService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductSuitService.java new file mode 100644 index 0000000..369f535 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductSuitService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductSuit; +import com.jwsaas.service.BaseService; + +/** + * 套餐道菜数据接口 + */ +public interface ProductSuitService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductTemplateDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductTemplateDetailService.java new file mode 100644 index 0000000..c41b046 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductTemplateDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductTemplateDetail; +import com.jwsaas.service.BaseService; + +/** + * 商品模板明细数据接口 + */ +public interface ProductTemplateDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductTemplateService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductTemplateService.java new file mode 100644 index 0000000..344f030 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductTemplateService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductTemplate; +import com.jwsaas.service.BaseService; + +/** + * 商品模板数据接口 + */ +public interface ProductTemplateService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductTypeBrandService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductTypeBrandService.java new file mode 100644 index 0000000..84df9a4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductTypeBrandService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductTypeBrand; +import com.jwsaas.service.BaseService; + +/** + * 商品分类品牌数据接口 + */ +public interface ProductTypeBrandService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductTypeLabelInfoService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductTypeLabelInfoService.java new file mode 100644 index 0000000..bd49a3d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductTypeLabelInfoService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductTypeLabelInfo; +import com.jwsaas.service.BaseService; + +/** + * 商品类别标签数据接口 + */ +public interface ProductTypeLabelInfoService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductTypeLabelService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductTypeLabelService.java new file mode 100644 index 0000000..7711d01 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductTypeLabelService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductTypeLabel; +import com.jwsaas.service.BaseService; + +/** + * 商品类别标签管联数据接口 + */ +public interface ProductTypeLabelService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductTypeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductTypeService.java new file mode 100644 index 0000000..f2b6156 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductTypeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductType; +import com.jwsaas.service.BaseService; + +/** + * 商品类别数据接口 + */ +public interface ProductTypeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductUnitService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductUnitService.java new file mode 100644 index 0000000..8be59ea --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProductUnitService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProductUnit; +import com.jwsaas.service.BaseService; + +/** + * 商品单位数据接口 + */ +public interface ProductUnitService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramAdPictureService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramAdPictureService.java new file mode 100644 index 0000000..e05c23f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramAdPictureService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramAdPicture; +import com.jwsaas.service.BaseService; + +/** + * 小程序广告图片数据接口 + */ +public interface ProgramAdPictureService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramAdjustPriceProductService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramAdjustPriceProductService.java new file mode 100644 index 0000000..cab82c8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramAdjustPriceProductService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramAdjustPriceProduct; +import com.jwsaas.service.BaseService; + +/** + * 小程序调价单商品明细数据接口 + */ +public interface ProgramAdjustPriceProductService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramAdjustPriceStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramAdjustPriceStoreService.java new file mode 100644 index 0000000..e2b6187 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramAdjustPriceStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramAdjustPriceStore; +import com.jwsaas.service.BaseService; + +/** + * 小程序调价单门店明细数据接口 + */ +public interface ProgramAdjustPriceStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramAdjustPriceTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramAdjustPriceTicketService.java new file mode 100644 index 0000000..fe57688 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramAdjustPriceTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramAdjustPriceTicket; +import com.jwsaas.service.BaseService; + +/** + * 小程序商品调价单数据接口 + */ +public interface ProgramAdjustPriceTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramDeliverAddressService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramDeliverAddressService.java new file mode 100644 index 0000000..cfc312d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramDeliverAddressService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramDeliverAddress; +import com.jwsaas.service.BaseService; + +/** + * 小程序用户配送地址数据接口 + */ +public interface ProgramDeliverAddressService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramEvaluateImageService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramEvaluateImageService.java new file mode 100644 index 0000000..153fda4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramEvaluateImageService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramEvaluateImage; +import com.jwsaas.service.BaseService; + +/** + * 小程序评价图片表数据接口 + */ +public interface ProgramEvaluateImageService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramEvaluateService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramEvaluateService.java new file mode 100644 index 0000000..c98022b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramEvaluateService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramEvaluate; +import com.jwsaas.service.BaseService; + +/** + * 小程序评价表数据接口 + */ +public interface ProgramEvaluateService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramIndexPictureService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramIndexPictureService.java new file mode 100644 index 0000000..ef0ebfa --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramIndexPictureService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramIndexPicture; +import com.jwsaas.service.BaseService; + +/** + * 小程序首页图片数据接口 + */ +public interface ProgramIndexPictureService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPaymentParameterService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPaymentParameterService.java new file mode 100644 index 0000000..86a4b6b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPaymentParameterService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramPaymentParameter; +import com.jwsaas.service.BaseService; + +/** + * 小程序支付参数方案数据接口 + */ +public interface ProgramPaymentParameterService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPaymentParameterStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPaymentParameterStoreService.java new file mode 100644 index 0000000..fe7a022 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPaymentParameterStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramPaymentParameterStore; +import com.jwsaas.service.BaseService; + +/** + * 小程序支付参数门店关联数据接口 + */ +public interface ProgramPaymentParameterStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramProductCategoryService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramProductCategoryService.java new file mode 100644 index 0000000..a3b169a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramProductCategoryService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramProductCategory; +import com.jwsaas.service.BaseService; + +/** + * 小程序商品分类数据接口 + */ +public interface ProgramProductCategoryService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramProductMakeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramProductMakeService.java new file mode 100644 index 0000000..166c088 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramProductMakeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramProductMake; +import com.jwsaas.service.BaseService; + +/** + * 小程序商品做法关联数据接口 + */ +public interface ProgramProductMakeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramProductTemplateDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramProductTemplateDetailService.java new file mode 100644 index 0000000..2a03f4f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramProductTemplateDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramProductTemplateDetail; +import com.jwsaas.service.BaseService; + +/** + * 小程序商品模板明细数据接口 + */ +public interface ProgramProductTemplateDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramProductTemplateService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramProductTemplateService.java new file mode 100644 index 0000000..c47a6d1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramProductTemplateService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramProductTemplate; +import com.jwsaas.service.BaseService; + +/** + * 小程序商品模板数据接口 + */ +public interface ProgramProductTemplateService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramProductTemplateStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramProductTemplateStoreService.java new file mode 100644 index 0000000..70bde1e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramProductTemplateStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramProductTemplateStore; +import com.jwsaas.service.BaseService; + +/** + * 小程序商品模板门店明细数据接口 + */ +public interface ProgramProductTemplateStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionBlackListGoodsService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionBlackListGoodsService.java new file mode 100644 index 0000000..0aea616 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionBlackListGoodsService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramPromotionBlackListGoods; +import com.jwsaas.service.BaseService; + +/** + * 小程序促销商品黑名单数据接口 + */ +public interface ProgramPromotionBlackListGoodsService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionBlackListStoreAreaService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionBlackListStoreAreaService.java new file mode 100644 index 0000000..782c65b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionBlackListStoreAreaService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramPromotionBlackListStoreArea; +import com.jwsaas.service.BaseService; + +/** + * 小程序促销门店区域黑名单数据接口 + */ +public interface ProgramPromotionBlackListStoreAreaService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionBlackListStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionBlackListStoreService.java new file mode 100644 index 0000000..fb52f47 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionBlackListStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramPromotionBlackListStore; +import com.jwsaas.service.BaseService; + +/** + * 小程序促销门店黑名单数据接口 + */ +public interface ProgramPromotionBlackListStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionCategoryService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionCategoryService.java new file mode 100644 index 0000000..dfe507c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionCategoryService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramPromotionCategory; +import com.jwsaas.service.BaseService; + +/** + * 小程序促销品类表数据接口 + */ +public interface ProgramPromotionCategoryService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionGoodsService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionGoodsService.java new file mode 100644 index 0000000..a752901 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionGoodsService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramPromotionGoods; +import com.jwsaas.service.BaseService; + +/** + * 小程序促销商品明细数据接口 + */ +public interface ProgramPromotionGoodsService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionSchemeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionSchemeService.java new file mode 100644 index 0000000..a8f3af1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionSchemeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramPromotionScheme; +import com.jwsaas.service.BaseService; + +/** + * 小程序促销方案表数据接口 + */ +public interface ProgramPromotionSchemeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionStoreAreaService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionStoreAreaService.java new file mode 100644 index 0000000..8ffa8cd --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionStoreAreaService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramPromotionStoreArea; +import com.jwsaas.service.BaseService; + +/** + * 小程序促销门店区域关联表数据接口 + */ +public interface ProgramPromotionStoreAreaService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionStoreService.java new file mode 100644 index 0000000..8332c64 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramPromotionStore; +import com.jwsaas.service.BaseService; + +/** + * 小程序促销门店关联表数据接口 + */ +public interface ProgramPromotionStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionTaskService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionTaskService.java new file mode 100644 index 0000000..ba198a9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionTaskService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramPromotionTask; +import com.jwsaas.service.BaseService; + +/** + * 小程序促销任务表数据接口 + */ +public interface ProgramPromotionTaskService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionTicketService.java new file mode 100644 index 0000000..b3f3af4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramPromotionTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramPromotionTicket; +import com.jwsaas.service.BaseService; + +/** + * 小程序促销单数据接口 + */ +public interface ProgramPromotionTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramSettingService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramSettingService.java new file mode 100644 index 0000000..60326ad --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramSettingService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramSetting; +import com.jwsaas.service.BaseService; + +/** + * 小程序设置数据接口 + */ +public interface ProgramSettingService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreBusinessTicketDeliverService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreBusinessTicketDeliverService.java new file mode 100644 index 0000000..73b2279 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreBusinessTicketDeliverService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramStoreBusinessTicketDeliver; +import com.jwsaas.service.BaseService; + +/** + * 小程序销售单配送信息数据接口 + */ +public interface ProgramStoreBusinessTicketDeliverService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreBusinessTicketInfoService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreBusinessTicketInfoService.java new file mode 100644 index 0000000..d678a08 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreBusinessTicketInfoService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramStoreBusinessTicketInfo; +import com.jwsaas.service.BaseService; + +/** + * 小程序销售单优惠明细数据接口 + */ +public interface ProgramStoreBusinessTicketInfoService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreBusinessTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreBusinessTicketService.java new file mode 100644 index 0000000..17b79f5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreBusinessTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramStoreBusinessTicket; +import com.jwsaas.service.BaseService; + +/** + * 小程序销售单数据接口 + */ +public interface ProgramStoreBusinessTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreMakeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreMakeService.java new file mode 100644 index 0000000..4fff911 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreMakeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramStoreMake; +import com.jwsaas.service.BaseService; + +/** + * 小程序门店做法关联表数据接口 + */ +public interface ProgramStoreMakeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreOrderProductInfoService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreOrderProductInfoService.java new file mode 100644 index 0000000..47f05d0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreOrderProductInfoService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramStoreOrderProductInfo; +import com.jwsaas.service.BaseService; + +/** + * 小程序产品销售记录优惠明细数据接口 + */ +public interface ProgramStoreOrderProductInfoService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreOrderProductMakeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreOrderProductMakeService.java new file mode 100644 index 0000000..5099401 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreOrderProductMakeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramStoreOrderProductMake; +import com.jwsaas.service.BaseService; + +/** + * 小程序销售单做法数据接口 + */ +public interface ProgramStoreOrderProductMakeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreOrderProductService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreOrderProductService.java new file mode 100644 index 0000000..c923a03 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreOrderProductService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramStoreOrderProduct; +import com.jwsaas.service.BaseService; + +/** + * 小程序产品销售记录数据接口 + */ +public interface ProgramStoreOrderProductService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStorePayService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStorePayService.java new file mode 100644 index 0000000..8a495fb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStorePayService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramStorePay; +import com.jwsaas.service.BaseService; + +/** + * 小程序收银流水数据接口 + */ +public interface ProgramStorePayService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreProductService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreProductService.java new file mode 100644 index 0000000..d879f5d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreProductService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramStoreProduct; +import com.jwsaas.service.BaseService; + +/** + * 小程序门店商品关联表数据接口 + */ +public interface ProgramStoreProductService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreService.java new file mode 100644 index 0000000..d207edb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ProgramStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ProgramStore; +import com.jwsaas.service.BaseService; + +/** + * 小程序门店信息数据接口 + */ +public interface ProgramStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionBlackListGoodsService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionBlackListGoodsService.java new file mode 100644 index 0000000..b9607df --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionBlackListGoodsService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PromotionBlackListGoods; +import com.jwsaas.service.BaseService; + +/** + * 促销商品黑名单数据接口 + */ +public interface PromotionBlackListGoodsService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionBlackListStoreAreaService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionBlackListStoreAreaService.java new file mode 100644 index 0000000..fce8041 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionBlackListStoreAreaService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PromotionBlackListStoreArea; +import com.jwsaas.service.BaseService; + +/** + * 促销门店区域黑名单数据接口 + */ +public interface PromotionBlackListStoreAreaService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionBlackListStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionBlackListStoreService.java new file mode 100644 index 0000000..4af0f24 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionBlackListStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PromotionBlackListStore; +import com.jwsaas.service.BaseService; + +/** + * 促销门店黑名单数据接口 + */ +public interface PromotionBlackListStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionCategoryService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionCategoryService.java new file mode 100644 index 0000000..fe58c67 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionCategoryService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PromotionCategory; +import com.jwsaas.service.BaseService; + +/** + * 促销品类表数据接口 + */ +public interface PromotionCategoryService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionGoodsService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionGoodsService.java new file mode 100644 index 0000000..19925f5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionGoodsService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PromotionGoods; +import com.jwsaas.service.BaseService; + +/** + * 促销商品明细数据接口 + */ +public interface PromotionGoodsService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionScheduleService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionScheduleService.java new file mode 100644 index 0000000..d05b78b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionScheduleService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PromotionSchedule; +import com.jwsaas.service.BaseService; + +/** + * 促销档期数据接口 + */ +public interface PromotionScheduleService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionSchemeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionSchemeService.java new file mode 100644 index 0000000..d57edd6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionSchemeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PromotionScheme; +import com.jwsaas.service.BaseService; + +/** + * 促销方案表数据接口 + */ +public interface PromotionSchemeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionStoreAreaService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionStoreAreaService.java new file mode 100644 index 0000000..5921b0e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionStoreAreaService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PromotionStoreArea; +import com.jwsaas.service.BaseService; + +/** + * 促销门店区域关联表数据接口 + */ +public interface PromotionStoreAreaService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionStoreService.java new file mode 100644 index 0000000..f4cb08e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PromotionStore; +import com.jwsaas.service.BaseService; + +/** + * 促销门店关联表数据接口 + */ +public interface PromotionStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionTaskService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionTaskService.java new file mode 100644 index 0000000..dac0b70 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionTaskService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PromotionTask; +import com.jwsaas.service.BaseService; + +/** + * 促销任务表数据接口 + */ +public interface PromotionTaskService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionTicketService.java new file mode 100644 index 0000000..87e2590 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PromotionTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PromotionTicket; +import com.jwsaas.service.BaseService; + +/** + * 促销单数据接口 + */ +public interface PromotionTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseStorageTicketDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseStorageTicketDetailService.java new file mode 100644 index 0000000..ad0b7d8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseStorageTicketDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PurchaseStorageTicketDetail; +import com.jwsaas.service.BaseService; + +/** + * 采购入库单明细数据接口 + */ +public interface PurchaseStorageTicketDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseStorageTicketLogService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseStorageTicketLogService.java new file mode 100644 index 0000000..a4e6ae3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseStorageTicketLogService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PurchaseStorageTicketLog; +import com.jwsaas.service.BaseService; + +/** + * 采购入库单操作记录数据接口 + */ +public interface PurchaseStorageTicketLogService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseStorageTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseStorageTicketService.java new file mode 100644 index 0000000..5c4f4db --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseStorageTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PurchaseStorageTicket; +import com.jwsaas.service.BaseService; + +/** + * 采购入库单数据接口 + */ +public interface PurchaseStorageTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseTemplateDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseTemplateDetailService.java new file mode 100644 index 0000000..5f530ce --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseTemplateDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PurchaseTemplateDetail; +import com.jwsaas.service.BaseService; + +/** + * 采购模板明细数据接口 + */ +public interface PurchaseTemplateDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseTemplateService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseTemplateService.java new file mode 100644 index 0000000..55b333b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseTemplateService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PurchaseTemplate; +import com.jwsaas.service.BaseService; + +/** + * 采购模板数据接口 + */ +public interface PurchaseTemplateService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseTicketDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseTicketDetailService.java new file mode 100644 index 0000000..fe47712 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseTicketDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PurchaseTicketDetail; +import com.jwsaas.service.BaseService; + +/** + * 采购单明细数据接口 + */ +public interface PurchaseTicketDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseTicketLogService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseTicketLogService.java new file mode 100644 index 0000000..99d2240 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseTicketLogService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PurchaseTicketLog; +import com.jwsaas.service.BaseService; + +/** + * 采购订单操作记录数据接口 + */ +public interface PurchaseTicketLogService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseTicketService.java new file mode 100644 index 0000000..688d672 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchaseTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PurchaseTicket; +import com.jwsaas.service.BaseService; + +/** + * 采购单数据接口 + */ +public interface PurchaseTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchasepriceService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchasepriceService.java new file mode 100644 index 0000000..d29e02b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchasepriceService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.Purchaseprice; +import com.jwsaas.service.BaseService; + +/** + * 采购价格数据接口 + */ +public interface PurchasepriceService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchasepriceTicketMaterialService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchasepriceTicketMaterialService.java new file mode 100644 index 0000000..7650d57 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchasepriceTicketMaterialService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PurchasepriceTicketMaterial; +import com.jwsaas.service.BaseService; + +/** + * 采购价格单原料数据接口 + */ +public interface PurchasepriceTicketMaterialService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchasepriceTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchasepriceTicketService.java new file mode 100644 index 0000000..8c248d8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/PurchasepriceTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.PurchasepriceTicket; +import com.jwsaas.service.BaseService; + +/** + * 采购价格管理单数据接口 + */ +public interface PurchasepriceTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiAdjustPriceGoodsService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiAdjustPriceGoodsService.java new file mode 100644 index 0000000..7dde856 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiAdjustPriceGoodsService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.QimaiAdjustPriceGoods; +import com.jwsaas.service.BaseService; + +/** + * 企迈调价单商品明细数据接口 + */ +public interface QimaiAdjustPriceGoodsService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiAdjustPriceStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiAdjustPriceStoreService.java new file mode 100644 index 0000000..7da4f56 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiAdjustPriceStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.QimaiAdjustPriceStore; +import com.jwsaas.service.BaseService; + +/** + * 企迈调价单门店明细数据接口 + */ +public interface QimaiAdjustPriceStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiAdjustPriceTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiAdjustPriceTicketService.java new file mode 100644 index 0000000..edf506a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiAdjustPriceTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.QimaiAdjustPriceTicket; +import com.jwsaas.service.BaseService; + +/** + * 企迈商品调价单数据接口 + */ +public interface QimaiAdjustPriceTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiAttributeCategoryService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiAttributeCategoryService.java new file mode 100644 index 0000000..cacf716 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiAttributeCategoryService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.QimaiAttributeCategory; +import com.jwsaas.service.BaseService; + +/** + * 企迈属性分类数据接口 + */ +public interface QimaiAttributeCategoryService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiAttributeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiAttributeService.java new file mode 100644 index 0000000..47ce1dc --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiAttributeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.QimaiAttribute; +import com.jwsaas.service.BaseService; + +/** + * 企迈属性数据接口 + */ +public interface QimaiAttributeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiChargeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiChargeService.java new file mode 100644 index 0000000..c7ab505 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiChargeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.QimaiCharge; +import com.jwsaas.service.BaseService; + +/** + * 企迈加料信息数据接口 + */ +public interface QimaiChargeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiOrderItemService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiOrderItemService.java new file mode 100644 index 0000000..1c2daac --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiOrderItemService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.QimaiOrderItem; +import com.jwsaas.service.BaseService; + +/** + * 企迈订单明细表数据接口 + */ +public interface QimaiOrderItemService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiOrderPayService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiOrderPayService.java new file mode 100644 index 0000000..fb99a9d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiOrderPayService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.QimaiOrderPay; +import com.jwsaas.service.BaseService; + +/** + * 企迈订单支付信息数据接口 + */ +public interface QimaiOrderPayService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiOrderService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiOrderService.java new file mode 100644 index 0000000..63e6aad --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiOrderService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.QimaiOrder; +import com.jwsaas.service.BaseService; + +/** + * 企迈订单表数据接口 + */ +public interface QimaiOrderService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductAttributeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductAttributeService.java new file mode 100644 index 0000000..18ceeb2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductAttributeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.QimaiProductAttribute; +import com.jwsaas.service.BaseService; + +/** + * 企迈商品属性数据接口 + */ +public interface QimaiProductAttributeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductCategoryService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductCategoryService.java new file mode 100644 index 0000000..94d937d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductCategoryService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.QimaiProductCategory; +import com.jwsaas.service.BaseService; + +/** + * 企迈商品分类数据接口 + */ +public interface QimaiProductCategoryService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductChargeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductChargeService.java new file mode 100644 index 0000000..7b73ae8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductChargeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.QimaiProductCharge; +import com.jwsaas.service.BaseService; + +/** + * 企迈商品加料信息数据接口 + */ +public interface QimaiProductChargeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductService.java new file mode 100644 index 0000000..2f023f2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.QimaiProduct; +import com.jwsaas.service.BaseService; + +/** + * 企迈商品信息数据接口 + */ +public interface QimaiProductService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductSpecService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductSpecService.java new file mode 100644 index 0000000..80a157f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductSpecService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.QimaiProductSpec; +import com.jwsaas.service.BaseService; + +/** + * 企迈商品规格信息数据接口 + */ +public interface QimaiProductSpecService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductTemplateDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductTemplateDetailService.java new file mode 100644 index 0000000..e06ce70 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductTemplateDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.QimaiProductTemplateDetail; +import com.jwsaas.service.BaseService; + +/** + * 企迈小程序商品模板明细数据接口 + */ +public interface QimaiProductTemplateDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductTemplateService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductTemplateService.java new file mode 100644 index 0000000..d8d8e89 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductTemplateService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.QimaiProductTemplate; +import com.jwsaas.service.BaseService; + +/** + * 企迈小程序商品模板数据接口 + */ +public interface QimaiProductTemplateService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductTemplateStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductTemplateStoreService.java new file mode 100644 index 0000000..d4da523 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiProductTemplateStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.QimaiProductTemplateStore; +import com.jwsaas.service.BaseService; + +/** + * 企迈小程序商品模板门店明细数据接口 + */ +public interface QimaiProductTemplateStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiStoreLableService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiStoreLableService.java new file mode 100644 index 0000000..4b4527a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiStoreLableService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.QimaiStoreLable; +import com.jwsaas.service.BaseService; + +/** + * 企迈门店标签数据接口 + */ +public interface QimaiStoreLableService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiStoreProductService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiStoreProductService.java new file mode 100644 index 0000000..e9f53b0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiStoreProductService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.QimaiStoreProduct; +import com.jwsaas.service.BaseService; + +/** + * 企迈门店商品表数据接口 + */ +public interface QimaiStoreProductService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiStoreService.java new file mode 100644 index 0000000..14e5d21 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.QimaiStore; +import com.jwsaas.service.BaseService; + +/** + * 企迈门店表数据接口 + */ +public interface QimaiStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiSuitDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiSuitDetailService.java new file mode 100644 index 0000000..3d8d5e5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/QimaiSuitDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.QimaiSuitDetail; +import com.jwsaas.service.BaseService; + +/** + * 企迈套餐明细信息数据接口 + */ +public interface QimaiSuitDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ReceiveDifferenceDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ReceiveDifferenceDetailService.java new file mode 100644 index 0000000..ca1052c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ReceiveDifferenceDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ReceiveDifferenceDetail; +import com.jwsaas.service.BaseService; + +/** + * 收货差异明细数据接口 + */ +public interface ReceiveDifferenceDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ReceiveDifferenceTicketLogService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ReceiveDifferenceTicketLogService.java new file mode 100644 index 0000000..df8ca4d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ReceiveDifferenceTicketLogService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ReceiveDifferenceTicketLog; +import com.jwsaas.service.BaseService; + +/** + * 配送差异单操作记录数据接口 + */ +public interface ReceiveDifferenceTicketLogService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ReceiveDifferenceTicketPayService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ReceiveDifferenceTicketPayService.java new file mode 100644 index 0000000..3143a45 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ReceiveDifferenceTicketPayService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ReceiveDifferenceTicketPay; +import com.jwsaas.service.BaseService; + +/** + * 配送差异金额明细数据接口 + */ +public interface ReceiveDifferenceTicketPayService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ReceiveDifferenceTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ReceiveDifferenceTicketService.java new file mode 100644 index 0000000..0953459 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ReceiveDifferenceTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ReceiveDifferenceTicket; +import com.jwsaas.service.BaseService; + +/** + * 配送收货差异单数据接口 + */ +public interface ReceiveDifferenceTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ReceiveGoodsDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ReceiveGoodsDetailService.java new file mode 100644 index 0000000..78a9110 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ReceiveGoodsDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ReceiveGoodsDetail; +import com.jwsaas.service.BaseService; + +/** + * 收货单明细数据接口 + */ +public interface ReceiveGoodsDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ReceiveGoodsTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ReceiveGoodsTicketService.java new file mode 100644 index 0000000..15bca0f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ReceiveGoodsTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ReceiveGoodsTicket; +import com.jwsaas.service.BaseService; + +/** + * 配送收货单数据接口 + */ +public interface ReceiveGoodsTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/RechargeParameterService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/RechargeParameterService.java new file mode 100644 index 0000000..9286144 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/RechargeParameterService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.RechargeParameter; +import com.jwsaas.service.BaseService; + +/** + * 充值账户方案数据接口 + */ +public interface RechargeParameterService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/RechargeParameterStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/RechargeParameterStoreService.java new file mode 100644 index 0000000..bd60756 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/RechargeParameterStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.RechargeParameterStore; +import com.jwsaas.service.BaseService; + +/** + * 充值账户门店关联数据接口 + */ +public interface RechargeParameterStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SaleClearService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SaleClearService.java new file mode 100644 index 0000000..fb2c750 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SaleClearService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.SaleClear; +import com.jwsaas.service.BaseService; + +/** + * 门店估清表数据接口 + */ +public interface SaleClearService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ServerDataVersionService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ServerDataVersionService.java new file mode 100644 index 0000000..c73ac60 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ServerDataVersionService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ServerDataVersion; +import com.jwsaas.service.BaseService; + +/** + * 数据版本数据接口 + */ +public interface ServerDataVersionService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ShopMeituanOrderExtraService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ShopMeituanOrderExtraService.java new file mode 100644 index 0000000..2668cea --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ShopMeituanOrderExtraService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ShopMeituanOrderExtra; +import com.jwsaas.service.BaseService; + +/** + * 美团商家订单优惠信息数据接口 + */ +public interface ShopMeituanOrderExtraService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ShopMeituanOrderItemService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ShopMeituanOrderItemService.java new file mode 100644 index 0000000..83af6ee --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ShopMeituanOrderItemService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ShopMeituanOrderItem; +import com.jwsaas.service.BaseService; + +/** + * 美团商家订单明细表数据接口 + */ +public interface ShopMeituanOrderItemService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ShopMeituanOrderService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ShopMeituanOrderService.java new file mode 100644 index 0000000..1c5f841 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ShopMeituanOrderService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ShopMeituanOrder; +import com.jwsaas.service.BaseService; + +/** + * 美团商家订单表数据接口 + */ +public interface ShopMeituanOrderService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SplitFoodAccount2Service.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SplitFoodAccount2Service.java new file mode 100644 index 0000000..8044e48 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SplitFoodAccount2Service.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.SplitFoodAccount2; +import com.jwsaas.service.BaseService; + +/** + * 菜品分户账户关联表2数据接口 + */ +public interface SplitFoodAccount2Service extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SplitFoodAccountService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SplitFoodAccountService.java new file mode 100644 index 0000000..b25fb6c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SplitFoodAccountService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.SplitFoodAccount; +import com.jwsaas.service.BaseService; + +/** + * 菜品分户账户关联表数据接口 + */ +public interface SplitFoodAccountService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SplitPayLogService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SplitPayLogService.java new file mode 100644 index 0000000..77d622d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SplitPayLogService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.SplitPayLog; +import com.jwsaas.service.BaseService; + +/** + * 分帐错误日志上传数据接口 + */ +public interface SplitPayLogService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SplitPayResultService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SplitPayResultService.java new file mode 100644 index 0000000..bd620be --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SplitPayResultService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.SplitPayResult; +import com.jwsaas.service.BaseService; + +/** + * 分店分帐结果数据接口 + */ +public interface SplitPayResultService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SplitShopAccountService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SplitShopAccountService.java new file mode 100644 index 0000000..1536f79 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SplitShopAccountService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.SplitShopAccount; +import com.jwsaas.service.BaseService; + +/** + * 店铺分帐户表数据接口 + */ +public interface SplitShopAccountService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SplitShopWithdrawalService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SplitShopWithdrawalService.java new file mode 100644 index 0000000..428c296 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SplitShopWithdrawalService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.SplitShopWithdrawal; +import com.jwsaas.service.BaseService; + +/** + * 分店提现记录表数据接口 + */ +public interface SplitShopWithdrawalService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SplitStorePayService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SplitStorePayService.java new file mode 100644 index 0000000..4101e54 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SplitStorePayService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.SplitStorePay; +import com.jwsaas.service.BaseService; + +/** + * 分店分帐流水数据接口 + */ +public interface SplitStorePayService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StorageService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StorageService.java new file mode 100644 index 0000000..c1ec057 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StorageService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.Storage; +import com.jwsaas.service.BaseService; + +/** + * 总部库位数据接口 + */ +public interface StorageService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StorageStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StorageStoreService.java new file mode 100644 index 0000000..b88b0b3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StorageStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StorageStore; +import com.jwsaas.service.BaseService; + +/** + * 门店仓库关联数据接口 + */ +public interface StorageStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StorageTypeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StorageTypeService.java new file mode 100644 index 0000000..058c9d4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StorageTypeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StorageType; +import com.jwsaas.service.BaseService; + +/** + * 总部库位类型数据接口 + */ +public interface StorageTypeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreAccountDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreAccountDetailService.java new file mode 100644 index 0000000..379d8f4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreAccountDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreAccountDetail; +import com.jwsaas.service.BaseService; + +/** + * 门店余额账户明细数据接口 + */ +public interface StoreAccountDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreAccountRechargeParameterService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreAccountRechargeParameterService.java new file mode 100644 index 0000000..b6e7358 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreAccountRechargeParameterService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreAccountRechargeParameter; +import com.jwsaas.service.BaseService; + +/** + * 门店账户充值参数方案数据接口 + */ +public interface StoreAccountRechargeParameterService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreAccountRechargeRecordService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreAccountRechargeRecordService.java new file mode 100644 index 0000000..54f92a1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreAccountRechargeRecordService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreAccountRechargeRecord; +import com.jwsaas.service.BaseService; + +/** + * 门店账户充值记录数据接口 + */ +public interface StoreAccountRechargeRecordService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreAccountService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreAccountService.java new file mode 100644 index 0000000..271c54b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreAccountService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreAccount; +import com.jwsaas.service.BaseService; + +/** + * 门店余额账户数据接口 + */ +public interface StoreAccountService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreAreaService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreAreaService.java new file mode 100644 index 0000000..99e22ff --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreAreaService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreArea; +import com.jwsaas.service.BaseService; + +/** + * 门店区域数据接口 + */ +public interface StoreAreaService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBrandService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBrandService.java new file mode 100644 index 0000000..e12bfef --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBrandService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreBrand; +import com.jwsaas.service.BaseService; + +/** + * 加盟品牌数据接口 + */ +public interface StoreBrandService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBusinessTicketCheckService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBusinessTicketCheckService.java new file mode 100644 index 0000000..593bc8f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBusinessTicketCheckService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreBusinessTicketCheck; +import com.jwsaas.service.BaseService; + +/** + * 前台销售单上传校验数据接口 + */ +public interface StoreBusinessTicketCheckService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBusinessTicketDaysummaryService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBusinessTicketDaysummaryService.java new file mode 100644 index 0000000..758b621 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBusinessTicketDaysummaryService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreBusinessTicketDaysummary; +import com.jwsaas.service.BaseService; + +/** + * 前台销售日汇总数据接口 + */ +public interface StoreBusinessTicketDaysummaryService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBusinessTicketDeliveryService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBusinessTicketDeliveryService.java new file mode 100644 index 0000000..915f8b6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBusinessTicketDeliveryService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreBusinessTicketDelivery; +import com.jwsaas.service.BaseService; + +/** + * 前台销售单外送信息数据接口 + */ +public interface StoreBusinessTicketDeliveryService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBusinessTicketInfoDaysummaryService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBusinessTicketInfoDaysummaryService.java new file mode 100644 index 0000000..1c6db53 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBusinessTicketInfoDaysummaryService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreBusinessTicketInfoDaysummary; +import com.jwsaas.service.BaseService; + +/** + * 前台销售单优惠日汇总数据接口 + */ +public interface StoreBusinessTicketInfoDaysummaryService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBusinessTicketInfoService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBusinessTicketInfoService.java new file mode 100644 index 0000000..4b355f6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBusinessTicketInfoService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreBusinessTicketInfo; +import com.jwsaas.service.BaseService; + +/** + * 前台销售单优惠明细数据接口 + */ +public interface StoreBusinessTicketInfoService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBusinessTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBusinessTicketService.java new file mode 100644 index 0000000..dbb05f4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBusinessTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreBusinessTicket; +import com.jwsaas.service.BaseService; + +/** + * 前台销售单数据接口 + */ +public interface StoreBusinessTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBusinessTicketTableService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBusinessTicketTableService.java new file mode 100644 index 0000000..f86bbab --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreBusinessTicketTableService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreBusinessTicketTable; +import com.jwsaas.service.BaseService; + +/** + * 前台销售单桌台信息数据接口 + */ +public interface StoreBusinessTicketTableService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreCostManageLogService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreCostManageLogService.java new file mode 100644 index 0000000..f70902d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreCostManageLogService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreCostManageLog; +import com.jwsaas.service.BaseService; + +/** + * 门店费用扣款操作记录数据接口 + */ +public interface StoreCostManageLogService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreCostManageService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreCostManageService.java new file mode 100644 index 0000000..06575ea --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreCostManageService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreCostManage; +import com.jwsaas.service.BaseService; + +/** + * 门店费用管理数据接口 + */ +public interface StoreCostManageService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreCostManageStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreCostManageStoreService.java new file mode 100644 index 0000000..86c7058 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreCostManageStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreCostManageStore; +import com.jwsaas.service.BaseService; + +/** + * 扣款费用门店关联数据接口 + */ +public interface StoreCostManageStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreCostRevenueService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreCostRevenueService.java new file mode 100644 index 0000000..03a515c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreCostRevenueService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreCostRevenue; +import com.jwsaas.service.BaseService; + +/** + * 非营业收入支出登记数据接口 + */ +public interface StoreCostRevenueService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreDeliveryOrderItemService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreDeliveryOrderItemService.java new file mode 100644 index 0000000..489e96d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreDeliveryOrderItemService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreDeliveryOrderItem; +import com.jwsaas.service.BaseService; + +/** + * 前台外送单明细数据接口 + */ +public interface StoreDeliveryOrderItemService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreDeliveryOrderService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreDeliveryOrderService.java new file mode 100644 index 0000000..fc32d39 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreDeliveryOrderService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreDeliveryOrder; +import com.jwsaas.service.BaseService; + +/** + * 前台外送单数据接口 + */ +public interface StoreDeliveryOrderService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreDepartmentService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreDepartmentService.java new file mode 100644 index 0000000..84b1b57 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreDepartmentService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreDepartment; +import com.jwsaas.service.BaseService; + +/** + * 门店部门数据接口 + */ +public interface StoreDepartmentService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreDispatchAccountLogService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreDispatchAccountLogService.java new file mode 100644 index 0000000..faba2c7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreDispatchAccountLogService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreDispatchAccountLog; +import com.jwsaas.service.BaseService; + +/** + * 配送结算账号金额变动明细数据接口 + */ +public interface StoreDispatchAccountLogService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreDispatchAccountService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreDispatchAccountService.java new file mode 100644 index 0000000..50ded7a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreDispatchAccountService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreDispatchAccount; +import com.jwsaas.service.BaseService; + +/** + * 配送结算账号数据接口 + */ +public interface StoreDispatchAccountService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreEnchashmentRecordLogService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreEnchashmentRecordLogService.java new file mode 100644 index 0000000..2ba15e1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreEnchashmentRecordLogService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreEnchashmentRecordLog; +import com.jwsaas.service.BaseService; + +/** + * 门店余额提现操作记录数据接口 + */ +public interface StoreEnchashmentRecordLogService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreEnchashmentRecordService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreEnchashmentRecordService.java new file mode 100644 index 0000000..b73cf58 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreEnchashmentRecordService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreEnchashmentRecord; +import com.jwsaas.service.BaseService; + +/** + * 门店余额提现记录数据接口 + */ +public interface StoreEnchashmentRecordService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreFeeCutLogService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreFeeCutLogService.java new file mode 100644 index 0000000..7718c19 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreFeeCutLogService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreFeeCutLog; +import com.jwsaas.service.BaseService; + +/** + * 门店费用扣款记录数据接口 + */ +public interface StoreFeeCutLogService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreHandoverDetailPartService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreHandoverDetailPartService.java new file mode 100644 index 0000000..3bf2ec4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreHandoverDetailPartService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreHandoverDetailPart; +import com.jwsaas.service.BaseService; + +/** + * 门店交班明细表(杯子/碗数)数据接口 + */ +public interface StoreHandoverDetailPartService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreHandoverDetailPayService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreHandoverDetailPayService.java new file mode 100644 index 0000000..a46f556 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreHandoverDetailPayService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreHandoverDetailPay; +import com.jwsaas.service.BaseService; + +/** + * 门店交班支付方式明细表数据接口 + */ +public interface StoreHandoverDetailPayService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreHandoverDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreHandoverDetailService.java new file mode 100644 index 0000000..cafe195 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreHandoverDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreHandoverDetail; +import com.jwsaas.service.BaseService; + +/** + * 门店交班明细表数据接口 + */ +public interface StoreHandoverDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreHandoverService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreHandoverService.java new file mode 100644 index 0000000..2ae0996 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreHandoverService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreHandover; +import com.jwsaas.service.BaseService; + +/** + * 门店交班主表数据接口 + */ +public interface StoreHandoverService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreLoginLogService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreLoginLogService.java new file mode 100644 index 0000000..662bbef --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreLoginLogService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreLoginLog; +import com.jwsaas.service.BaseService; + +/** + * 门店登录日志数据接口 + */ +public interface StoreLoginLogService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreOperationLogService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreOperationLogService.java new file mode 100644 index 0000000..a60ae6d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreOperationLogService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreOperationLog; +import com.jwsaas.service.BaseService; + +/** + * 前台操作日志记录数据接口 + */ +public interface StoreOperationLogService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreOrderProductDaysummaryService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreOrderProductDaysummaryService.java new file mode 100644 index 0000000..afdacf3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreOrderProductDaysummaryService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreOrderProductDaysummary; +import com.jwsaas.service.BaseService; + +/** + * 前台单品销售日汇总数据接口 + */ +public interface StoreOrderProductDaysummaryService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreOrderProductInfoDaysummaryService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreOrderProductInfoDaysummaryService.java new file mode 100644 index 0000000..050bea2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreOrderProductInfoDaysummaryService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreOrderProductInfoDaysummary; +import com.jwsaas.service.BaseService; + +/** + * 前台产品销售优惠日汇总数据接口 + */ +public interface StoreOrderProductInfoDaysummaryService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreOrderProductInfoService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreOrderProductInfoService.java new file mode 100644 index 0000000..92a7cc0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreOrderProductInfoService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreOrderProductInfo; +import com.jwsaas.service.BaseService; + +/** + * 门店产品销售记录优惠明细数据接口 + */ +public interface StoreOrderProductInfoService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreOrderProductMakeDaysummaryService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreOrderProductMakeDaysummaryService.java new file mode 100644 index 0000000..eff21d8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreOrderProductMakeDaysummaryService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreOrderProductMakeDaysummary; +import com.jwsaas.service.BaseService; + +/** + * 前台销售单做法日汇总数据接口 + */ +public interface StoreOrderProductMakeDaysummaryService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreOrderProductMakeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreOrderProductMakeService.java new file mode 100644 index 0000000..b2a6c84 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreOrderProductMakeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreOrderProductMake; +import com.jwsaas.service.BaseService; + +/** + * 门店销售单做法数据接口 + */ +public interface StoreOrderProductMakeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreOrderProductService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreOrderProductService.java new file mode 100644 index 0000000..0aa7d5a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreOrderProductService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreOrderProduct; +import com.jwsaas.service.BaseService; + +/** + * 门店产品销售记录数据接口 + */ +public interface StoreOrderProductService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StorePayDaysummaryService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StorePayDaysummaryService.java new file mode 100644 index 0000000..f4a1056 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StorePayDaysummaryService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StorePayDaysummary; +import com.jwsaas.service.BaseService; + +/** + * 前台支付日汇总数据接口 + */ +public interface StorePayDaysummaryService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StorePayService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StorePayService.java new file mode 100644 index 0000000..6a62126 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StorePayService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StorePay; +import com.jwsaas.service.BaseService; + +/** + * 门店收银流水数据接口 + */ +public interface StorePayService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreProductSaleStockService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreProductSaleStockService.java new file mode 100644 index 0000000..881f9c7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreProductSaleStockService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreProductSaleStock; +import com.jwsaas.service.BaseService; + +/** + * 门店商品规格库存数据接口 + */ +public interface StoreProductSaleStockService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreProductService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreProductService.java new file mode 100644 index 0000000..1dcf8d9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreProductService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreProduct; +import com.jwsaas.service.BaseService; + +/** + * 门店商品关联表数据接口 + */ +public interface StoreProductService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreService.java new file mode 100644 index 0000000..4ae2164 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.Store; +import com.jwsaas.service.BaseService; + +/** + * 门店信息数据接口 + */ +public interface StoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStockCheckTemplateDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStockCheckTemplateDetailService.java new file mode 100644 index 0000000..fccf731 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStockCheckTemplateDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreStockCheckTemplateDetail; +import com.jwsaas.service.BaseService; + +/** + * 总部门店库存盘点模块明细数据接口 + */ +public interface StoreStockCheckTemplateDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStockCheckTemplateService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStockCheckTemplateService.java new file mode 100644 index 0000000..ba7e17e --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStockCheckTemplateService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreStockCheckTemplate; +import com.jwsaas.service.BaseService; + +/** + * 总部门店库存盘点模板数据接口 + */ +public interface StoreStockCheckTemplateService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStockCheckTemplateStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStockCheckTemplateStoreService.java new file mode 100644 index 0000000..7437044 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStockCheckTemplateStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreStockCheckTemplateStore; +import com.jwsaas.service.BaseService; + +/** + * 总部门店库存盘点模板门店关联数据接口 + */ +public interface StoreStockCheckTemplateStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStockCheckTicketDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStockCheckTicketDetailService.java new file mode 100644 index 0000000..81a057d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStockCheckTicketDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreStockCheckTicketDetail; +import com.jwsaas.service.BaseService; + +/** + * 门店库存盘点单明细数据接口 + */ +public interface StoreStockCheckTicketDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStockCheckTicketLogService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStockCheckTicketLogService.java new file mode 100644 index 0000000..31c6fd2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStockCheckTicketLogService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreStockCheckTicketLog; +import com.jwsaas.service.BaseService; + +/** + * 门店库存盘点单操作记录数据接口 + */ +public interface StoreStockCheckTicketLogService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStockCheckTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStockCheckTicketService.java new file mode 100644 index 0000000..1d0be99 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStockCheckTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreStockCheckTicket; +import com.jwsaas.service.BaseService; + +/** + * 门店库存盘点单数据接口 + */ +public interface StoreStockCheckTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStorageOutTicketDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStorageOutTicketDetailService.java new file mode 100644 index 0000000..2ba09c4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStorageOutTicketDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreStorageOutTicketDetail; +import com.jwsaas.service.BaseService; + +/** + * 门店出库单明细数据接口 + */ +public interface StoreStorageOutTicketDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStorageOutTicketLogService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStorageOutTicketLogService.java new file mode 100644 index 0000000..b80f5aa --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStorageOutTicketLogService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreStorageOutTicketLog; +import com.jwsaas.service.BaseService; + +/** + * 门店出库单操作记录数据接口 + */ +public interface StoreStorageOutTicketLogService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStorageOutTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStorageOutTicketService.java new file mode 100644 index 0000000..39ed818 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStorageOutTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreStorageOutTicket; +import com.jwsaas.service.BaseService; + +/** + * 门店出库单数据接口 + */ +public interface StoreStorageOutTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStorageService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStorageService.java new file mode 100644 index 0000000..249d81a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStorageService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreStorage; +import com.jwsaas.service.BaseService; + +/** + * 门店仓库数据接口 + */ +public interface StoreStorageService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStorageTicketDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStorageTicketDetailService.java new file mode 100644 index 0000000..4a95363 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStorageTicketDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreStorageTicketDetail; +import com.jwsaas.service.BaseService; + +/** + * 门店入库单明细数据接口 + */ +public interface StoreStorageTicketDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStorageTicketLogService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStorageTicketLogService.java new file mode 100644 index 0000000..774e158 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStorageTicketLogService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreStorageTicketLog; +import com.jwsaas.service.BaseService; + +/** + * 门店入库单操作记录数据接口 + */ +public interface StoreStorageTicketLogService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStorageTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStorageTicketService.java new file mode 100644 index 0000000..e405cf7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreStorageTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreStorageTicket; +import com.jwsaas.service.BaseService; + +/** + * 门店入库单数据接口 + */ +public interface StoreStorageTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreTypeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreTypeService.java new file mode 100644 index 0000000..29738d1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreTypeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreType; +import com.jwsaas.service.BaseService; + +/** + * 门店类型数据接口 + */ +public interface StoreTypeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreWorkerExtService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreWorkerExtService.java new file mode 100644 index 0000000..fc5abda --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreWorkerExtService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreWorkerExt; +import com.jwsaas.service.BaseService; + +/** + * 门店员工扩展信息数据接口 + */ +public interface StoreWorkerExtService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreWorkerRoleService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreWorkerRoleService.java new file mode 100644 index 0000000..6bcb5f7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreWorkerRoleService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreWorkerRole; +import com.jwsaas.service.BaseService; + +/** + * 员工前台角色表数据接口 + */ +public interface StoreWorkerRoleService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreWorkerService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreWorkerService.java new file mode 100644 index 0000000..a6ebad5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoreWorkerService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoreWorker; +import com.jwsaas.service.BaseService; + +/** + * 门店员工管理数据接口 + */ +public interface StoreWorkerService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoretableAreaService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoretableAreaService.java new file mode 100644 index 0000000..3013224 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoretableAreaService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoretableArea; +import com.jwsaas.service.BaseService; + +/** + * 餐桌区域数据接口 + */ +public interface StoretableAreaService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoretableService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoretableService.java new file mode 100644 index 0000000..9e30534 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoretableService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.Storetable; +import com.jwsaas.service.BaseService; + +/** + * 餐桌资料数据接口 + */ +public interface StoretableService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoretableTypeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoretableTypeService.java new file mode 100644 index 0000000..c87748a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/StoretableTypeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.StoretableType; +import com.jwsaas.service.BaseService; + +/** + * 餐桌类型数据接口 + */ +public interface StoretableTypeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SupplierService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SupplierService.java new file mode 100644 index 0000000..5061319 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SupplierService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.Supplier; +import com.jwsaas.service.BaseService; + +/** + * 供应商信息数据接口 + */ +public interface SupplierService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SupplierTypeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SupplierTypeService.java new file mode 100644 index 0000000..c6b6cb7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/SupplierTypeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.SupplierType; +import com.jwsaas.service.BaseService; + +/** + * 供应商类别数据接口 + */ +public interface SupplierTypeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/TaskScheduleService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/TaskScheduleService.java new file mode 100644 index 0000000..ac62a8c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/TaskScheduleService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.TaskSchedule; +import com.jwsaas.service.BaseService; + +/** + * 任务管理数据接口 + */ +public interface TaskScheduleService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ThuselevelTicketMaterialService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ThuselevelTicketMaterialService.java new file mode 100644 index 0000000..84e5c34 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ThuselevelTicketMaterialService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ThuselevelTicketMaterial; +import com.jwsaas.service.BaseService; + +/** + * 万元用量原料数据接口 + */ +public interface ThuselevelTicketMaterialService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ThuselevelTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ThuselevelTicketService.java new file mode 100644 index 0000000..883a8c9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ThuselevelTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ThuselevelTicket; +import com.jwsaas.service.BaseService; + +/** + * 万元用量管理数据接口 + */ +public interface ThuselevelTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ThuselevelTicketStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ThuselevelTicketStoreService.java new file mode 100644 index 0000000..88d6c5b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/ThuselevelTicketStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.ThuselevelTicketStore; +import com.jwsaas.service.BaseService; + +/** + * 万元用量单门店数据接口 + */ +public interface ThuselevelTicketStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/TicketPrintSettingService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/TicketPrintSettingService.java new file mode 100644 index 0000000..6301584 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/TicketPrintSettingService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.TicketPrintSetting; +import com.jwsaas.service.BaseService; + +/** + * 单据打印设置数据接口 + */ +public interface TicketPrintSettingService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/TidianOrderDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/TidianOrderDetailService.java new file mode 100644 index 0000000..9d2b9db --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/TidianOrderDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.TidianOrderDetail; +import com.jwsaas.service.BaseService; + +/** + * 提点订单详情数据接口 + */ +public interface TidianOrderDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/TidianOrderPayService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/TidianOrderPayService.java new file mode 100644 index 0000000..08f3775 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/TidianOrderPayService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.TidianOrderPay; +import com.jwsaas.service.BaseService; + +/** + * 提点订单支付数据接口 + */ +public interface TidianOrderPayService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/TidianOrderService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/TidianOrderService.java new file mode 100644 index 0000000..5873f1a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/TidianOrderService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.TidianOrder; +import com.jwsaas.service.BaseService; + +/** + * 提点订单表数据接口 + */ +public interface TidianOrderService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/TidianStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/TidianStoreService.java new file mode 100644 index 0000000..9b2c59f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/TidianStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.TidianStore; +import com.jwsaas.service.BaseService; + +/** + * 提点门店表数据接口 + */ +public interface TidianStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VisitorAddressService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VisitorAddressService.java new file mode 100644 index 0000000..138f018 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VisitorAddressService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.VisitorAddress; +import com.jwsaas.service.BaseService; + +/** + * 熟客常用地址数据接口 + */ +public interface VisitorAddressService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VisitorService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VisitorService.java new file mode 100644 index 0000000..a125541 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VisitorService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.Visitor; +import com.jwsaas.service.BaseService; + +/** + * 熟客信息数据接口 + */ +public interface VisitorService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VisitorTagService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VisitorTagService.java new file mode 100644 index 0000000..f61c15b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VisitorTagService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.VisitorTag; +import com.jwsaas.service.BaseService; + +/** + * 熟客标签数据接口 + */ +public interface VisitorTagService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposAdPictureService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposAdPictureService.java new file mode 100644 index 0000000..6632a75 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposAdPictureService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.VposAdPicture; +import com.jwsaas.service.BaseService; + +/** + * 广告图片数据接口 + */ +public interface VposAdPictureService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposCcbfzAccountService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposCcbfzAccountService.java new file mode 100644 index 0000000..83733c9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposCcbfzAccountService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.VposCcbfzAccount; +import com.jwsaas.service.BaseService; + +/** + * 档口商户建行分账账户信息数据接口 + */ +public interface VposCcbfzAccountService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposProductEvaluateImageService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposProductEvaluateImageService.java new file mode 100644 index 0000000..0fa1caa --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposProductEvaluateImageService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.VposProductEvaluateImage; +import com.jwsaas.service.BaseService; + +/** + * 商品评价图片表数据接口 + */ +public interface VposProductEvaluateImageService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposProductEvaluateService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposProductEvaluateService.java new file mode 100644 index 0000000..975ede2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposProductEvaluateService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.VposProductEvaluate; +import com.jwsaas.service.BaseService; + +/** + * 商品评价表数据接口 + */ +public interface VposProductEvaluateService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposStoreBusinessTicketInfoService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposStoreBusinessTicketInfoService.java new file mode 100644 index 0000000..a3c646d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposStoreBusinessTicketInfoService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.VposStoreBusinessTicketInfo; +import com.jwsaas.service.BaseService; + +/** + * 移动端销售单优惠明细数据接口 + */ +public interface VposStoreBusinessTicketInfoService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposStoreBusinessTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposStoreBusinessTicketService.java new file mode 100644 index 0000000..12ea8e1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposStoreBusinessTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.VposStoreBusinessTicket; +import com.jwsaas.service.BaseService; + +/** + * 移动端销售单数据接口 + */ +public interface VposStoreBusinessTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposStoreOrderProductInfoService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposStoreOrderProductInfoService.java new file mode 100644 index 0000000..0942e2f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposStoreOrderProductInfoService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.VposStoreOrderProductInfo; +import com.jwsaas.service.BaseService; + +/** + * 移动端产品销售记录优惠明细数据接口 + */ +public interface VposStoreOrderProductInfoService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposStoreOrderProductMakeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposStoreOrderProductMakeService.java new file mode 100644 index 0000000..5e6b7fb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposStoreOrderProductMakeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.VposStoreOrderProductMake; +import com.jwsaas.service.BaseService; + +/** + * 移动端销售单做法数据接口 + */ +public interface VposStoreOrderProductMakeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposStoreOrderProductService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposStoreOrderProductService.java new file mode 100644 index 0000000..3ba613c --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposStoreOrderProductService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.VposStoreOrderProduct; +import com.jwsaas.service.BaseService; + +/** + * 移动端产品销售记录数据接口 + */ +public interface VposStoreOrderProductService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposStorePayService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposStorePayService.java new file mode 100644 index 0000000..b4d470a --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposStorePayService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.VposStorePay; +import com.jwsaas.service.BaseService; + +/** + * 移动端收银流水数据接口 + */ +public interface VposStorePayService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposUserSeriesService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposUserSeriesService.java new file mode 100644 index 0000000..9a63bf9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposUserSeriesService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.VposUserSeries; +import com.jwsaas.service.BaseService; + +/** + * 档口商户分类关联数据接口 + */ +public interface VposUserSeriesService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposUserService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposUserService.java new file mode 100644 index 0000000..417f200 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/VposUserService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.VposUser; +import com.jwsaas.service.BaseService; + +/** + * 档口商户信息数据接口 + */ +public interface VposUserService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WorkerStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WorkerStoreService.java new file mode 100644 index 0000000..4b51312 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WorkerStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WorkerStore; +import com.jwsaas.service.BaseService; + +/** + * 员工可登陆门店数据接口 + */ +public interface WorkerStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxAdPictureService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxAdPictureService.java new file mode 100644 index 0000000..1331fa0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxAdPictureService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxAdPicture; +import com.jwsaas.service.BaseService; + +/** + * 微信广告图片数据接口 + */ +public interface WxAdPictureService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxAdjustPriceGoodsService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxAdjustPriceGoodsService.java new file mode 100644 index 0000000..0523136 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxAdjustPriceGoodsService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxAdjustPriceGoods; +import com.jwsaas.service.BaseService; + +/** + * 微信调价单商品明细数据接口 + */ +public interface WxAdjustPriceGoodsService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxAdjustPriceStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxAdjustPriceStoreService.java new file mode 100644 index 0000000..59dd5ec --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxAdjustPriceStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxAdjustPriceStore; +import com.jwsaas.service.BaseService; + +/** + * 微信调价单门店明细数据接口 + */ +public interface WxAdjustPriceStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxAdjustPriceTicketService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxAdjustPriceTicketService.java new file mode 100644 index 0000000..b305129 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxAdjustPriceTicketService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxAdjustPriceTicket; +import com.jwsaas.service.BaseService; + +/** + * 微信商品调价单数据接口 + */ +public interface WxAdjustPriceTicketService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxGoodsCategoryService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxGoodsCategoryService.java new file mode 100644 index 0000000..85aed32 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxGoodsCategoryService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxGoodsCategory; +import com.jwsaas.service.BaseService; + +/** + * 微信商品分类数据接口 + */ +public interface WxGoodsCategoryService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxGoodsMakeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxGoodsMakeService.java new file mode 100644 index 0000000..feddb2f --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxGoodsMakeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxGoodsMake; +import com.jwsaas.service.BaseService; + +/** + * 微信商品做法关联数据接口 + */ +public interface WxGoodsMakeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxGoodsService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxGoodsService.java new file mode 100644 index 0000000..8be8c4d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxGoodsService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxGoods; +import com.jwsaas.service.BaseService; + +/** + * 微信商品信息数据接口 + */ +public interface WxGoodsService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxGoodsTemplateDetailService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxGoodsTemplateDetailService.java new file mode 100644 index 0000000..8b99d42 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxGoodsTemplateDetailService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxGoodsTemplateDetail; +import com.jwsaas.service.BaseService; + +/** + * 微信商品模板明细数据接口 + */ +public interface WxGoodsTemplateDetailService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxGoodsTemplateService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxGoodsTemplateService.java new file mode 100644 index 0000000..123d849 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxGoodsTemplateService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxGoodsTemplate; +import com.jwsaas.service.BaseService; + +/** + * 微信商品模板数据接口 + */ +public interface WxGoodsTemplateService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxGoodsTemplateStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxGoodsTemplateStoreService.java new file mode 100644 index 0000000..26bf1f3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxGoodsTemplateStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxGoodsTemplateStore; +import com.jwsaas.service.BaseService; + +/** + * 微信商品模板门店明细数据接口 + */ +public interface WxGoodsTemplateStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxPaymentParameterService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxPaymentParameterService.java new file mode 100644 index 0000000..5c86d66 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxPaymentParameterService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxPaymentParameter; +import com.jwsaas.service.BaseService; + +/** + * 微信点餐支付参数方案数据接口 + */ +public interface WxPaymentParameterService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxPaymentParameterStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxPaymentParameterStoreService.java new file mode 100644 index 0000000..b818776 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxPaymentParameterStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxPaymentParameterStore; +import com.jwsaas.service.BaseService; + +/** + * 微信点餐支付参数门店关联数据接口 + */ +public interface WxPaymentParameterStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxQrcodeSettingService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxQrcodeSettingService.java new file mode 100644 index 0000000..857a73d --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxQrcodeSettingService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxQrcodeSetting; +import com.jwsaas.service.BaseService; + +/** + * 微信二维码图片设置数据接口 + */ +public interface WxQrcodeSettingService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxSalesDiscountInfoService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxSalesDiscountInfoService.java new file mode 100644 index 0000000..c660df4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxSalesDiscountInfoService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxSalesDiscountInfo; +import com.jwsaas.service.BaseService; + +/** + * 微信销售订单优惠明细数据接口 + */ +public interface WxSalesDiscountInfoService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxSalesOrderItemMakeService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxSalesOrderItemMakeService.java new file mode 100644 index 0000000..08c8825 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxSalesOrderItemMakeService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxSalesOrderItemMake; +import com.jwsaas.service.BaseService; + +/** + * 微信销售订单明细项做法信息数据接口 + */ +public interface WxSalesOrderItemMakeService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxSalesOrderItemPromoService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxSalesOrderItemPromoService.java new file mode 100644 index 0000000..be9bd60 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxSalesOrderItemPromoService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxSalesOrderItemPromo; +import com.jwsaas.service.BaseService; + +/** + * 微信销售订单明细项优惠信息数据接口 + */ +public interface WxSalesOrderItemPromoService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxSalesOrderItemService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxSalesOrderItemService.java new file mode 100644 index 0000000..3080162 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxSalesOrderItemService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxSalesOrderItem; +import com.jwsaas.service.BaseService; + +/** + * 微信销售订单明细数据接口 + */ +public interface WxSalesOrderItemService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxSalesOrderLogService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxSalesOrderLogService.java new file mode 100644 index 0000000..d6018cb --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxSalesOrderLogService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxSalesOrderLog; +import com.jwsaas.service.BaseService; + +/** + * 微信销售订单操作记录数据接口 + */ +public interface WxSalesOrderLogService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxSalesOrderService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxSalesOrderService.java new file mode 100644 index 0000000..3f920e8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxSalesOrderService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxSalesOrder; +import com.jwsaas.service.BaseService; + +/** + * 微信销售订单数据接口 + */ +public interface WxSalesOrderService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxSalesPaymentService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxSalesPaymentService.java new file mode 100644 index 0000000..409158b --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxSalesPaymentService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxSalesPayment; +import com.jwsaas.service.BaseService; + +/** + * 微信订单付款信息数据接口 + */ +public interface WxSalesPaymentService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxStoreGoodsService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxStoreGoodsService.java new file mode 100644 index 0000000..f41b9c7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxStoreGoodsService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxStoreGoods; +import com.jwsaas.service.BaseService; + +/** + * 微信门店商品关联表数据接口 + */ +public interface WxStoreGoodsService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxStoreService.java new file mode 100644 index 0000000..7e21ec5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxStore; +import com.jwsaas.service.BaseService; + +/** + * 微信门店信息数据接口 + */ +public interface WxStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxdcDistributionAddressService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxdcDistributionAddressService.java new file mode 100644 index 0000000..d7d7bea --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxdcDistributionAddressService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxdcDistributionAddress; +import com.jwsaas.service.BaseService; + +/** + * 微信点餐饮配送地址数据接口 + */ +public interface WxdcDistributionAddressService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxdcRechargeOrderService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxdcRechargeOrderService.java new file mode 100644 index 0000000..6c2a207 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/WxdcRechargeOrderService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.WxdcRechargeOrder; +import com.jwsaas.service.BaseService; + +/** + * 微信点餐会员卡充值订单数据接口 + */ +public interface WxdcRechargeOrderService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/YunposSetService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/YunposSetService.java new file mode 100644 index 0000000..53d35c3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/YunposSetService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.YunposSet; +import com.jwsaas.service.BaseService; + +/** + * 门店云参数设置数据接口 + */ +public interface YunposSetService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/com.jwsaas.service.food/YunposSetStoreService.java b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/YunposSetStoreService.java new file mode 100644 index 0000000..fd81848 --- /dev/null +++ b/food-pdm-tools/src/generate/food/com.jwsaas.service.food/YunposSetStoreService.java @@ -0,0 +1,11 @@ +package com.jwsaas.service.food; + +import com.jwsaas.entity.food.YunposSetStore; +import com.jwsaas.service.BaseService; + +/** + * 门店云参数设置门店关联数据接口 + */ +public interface YunposSetStoreService extends BaseService { + +} diff --git a/food-pdm-tools/src/generate/food/mybatis/AdjustPriceProductMapper.xml b/food-pdm-tools/src/generate/food/mybatis/AdjustPriceProductMapper.xml new file mode 100644 index 0000000..4def3dc --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/AdjustPriceProductMapper.xml @@ -0,0 +1,152 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`productId`,`specId`,`oldPrice`,`oldMinPrice`,`oldMemberPrice`,`oldOtherPrice`,`oldWprice`,`oldWmemberPrice`,`price`,`minPrice`,`memberPrice`,`otherPrice`,`wprice`,`wmemberPrice`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_adjust_price_product + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`productId` + ,`specId` + ,`oldPrice` + ,`oldMinPrice` + ,`oldMemberPrice` + ,`oldOtherPrice` + ,`oldWprice` + ,`oldWmemberPrice` + ,`price` + ,`minPrice` + ,`memberPrice` + ,`otherPrice` + ,`wprice` + ,`wmemberPrice` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{productId} + ,#{specId} + ,#{oldPrice} + ,#{oldMinPrice} + ,#{oldMemberPrice} + ,#{oldOtherPrice} + ,#{oldWprice} + ,#{oldWmemberPrice} + ,#{price} + ,#{minPrice} + ,#{memberPrice} + ,#{otherPrice} + ,#{wprice} + ,#{wmemberPrice} + ,#{createUser} + ,#{createDate} + + + + + update cy_adjust_price_product + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`productId` = #{productId} + ,`specId` = #{specId} + ,`oldPrice` = #{oldPrice} + ,`oldMinPrice` = #{oldMinPrice} + ,`oldMemberPrice` = #{oldMemberPrice} + ,`oldOtherPrice` = #{oldOtherPrice} + ,`oldWprice` = #{oldWprice} + ,`oldWmemberPrice` = #{oldWmemberPrice} + ,`price` = #{price} + ,`minPrice` = #{minPrice} + ,`memberPrice` = #{memberPrice} + ,`otherPrice` = #{otherPrice} + ,`wprice` = #{wprice} + ,`wmemberPrice` = #{wmemberPrice} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_adjust_price_product + where `id` = #{id} + + + + delete from cy_adjust_price_product + ${condition} + + + + delete from cy_adjust_price_product + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/AdjustPriceStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/AdjustPriceStoreMapper.xml new file mode 100644 index 0000000..017a1ce --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/AdjustPriceStoreMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`storeId`,`storeNo`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_adjust_price_store + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`storeId` + ,`storeNo` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{storeId} + ,#{storeNo} + ,#{createUser} + ,#{createDate} + + + + + update cy_adjust_price_store + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_adjust_price_store + where `id` = #{id} + + + + delete from cy_adjust_price_store + ${condition} + + + + delete from cy_adjust_price_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/AdjustPriceTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/AdjustPriceTicketMapper.xml new file mode 100644 index 0000000..ad7b446 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/AdjustPriceTicketMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`no`,`effectDate`,`description`,`status`,`checkPeople`,`checkDate`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_adjust_price_ticket + + `id`,`tenantId` + ,`no` + ,`effectDate` + ,`description` + ,`status` + ,`checkPeople` + ,`checkDate` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{effectDate} + ,#{description} + ,#{status} + ,#{checkPeople} + ,#{checkDate} + ,#{createUser} + ,#{createDate} + + + + + update cy_adjust_price_ticket + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`effectDate` = #{effectDate} + ,`description` = #{description} + ,`status` = #{status} + ,`checkPeople` = #{checkPeople} + ,`checkDate` = #{checkDate} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_adjust_price_ticket + where `id` = #{id} + + + + delete from cy_adjust_price_ticket + ${condition} + + + + delete from cy_adjust_price_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/AdvertCaptionMapper.xml b/food-pdm-tools/src/generate/food/mybatis/AdvertCaptionMapper.xml new file mode 100644 index 0000000..46acf01 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/AdvertCaptionMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`name`,`content`,`stopFlag`,`deleteFlag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_advert_caption + + `id`,`tenantId` + ,`name` + ,`content` + ,`stopFlag` + ,`deleteFlag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{name} + ,#{content} + ,#{stopFlag} + ,#{deleteFlag} + ,#{createDate} + ,#{createUser} + + + + + update cy_advert_caption + + `tenantId` = #{tenantId} + ,`name` = #{name} + ,`content` = #{content} + ,`stopFlag` = #{stopFlag} + ,`deleteFlag` = #{deleteFlag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_advert_caption + where `id` = #{id} + + + + delete from cy_advert_caption + ${condition} + + + + delete from cy_advert_caption + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/AdvertCaptionStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/AdvertCaptionStoreMapper.xml new file mode 100644 index 0000000..f8993f6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/AdvertCaptionStoreMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`storeId`,`captionId` + + + + + + + + + + + + + + + + + + + + insert into cy_advert_caption_store + + `id`,`tenantId` + ,`storeId` + ,`captionId` + + + #{id},#{tenantId} + ,#{storeId} + ,#{captionId} + + + + + update cy_advert_caption_store + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`captionId` = #{captionId} + + where `id` = #{id} + + + + delete from cy_advert_caption_store + where `id` = #{id} + + + + delete from cy_advert_caption_store + ${condition} + + + + delete from cy_advert_caption_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/AdvertPictureMapper.xml b/food-pdm-tools/src/generate/food/mybatis/AdvertPictureMapper.xml new file mode 100644 index 0000000..ad3933f --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/AdvertPictureMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`orderNo`,`name`,`width`,`height`,`groupName`,`storageFileName`,`stopFlag`,`deleteFlag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_advert_picture + + `id`,`tenantId` + ,`orderNo` + ,`name` + ,`width` + ,`height` + ,`groupName` + ,`storageFileName` + ,`stopFlag` + ,`deleteFlag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{orderNo} + ,#{name} + ,#{width} + ,#{height} + ,#{groupName} + ,#{storageFileName} + ,#{stopFlag} + ,#{deleteFlag} + ,#{createDate} + ,#{createUser} + + + + + update cy_advert_picture + + `tenantId` = #{tenantId} + ,`orderNo` = #{orderNo} + ,`name` = #{name} + ,`width` = #{width} + ,`height` = #{height} + ,`groupName` = #{groupName} + ,`storageFileName` = #{storageFileName} + ,`stopFlag` = #{stopFlag} + ,`deleteFlag` = #{deleteFlag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_advert_picture + where `id` = #{id} + + + + delete from cy_advert_picture + ${condition} + + + + delete from cy_advert_picture + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/AdvertPictureStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/AdvertPictureStoreMapper.xml new file mode 100644 index 0000000..ec0d777 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/AdvertPictureStoreMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`storeId`,`pictureId` + + + + + + + + + + + + + + + + + + + + insert into cy_advert_picture_store + + `id`,`tenantId` + ,`storeId` + ,`pictureId` + + + #{id},#{tenantId} + ,#{storeId} + ,#{pictureId} + + + + + update cy_advert_picture_store + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`pictureId` = #{pictureId} + + where `id` = #{id} + + + + delete from cy_advert_picture_store + where `id` = #{id} + + + + delete from cy_advert_picture_store + ${condition} + + + + delete from cy_advert_picture_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/AgentMapper.xml b/food-pdm-tools/src/generate/food/mybatis/AgentMapper.xml new file mode 100644 index 0000000..13d7857 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/AgentMapper.xml @@ -0,0 +1,134 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`sex`,`birthday`,`email`,`mobile`,`isLogin`,`passwd`,`enable`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_agent + + `id`,`tenantId` + ,`no` + ,`name` + ,`sex` + ,`birthday` + ,`email` + ,`mobile` + ,`isLogin` + ,`passwd` + ,`enable` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{sex} + ,#{birthday} + ,#{email} + ,#{mobile} + ,#{isLogin} + ,#{passwd} + ,#{enable} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_agent + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`sex` = #{sex} + ,`birthday` = #{birthday} + ,`email` = #{email} + ,`mobile` = #{mobile} + ,`isLogin` = #{isLogin} + ,`passwd` = #{passwd} + ,`enable` = #{enable} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_agent + where `id` = #{id} + + + + delete from cy_agent + ${condition} + + + + delete from cy_agent + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/AgentStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/AgentStoreMapper.xml new file mode 100644 index 0000000..14673eb --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/AgentStoreMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`agentId`,`valueType`,`valueId`,`valueNo`,`valueName`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_agent_store + + `id`,`tenantId` + ,`agentId` + ,`valueType` + ,`valueId` + ,`valueNo` + ,`valueName` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{agentId} + ,#{valueType} + ,#{valueId} + ,#{valueNo} + ,#{valueName} + ,#{createUser} + ,#{createDate} + + + + + update cy_agent_store + + `tenantId` = #{tenantId} + ,`agentId` = #{agentId} + ,`valueType` = #{valueType} + ,`valueId` = #{valueId} + ,`valueNo` = #{valueNo} + ,`valueName` = #{valueName} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_agent_store + where `id` = #{id} + + + + delete from cy_agent_store + ${condition} + + + + delete from cy_agent_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/AskGoodsDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/AskGoodsDetailMapper.xml new file mode 100644 index 0000000..4d6fbbf --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/AskGoodsDetailMapper.xml @@ -0,0 +1,155 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`packUnitId`,`packUnitName`,`packUnitAmount`,`dispatchUnitId`,`dispatchUnitName`,`amount`,`price`,`money`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_ask_goods_detail + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`packUnitId` + ,`packUnitName` + ,`packUnitAmount` + ,`dispatchUnitId` + ,`dispatchUnitName` + ,`amount` + ,`price` + ,`money` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{packUnitId} + ,#{packUnitName} + ,#{packUnitAmount} + ,#{dispatchUnitId} + ,#{dispatchUnitName} + ,#{amount} + ,#{price} + ,#{money} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_ask_goods_detail + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`packUnitId` = #{packUnitId} + ,`packUnitName` = #{packUnitName} + ,`packUnitAmount` = #{packUnitAmount} + ,`dispatchUnitId` = #{dispatchUnitId} + ,`dispatchUnitName` = #{dispatchUnitName} + ,`amount` = #{amount} + ,`price` = #{price} + ,`money` = #{money} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_ask_goods_detail + where `id` = #{id} + + + + delete from cy_ask_goods_detail + ${condition} + + + + delete from cy_ask_goods_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/AskGoodsSuitDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/AskGoodsSuitDetailMapper.xml new file mode 100644 index 0000000..4576fe2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/AskGoodsSuitDetailMapper.xml @@ -0,0 +1,137 @@ + + + + + + `id`,`tenantId`,`suitId`,`productId`,`productNo`,`productName`,`specId`,`specName`,`dispatchUnitId`,`dispatchUnitName`,`amount`,`isMain`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_ask_goods_suit_detail + + `id`,`tenantId` + ,`suitId` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`dispatchUnitId` + ,`dispatchUnitName` + ,`amount` + ,`isMain` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{suitId} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{dispatchUnitId} + ,#{dispatchUnitName} + ,#{amount} + ,#{isMain} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_ask_goods_suit_detail + + `tenantId` = #{tenantId} + ,`suitId` = #{suitId} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`dispatchUnitId` = #{dispatchUnitId} + ,`dispatchUnitName` = #{dispatchUnitName} + ,`amount` = #{amount} + ,`isMain` = #{isMain} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_ask_goods_suit_detail + where `id` = #{id} + + + + delete from cy_ask_goods_suit_detail + ${condition} + + + + delete from cy_ask_goods_suit_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/AskGoodsSuitMapper.xml b/food-pdm-tools/src/generate/food/mybatis/AskGoodsSuitMapper.xml new file mode 100644 index 0000000..e32b93e --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/AskGoodsSuitMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`description`,`isEdit`,`isSingleDisplay`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_ask_goods_suit + + `id`,`tenantId` + ,`no` + ,`name` + ,`description` + ,`isEdit` + ,`isSingleDisplay` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{description} + ,#{isEdit} + ,#{isSingleDisplay} + ,#{createUser} + ,#{createDate} + + + + + update cy_ask_goods_suit + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`description` = #{description} + ,`isEdit` = #{isEdit} + ,`isSingleDisplay` = #{isSingleDisplay} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_ask_goods_suit + where `id` = #{id} + + + + delete from cy_ask_goods_suit + ${condition} + + + + delete from cy_ask_goods_suit + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/AskGoodsTemplateDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/AskGoodsTemplateDetailMapper.xml new file mode 100644 index 0000000..d20b7e2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/AskGoodsTemplateDetailMapper.xml @@ -0,0 +1,134 @@ + + + + + + `id`,`tenantId`,`ticketId`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`dispatchUnitId`,`dispatchUnitName`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_ask_goods_template_detail + + `id`,`tenantId` + ,`ticketId` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`dispatchUnitId` + ,`dispatchUnitName` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{dispatchUnitId} + ,#{dispatchUnitName} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_ask_goods_template_detail + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`dispatchUnitId` = #{dispatchUnitId} + ,`dispatchUnitName` = #{dispatchUnitName} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_ask_goods_template_detail + where `id` = #{id} + + + + delete from cy_ask_goods_template_detail + ${condition} + + + + delete from cy_ask_goods_template_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/AskGoodsTemplateMapper.xml b/food-pdm-tools/src/generate/food/mybatis/AskGoodsTemplateMapper.xml new file mode 100644 index 0000000..a3e12cc --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/AskGoodsTemplateMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`description`,`selfFlag`,`storeId`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_ask_goods_template + + `id`,`tenantId` + ,`no` + ,`name` + ,`description` + ,`selfFlag` + ,`storeId` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{description} + ,#{selfFlag} + ,#{storeId} + ,#{createUser} + ,#{createDate} + + + + + update cy_ask_goods_template + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`description` = #{description} + ,`selfFlag` = #{selfFlag} + ,`storeId` = #{storeId} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_ask_goods_template + where `id` = #{id} + + + + delete from cy_ask_goods_template + ${condition} + + + + delete from cy_ask_goods_template + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/AskGoodsTemplateStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/AskGoodsTemplateStoreMapper.xml new file mode 100644 index 0000000..2175495 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/AskGoodsTemplateStoreMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`storeId`,`ticketId` + + + + + + + + + + + + + + + + + + + + insert into cy_ask_goods_template_store + + `id`,`tenantId` + ,`storeId` + ,`ticketId` + + + #{id},#{tenantId} + ,#{storeId} + ,#{ticketId} + + + + + update cy_ask_goods_template_store + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`ticketId` = #{ticketId} + + where `id` = #{id} + + + + delete from cy_ask_goods_template_store + where `id` = #{id} + + + + delete from cy_ask_goods_template_store + ${condition} + + + + delete from cy_ask_goods_template_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/AskGoodsTicketLogMapper.xml b/food-pdm-tools/src/generate/food/mybatis/AskGoodsTicketLogMapper.xml new file mode 100644 index 0000000..29e1461 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/AskGoodsTicketLogMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`type`,`status`,`payStatus`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_ask_goods_ticket_log + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`type` + ,`status` + ,`payStatus` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{type} + ,#{status} + ,#{payStatus} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_ask_goods_ticket_log + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`type` = #{type} + ,`status` = #{status} + ,`payStatus` = #{payStatus} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_ask_goods_ticket_log + where `id` = #{id} + + + + delete from cy_ask_goods_ticket_log + ${condition} + + + + delete from cy_ask_goods_ticket_log + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/AskGoodsTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/AskGoodsTicketMapper.xml new file mode 100644 index 0000000..57486bc --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/AskGoodsTicketMapper.xml @@ -0,0 +1,170 @@ + + + + + + `id`,`tenantId`,`no`,`storeId`,`storeNo`,`storeName`,`description`,`status`,`payStatus`,`productMoney`,`dispatchMoney`,`totalMoney`,`isUse`,`setMan`,`setDate`,`checkMan`,`checkDate`,`dispatchDate`,`reason`,`sourceSign`,`deliveryMode`,`deliveryModeDesc`,`barCodeNo`,`erpToExamine`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_ask_goods_ticket + + `id`,`tenantId` + ,`no` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`description` + ,`status` + ,`payStatus` + ,`productMoney` + ,`dispatchMoney` + ,`totalMoney` + ,`isUse` + ,`setMan` + ,`setDate` + ,`checkMan` + ,`checkDate` + ,`dispatchDate` + ,`reason` + ,`sourceSign` + ,`deliveryMode` + ,`deliveryModeDesc` + ,`barCodeNo` + ,`erpToExamine` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{description} + ,#{status} + ,#{payStatus} + ,#{productMoney} + ,#{dispatchMoney} + ,#{totalMoney} + ,#{isUse} + ,#{setMan} + ,#{setDate} + ,#{checkMan} + ,#{checkDate} + ,#{dispatchDate} + ,#{reason} + ,#{sourceSign} + ,#{deliveryMode} + ,#{deliveryModeDesc} + ,#{barCodeNo} + ,#{erpToExamine} + ,#{createUser} + ,#{createDate} + + + + + update cy_ask_goods_ticket + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`description` = #{description} + ,`status` = #{status} + ,`payStatus` = #{payStatus} + ,`productMoney` = #{productMoney} + ,`dispatchMoney` = #{dispatchMoney} + ,`totalMoney` = #{totalMoney} + ,`isUse` = #{isUse} + ,`setMan` = #{setMan} + ,`setDate` = #{setDate} + ,`checkMan` = #{checkMan} + ,`checkDate` = #{checkDate} + ,`dispatchDate` = #{dispatchDate} + ,`reason` = #{reason} + ,`sourceSign` = #{sourceSign} + ,`deliveryMode` = #{deliveryMode} + ,`deliveryModeDesc` = #{deliveryModeDesc} + ,`barCodeNo` = #{barCodeNo} + ,`erpToExamine` = #{erpToExamine} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_ask_goods_ticket + where `id` = #{id} + + + + delete from cy_ask_goods_ticket + ${condition} + + + + delete from cy_ask_goods_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/AskGoodsTicketPayMapper.xml b/food-pdm-tools/src/generate/food/mybatis/AskGoodsTicketPayMapper.xml new file mode 100644 index 0000000..33219a3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/AskGoodsTicketPayMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`storeId`,`storeNo`,`storeName`,`description`,`type`,`money`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_ask_goods_ticket_pay + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`description` + ,`type` + ,`money` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{description} + ,#{type} + ,#{money} + ,#{createUser} + ,#{createDate} + + + + + update cy_ask_goods_ticket_pay + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`description` = #{description} + ,`type` = #{type} + ,`money` = #{money} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_ask_goods_ticket_pay + where `id` = #{id} + + + + delete from cy_ask_goods_ticket_pay + ${condition} + + + + delete from cy_ask_goods_ticket_pay + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/BaiduFoodMapper.xml b/food-pdm-tools/src/generate/food/mybatis/BaiduFoodMapper.xml new file mode 100644 index 0000000..a6fb2ba --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/BaiduFoodMapper.xml @@ -0,0 +1,149 @@ + + + + + + `id`,`tenantId`,`storeId`,`categoryName`,`dishId`,`dishName`,`dishSkuId`,`spec`,`description`,`price`,`boxNum`,`boxPrice`,`isBind`,`erpProductId`,`erpProduct`,`erpSpecId`,`erpSpec`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_baidu_food + + `id`,`tenantId` + ,`storeId` + ,`categoryName` + ,`dishId` + ,`dishName` + ,`dishSkuId` + ,`spec` + ,`description` + ,`price` + ,`boxNum` + ,`boxPrice` + ,`isBind` + ,`erpProductId` + ,`erpProduct` + ,`erpSpecId` + ,`erpSpec` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storeId} + ,#{categoryName} + ,#{dishId} + ,#{dishName} + ,#{dishSkuId} + ,#{spec} + ,#{description} + ,#{price} + ,#{boxNum} + ,#{boxPrice} + ,#{isBind} + ,#{erpProductId} + ,#{erpProduct} + ,#{erpSpecId} + ,#{erpSpec} + ,#{createUser} + ,#{createDate} + + + + + update cy_baidu_food + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`categoryName` = #{categoryName} + ,`dishId` = #{dishId} + ,`dishName` = #{dishName} + ,`dishSkuId` = #{dishSkuId} + ,`spec` = #{spec} + ,`description` = #{description} + ,`price` = #{price} + ,`boxNum` = #{boxNum} + ,`boxPrice` = #{boxPrice} + ,`isBind` = #{isBind} + ,`erpProductId` = #{erpProductId} + ,`erpProduct` = #{erpProduct} + ,`erpSpecId` = #{erpSpecId} + ,`erpSpec` = #{erpSpec} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_baidu_food + where `id` = #{id} + + + + delete from cy_baidu_food + ${condition} + + + + delete from cy_baidu_food + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/BaiduOrderMapper.xml b/food-pdm-tools/src/generate/food/mybatis/BaiduOrderMapper.xml new file mode 100644 index 0000000..6e244c8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/BaiduOrderMapper.xml @@ -0,0 +1,218 @@ + + + + + + `id`,`tenantId`,`source`,`shopId`,`body`,`baiduShopId`,`baiduShopName`,`orderId`,`sendImmediately`,`orderIndex`,`status`,`expectTimeMode`,`sendTime`,`pickupTime`,`atshopTime`,`deliveryTime`,`deliveryPhone`,`finishedTime`,`confirmTime`,`cancelTime`,`sendFee`,`packageFee`,`discountFee`,`shopFee`,`totalFee`,`userFee`,`payType`,`needInvoice`,`invoiceTitle`,`remark`,`deliveryParty`,`createTime`,`mealNum`,`responsibleParty`,`commission`,`user`,`shop`,`products`,`discount`,`partRefundInfo`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_baidu_order + + `id`,`tenantId` + ,`source` + ,`shopId` + ,`body` + ,`baiduShopId` + ,`baiduShopName` + ,`orderId` + ,`sendImmediately` + ,`orderIndex` + ,`status` + ,`expectTimeMode` + ,`sendTime` + ,`pickupTime` + ,`atshopTime` + ,`deliveryTime` + ,`deliveryPhone` + ,`finishedTime` + ,`confirmTime` + ,`cancelTime` + ,`sendFee` + ,`packageFee` + ,`discountFee` + ,`shopFee` + ,`totalFee` + ,`userFee` + ,`payType` + ,`needInvoice` + ,`invoiceTitle` + ,`remark` + ,`deliveryParty` + ,`createTime` + ,`mealNum` + ,`responsibleParty` + ,`commission` + ,`user` + ,`shop` + ,`products` + ,`discount` + ,`partRefundInfo` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{source} + ,#{shopId} + ,#{body} + ,#{baiduShopId} + ,#{baiduShopName} + ,#{orderId} + ,#{sendImmediately} + ,#{orderIndex} + ,#{status} + ,#{expectTimeMode} + ,#{sendTime} + ,#{pickupTime} + ,#{atshopTime} + ,#{deliveryTime} + ,#{deliveryPhone} + ,#{finishedTime} + ,#{confirmTime} + ,#{cancelTime} + ,#{sendFee} + ,#{packageFee} + ,#{discountFee} + ,#{shopFee} + ,#{totalFee} + ,#{userFee} + ,#{payType} + ,#{needInvoice} + ,#{invoiceTitle} + ,#{remark} + ,#{deliveryParty} + ,#{createTime} + ,#{mealNum} + ,#{responsibleParty} + ,#{commission} + ,#{user} + ,#{shop} + ,#{products} + ,#{discount} + ,#{partRefundInfo} + ,#{createUser} + ,#{createDate} + + + + + update cy_baidu_order + + `tenantId` = #{tenantId} + ,`source` = #{source} + ,`shopId` = #{shopId} + ,`body` = #{body} + ,`baiduShopId` = #{baiduShopId} + ,`baiduShopName` = #{baiduShopName} + ,`orderId` = #{orderId} + ,`sendImmediately` = #{sendImmediately} + ,`orderIndex` = #{orderIndex} + ,`status` = #{status} + ,`expectTimeMode` = #{expectTimeMode} + ,`sendTime` = #{sendTime} + ,`pickupTime` = #{pickupTime} + ,`atshopTime` = #{atshopTime} + ,`deliveryTime` = #{deliveryTime} + ,`deliveryPhone` = #{deliveryPhone} + ,`finishedTime` = #{finishedTime} + ,`confirmTime` = #{confirmTime} + ,`cancelTime` = #{cancelTime} + ,`sendFee` = #{sendFee} + ,`packageFee` = #{packageFee} + ,`discountFee` = #{discountFee} + ,`shopFee` = #{shopFee} + ,`totalFee` = #{totalFee} + ,`userFee` = #{userFee} + ,`payType` = #{payType} + ,`needInvoice` = #{needInvoice} + ,`invoiceTitle` = #{invoiceTitle} + ,`remark` = #{remark} + ,`deliveryParty` = #{deliveryParty} + ,`createTime` = #{createTime} + ,`mealNum` = #{mealNum} + ,`responsibleParty` = #{responsibleParty} + ,`commission` = #{commission} + ,`user` = #{user} + ,`shop` = #{shop} + ,`products` = #{products} + ,`discount` = #{discount} + ,`partRefundInfo` = #{partRefundInfo} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_baidu_order + where `id` = #{id} + + + + delete from cy_baidu_order + ${condition} + + + + delete from cy_baidu_order + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/BaiduOrderProductMapper.xml b/food-pdm-tools/src/generate/food/mybatis/BaiduOrderProductMapper.xml new file mode 100644 index 0000000..bcf7bd2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/BaiduOrderProductMapper.xml @@ -0,0 +1,170 @@ + + + + + + `id`,`tenantId`,`orderId`,`baiduProductId`,`otherDishId`,`productId`,`upc`,`productType`,`productName`,`productAmount`,`productPrice`,`productAttr`,`baiduAttrId`,`attrId`,`option`,`productFeatures`,`productFee`,`packageFee`,`packagePrice`,`packageAmount`,`totalFee`,`productCustomIndex`,`isFixedPrice`,`group`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_baidu_order_product + + `id`,`tenantId` + ,`orderId` + ,`baiduProductId` + ,`otherDishId` + ,`productId` + ,`upc` + ,`productType` + ,`productName` + ,`productAmount` + ,`productPrice` + ,`productAttr` + ,`baiduAttrId` + ,`attrId` + ,`option` + ,`productFeatures` + ,`productFee` + ,`packageFee` + ,`packagePrice` + ,`packageAmount` + ,`totalFee` + ,`productCustomIndex` + ,`isFixedPrice` + ,`group` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{orderId} + ,#{baiduProductId} + ,#{otherDishId} + ,#{productId} + ,#{upc} + ,#{productType} + ,#{productName} + ,#{productAmount} + ,#{productPrice} + ,#{productAttr} + ,#{baiduAttrId} + ,#{attrId} + ,#{option} + ,#{productFeatures} + ,#{productFee} + ,#{packageFee} + ,#{packagePrice} + ,#{packageAmount} + ,#{totalFee} + ,#{productCustomIndex} + ,#{isFixedPrice} + ,#{group} + ,#{createUser} + ,#{createDate} + + + + + update cy_baidu_order_product + + `tenantId` = #{tenantId} + ,`orderId` = #{orderId} + ,`baiduProductId` = #{baiduProductId} + ,`otherDishId` = #{otherDishId} + ,`productId` = #{productId} + ,`upc` = #{upc} + ,`productType` = #{productType} + ,`productName` = #{productName} + ,`productAmount` = #{productAmount} + ,`productPrice` = #{productPrice} + ,`productAttr` = #{productAttr} + ,`baiduAttrId` = #{baiduAttrId} + ,`attrId` = #{attrId} + ,`option` = #{option} + ,`productFeatures` = #{productFeatures} + ,`productFee` = #{productFee} + ,`packageFee` = #{packageFee} + ,`packagePrice` = #{packagePrice} + ,`packageAmount` = #{packageAmount} + ,`totalFee` = #{totalFee} + ,`productCustomIndex` = #{productCustomIndex} + ,`isFixedPrice` = #{isFixedPrice} + ,`group` = #{group} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_baidu_order_product + where `id` = #{id} + + + + delete from cy_baidu_order_product + ${condition} + + + + delete from cy_baidu_order_product + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/BrandMapper.xml b/food-pdm-tools/src/generate/food/mybatis/BrandMapper.xml new file mode 100644 index 0000000..dc5230a --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/BrandMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`description`,`deleteFlag`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_brand + + `id`,`tenantId` + ,`no` + ,`name` + ,`description` + ,`deleteFlag` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{description} + ,#{deleteFlag} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_brand + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`description` = #{description} + ,`deleteFlag` = #{deleteFlag} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_brand + where `id` = #{id} + + + + delete from cy_brand + ${condition} + + + + delete from cy_brand + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/BusinessPlanDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/BusinessPlanDetailMapper.xml new file mode 100644 index 0000000..d94e4f2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/BusinessPlanDetailMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`planId`,`name`,`startType`,`startTime`,`endType`,`endTime`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_business_plan_detail + + `id`,`tenantId` + ,`planId` + ,`name` + ,`startType` + ,`startTime` + ,`endType` + ,`endTime` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{planId} + ,#{name} + ,#{startType} + ,#{startTime} + ,#{endType} + ,#{endTime} + ,#{createDate} + ,#{createUser} + + + + + update cy_business_plan_detail + + `tenantId` = #{tenantId} + ,`planId` = #{planId} + ,`name` = #{name} + ,`startType` = #{startType} + ,`startTime` = #{startTime} + ,`endType` = #{endType} + ,`endTime` = #{endTime} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_business_plan_detail + where `id` = #{id} + + + + delete from cy_business_plan_detail + ${condition} + + + + delete from cy_business_plan_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/BusinessPlanMapper.xml b/food-pdm-tools/src/generate/food/mybatis/BusinessPlanMapper.xml new file mode 100644 index 0000000..8b7961d --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/BusinessPlanMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`startType`,`startTime`,`endType`,`endTime`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_business_plan + + `id`,`tenantId` + ,`no` + ,`name` + ,`startType` + ,`startTime` + ,`endType` + ,`endTime` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{startType} + ,#{startTime} + ,#{endType} + ,#{endTime} + ,#{createDate} + ,#{createUser} + + + + + update cy_business_plan + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`startType` = #{startType} + ,`startTime` = #{startTime} + ,`endType` = #{endType} + ,`endTime` = #{endTime} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_business_plan + where `id` = #{id} + + + + delete from cy_business_plan + ${condition} + + + + delete from cy_business_plan + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/BusinessPlanStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/BusinessPlanStoreMapper.xml new file mode 100644 index 0000000..4bedc01 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/BusinessPlanStoreMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`planId`,`storeId` + + + + + + + + + + + + + + + + + + + + insert into cy_business_plan_store + + `id`,`tenantId` + ,`planId` + ,`storeId` + + + #{id},#{tenantId} + ,#{planId} + ,#{storeId} + + + + + update cy_business_plan_store + + `tenantId` = #{tenantId} + ,`planId` = #{planId} + ,`storeId` = #{storeId} + + where `id` = #{id} + + + + delete from cy_business_plan_store + where `id` = #{id} + + + + delete from cy_business_plan_store + ${condition} + + + + delete from cy_business_plan_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CandaoProductMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CandaoProductMapper.xml new file mode 100644 index 0000000..3ab7a54 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CandaoProductMapper.xml @@ -0,0 +1,227 @@ + + + + + + `id`,`tenantId`,`groupId`,`brandId`,`brandName`,`storeId`,`subStoreId`,`takeoutType`,`caodaoSyncId`,`pid`,`subPid`,`upc`,`name`,`price`,`startPrice`,`costPrice`,`desc`,`logo`,`image`,`logoList`,`type`,`taxRate`,`taxCategoryCode`,`minOrderCount`,`material`,`boxNum`,`boxPrice`,`weight`,`unit`,`isColdchain`,`setMeal`,`isNew`,`isSpecialty`,`isSpicy`,`isSideDish`,`beginDate`,`endDate`,`weeks`,`saleTime`,`isSuit`,`minCount`,`maxCount`,`deleteFlag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_candao_product + + `id`,`tenantId` + ,`groupId` + ,`brandId` + ,`brandName` + ,`storeId` + ,`subStoreId` + ,`takeoutType` + ,`caodaoSyncId` + ,`pid` + ,`subPid` + ,`upc` + ,`name` + ,`price` + ,`startPrice` + ,`costPrice` + ,`desc` + ,`logo` + ,`image` + ,`logoList` + ,`type` + ,`taxRate` + ,`taxCategoryCode` + ,`minOrderCount` + ,`material` + ,`boxNum` + ,`boxPrice` + ,`weight` + ,`unit` + ,`isColdchain` + ,`setMeal` + ,`isNew` + ,`isSpecialty` + ,`isSpicy` + ,`isSideDish` + ,`beginDate` + ,`endDate` + ,`weeks` + ,`saleTime` + ,`isSuit` + ,`minCount` + ,`maxCount` + ,`deleteFlag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{groupId} + ,#{brandId} + ,#{brandName} + ,#{storeId} + ,#{subStoreId} + ,#{takeoutType} + ,#{caodaoSyncId} + ,#{pid} + ,#{subPid} + ,#{upc} + ,#{name} + ,#{price} + ,#{startPrice} + ,#{costPrice} + ,#{desc} + ,#{logo} + ,#{image} + ,#{logoList} + ,#{type} + ,#{taxRate} + ,#{taxCategoryCode} + ,#{minOrderCount} + ,#{material} + ,#{boxNum} + ,#{boxPrice} + ,#{weight} + ,#{unit} + ,#{isColdchain} + ,#{setMeal} + ,#{isNew} + ,#{isSpecialty} + ,#{isSpicy} + ,#{isSideDish} + ,#{beginDate} + ,#{endDate} + ,#{weeks} + ,#{saleTime} + ,#{isSuit} + ,#{minCount} + ,#{maxCount} + ,#{deleteFlag} + ,#{createDate} + ,#{createUser} + + + + + update cy_candao_product + + `tenantId` = #{tenantId} + ,`groupId` = #{groupId} + ,`brandId` = #{brandId} + ,`brandName` = #{brandName} + ,`storeId` = #{storeId} + ,`subStoreId` = #{subStoreId} + ,`takeoutType` = #{takeoutType} + ,`caodaoSyncId` = #{caodaoSyncId} + ,`pid` = #{pid} + ,`subPid` = #{subPid} + ,`upc` = #{upc} + ,`name` = #{name} + ,`price` = #{price} + ,`startPrice` = #{startPrice} + ,`costPrice` = #{costPrice} + ,`desc` = #{desc} + ,`logo` = #{logo} + ,`image` = #{image} + ,`logoList` = #{logoList} + ,`type` = #{type} + ,`taxRate` = #{taxRate} + ,`taxCategoryCode` = #{taxCategoryCode} + ,`minOrderCount` = #{minOrderCount} + ,`material` = #{material} + ,`boxNum` = #{boxNum} + ,`boxPrice` = #{boxPrice} + ,`weight` = #{weight} + ,`unit` = #{unit} + ,`isColdchain` = #{isColdchain} + ,`setMeal` = #{setMeal} + ,`isNew` = #{isNew} + ,`isSpecialty` = #{isSpecialty} + ,`isSpicy` = #{isSpicy} + ,`isSideDish` = #{isSideDish} + ,`beginDate` = #{beginDate} + ,`endDate` = #{endDate} + ,`weeks` = #{weeks} + ,`saleTime` = #{saleTime} + ,`isSuit` = #{isSuit} + ,`minCount` = #{minCount} + ,`maxCount` = #{maxCount} + ,`deleteFlag` = #{deleteFlag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_candao_product + where `id` = #{id} + + + + delete from cy_candao_product + ${condition} + + + + delete from cy_candao_product + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CandaoProductPropertyMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CandaoProductPropertyMapper.xml new file mode 100644 index 0000000..2698f59 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CandaoProductPropertyMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`candaoProductId`,`pid`,`subPid`,`title`,`propertyId`,`subPropertyId`,`name`,`extTag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_candao_product_property + + `id`,`tenantId` + ,`candaoProductId` + ,`pid` + ,`subPid` + ,`title` + ,`propertyId` + ,`subPropertyId` + ,`name` + ,`extTag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{candaoProductId} + ,#{pid} + ,#{subPid} + ,#{title} + ,#{propertyId} + ,#{subPropertyId} + ,#{name} + ,#{extTag} + ,#{createDate} + ,#{createUser} + + + + + update cy_candao_product_property + + `tenantId` = #{tenantId} + ,`candaoProductId` = #{candaoProductId} + ,`pid` = #{pid} + ,`subPid` = #{subPid} + ,`title` = #{title} + ,`propertyId` = #{propertyId} + ,`subPropertyId` = #{subPropertyId} + ,`name` = #{name} + ,`extTag` = #{extTag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_candao_product_property + where `id` = #{id} + + + + delete from cy_candao_product_property + ${condition} + + + + delete from cy_candao_product_property + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CandaoProductSpecMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CandaoProductSpecMapper.xml new file mode 100644 index 0000000..bfeb92a --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CandaoProductSpecMapper.xml @@ -0,0 +1,146 @@ + + + + + + `id`,`tenantId`,`candaoProductId`,`pid`,`subPid`,`title`,`skuId`,`subSkuId`,`upc`,`name`,`price`,`sortIndex`,`ladderNum`,`ladderPrice`,`extTag`,`deleteFlag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_candao_product_spec + + `id`,`tenantId` + ,`candaoProductId` + ,`pid` + ,`subPid` + ,`title` + ,`skuId` + ,`subSkuId` + ,`upc` + ,`name` + ,`price` + ,`sortIndex` + ,`ladderNum` + ,`ladderPrice` + ,`extTag` + ,`deleteFlag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{candaoProductId} + ,#{pid} + ,#{subPid} + ,#{title} + ,#{skuId} + ,#{subSkuId} + ,#{upc} + ,#{name} + ,#{price} + ,#{sortIndex} + ,#{ladderNum} + ,#{ladderPrice} + ,#{extTag} + ,#{deleteFlag} + ,#{createDate} + ,#{createUser} + + + + + update cy_candao_product_spec + + `tenantId` = #{tenantId} + ,`candaoProductId` = #{candaoProductId} + ,`pid` = #{pid} + ,`subPid` = #{subPid} + ,`title` = #{title} + ,`skuId` = #{skuId} + ,`subSkuId` = #{subSkuId} + ,`upc` = #{upc} + ,`name` = #{name} + ,`price` = #{price} + ,`sortIndex` = #{sortIndex} + ,`ladderNum` = #{ladderNum} + ,`ladderPrice` = #{ladderPrice} + ,`extTag` = #{extTag} + ,`deleteFlag` = #{deleteFlag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_candao_product_spec + where `id` = #{id} + + + + delete from cy_candao_product_spec + ${condition} + + + + delete from cy_candao_product_spec + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CandaoProductSuitMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CandaoProductSuitMapper.xml new file mode 100644 index 0000000..54af856 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CandaoProductSuitMapper.xml @@ -0,0 +1,143 @@ + + + + + + `id`,`tenantId`,`candaoProductId`,`pid`,`subPid`,`suitType`,`title`,`name`,`num`,`price`,`addPrice`,`sortIndex`,`ladderNum`,`ladderPrice`,`deleteFlag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_candao_product_suit + + `id`,`tenantId` + ,`candaoProductId` + ,`pid` + ,`subPid` + ,`suitType` + ,`title` + ,`name` + ,`num` + ,`price` + ,`addPrice` + ,`sortIndex` + ,`ladderNum` + ,`ladderPrice` + ,`deleteFlag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{candaoProductId} + ,#{pid} + ,#{subPid} + ,#{suitType} + ,#{title} + ,#{name} + ,#{num} + ,#{price} + ,#{addPrice} + ,#{sortIndex} + ,#{ladderNum} + ,#{ladderPrice} + ,#{deleteFlag} + ,#{createDate} + ,#{createUser} + + + + + update cy_candao_product_suit + + `tenantId` = #{tenantId} + ,`candaoProductId` = #{candaoProductId} + ,`pid` = #{pid} + ,`subPid` = #{subPid} + ,`suitType` = #{suitType} + ,`title` = #{title} + ,`name` = #{name} + ,`num` = #{num} + ,`price` = #{price} + ,`addPrice` = #{addPrice} + ,`sortIndex` = #{sortIndex} + ,`ladderNum` = #{ladderNum} + ,`ladderPrice` = #{ladderPrice} + ,`deleteFlag` = #{deleteFlag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_candao_product_suit + where `id` = #{id} + + + + delete from cy_candao_product_suit + ${condition} + + + + delete from cy_candao_product_suit + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CandaoStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CandaoStoreMapper.xml new file mode 100644 index 0000000..3b46e93 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CandaoStoreMapper.xml @@ -0,0 +1,230 @@ + + + + + + `id`,`tenantId`,`groupId`,`brandId`,`brandName`,`waimaiType`,`storeId`,`subStoreId`,`storeNo`,`storeName`,`provinceId`,`provinceName`,`cityId`,`cityName`,`districtId`,`districtName`,`townName`,`tradeArea`,`saleArea`,`address`,`latitude`,`longitude`,`announcement`,`logo`,`phoneList`,`customerPhone`,`contactEmail`,`deliverFee`,`businessTimes`,`orderType`,`avgProductTime`,`waitTime`,`appointment`,`takeSelf`,`payType`,`onLinePayType`,`isInvoice`,`eleDelivery`,`autoChangeDeliver`,`busy`,`sharedOrder`,`enabled`,`isSync`,`deleteFlag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_candao_store + + `id`,`tenantId` + ,`groupId` + ,`brandId` + ,`brandName` + ,`waimaiType` + ,`storeId` + ,`subStoreId` + ,`storeNo` + ,`storeName` + ,`provinceId` + ,`provinceName` + ,`cityId` + ,`cityName` + ,`districtId` + ,`districtName` + ,`townName` + ,`tradeArea` + ,`saleArea` + ,`address` + ,`latitude` + ,`longitude` + ,`announcement` + ,`logo` + ,`phoneList` + ,`customerPhone` + ,`contactEmail` + ,`deliverFee` + ,`businessTimes` + ,`orderType` + ,`avgProductTime` + ,`waitTime` + ,`appointment` + ,`takeSelf` + ,`payType` + ,`onLinePayType` + ,`isInvoice` + ,`eleDelivery` + ,`autoChangeDeliver` + ,`busy` + ,`sharedOrder` + ,`enabled` + ,`isSync` + ,`deleteFlag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{groupId} + ,#{brandId} + ,#{brandName} + ,#{waimaiType} + ,#{storeId} + ,#{subStoreId} + ,#{storeNo} + ,#{storeName} + ,#{provinceId} + ,#{provinceName} + ,#{cityId} + ,#{cityName} + ,#{districtId} + ,#{districtName} + ,#{townName} + ,#{tradeArea} + ,#{saleArea} + ,#{address} + ,#{latitude} + ,#{longitude} + ,#{announcement} + ,#{logo} + ,#{phoneList} + ,#{customerPhone} + ,#{contactEmail} + ,#{deliverFee} + ,#{businessTimes} + ,#{orderType} + ,#{avgProductTime} + ,#{waitTime} + ,#{appointment} + ,#{takeSelf} + ,#{payType} + ,#{onLinePayType} + ,#{isInvoice} + ,#{eleDelivery} + ,#{autoChangeDeliver} + ,#{busy} + ,#{sharedOrder} + ,#{enabled} + ,#{isSync} + ,#{deleteFlag} + ,#{createDate} + ,#{createUser} + + + + + update cy_candao_store + + `tenantId` = #{tenantId} + ,`groupId` = #{groupId} + ,`brandId` = #{brandId} + ,`brandName` = #{brandName} + ,`waimaiType` = #{waimaiType} + ,`storeId` = #{storeId} + ,`subStoreId` = #{subStoreId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`provinceId` = #{provinceId} + ,`provinceName` = #{provinceName} + ,`cityId` = #{cityId} + ,`cityName` = #{cityName} + ,`districtId` = #{districtId} + ,`districtName` = #{districtName} + ,`townName` = #{townName} + ,`tradeArea` = #{tradeArea} + ,`saleArea` = #{saleArea} + ,`address` = #{address} + ,`latitude` = #{latitude} + ,`longitude` = #{longitude} + ,`announcement` = #{announcement} + ,`logo` = #{logo} + ,`phoneList` = #{phoneList} + ,`customerPhone` = #{customerPhone} + ,`contactEmail` = #{contactEmail} + ,`deliverFee` = #{deliverFee} + ,`businessTimes` = #{businessTimes} + ,`orderType` = #{orderType} + ,`avgProductTime` = #{avgProductTime} + ,`waitTime` = #{waitTime} + ,`appointment` = #{appointment} + ,`takeSelf` = #{takeSelf} + ,`payType` = #{payType} + ,`onLinePayType` = #{onLinePayType} + ,`isInvoice` = #{isInvoice} + ,`eleDelivery` = #{eleDelivery} + ,`autoChangeDeliver` = #{autoChangeDeliver} + ,`busy` = #{busy} + ,`sharedOrder` = #{sharedOrder} + ,`enabled` = #{enabled} + ,`isSync` = #{isSync} + ,`deleteFlag` = #{deleteFlag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_candao_store + where `id` = #{id} + + + + delete from cy_candao_store + ${condition} + + + + delete from cy_candao_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CategoryMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CategoryMapper.xml new file mode 100644 index 0000000..5f18fc8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CategoryMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`name`,`enabled`,`sign`,`orderNo`,`parentId`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_category + + `id`,`tenantId` + ,`name` + ,`enabled` + ,`sign` + ,`orderNo` + ,`parentId` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{name} + ,#{enabled} + ,#{sign} + ,#{orderNo} + ,#{parentId} + ,#{createUser} + ,#{createDate} + + + + + update cy_category + + `tenantId` = #{tenantId} + ,`name` = #{name} + ,`enabled` = #{enabled} + ,`sign` = #{sign} + ,`orderNo` = #{orderNo} + ,`parentId` = #{parentId} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_category + where `id` = #{id} + + + + delete from cy_category + ${condition} + + + + delete from cy_category + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CheckTemplateDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CheckTemplateDetailMapper.xml new file mode 100644 index 0000000..09e902d --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CheckTemplateDetailMapper.xml @@ -0,0 +1,131 @@ + + + + + + `id`,`tenantId`,`ticketId`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`stockUnitId`,`stockUnitName`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_check_template_detail + + `id`,`tenantId` + ,`ticketId` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`stockUnitId` + ,`stockUnitName` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{stockUnitId} + ,#{stockUnitName} + ,#{createUser} + ,#{createDate} + + + + + update cy_check_template_detail + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`stockUnitId` = #{stockUnitId} + ,`stockUnitName` = #{stockUnitName} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_check_template_detail + where `id` = #{id} + + + + delete from cy_check_template_detail + ${condition} + + + + delete from cy_check_template_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CheckTemplateMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CheckTemplateMapper.xml new file mode 100644 index 0000000..8b9825f --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CheckTemplateMapper.xml @@ -0,0 +1,113 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_check_template + + `id`,`tenantId` + ,`no` + ,`name` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_check_template + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_check_template + where `id` = #{id} + + + + delete from cy_check_template + ${condition} + + + + delete from cy_check_template + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CheckTicketDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CheckTicketDetailMapper.xml new file mode 100644 index 0000000..cc1a396 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CheckTicketDetailMapper.xml @@ -0,0 +1,158 @@ + + + + + + `id`,`tenantId`,`storageId`,`storageName`,`ticketId`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`stockUnitId`,`stockUnitName`,`sysAmount`,`checkAmount`,`differenceAmount`,`sysMoney`,`checkMoney`,`differenceMoney`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_check_ticket_detail + + `id`,`tenantId` + ,`storageId` + ,`storageName` + ,`ticketId` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`stockUnitId` + ,`stockUnitName` + ,`sysAmount` + ,`checkAmount` + ,`differenceAmount` + ,`sysMoney` + ,`checkMoney` + ,`differenceMoney` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storageId} + ,#{storageName} + ,#{ticketId} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{stockUnitId} + ,#{stockUnitName} + ,#{sysAmount} + ,#{checkAmount} + ,#{differenceAmount} + ,#{sysMoney} + ,#{checkMoney} + ,#{differenceMoney} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_check_ticket_detail + + `tenantId` = #{tenantId} + ,`storageId` = #{storageId} + ,`storageName` = #{storageName} + ,`ticketId` = #{ticketId} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`stockUnitId` = #{stockUnitId} + ,`stockUnitName` = #{stockUnitName} + ,`sysAmount` = #{sysAmount} + ,`checkAmount` = #{checkAmount} + ,`differenceAmount` = #{differenceAmount} + ,`sysMoney` = #{sysMoney} + ,`checkMoney` = #{checkMoney} + ,`differenceMoney` = #{differenceMoney} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_check_ticket_detail + where `id` = #{id} + + + + delete from cy_check_ticket_detail + ${condition} + + + + delete from cy_check_ticket_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CheckTicketLogMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CheckTicketLogMapper.xml new file mode 100644 index 0000000..71b4e20 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CheckTicketLogMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`type`,`status`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_check_ticket_log + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`type` + ,`status` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{type} + ,#{status} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_check_ticket_log + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`type` = #{type} + ,`status` = #{status} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_check_ticket_log + where `id` = #{id} + + + + delete from cy_check_ticket_log + ${condition} + + + + delete from cy_check_ticket_log + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CheckTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CheckTicketMapper.xml new file mode 100644 index 0000000..290f3e9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CheckTicketMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`no`,`status`,`description`,`setMan`,`setDate`,`checkMan`,`checkDate`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_check_ticket + + `id`,`tenantId` + ,`no` + ,`status` + ,`description` + ,`setMan` + ,`setDate` + ,`checkMan` + ,`checkDate` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{status} + ,#{description} + ,#{setMan} + ,#{setDate} + ,#{checkMan} + ,#{checkDate} + ,#{createUser} + ,#{createDate} + + + + + update cy_check_ticket + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`status` = #{status} + ,`description` = #{description} + ,`setMan` = #{setMan} + ,`setDate` = #{setDate} + ,`checkMan` = #{checkMan} + ,`checkDate` = #{checkDate} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_check_ticket + where `id` = #{id} + + + + delete from cy_check_ticket + ${condition} + + + + delete from cy_check_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CostFeeItemMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CostFeeItemMapper.xml new file mode 100644 index 0000000..5265e9c --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CostFeeItemMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`typeId`,`typePath`,`no`,`name`,`type`,`enabled`,`orderNo`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_cost_fee_item + + `id`,`tenantId` + ,`typeId` + ,`typePath` + ,`no` + ,`name` + ,`type` + ,`enabled` + ,`orderNo` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{typeId} + ,#{typePath} + ,#{no} + ,#{name} + ,#{type} + ,#{enabled} + ,#{orderNo} + ,#{createUser} + ,#{createDate} + + + + + update cy_cost_fee_item + + `tenantId` = #{tenantId} + ,`typeId` = #{typeId} + ,`typePath` = #{typePath} + ,`no` = #{no} + ,`name` = #{name} + ,`type` = #{type} + ,`enabled` = #{enabled} + ,`orderNo` = #{orderNo} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_cost_fee_item + where `id` = #{id} + + + + delete from cy_cost_fee_item + ${condition} + + + + delete from cy_cost_fee_item + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CostFeeTypeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CostFeeTypeMapper.xml new file mode 100644 index 0000000..98cd00b --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CostFeeTypeMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`parentId`,`path`,`no`,`name`,`type`,`enabled`,`orderNo`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_cost_fee_type + + `id`,`tenantId` + ,`parentId` + ,`path` + ,`no` + ,`name` + ,`type` + ,`enabled` + ,`orderNo` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{parentId} + ,#{path} + ,#{no} + ,#{name} + ,#{type} + ,#{enabled} + ,#{orderNo} + ,#{createUser} + ,#{createDate} + + + + + update cy_cost_fee_type + + `tenantId` = #{tenantId} + ,`parentId` = #{parentId} + ,`path` = #{path} + ,`no` = #{no} + ,`name` = #{name} + ,`type` = #{type} + ,`enabled` = #{enabled} + ,`orderNo` = #{orderNo} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_cost_fee_type + where `id` = #{id} + + + + delete from cy_cost_fee_type + ${condition} + + + + delete from cy_cost_fee_type + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CostTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CostTicketMapper.xml new file mode 100644 index 0000000..428b588 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CostTicketMapper.xml @@ -0,0 +1,170 @@ + + + + + + `id`,`tenantId`,`no`,`storeId`,`storeNo`,`storeName`,`description`,`status`,`amount`,`discountAmount`,`receivableAmount`,`boxAmount`,`workerAmount`,`summaryDate`,`checkPeople`,`checkDate`,`ticketCount`,`peoplePrice`,`profit`,`totalCost`,`difTotalCost`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_cost_ticket + + `id`,`tenantId` + ,`no` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`description` + ,`status` + ,`amount` + ,`discountAmount` + ,`receivableAmount` + ,`boxAmount` + ,`workerAmount` + ,`summaryDate` + ,`checkPeople` + ,`checkDate` + ,`ticketCount` + ,`peoplePrice` + ,`profit` + ,`totalCost` + ,`difTotalCost` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{description} + ,#{status} + ,#{amount} + ,#{discountAmount} + ,#{receivableAmount} + ,#{boxAmount} + ,#{workerAmount} + ,#{summaryDate} + ,#{checkPeople} + ,#{checkDate} + ,#{ticketCount} + ,#{peoplePrice} + ,#{profit} + ,#{totalCost} + ,#{difTotalCost} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_cost_ticket + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`description` = #{description} + ,`status` = #{status} + ,`amount` = #{amount} + ,`discountAmount` = #{discountAmount} + ,`receivableAmount` = #{receivableAmount} + ,`boxAmount` = #{boxAmount} + ,`workerAmount` = #{workerAmount} + ,`summaryDate` = #{summaryDate} + ,`checkPeople` = #{checkPeople} + ,`checkDate` = #{checkDate} + ,`ticketCount` = #{ticketCount} + ,`peoplePrice` = #{peoplePrice} + ,`profit` = #{profit} + ,`totalCost` = #{totalCost} + ,`difTotalCost` = #{difTotalCost} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_cost_ticket + where `id` = #{id} + + + + delete from cy_cost_ticket + ${condition} + + + + delete from cy_cost_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CostTicketPayTypeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CostTicketPayTypeMapper.xml new file mode 100644 index 0000000..058da2a --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CostTicketPayTypeMapper.xml @@ -0,0 +1,149 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`storeId`,`storeNo`,`storeName`,`summaryDate`,`payTypeNo`,`payTypeName`,`otherRateType`,`otherRateValue`,`money`,`realMoney`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_cost_ticket_pay_type + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`summaryDate` + ,`payTypeNo` + ,`payTypeName` + ,`otherRateType` + ,`otherRateValue` + ,`money` + ,`realMoney` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{summaryDate} + ,#{payTypeNo} + ,#{payTypeName} + ,#{otherRateType} + ,#{otherRateValue} + ,#{money} + ,#{realMoney} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_cost_ticket_pay_type + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`summaryDate` = #{summaryDate} + ,`payTypeNo` = #{payTypeNo} + ,`payTypeName` = #{payTypeName} + ,`otherRateType` = #{otherRateType} + ,`otherRateValue` = #{otherRateValue} + ,`money` = #{money} + ,`realMoney` = #{realMoney} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_cost_ticket_pay_type + where `id` = #{id} + + + + delete from cy_cost_ticket_pay_type + ${condition} + + + + delete from cy_cost_ticket_pay_type + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CostTicketProductChangeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CostTicketProductChangeMapper.xml new file mode 100644 index 0000000..119b167 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CostTicketProductChangeMapper.xml @@ -0,0 +1,197 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`storeId`,`storeNo`,`storeName`,`summaryDate`,`typeId`,`typeNo`,`typeName`,`productId`,`productNo`,`productName`,`specId`,`specName`,`packUnitId`,`costType`,`yeterdayStock`,`todayIn`,`todayStock`,`todayLoss`,`todayUse`,`posUse`,`difUse`,`difMoney`,`cost`,`salePro`,`standard`,`difStandard`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_cost_ticket_product_change + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`summaryDate` + ,`typeId` + ,`typeNo` + ,`typeName` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`packUnitId` + ,`costType` + ,`yeterdayStock` + ,`todayIn` + ,`todayStock` + ,`todayLoss` + ,`todayUse` + ,`posUse` + ,`difUse` + ,`difMoney` + ,`cost` + ,`salePro` + ,`standard` + ,`difStandard` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{summaryDate} + ,#{typeId} + ,#{typeNo} + ,#{typeName} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{packUnitId} + ,#{costType} + ,#{yeterdayStock} + ,#{todayIn} + ,#{todayStock} + ,#{todayLoss} + ,#{todayUse} + ,#{posUse} + ,#{difUse} + ,#{difMoney} + ,#{cost} + ,#{salePro} + ,#{standard} + ,#{difStandard} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_cost_ticket_product_change + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`summaryDate` = #{summaryDate} + ,`typeId` = #{typeId} + ,`typeNo` = #{typeNo} + ,`typeName` = #{typeName} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`packUnitId` = #{packUnitId} + ,`costType` = #{costType} + ,`yeterdayStock` = #{yeterdayStock} + ,`todayIn` = #{todayIn} + ,`todayStock` = #{todayStock} + ,`todayLoss` = #{todayLoss} + ,`todayUse` = #{todayUse} + ,`posUse` = #{posUse} + ,`difUse` = #{difUse} + ,`difMoney` = #{difMoney} + ,`cost` = #{cost} + ,`salePro` = #{salePro} + ,`standard` = #{standard} + ,`difStandard` = #{difStandard} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_cost_ticket_product_change + where `id` = #{id} + + + + delete from cy_cost_ticket_product_change + ${condition} + + + + delete from cy_cost_ticket_product_change + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CostTicketProductFixedChangeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CostTicketProductFixedChangeMapper.xml new file mode 100644 index 0000000..076763a --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CostTicketProductFixedChangeMapper.xml @@ -0,0 +1,158 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`storeId`,`storeNo`,`storeName`,`summaryDate`,`typeId`,`typePath`,`typeNo`,`typeName`,`itemId`,`no`,`name`,`type`,`money`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_cost_ticket_product_fixed_change + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`summaryDate` + ,`typeId` + ,`typePath` + ,`typeNo` + ,`typeName` + ,`itemId` + ,`no` + ,`name` + ,`type` + ,`money` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{summaryDate} + ,#{typeId} + ,#{typePath} + ,#{typeNo} + ,#{typeName} + ,#{itemId} + ,#{no} + ,#{name} + ,#{type} + ,#{money} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_cost_ticket_product_fixed_change + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`summaryDate` = #{summaryDate} + ,`typeId` = #{typeId} + ,`typePath` = #{typePath} + ,`typeNo` = #{typeNo} + ,`typeName` = #{typeName} + ,`itemId` = #{itemId} + ,`no` = #{no} + ,`name` = #{name} + ,`type` = #{type} + ,`money` = #{money} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_cost_ticket_product_fixed_change + where `id` = #{id} + + + + delete from cy_cost_ticket_product_fixed_change + ${condition} + + + + delete from cy_cost_ticket_product_fixed_change + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CostTicketProductMoreChangeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CostTicketProductMoreChangeMapper.xml new file mode 100644 index 0000000..927104b --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CostTicketProductMoreChangeMapper.xml @@ -0,0 +1,197 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`storeId`,`storeNo`,`storeName`,`summaryDate`,`typeId`,`typeNo`,`typeName`,`productId`,`productNo`,`productName`,`specId`,`specName`,`packUnitId`,`costType`,`yeterdayStock`,`todayIn`,`todayStock`,`todayLoss`,`todayUse`,`posUse`,`difUse`,`difMoney`,`cost`,`salePro`,`standard`,`difStandard`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_cost_ticket_product_more_change + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`summaryDate` + ,`typeId` + ,`typeNo` + ,`typeName` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`packUnitId` + ,`costType` + ,`yeterdayStock` + ,`todayIn` + ,`todayStock` + ,`todayLoss` + ,`todayUse` + ,`posUse` + ,`difUse` + ,`difMoney` + ,`cost` + ,`salePro` + ,`standard` + ,`difStandard` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{summaryDate} + ,#{typeId} + ,#{typeNo} + ,#{typeName} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{packUnitId} + ,#{costType} + ,#{yeterdayStock} + ,#{todayIn} + ,#{todayStock} + ,#{todayLoss} + ,#{todayUse} + ,#{posUse} + ,#{difUse} + ,#{difMoney} + ,#{cost} + ,#{salePro} + ,#{standard} + ,#{difStandard} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_cost_ticket_product_more_change + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`summaryDate` = #{summaryDate} + ,`typeId` = #{typeId} + ,`typeNo` = #{typeNo} + ,`typeName` = #{typeName} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`packUnitId` = #{packUnitId} + ,`costType` = #{costType} + ,`yeterdayStock` = #{yeterdayStock} + ,`todayIn` = #{todayIn} + ,`todayStock` = #{todayStock} + ,`todayLoss` = #{todayLoss} + ,`todayUse` = #{todayUse} + ,`posUse` = #{posUse} + ,`difUse` = #{difUse} + ,`difMoney` = #{difMoney} + ,`cost` = #{cost} + ,`salePro` = #{salePro} + ,`standard` = #{standard} + ,`difStandard` = #{difStandard} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_cost_ticket_product_more_change + where `id` = #{id} + + + + delete from cy_cost_ticket_product_more_change + ${condition} + + + + delete from cy_cost_ticket_product_more_change + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CostTicketProductOtherChangeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CostTicketProductOtherChangeMapper.xml new file mode 100644 index 0000000..d48c0dd --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CostTicketProductOtherChangeMapper.xml @@ -0,0 +1,158 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`storeId`,`storeNo`,`storeName`,`summaryDate`,`typeId`,`typePath`,`typeNo`,`typeName`,`itemId`,`no`,`name`,`type`,`money`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_cost_ticket_product_other_change + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`summaryDate` + ,`typeId` + ,`typePath` + ,`typeNo` + ,`typeName` + ,`itemId` + ,`no` + ,`name` + ,`type` + ,`money` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{summaryDate} + ,#{typeId} + ,#{typePath} + ,#{typeNo} + ,#{typeName} + ,#{itemId} + ,#{no} + ,#{name} + ,#{type} + ,#{money} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_cost_ticket_product_other_change + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`summaryDate` = #{summaryDate} + ,`typeId` = #{typeId} + ,`typePath` = #{typePath} + ,`typeNo` = #{typeNo} + ,`typeName` = #{typeName} + ,`itemId` = #{itemId} + ,`no` = #{no} + ,`name` = #{name} + ,`type` = #{type} + ,`money` = #{money} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_cost_ticket_product_other_change + where `id` = #{id} + + + + delete from cy_cost_ticket_product_other_change + ${condition} + + + + delete from cy_cost_ticket_product_other_change + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CostTicketProductTypeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CostTicketProductTypeMapper.xml new file mode 100644 index 0000000..1e3c8a5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CostTicketProductTypeMapper.xml @@ -0,0 +1,143 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`storeId`,`storeNo`,`storeName`,`summaryDate`,`typeId`,`typeNo`,`typeName`,`money`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_cost_ticket_product_type + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`summaryDate` + ,`typeId` + ,`typeNo` + ,`typeName` + ,`money` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{summaryDate} + ,#{typeId} + ,#{typeNo} + ,#{typeName} + ,#{money} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_cost_ticket_product_type + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`summaryDate` = #{summaryDate} + ,`typeId` = #{typeId} + ,`typeNo` = #{typeNo} + ,`typeName` = #{typeName} + ,`money` = #{money} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_cost_ticket_product_type + where `id` = #{id} + + + + delete from cy_cost_ticket_product_type + ${condition} + + + + delete from cy_cost_ticket_product_type + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CostTicketTemplateMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CostTicketTemplateMapper.xml new file mode 100644 index 0000000..cfac2e6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CostTicketTemplateMapper.xml @@ -0,0 +1,113 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_cost_ticket_template + + `id`,`tenantId` + ,`no` + ,`name` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_cost_ticket_template + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_cost_ticket_template + where `id` = #{id} + + + + delete from cy_cost_ticket_template + ${condition} + + + + delete from cy_cost_ticket_template + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CostTicketTemplateProductChangeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CostTicketTemplateProductChangeMapper.xml new file mode 100644 index 0000000..1690de0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CostTicketTemplateProductChangeMapper.xml @@ -0,0 +1,155 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`typeId`,`typeNo`,`typeName`,`productId`,`productNo`,`productName`,`specId`,`specName`,`packUnitId`,`costType`,`cost`,`standard`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_cost_ticket_template_product_change + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`typeId` + ,`typeNo` + ,`typeName` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`packUnitId` + ,`costType` + ,`cost` + ,`standard` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{typeId} + ,#{typeNo} + ,#{typeName} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{packUnitId} + ,#{costType} + ,#{cost} + ,#{standard} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_cost_ticket_template_product_change + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`typeId` = #{typeId} + ,`typeNo` = #{typeNo} + ,`typeName` = #{typeName} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`packUnitId` = #{packUnitId} + ,`costType` = #{costType} + ,`cost` = #{cost} + ,`standard` = #{standard} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_cost_ticket_template_product_change + where `id` = #{id} + + + + delete from cy_cost_ticket_template_product_change + ${condition} + + + + delete from cy_cost_ticket_template_product_change + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CostTicketTemplateProductFixedChangeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CostTicketTemplateProductFixedChangeMapper.xml new file mode 100644 index 0000000..e18124b --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CostTicketTemplateProductFixedChangeMapper.xml @@ -0,0 +1,146 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`typeId`,`typePath`,`typeNo`,`typeName`,`itemId`,`no`,`name`,`type`,`money`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_cost_ticket_template_product_fixed_change + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`typeId` + ,`typePath` + ,`typeNo` + ,`typeName` + ,`itemId` + ,`no` + ,`name` + ,`type` + ,`money` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{typeId} + ,#{typePath} + ,#{typeNo} + ,#{typeName} + ,#{itemId} + ,#{no} + ,#{name} + ,#{type} + ,#{money} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_cost_ticket_template_product_fixed_change + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`typeId` = #{typeId} + ,`typePath` = #{typePath} + ,`typeNo` = #{typeNo} + ,`typeName` = #{typeName} + ,`itemId` = #{itemId} + ,`no` = #{no} + ,`name` = #{name} + ,`type` = #{type} + ,`money` = #{money} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_cost_ticket_template_product_fixed_change + where `id` = #{id} + + + + delete from cy_cost_ticket_template_product_fixed_change + ${condition} + + + + delete from cy_cost_ticket_template_product_fixed_change + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CostTicketTemplateProductMoreChangeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CostTicketTemplateProductMoreChangeMapper.xml new file mode 100644 index 0000000..dc8137c --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CostTicketTemplateProductMoreChangeMapper.xml @@ -0,0 +1,155 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`typeId`,`typeNo`,`typeName`,`productId`,`productNo`,`productName`,`specId`,`specName`,`packUnitId`,`costType`,`cost`,`standard`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_cost_ticket_template_product_more_change + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`typeId` + ,`typeNo` + ,`typeName` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`packUnitId` + ,`costType` + ,`cost` + ,`standard` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{typeId} + ,#{typeNo} + ,#{typeName} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{packUnitId} + ,#{costType} + ,#{cost} + ,#{standard} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_cost_ticket_template_product_more_change + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`typeId` = #{typeId} + ,`typeNo` = #{typeNo} + ,`typeName` = #{typeName} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`packUnitId` = #{packUnitId} + ,`costType` = #{costType} + ,`cost` = #{cost} + ,`standard` = #{standard} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_cost_ticket_template_product_more_change + where `id` = #{id} + + + + delete from cy_cost_ticket_template_product_more_change + ${condition} + + + + delete from cy_cost_ticket_template_product_more_change + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CostTicketTemplateProductOtherChangeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CostTicketTemplateProductOtherChangeMapper.xml new file mode 100644 index 0000000..9a8a333 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CostTicketTemplateProductOtherChangeMapper.xml @@ -0,0 +1,146 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`typeId`,`typePath`,`typeNo`,`typeName`,`itemId`,`no`,`name`,`type`,`money`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_cost_ticket_template_product_other_change + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`typeId` + ,`typePath` + ,`typeNo` + ,`typeName` + ,`itemId` + ,`no` + ,`name` + ,`type` + ,`money` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{typeId} + ,#{typePath} + ,#{typeNo} + ,#{typeName} + ,#{itemId} + ,#{no} + ,#{name} + ,#{type} + ,#{money} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_cost_ticket_template_product_other_change + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`typeId` = #{typeId} + ,`typePath` = #{typePath} + ,`typeNo` = #{typeNo} + ,`typeName` = #{typeName} + ,`itemId` = #{itemId} + ,`no` = #{no} + ,`name` = #{name} + ,`type` = #{type} + ,`money` = #{money} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_cost_ticket_template_product_other_change + where `id` = #{id} + + + + delete from cy_cost_ticket_template_product_other_change + ${condition} + + + + delete from cy_cost_ticket_template_product_other_change + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CostTicketTemplateStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CostTicketTemplateStoreMapper.xml new file mode 100644 index 0000000..48b4f7e --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CostTicketTemplateStoreMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`storeId`,`ticketId` + + + + + + + + + + + + + + + + + + + + insert into cy_cost_ticket_template_store + + `id`,`tenantId` + ,`storeId` + ,`ticketId` + + + #{id},#{tenantId} + ,#{storeId} + ,#{ticketId} + + + + + update cy_cost_ticket_template_store + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`ticketId` = #{ticketId} + + where `id` = #{id} + + + + delete from cy_cost_ticket_template_store + where `id` = #{id} + + + + delete from cy_cost_ticket_template_store + ${condition} + + + + delete from cy_cost_ticket_template_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CouponCodeDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CouponCodeDetailMapper.xml new file mode 100644 index 0000000..3633d3d --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CouponCodeDetailMapper.xml @@ -0,0 +1,140 @@ + + + + + + `id`,`tenantId`,`couponId`,`couponCode`,`status`,`beginDateTime`,`endDateTime`,`storeId`,`storeName`,`storeNo`,`checkTime`,`workerNo`,`posNo`,`busNo`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_coupon_code_detail + + `id`,`tenantId` + ,`couponId` + ,`couponCode` + ,`status` + ,`beginDateTime` + ,`endDateTime` + ,`storeId` + ,`storeName` + ,`storeNo` + ,`checkTime` + ,`workerNo` + ,`posNo` + ,`busNo` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{couponId} + ,#{couponCode} + ,#{status} + ,#{beginDateTime} + ,#{endDateTime} + ,#{storeId} + ,#{storeName} + ,#{storeNo} + ,#{checkTime} + ,#{workerNo} + ,#{posNo} + ,#{busNo} + ,#{createUser} + ,#{createDate} + + + + + update cy_coupon_code_detail + + `tenantId` = #{tenantId} + ,`couponId` = #{couponId} + ,`couponCode` = #{couponCode} + ,`status` = #{status} + ,`beginDateTime` = #{beginDateTime} + ,`endDateTime` = #{endDateTime} + ,`storeId` = #{storeId} + ,`storeName` = #{storeName} + ,`storeNo` = #{storeNo} + ,`checkTime` = #{checkTime} + ,`workerNo` = #{workerNo} + ,`posNo` = #{posNo} + ,`busNo` = #{busNo} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_coupon_code_detail + where `id` = #{id} + + + + delete from cy_coupon_code_detail + ${condition} + + + + delete from cy_coupon_code_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CouponMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CouponMapper.xml new file mode 100644 index 0000000..1a49b35 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CouponMapper.xml @@ -0,0 +1,155 @@ + + + + + + `id`,`tenantId`,`name`,`startDate`,`endDate`,`startTime`,`endTime`,`weekDays`,`validMonth`,`description`,`type`,`rule`,`allStore`,`allBrand`,`allCategory`,`allGoods`,`status`,`voucherFlag`,`putNum`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_coupon + + `id`,`tenantId` + ,`name` + ,`startDate` + ,`endDate` + ,`startTime` + ,`endTime` + ,`weekDays` + ,`validMonth` + ,`description` + ,`type` + ,`rule` + ,`allStore` + ,`allBrand` + ,`allCategory` + ,`allGoods` + ,`status` + ,`voucherFlag` + ,`putNum` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{name} + ,#{startDate} + ,#{endDate} + ,#{startTime} + ,#{endTime} + ,#{weekDays} + ,#{validMonth} + ,#{description} + ,#{type} + ,#{rule} + ,#{allStore} + ,#{allBrand} + ,#{allCategory} + ,#{allGoods} + ,#{status} + ,#{voucherFlag} + ,#{putNum} + ,#{createUser} + ,#{createDate} + + + + + update cy_coupon + + `tenantId` = #{tenantId} + ,`name` = #{name} + ,`startDate` = #{startDate} + ,`endDate` = #{endDate} + ,`startTime` = #{startTime} + ,`endTime` = #{endTime} + ,`weekDays` = #{weekDays} + ,`validMonth` = #{validMonth} + ,`description` = #{description} + ,`type` = #{type} + ,`rule` = #{rule} + ,`allStore` = #{allStore} + ,`allBrand` = #{allBrand} + ,`allCategory` = #{allCategory} + ,`allGoods` = #{allGoods} + ,`status` = #{status} + ,`voucherFlag` = #{voucherFlag} + ,`putNum` = #{putNum} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_coupon + where `id` = #{id} + + + + delete from cy_coupon + ${condition} + + + + delete from cy_coupon + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CouponStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CouponStoreMapper.xml new file mode 100644 index 0000000..66c7719 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CouponStoreMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`couponId`,`storeId`,`storeNo`,`storeName`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_coupon_store + + `id`,`tenantId` + ,`couponId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{couponId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{createUser} + ,#{createDate} + + + + + update cy_coupon_store + + `tenantId` = #{tenantId} + ,`couponId` = #{couponId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_coupon_store + where `id` = #{id} + + + + delete from cy_coupon_store + ${condition} + + + + delete from cy_coupon_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CouponTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CouponTicketMapper.xml new file mode 100644 index 0000000..a7b9dc4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CouponTicketMapper.xml @@ -0,0 +1,134 @@ + + + + + + `id`,`tenantId`,`no`,`startDate`,`endDate`,`startTime`,`endTime`,`weekDays`,`description`,`status`,`checkPeople`,`checkDate`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_coupon_ticket + + `id`,`tenantId` + ,`no` + ,`startDate` + ,`endDate` + ,`startTime` + ,`endTime` + ,`weekDays` + ,`description` + ,`status` + ,`checkPeople` + ,`checkDate` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{startDate} + ,#{endDate} + ,#{startTime} + ,#{endTime} + ,#{weekDays} + ,#{description} + ,#{status} + ,#{checkPeople} + ,#{checkDate} + ,#{createUser} + ,#{createDate} + + + + + update cy_coupon_ticket + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`startDate` = #{startDate} + ,`endDate` = #{endDate} + ,`startTime` = #{startTime} + ,`endTime` = #{endTime} + ,`weekDays` = #{weekDays} + ,`description` = #{description} + ,`status` = #{status} + ,`checkPeople` = #{checkPeople} + ,`checkDate` = #{checkDate} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_coupon_ticket + where `id` = #{id} + + + + delete from cy_coupon_ticket + ${condition} + + + + delete from cy_coupon_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CouponTicketProductMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CouponTicketProductMapper.xml new file mode 100644 index 0000000..a2b96cc --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CouponTicketProductMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`productId`,`specId`,`couponPrice`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_coupon_ticket_product + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`productId` + ,`specId` + ,`couponPrice` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{productId} + ,#{specId} + ,#{couponPrice} + ,#{createUser} + ,#{createDate} + + + + + update cy_coupon_ticket_product + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`productId` = #{productId} + ,`specId` = #{specId} + ,`couponPrice` = #{couponPrice} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_coupon_ticket_product + where `id` = #{id} + + + + delete from cy_coupon_ticket_product + ${condition} + + + + delete from cy_coupon_ticket_product + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/CouponTicketStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/CouponTicketStoreMapper.xml new file mode 100644 index 0000000..2a56a77 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/CouponTicketStoreMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`storeId`,`storeNo`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_coupon_ticket_store + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`storeId` + ,`storeNo` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{storeId} + ,#{storeNo} + ,#{createUser} + ,#{createDate} + + + + + update cy_coupon_ticket_store + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_coupon_ticket_store + where `id` = #{id} + + + + delete from cy_coupon_ticket_store + ${condition} + + + + delete from cy_coupon_ticket_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/DeliverMapper.xml b/food-pdm-tools/src/generate/food/mybatis/DeliverMapper.xml new file mode 100644 index 0000000..dee6616 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/DeliverMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`isJob`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_deliver + + `id`,`tenantId` + ,`no` + ,`name` + ,`isJob` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{isJob} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_deliver + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`isJob` = #{isJob} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_deliver + where `id` = #{id} + + + + delete from cy_deliver + ${condition} + + + + delete from cy_deliver + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/DeliverStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/DeliverStoreMapper.xml new file mode 100644 index 0000000..d102bb3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/DeliverStoreMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`storeId`,`deliverId` + + + + + + + + + + + + + + + + + + + + insert into cy_deliver_store + + `id`,`tenantId` + ,`storeId` + ,`deliverId` + + + #{id},#{tenantId} + ,#{storeId} + ,#{deliverId} + + + + + update cy_deliver_store + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`deliverId` = #{deliverId} + + where `id` = #{id} + + + + delete from cy_deliver_store + where `id` = #{id} + + + + delete from cy_deliver_store + ${condition} + + + + delete from cy_deliver_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/DispatchSettlePlanMapper.xml b/food-pdm-tools/src/generate/food/mybatis/DispatchSettlePlanMapper.xml new file mode 100644 index 0000000..e42e7b4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/DispatchSettlePlanMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`balanceMode`,`creditType`,`advanceType`,`advanceValue`,`wxdcFlag`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_dispatch_settle_plan + + `id`,`tenantId` + ,`no` + ,`name` + ,`balanceMode` + ,`creditType` + ,`advanceType` + ,`advanceValue` + ,`wxdcFlag` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{balanceMode} + ,#{creditType} + ,#{advanceType} + ,#{advanceValue} + ,#{wxdcFlag} + ,#{createUser} + ,#{createDate} + + + + + update cy_dispatch_settle_plan + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`balanceMode` = #{balanceMode} + ,`creditType` = #{creditType} + ,`advanceType` = #{advanceType} + ,`advanceValue` = #{advanceValue} + ,`wxdcFlag` = #{wxdcFlag} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_dispatch_settle_plan + where `id` = #{id} + + + + delete from cy_dispatch_settle_plan + ${condition} + + + + delete from cy_dispatch_settle_plan + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/DispatchSettlePlanPayModeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/DispatchSettlePlanPayModeMapper.xml new file mode 100644 index 0000000..4bcc94d --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/DispatchSettlePlanPayModeMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`planId`,`no`,`name`,`incomeFlag`,`deleteFlag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_dispatch_settle_plan_pay_mode + + `id`,`tenantId` + ,`planId` + ,`no` + ,`name` + ,`incomeFlag` + ,`deleteFlag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{planId} + ,#{no} + ,#{name} + ,#{incomeFlag} + ,#{deleteFlag} + ,#{createDate} + ,#{createUser} + + + + + update cy_dispatch_settle_plan_pay_mode + + `tenantId` = #{tenantId} + ,`planId` = #{planId} + ,`no` = #{no} + ,`name` = #{name} + ,`incomeFlag` = #{incomeFlag} + ,`deleteFlag` = #{deleteFlag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_dispatch_settle_plan_pay_mode + where `id` = #{id} + + + + delete from cy_dispatch_settle_plan_pay_mode + ${condition} + + + + delete from cy_dispatch_settle_plan_pay_mode + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/DispatchSettlePlanStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/DispatchSettlePlanStoreMapper.xml new file mode 100644 index 0000000..94626df --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/DispatchSettlePlanStoreMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`storeId`,`planId` + + + + + + + + + + + + + + + + + + + + insert into cy_dispatch_settle_plan_store + + `id`,`tenantId` + ,`storeId` + ,`planId` + + + #{id},#{tenantId} + ,#{storeId} + ,#{planId} + + + + + update cy_dispatch_settle_plan_store + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`planId` = #{planId} + + where `id` = #{id} + + + + delete from cy_dispatch_settle_plan_store + where `id` = #{id} + + + + delete from cy_dispatch_settle_plan_store + ${condition} + + + + delete from cy_dispatch_settle_plan_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/DispatchTicketDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/DispatchTicketDetailMapper.xml new file mode 100644 index 0000000..7587c67 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/DispatchTicketDetailMapper.xml @@ -0,0 +1,173 @@ + + + + + + `id`,`tenantId`,`dispatchId`,`dispatchNo`,`storageId`,`storageName`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`askgoodsAmount`,`dispatchAmount`,`dispatchUnitId`,`dispatchUnitName`,`price`,`money`,`description`,`packUnitId`,`packUnitName`,`dpScale`,`receiveAmount`,`differenceAmount`,`differenceMoney`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_dispatch_ticket_detail + + `id`,`tenantId` + ,`dispatchId` + ,`dispatchNo` + ,`storageId` + ,`storageName` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`askgoodsAmount` + ,`dispatchAmount` + ,`dispatchUnitId` + ,`dispatchUnitName` + ,`price` + ,`money` + ,`description` + ,`packUnitId` + ,`packUnitName` + ,`dpScale` + ,`receiveAmount` + ,`differenceAmount` + ,`differenceMoney` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{dispatchId} + ,#{dispatchNo} + ,#{storageId} + ,#{storageName} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{askgoodsAmount} + ,#{dispatchAmount} + ,#{dispatchUnitId} + ,#{dispatchUnitName} + ,#{price} + ,#{money} + ,#{description} + ,#{packUnitId} + ,#{packUnitName} + ,#{dpScale} + ,#{receiveAmount} + ,#{differenceAmount} + ,#{differenceMoney} + ,#{createDate} + ,#{createUser} + + + + + update cy_dispatch_ticket_detail + + `tenantId` = #{tenantId} + ,`dispatchId` = #{dispatchId} + ,`dispatchNo` = #{dispatchNo} + ,`storageId` = #{storageId} + ,`storageName` = #{storageName} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`askgoodsAmount` = #{askgoodsAmount} + ,`dispatchAmount` = #{dispatchAmount} + ,`dispatchUnitId` = #{dispatchUnitId} + ,`dispatchUnitName` = #{dispatchUnitName} + ,`price` = #{price} + ,`money` = #{money} + ,`description` = #{description} + ,`packUnitId` = #{packUnitId} + ,`packUnitName` = #{packUnitName} + ,`dpScale` = #{dpScale} + ,`receiveAmount` = #{receiveAmount} + ,`differenceAmount` = #{differenceAmount} + ,`differenceMoney` = #{differenceMoney} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_dispatch_ticket_detail + where `id` = #{id} + + + + delete from cy_dispatch_ticket_detail + ${condition} + + + + delete from cy_dispatch_ticket_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/DispatchTicketLogMapper.xml b/food-pdm-tools/src/generate/food/mybatis/DispatchTicketLogMapper.xml new file mode 100644 index 0000000..77c584e --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/DispatchTicketLogMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`dispatchId`,`dispatchNo`,`type`,`status`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_dispatch_ticket_log + + `id`,`tenantId` + ,`dispatchId` + ,`dispatchNo` + ,`type` + ,`status` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{dispatchId} + ,#{dispatchNo} + ,#{type} + ,#{status} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_dispatch_ticket_log + + `tenantId` = #{tenantId} + ,`dispatchId` = #{dispatchId} + ,`dispatchNo` = #{dispatchNo} + ,`type` = #{type} + ,`status` = #{status} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_dispatch_ticket_log + where `id` = #{id} + + + + delete from cy_dispatch_ticket_log + ${condition} + + + + delete from cy_dispatch_ticket_log + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/DispatchTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/DispatchTicketMapper.xml new file mode 100644 index 0000000..6d42764 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/DispatchTicketMapper.xml @@ -0,0 +1,170 @@ + + + + + + `id`,`tenantId`,`askgoodsId`,`askgoodsNo`,`storeId`,`no`,`status`,`isUse`,`description`,`setMan`,`setDate`,`checkMan`,`checkDate`,`deliveryDate`,`arrivalDate`,`address`,`linkMan`,`linkTelephone`,`logisticsNo`,`logisticsName`,`logisticsFee`,`orderMoney`,`otherFee`,`money`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_dispatch_ticket + + `id`,`tenantId` + ,`askgoodsId` + ,`askgoodsNo` + ,`storeId` + ,`no` + ,`status` + ,`isUse` + ,`description` + ,`setMan` + ,`setDate` + ,`checkMan` + ,`checkDate` + ,`deliveryDate` + ,`arrivalDate` + ,`address` + ,`linkMan` + ,`linkTelephone` + ,`logisticsNo` + ,`logisticsName` + ,`logisticsFee` + ,`orderMoney` + ,`otherFee` + ,`money` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{askgoodsId} + ,#{askgoodsNo} + ,#{storeId} + ,#{no} + ,#{status} + ,#{isUse} + ,#{description} + ,#{setMan} + ,#{setDate} + ,#{checkMan} + ,#{checkDate} + ,#{deliveryDate} + ,#{arrivalDate} + ,#{address} + ,#{linkMan} + ,#{linkTelephone} + ,#{logisticsNo} + ,#{logisticsName} + ,#{logisticsFee} + ,#{orderMoney} + ,#{otherFee} + ,#{money} + ,#{createDate} + ,#{createUser} + + + + + update cy_dispatch_ticket + + `tenantId` = #{tenantId} + ,`askgoodsId` = #{askgoodsId} + ,`askgoodsNo` = #{askgoodsNo} + ,`storeId` = #{storeId} + ,`no` = #{no} + ,`status` = #{status} + ,`isUse` = #{isUse} + ,`description` = #{description} + ,`setMan` = #{setMan} + ,`setDate` = #{setDate} + ,`checkMan` = #{checkMan} + ,`checkDate` = #{checkDate} + ,`deliveryDate` = #{deliveryDate} + ,`arrivalDate` = #{arrivalDate} + ,`address` = #{address} + ,`linkMan` = #{linkMan} + ,`linkTelephone` = #{linkTelephone} + ,`logisticsNo` = #{logisticsNo} + ,`logisticsName` = #{logisticsName} + ,`logisticsFee` = #{logisticsFee} + ,`orderMoney` = #{orderMoney} + ,`otherFee` = #{otherFee} + ,`money` = #{money} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_dispatch_ticket + where `id` = #{id} + + + + delete from cy_dispatch_ticket + ${condition} + + + + delete from cy_dispatch_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/DispatchpriceTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/DispatchpriceTicketMapper.xml new file mode 100644 index 0000000..54948ab --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/DispatchpriceTicketMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`no`,`status`,`makeUser`,`makeDate`,`checkUser`,`checkDate`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_dispatchprice_ticket + + `id`,`tenantId` + ,`no` + ,`status` + ,`makeUser` + ,`makeDate` + ,`checkUser` + ,`checkDate` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{status} + ,#{makeUser} + ,#{makeDate} + ,#{checkUser} + ,#{checkDate} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_dispatchprice_ticket + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`status` = #{status} + ,`makeUser` = #{makeUser} + ,`makeDate` = #{makeDate} + ,`checkUser` = #{checkUser} + ,`checkDate` = #{checkDate} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_dispatchprice_ticket + where `id` = #{id} + + + + delete from cy_dispatchprice_ticket + ${condition} + + + + delete from cy_dispatchprice_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/DispatchpriceTicketMaterialMapper.xml b/food-pdm-tools/src/generate/food/mybatis/DispatchpriceTicketMaterialMapper.xml new file mode 100644 index 0000000..63e67fa --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/DispatchpriceTicketMaterialMapper.xml @@ -0,0 +1,137 @@ + + + + + + `id`,`tenantId`,`ticketId`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`dispatchUnitId`,`hdispatchPrice`,`dispatchPrice`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_dispatchprice_ticket_material + + `id`,`tenantId` + ,`ticketId` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`dispatchUnitId` + ,`hdispatchPrice` + ,`dispatchPrice` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{dispatchUnitId} + ,#{hdispatchPrice} + ,#{dispatchPrice} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_dispatchprice_ticket_material + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`dispatchUnitId` = #{dispatchUnitId} + ,`hdispatchPrice` = #{hdispatchPrice} + ,`dispatchPrice` = #{dispatchPrice} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_dispatchprice_ticket_material + where `id` = #{id} + + + + delete from cy_dispatchprice_ticket_material + ${condition} + + + + delete from cy_dispatchprice_ticket_material + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/DispatchpriceTicketStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/DispatchpriceTicketStoreMapper.xml new file mode 100644 index 0000000..d5c1814 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/DispatchpriceTicketStoreMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`ticketId`,`storeId`,`storeNo`,`storeName`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_dispatchprice_ticket_store + + `id`,`tenantId` + ,`ticketId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{createDate} + ,#{createUser} + + + + + update cy_dispatchprice_ticket_store + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_dispatchprice_ticket_store + where `id` = #{id} + + + + delete from cy_dispatchprice_ticket_store + ${condition} + + + + delete from cy_dispatchprice_ticket_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ElemeCategoryFoodMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ElemeCategoryFoodMapper.xml new file mode 100644 index 0000000..9e3166f --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ElemeCategoryFoodMapper.xml @@ -0,0 +1,149 @@ + + + + + + `id`,`tenantId`,`storeId`,`categoryId`,`foodId`,`foodName`,`description`,`isValid`,`specId`,`specName`,`price`,`packingFee`,`isBind`,`erpProductId`,`erpProduct`,`erpSpecId`,`erpSpec`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_eleme_category_food + + `id`,`tenantId` + ,`storeId` + ,`categoryId` + ,`foodId` + ,`foodName` + ,`description` + ,`isValid` + ,`specId` + ,`specName` + ,`price` + ,`packingFee` + ,`isBind` + ,`erpProductId` + ,`erpProduct` + ,`erpSpecId` + ,`erpSpec` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storeId} + ,#{categoryId} + ,#{foodId} + ,#{foodName} + ,#{description} + ,#{isValid} + ,#{specId} + ,#{specName} + ,#{price} + ,#{packingFee} + ,#{isBind} + ,#{erpProductId} + ,#{erpProduct} + ,#{erpSpecId} + ,#{erpSpec} + ,#{createUser} + ,#{createDate} + + + + + update cy_eleme_category_food + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`categoryId` = #{categoryId} + ,`foodId` = #{foodId} + ,`foodName` = #{foodName} + ,`description` = #{description} + ,`isValid` = #{isValid} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`price` = #{price} + ,`packingFee` = #{packingFee} + ,`isBind` = #{isBind} + ,`erpProductId` = #{erpProductId} + ,`erpProduct` = #{erpProduct} + ,`erpSpecId` = #{erpSpecId} + ,`erpSpec` = #{erpSpec} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_eleme_category_food + where `id` = #{id} + + + + delete from cy_eleme_category_food + ${condition} + + + + delete from cy_eleme_category_food + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ElemeFoodCategoryMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ElemeFoodCategoryMapper.xml new file mode 100644 index 0000000..c5d46d3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ElemeFoodCategoryMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`storeId`,`categoryId`,`name`,`isValid`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_eleme_food_category + + `id`,`tenantId` + ,`storeId` + ,`categoryId` + ,`name` + ,`isValid` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storeId} + ,#{categoryId} + ,#{name} + ,#{isValid} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_eleme_food_category + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`categoryId` = #{categoryId} + ,`name` = #{name} + ,`isValid` = #{isValid} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_eleme_food_category + where `id` = #{id} + + + + delete from cy_eleme_food_category + ${condition} + + + + delete from cy_eleme_food_category + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ElemeOrderDetailGroupMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ElemeOrderDetailGroupMapper.xml new file mode 100644 index 0000000..80d1244 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ElemeOrderDetailGroupMapper.xml @@ -0,0 +1,134 @@ + + + + + + `id`,`tenantId`,`orderId`,`groupName`,`groupType`,`specId`,`skuId`,`categoryId`,`name`,`price`,`quantity`,`total`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_eleme_order_detail_group + + `id`,`tenantId` + ,`orderId` + ,`groupName` + ,`groupType` + ,`specId` + ,`skuId` + ,`categoryId` + ,`name` + ,`price` + ,`quantity` + ,`total` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{orderId} + ,#{groupName} + ,#{groupType} + ,#{specId} + ,#{skuId} + ,#{categoryId} + ,#{name} + ,#{price} + ,#{quantity} + ,#{total} + ,#{createUser} + ,#{createDate} + + + + + update cy_eleme_order_detail_group + + `tenantId` = #{tenantId} + ,`orderId` = #{orderId} + ,`groupName` = #{groupName} + ,`groupType` = #{groupType} + ,`specId` = #{specId} + ,`skuId` = #{skuId} + ,`categoryId` = #{categoryId} + ,`name` = #{name} + ,`price` = #{price} + ,`quantity` = #{quantity} + ,`total` = #{total} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_eleme_order_detail_group + where `id` = #{id} + + + + delete from cy_eleme_order_detail_group + ${condition} + + + + delete from cy_eleme_order_detail_group + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ElemeOrderDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ElemeOrderDetailMapper.xml new file mode 100644 index 0000000..d720727 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ElemeOrderDetailMapper.xml @@ -0,0 +1,206 @@ + + + + + + `id`,`tenantId`,`message`,`storeId`,`orderId`,`address`,`createdAt`,`activeAt`,`deliverFee`,`deliverTime`,`description`,`invoice`,`isBook`,`isOnlinePaid`,`phoneList`,`shopId`,`shopName`,`daySn`,`status`,`refundStatus`,`userId`,`totalPrice`,`originalPrice`,`consignee`,`deliveryGeo`,`deliveryPoiAddress`,`invoiced`,`income`,`serviceRate`,`serviceFee`,`hongbao`,`packageFee`,`activityTotal`,`shopPart`,`elemePart`,`downgraded`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_eleme_order_detail + + `id`,`tenantId` + ,`message` + ,`storeId` + ,`orderId` + ,`address` + ,`createdAt` + ,`activeAt` + ,`deliverFee` + ,`deliverTime` + ,`description` + ,`invoice` + ,`isBook` + ,`isOnlinePaid` + ,`phoneList` + ,`shopId` + ,`shopName` + ,`daySn` + ,`status` + ,`refundStatus` + ,`userId` + ,`totalPrice` + ,`originalPrice` + ,`consignee` + ,`deliveryGeo` + ,`deliveryPoiAddress` + ,`invoiced` + ,`income` + ,`serviceRate` + ,`serviceFee` + ,`hongbao` + ,`packageFee` + ,`activityTotal` + ,`shopPart` + ,`elemePart` + ,`downgraded` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{message} + ,#{storeId} + ,#{orderId} + ,#{address} + ,#{createdAt} + ,#{activeAt} + ,#{deliverFee} + ,#{deliverTime} + ,#{description} + ,#{invoice} + ,#{isBook} + ,#{isOnlinePaid} + ,#{phoneList} + ,#{shopId} + ,#{shopName} + ,#{daySn} + ,#{status} + ,#{refundStatus} + ,#{userId} + ,#{totalPrice} + ,#{originalPrice} + ,#{consignee} + ,#{deliveryGeo} + ,#{deliveryPoiAddress} + ,#{invoiced} + ,#{income} + ,#{serviceRate} + ,#{serviceFee} + ,#{hongbao} + ,#{packageFee} + ,#{activityTotal} + ,#{shopPart} + ,#{elemePart} + ,#{downgraded} + ,#{createUser} + ,#{createDate} + + + + + update cy_eleme_order_detail + + `tenantId` = #{tenantId} + ,`message` = #{message} + ,`storeId` = #{storeId} + ,`orderId` = #{orderId} + ,`address` = #{address} + ,`createdAt` = #{createdAt} + ,`activeAt` = #{activeAt} + ,`deliverFee` = #{deliverFee} + ,`deliverTime` = #{deliverTime} + ,`description` = #{description} + ,`invoice` = #{invoice} + ,`isBook` = #{isBook} + ,`isOnlinePaid` = #{isOnlinePaid} + ,`phoneList` = #{phoneList} + ,`shopId` = #{shopId} + ,`shopName` = #{shopName} + ,`daySn` = #{daySn} + ,`status` = #{status} + ,`refundStatus` = #{refundStatus} + ,`userId` = #{userId} + ,`totalPrice` = #{totalPrice} + ,`originalPrice` = #{originalPrice} + ,`consignee` = #{consignee} + ,`deliveryGeo` = #{deliveryGeo} + ,`deliveryPoiAddress` = #{deliveryPoiAddress} + ,`invoiced` = #{invoiced} + ,`income` = #{income} + ,`serviceRate` = #{serviceRate} + ,`serviceFee` = #{serviceFee} + ,`hongbao` = #{hongbao} + ,`packageFee` = #{packageFee} + ,`activityTotal` = #{activityTotal} + ,`shopPart` = #{shopPart} + ,`elemePart` = #{elemePart} + ,`downgraded` = #{downgraded} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_eleme_order_detail + where `id` = #{id} + + + + delete from cy_eleme_order_detail + ${condition} + + + + delete from cy_eleme_order_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ErpPosSetMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ErpPosSetMapper.xml new file mode 100644 index 0000000..ce04296 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ErpPosSetMapper.xml @@ -0,0 +1,113 @@ + + + + + + `id`,`tenantId`,`storeId`,`posNo`,`pbody`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_erp_pos_set + + `id`,`tenantId` + ,`storeId` + ,`posNo` + ,`pbody` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{storeId} + ,#{posNo} + ,#{pbody} + ,#{createDate} + ,#{createUser} + + + + + update cy_erp_pos_set + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`posNo` = #{posNo} + ,`pbody` = #{pbody} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_erp_pos_set + where `id` = #{id} + + + + delete from cy_erp_pos_set + ${condition} + + + + delete from cy_erp_pos_set + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/FeeItemMapper.xml b/food-pdm-tools/src/generate/food/mybatis/FeeItemMapper.xml new file mode 100644 index 0000000..796ed8c --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/FeeItemMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`name`,`type`,`enabled`,`orderNo`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_fee_item + + `id`,`tenantId` + ,`name` + ,`type` + ,`enabled` + ,`orderNo` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{name} + ,#{type} + ,#{enabled} + ,#{orderNo} + ,#{createUser} + ,#{createDate} + + + + + update cy_fee_item + + `tenantId` = #{tenantId} + ,`name` = #{name} + ,`type` = #{type} + ,`enabled` = #{enabled} + ,`orderNo` = #{orderNo} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_fee_item + where `id` = #{id} + + + + delete from cy_fee_item + ${condition} + + + + delete from cy_fee_item + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/KdsPlanMapper.xml b/food-pdm-tools/src/generate/food/mybatis/KdsPlanMapper.xml new file mode 100644 index 0000000..ff9b007 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/KdsPlanMapper.xml @@ -0,0 +1,113 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_kds_plan + + `id`,`tenantId` + ,`no` + ,`name` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_kds_plan + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_kds_plan + where `id` = #{id} + + + + delete from cy_kds_plan + ${condition} + + + + delete from cy_kds_plan + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/KdsPlanStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/KdsPlanStoreMapper.xml new file mode 100644 index 0000000..5d1bc0c --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/KdsPlanStoreMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`storeId`,`planId` + + + + + + + + + + + + + + + + + + + + insert into cy_kds_plan_store + + `id`,`tenantId` + ,`storeId` + ,`planId` + + + #{id},#{tenantId} + ,#{storeId} + ,#{planId} + + + + + update cy_kds_plan_store + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`planId` = #{planId} + + where `id` = #{id} + + + + delete from cy_kds_plan_store + where `id` = #{id} + + + + delete from cy_kds_plan_store + ${condition} + + + + delete from cy_kds_plan_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/KitPlanMapper.xml b/food-pdm-tools/src/generate/food/mybatis/KitPlanMapper.xml new file mode 100644 index 0000000..8d9ec92 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/KitPlanMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`type`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_kit_plan + + `id`,`tenantId` + ,`no` + ,`name` + ,`type` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{type} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_kit_plan + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`type` = #{type} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_kit_plan + where `id` = #{id} + + + + delete from cy_kit_plan + ${condition} + + + + delete from cy_kit_plan + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/KitPlanStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/KitPlanStoreMapper.xml new file mode 100644 index 0000000..0fdeb0e --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/KitPlanStoreMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`storeId`,`planId` + + + + + + + + + + + + + + + + + + + + insert into cy_kit_plan_store + + `id`,`tenantId` + ,`storeId` + ,`planId` + + + #{id},#{tenantId} + ,#{storeId} + ,#{planId} + + + + + update cy_kit_plan_store + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`planId` = #{planId} + + where `id` = #{id} + + + + delete from cy_kit_plan_store + where `id` = #{id} + + + + delete from cy_kit_plan_store + ${condition} + + + + delete from cy_kit_plan_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/MakeBurdenMapper.xml b/food-pdm-tools/src/generate/food/mybatis/MakeBurdenMapper.xml new file mode 100644 index 0000000..18e6d3c --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/MakeBurdenMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`makeId`,`burdenProductId`,`burdenSpecId`,`salesUnitId`,`salesAmount`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_make_burden + + `id`,`tenantId` + ,`makeId` + ,`burdenProductId` + ,`burdenSpecId` + ,`salesUnitId` + ,`salesAmount` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{makeId} + ,#{burdenProductId} + ,#{burdenSpecId} + ,#{salesUnitId} + ,#{salesAmount} + ,#{createDate} + ,#{createUser} + + + + + update cy_make_burden + + `tenantId` = #{tenantId} + ,`makeId` = #{makeId} + ,`burdenProductId` = #{burdenProductId} + ,`burdenSpecId` = #{burdenSpecId} + ,`salesUnitId` = #{salesUnitId} + ,`salesAmount` = #{salesAmount} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_make_burden + where `id` = #{id} + + + + delete from cy_make_burden + ${condition} + + + + delete from cy_make_burden + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/MakeDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/MakeDetailMapper.xml new file mode 100644 index 0000000..13007db --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/MakeDetailMapper.xml @@ -0,0 +1,137 @@ + + + + + + `id`,`tenantId`,`no`,`typeId`,`description`,`spell`,`addPrice`,`qtyFlag`,`orderNo`,`color`,`prvFlag`,`deleteFlag`,`noType`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_make_detail + + `id`,`tenantId` + ,`no` + ,`typeId` + ,`description` + ,`spell` + ,`addPrice` + ,`qtyFlag` + ,`orderNo` + ,`color` + ,`prvFlag` + ,`deleteFlag` + ,`noType` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{typeId} + ,#{description} + ,#{spell} + ,#{addPrice} + ,#{qtyFlag} + ,#{orderNo} + ,#{color} + ,#{prvFlag} + ,#{deleteFlag} + ,#{noType} + ,#{createDate} + ,#{createUser} + + + + + update cy_make_detail + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`typeId` = #{typeId} + ,`description` = #{description} + ,`spell` = #{spell} + ,`addPrice` = #{addPrice} + ,`qtyFlag` = #{qtyFlag} + ,`orderNo` = #{orderNo} + ,`color` = #{color} + ,`prvFlag` = #{prvFlag} + ,`deleteFlag` = #{deleteFlag} + ,`noType` = #{noType} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_make_detail + where `id` = #{id} + + + + delete from cy_make_detail + ${condition} + + + + delete from cy_make_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/MakeTypeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/MakeTypeMapper.xml new file mode 100644 index 0000000..7b18d84 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/MakeTypeMapper.xml @@ -0,0 +1,131 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`isRadio`,`type`,`seqNo`,`color`,`deleteFlag`,`noType`,`isMust`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_make_type + + `id`,`tenantId` + ,`no` + ,`name` + ,`isRadio` + ,`type` + ,`seqNo` + ,`color` + ,`deleteFlag` + ,`noType` + ,`isMust` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{isRadio} + ,#{type} + ,#{seqNo} + ,#{color} + ,#{deleteFlag} + ,#{noType} + ,#{isMust} + ,#{createDate} + ,#{createUser} + + + + + update cy_make_type + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`isRadio` = #{isRadio} + ,`type` = #{type} + ,`seqNo` = #{seqNo} + ,`color` = #{color} + ,`deleteFlag` = #{deleteFlag} + ,`noType` = #{noType} + ,`isMust` = #{isMust} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_make_type + where `id` = #{id} + + + + delete from cy_make_type + ${condition} + + + + delete from cy_make_type + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/MeituanFoodCategoryMapper.xml b/food-pdm-tools/src/generate/food/mybatis/MeituanFoodCategoryMapper.xml new file mode 100644 index 0000000..d4d9e6d --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/MeituanFoodCategoryMapper.xml @@ -0,0 +1,113 @@ + + + + + + `id`,`tenantId`,`storeId`,`name`,`sequence`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_meituan_food_category + + `id`,`tenantId` + ,`storeId` + ,`name` + ,`sequence` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storeId} + ,#{name} + ,#{sequence} + ,#{createUser} + ,#{createDate} + + + + + update cy_meituan_food_category + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`name` = #{name} + ,`sequence` = #{sequence} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_meituan_food_category + where `id` = #{id} + + + + delete from cy_meituan_food_category + ${condition} + + + + delete from cy_meituan_food_category + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/MeituanFoodMapper.xml b/food-pdm-tools/src/generate/food/mybatis/MeituanFoodMapper.xml new file mode 100644 index 0000000..0f24c24 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/MeituanFoodMapper.xml @@ -0,0 +1,149 @@ + + + + + + `id`,`tenantId`,`storeId`,`categoryName`,`dishId`,`dishName`,`dishSkuId`,`spec`,`description`,`price`,`boxNum`,`boxPrice`,`isBind`,`erpProductId`,`erpProduct`,`erpSpecId`,`erpSpec`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_meituan_food + + `id`,`tenantId` + ,`storeId` + ,`categoryName` + ,`dishId` + ,`dishName` + ,`dishSkuId` + ,`spec` + ,`description` + ,`price` + ,`boxNum` + ,`boxPrice` + ,`isBind` + ,`erpProductId` + ,`erpProduct` + ,`erpSpecId` + ,`erpSpec` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storeId} + ,#{categoryName} + ,#{dishId} + ,#{dishName} + ,#{dishSkuId} + ,#{spec} + ,#{description} + ,#{price} + ,#{boxNum} + ,#{boxPrice} + ,#{isBind} + ,#{erpProductId} + ,#{erpProduct} + ,#{erpSpecId} + ,#{erpSpec} + ,#{createUser} + ,#{createDate} + + + + + update cy_meituan_food + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`categoryName` = #{categoryName} + ,`dishId` = #{dishId} + ,`dishName` = #{dishName} + ,`dishSkuId` = #{dishSkuId} + ,`spec` = #{spec} + ,`description` = #{description} + ,`price` = #{price} + ,`boxNum` = #{boxNum} + ,`boxPrice` = #{boxPrice} + ,`isBind` = #{isBind} + ,`erpProductId` = #{erpProductId} + ,`erpProduct` = #{erpProduct} + ,`erpSpecId` = #{erpSpecId} + ,`erpSpec` = #{erpSpec} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_meituan_food + where `id` = #{id} + + + + delete from cy_meituan_food + ${condition} + + + + delete from cy_meituan_food + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/MeituanOrderExtraMapper.xml b/food-pdm-tools/src/generate/food/mybatis/MeituanOrderExtraMapper.xml new file mode 100644 index 0000000..96712a5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/MeituanOrderExtraMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`orderId`,`mtCharge`,`poiCharge`,`reduceFee`,`remark`,`type`,`actDetailId`,`avgSendTime`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_meituan_order_extra + + `id`,`tenantId` + ,`orderId` + ,`mtCharge` + ,`poiCharge` + ,`reduceFee` + ,`remark` + ,`type` + ,`actDetailId` + ,`avgSendTime` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{orderId} + ,#{mtCharge} + ,#{poiCharge} + ,#{reduceFee} + ,#{remark} + ,#{type} + ,#{actDetailId} + ,#{avgSendTime} + ,#{createUser} + ,#{createDate} + + + + + update cy_meituan_order_extra + + `tenantId` = #{tenantId} + ,`orderId` = #{orderId} + ,`mtCharge` = #{mtCharge} + ,`poiCharge` = #{poiCharge} + ,`reduceFee` = #{reduceFee} + ,`remark` = #{remark} + ,`type` = #{type} + ,`actDetailId` = #{actDetailId} + ,`avgSendTime` = #{avgSendTime} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_meituan_order_extra + where `id` = #{id} + + + + delete from cy_meituan_order_extra + ${condition} + + + + delete from cy_meituan_order_extra + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/MeituanOrderItemMapper.xml b/food-pdm-tools/src/generate/food/mybatis/MeituanOrderItemMapper.xml new file mode 100644 index 0000000..525ec08 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/MeituanOrderItemMapper.xml @@ -0,0 +1,140 @@ + + + + + + `id`,`tenantId`,`orderId`,`eDishCode`,`boxNum`,`boxPrice`,`dishName`,`price`,`skuId`,`quantity`,`unit`,`discount`,`spec`,`property`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_meituan_order_item + + `id`,`tenantId` + ,`orderId` + ,`eDishCode` + ,`boxNum` + ,`boxPrice` + ,`dishName` + ,`price` + ,`skuId` + ,`quantity` + ,`unit` + ,`discount` + ,`spec` + ,`property` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{orderId} + ,#{eDishCode} + ,#{boxNum} + ,#{boxPrice} + ,#{dishName} + ,#{price} + ,#{skuId} + ,#{quantity} + ,#{unit} + ,#{discount} + ,#{spec} + ,#{property} + ,#{createUser} + ,#{createDate} + + + + + update cy_meituan_order_item + + `tenantId` = #{tenantId} + ,`orderId` = #{orderId} + ,`eDishCode` = #{eDishCode} + ,`boxNum` = #{boxNum} + ,`boxPrice` = #{boxPrice} + ,`dishName` = #{dishName} + ,`price` = #{price} + ,`skuId` = #{skuId} + ,`quantity` = #{quantity} + ,`unit` = #{unit} + ,`discount` = #{discount} + ,`spec` = #{spec} + ,`property` = #{property} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_meituan_order_item + where `id` = #{id} + + + + delete from cy_meituan_order_item + ${condition} + + + + delete from cy_meituan_order_item + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/MeituanOrderMapper.xml b/food-pdm-tools/src/generate/food/mybatis/MeituanOrderMapper.xml new file mode 100644 index 0000000..77bb212 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/MeituanOrderMapper.xml @@ -0,0 +1,266 @@ + + + + + + `id`,`tenantId`,`message`,`storeId`,`orderId`,`cTime`,`caution`,`deliveryTime`,`detail`,`cityId`,`extras`,`hasInvoiced`,`invoiceTitle`,`isPre`,`isThirdShipping`,`latitude`,`longitude`,`poiReceiveDetail`,`logisticsCode`,`logisticsCompletedTime`,`logisticsConfirmTime`,`logisticsDispatcherMobile`,`logisticsDispatcherName`,`logisticsFetchTime`,`logisticsId`,`logisticsName`,`logisticsSendTime`,`logisticsStatus`,`orderCompletedTime`,`orderConfirmTime`,`orderCancelTime`,`orderIdView`,`orderSendTime`,`originalPrice`,`payType`,`pickType`,`poiAddress`,`poiId`,`poiName`,`poiPhone`,`recipientAddress`,`recipientName`,`recipientPhone`,`shipperPhone`,`shippingFee`,`status`,`total`,`uTime`,`daySeq`,`dinnersNumber`,`cancelReason`,`cancelReasonCode`,`refundReason`,`foodShareFeeChargeByPoi`,`wmPoiReceiveCent`,`refundReasonCode`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_meituan_order + + `id`,`tenantId` + ,`message` + ,`storeId` + ,`orderId` + ,`cTime` + ,`caution` + ,`deliveryTime` + ,`detail` + ,`cityId` + ,`extras` + ,`hasInvoiced` + ,`invoiceTitle` + ,`isPre` + ,`isThirdShipping` + ,`latitude` + ,`longitude` + ,`poiReceiveDetail` + ,`logisticsCode` + ,`logisticsCompletedTime` + ,`logisticsConfirmTime` + ,`logisticsDispatcherMobile` + ,`logisticsDispatcherName` + ,`logisticsFetchTime` + ,`logisticsId` + ,`logisticsName` + ,`logisticsSendTime` + ,`logisticsStatus` + ,`orderCompletedTime` + ,`orderConfirmTime` + ,`orderCancelTime` + ,`orderIdView` + ,`orderSendTime` + ,`originalPrice` + ,`payType` + ,`pickType` + ,`poiAddress` + ,`poiId` + ,`poiName` + ,`poiPhone` + ,`recipientAddress` + ,`recipientName` + ,`recipientPhone` + ,`shipperPhone` + ,`shippingFee` + ,`status` + ,`total` + ,`uTime` + ,`daySeq` + ,`dinnersNumber` + ,`cancelReason` + ,`cancelReasonCode` + ,`refundReason` + ,`foodShareFeeChargeByPoi` + ,`wmPoiReceiveCent` + ,`refundReasonCode` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{message} + ,#{storeId} + ,#{orderId} + ,#{cTime} + ,#{caution} + ,#{deliveryTime} + ,#{detail} + ,#{cityId} + ,#{extras} + ,#{hasInvoiced} + ,#{invoiceTitle} + ,#{isPre} + ,#{isThirdShipping} + ,#{latitude} + ,#{longitude} + ,#{poiReceiveDetail} + ,#{logisticsCode} + ,#{logisticsCompletedTime} + ,#{logisticsConfirmTime} + ,#{logisticsDispatcherMobile} + ,#{logisticsDispatcherName} + ,#{logisticsFetchTime} + ,#{logisticsId} + ,#{logisticsName} + ,#{logisticsSendTime} + ,#{logisticsStatus} + ,#{orderCompletedTime} + ,#{orderConfirmTime} + ,#{orderCancelTime} + ,#{orderIdView} + ,#{orderSendTime} + ,#{originalPrice} + ,#{payType} + ,#{pickType} + ,#{poiAddress} + ,#{poiId} + ,#{poiName} + ,#{poiPhone} + ,#{recipientAddress} + ,#{recipientName} + ,#{recipientPhone} + ,#{shipperPhone} + ,#{shippingFee} + ,#{status} + ,#{total} + ,#{uTime} + ,#{daySeq} + ,#{dinnersNumber} + ,#{cancelReason} + ,#{cancelReasonCode} + ,#{refundReason} + ,#{foodShareFeeChargeByPoi} + ,#{wmPoiReceiveCent} + ,#{refundReasonCode} + ,#{createUser} + ,#{createDate} + + + + + update cy_meituan_order + + `tenantId` = #{tenantId} + ,`message` = #{message} + ,`storeId` = #{storeId} + ,`orderId` = #{orderId} + ,`cTime` = #{cTime} + ,`caution` = #{caution} + ,`deliveryTime` = #{deliveryTime} + ,`detail` = #{detail} + ,`cityId` = #{cityId} + ,`extras` = #{extras} + ,`hasInvoiced` = #{hasInvoiced} + ,`invoiceTitle` = #{invoiceTitle} + ,`isPre` = #{isPre} + ,`isThirdShipping` = #{isThirdShipping} + ,`latitude` = #{latitude} + ,`longitude` = #{longitude} + ,`poiReceiveDetail` = #{poiReceiveDetail} + ,`logisticsCode` = #{logisticsCode} + ,`logisticsCompletedTime` = #{logisticsCompletedTime} + ,`logisticsConfirmTime` = #{logisticsConfirmTime} + ,`logisticsDispatcherMobile` = #{logisticsDispatcherMobile} + ,`logisticsDispatcherName` = #{logisticsDispatcherName} + ,`logisticsFetchTime` = #{logisticsFetchTime} + ,`logisticsId` = #{logisticsId} + ,`logisticsName` = #{logisticsName} + ,`logisticsSendTime` = #{logisticsSendTime} + ,`logisticsStatus` = #{logisticsStatus} + ,`orderCompletedTime` = #{orderCompletedTime} + ,`orderConfirmTime` = #{orderConfirmTime} + ,`orderCancelTime` = #{orderCancelTime} + ,`orderIdView` = #{orderIdView} + ,`orderSendTime` = #{orderSendTime} + ,`originalPrice` = #{originalPrice} + ,`payType` = #{payType} + ,`pickType` = #{pickType} + ,`poiAddress` = #{poiAddress} + ,`poiId` = #{poiId} + ,`poiName` = #{poiName} + ,`poiPhone` = #{poiPhone} + ,`recipientAddress` = #{recipientAddress} + ,`recipientName` = #{recipientName} + ,`recipientPhone` = #{recipientPhone} + ,`shipperPhone` = #{shipperPhone} + ,`shippingFee` = #{shippingFee} + ,`status` = #{status} + ,`total` = #{total} + ,`uTime` = #{uTime} + ,`daySeq` = #{daySeq} + ,`dinnersNumber` = #{dinnersNumber} + ,`cancelReason` = #{cancelReason} + ,`cancelReasonCode` = #{cancelReasonCode} + ,`refundReason` = #{refundReason} + ,`foodShareFeeChargeByPoi` = #{foodShareFeeChargeByPoi} + ,`wmPoiReceiveCent` = #{wmPoiReceiveCent} + ,`refundReasonCode` = #{refundReasonCode} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_meituan_order + where `id` = #{id} + + + + delete from cy_meituan_order + ${condition} + + + + delete from cy_meituan_order + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/OtherStorageOutTicketDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/OtherStorageOutTicketDetailMapper.xml new file mode 100644 index 0000000..5e5e85b --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/OtherStorageOutTicketDetailMapper.xml @@ -0,0 +1,146 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`dispatchUnitId`,`dispatchUnitName`,`amount`,`price`,`money`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_other_storage_out_ticket_detail + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`dispatchUnitId` + ,`dispatchUnitName` + ,`amount` + ,`price` + ,`money` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{dispatchUnitId} + ,#{dispatchUnitName} + ,#{amount} + ,#{price} + ,#{money} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_other_storage_out_ticket_detail + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`dispatchUnitId` = #{dispatchUnitId} + ,`dispatchUnitName` = #{dispatchUnitName} + ,`amount` = #{amount} + ,`price` = #{price} + ,`money` = #{money} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_other_storage_out_ticket_detail + where `id` = #{id} + + + + delete from cy_other_storage_out_ticket_detail + ${condition} + + + + delete from cy_other_storage_out_ticket_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/OtherStorageOutTicketLogMapper.xml b/food-pdm-tools/src/generate/food/mybatis/OtherStorageOutTicketLogMapper.xml new file mode 100644 index 0000000..be1e787 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/OtherStorageOutTicketLogMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`type`,`status`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_other_storage_out_ticket_log + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`type` + ,`status` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{type} + ,#{status} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_other_storage_out_ticket_log + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`type` = #{type} + ,`status` = #{status} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_other_storage_out_ticket_log + where `id` = #{id} + + + + delete from cy_other_storage_out_ticket_log + ${condition} + + + + delete from cy_other_storage_out_ticket_log + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/OtherStorageOutTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/OtherStorageOutTicketMapper.xml new file mode 100644 index 0000000..025ad20 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/OtherStorageOutTicketMapper.xml @@ -0,0 +1,149 @@ + + + + + + `id`,`tenantId`,`no`,`type`,`storageId`,`storageName`,`description`,`status`,`stockMan`,`linkMan`,`linkTelephone`,`logisticsNo`,`logisticsName`,`setMan`,`setDate`,`checkMan`,`checkDate`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_other_storage_out_ticket + + `id`,`tenantId` + ,`no` + ,`type` + ,`storageId` + ,`storageName` + ,`description` + ,`status` + ,`stockMan` + ,`linkMan` + ,`linkTelephone` + ,`logisticsNo` + ,`logisticsName` + ,`setMan` + ,`setDate` + ,`checkMan` + ,`checkDate` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{type} + ,#{storageId} + ,#{storageName} + ,#{description} + ,#{status} + ,#{stockMan} + ,#{linkMan} + ,#{linkTelephone} + ,#{logisticsNo} + ,#{logisticsName} + ,#{setMan} + ,#{setDate} + ,#{checkMan} + ,#{checkDate} + ,#{createUser} + ,#{createDate} + + + + + update cy_other_storage_out_ticket + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`type` = #{type} + ,`storageId` = #{storageId} + ,`storageName` = #{storageName} + ,`description` = #{description} + ,`status` = #{status} + ,`stockMan` = #{stockMan} + ,`linkMan` = #{linkMan} + ,`linkTelephone` = #{linkTelephone} + ,`logisticsNo` = #{logisticsNo} + ,`logisticsName` = #{logisticsName} + ,`setMan` = #{setMan} + ,`setDate` = #{setDate} + ,`checkMan` = #{checkMan} + ,`checkDate` = #{checkDate} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_other_storage_out_ticket + where `id` = #{id} + + + + delete from cy_other_storage_out_ticket + ${condition} + + + + delete from cy_other_storage_out_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/OtherStorageTicketDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/OtherStorageTicketDetailMapper.xml new file mode 100644 index 0000000..18254c7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/OtherStorageTicketDetailMapper.xml @@ -0,0 +1,152 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`batchNo`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`dispatchUnitId`,`dispatchUnitName`,`stockAmount`,`amount`,`price`,`money`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_other_storage_ticket_detail + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`batchNo` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`dispatchUnitId` + ,`dispatchUnitName` + ,`stockAmount` + ,`amount` + ,`price` + ,`money` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{batchNo} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{dispatchUnitId} + ,#{dispatchUnitName} + ,#{stockAmount} + ,#{amount} + ,#{price} + ,#{money} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_other_storage_ticket_detail + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`batchNo` = #{batchNo} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`dispatchUnitId` = #{dispatchUnitId} + ,`dispatchUnitName` = #{dispatchUnitName} + ,`stockAmount` = #{stockAmount} + ,`amount` = #{amount} + ,`price` = #{price} + ,`money` = #{money} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_other_storage_ticket_detail + where `id` = #{id} + + + + delete from cy_other_storage_ticket_detail + ${condition} + + + + delete from cy_other_storage_ticket_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/OtherStorageTicketLogMapper.xml b/food-pdm-tools/src/generate/food/mybatis/OtherStorageTicketLogMapper.xml new file mode 100644 index 0000000..6fc3086 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/OtherStorageTicketLogMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`type`,`status`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_other_storage_ticket_log + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`type` + ,`status` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{type} + ,#{status} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_other_storage_ticket_log + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`type` = #{type} + ,`status` = #{status} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_other_storage_ticket_log + where `id` = #{id} + + + + delete from cy_other_storage_ticket_log + ${condition} + + + + delete from cy_other_storage_ticket_log + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/OtherStorageTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/OtherStorageTicketMapper.xml new file mode 100644 index 0000000..28b355e --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/OtherStorageTicketMapper.xml @@ -0,0 +1,137 @@ + + + + + + `id`,`tenantId`,`no`,`type`,`storageId`,`storageName`,`description`,`status`,`stockMan`,`setMan`,`setDate`,`checkMan`,`checkDate`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_other_storage_ticket + + `id`,`tenantId` + ,`no` + ,`type` + ,`storageId` + ,`storageName` + ,`description` + ,`status` + ,`stockMan` + ,`setMan` + ,`setDate` + ,`checkMan` + ,`checkDate` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{type} + ,#{storageId} + ,#{storageName} + ,#{description} + ,#{status} + ,#{stockMan} + ,#{setMan} + ,#{setDate} + ,#{checkMan} + ,#{checkDate} + ,#{createUser} + ,#{createDate} + + + + + update cy_other_storage_ticket + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`type` = #{type} + ,`storageId` = #{storageId} + ,`storageName` = #{storageName} + ,`description` = #{description} + ,`status` = #{status} + ,`stockMan` = #{stockMan} + ,`setMan` = #{setMan} + ,`setDate` = #{setDate} + ,`checkMan` = #{checkMan} + ,`checkDate` = #{checkDate} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_other_storage_ticket + where `id` = #{id} + + + + delete from cy_other_storage_ticket + ${condition} + + + + delete from cy_other_storage_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PayModeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PayModeMapper.xml new file mode 100644 index 0000000..716f263 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PayModeMapper.xml @@ -0,0 +1,149 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`typeId`,`shortcut`,`pointFlag`,`frontFlag`,`rechargeFlag`,`fixeAmount`,`discount`,`otherRateType`,`otherRateValue`,`incomeFlag`,`deleteFlag`,`otherNo`,`periodDiscount`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_pay_mode + + `id`,`tenantId` + ,`no` + ,`name` + ,`typeId` + ,`shortcut` + ,`pointFlag` + ,`frontFlag` + ,`rechargeFlag` + ,`fixeAmount` + ,`discount` + ,`otherRateType` + ,`otherRateValue` + ,`incomeFlag` + ,`deleteFlag` + ,`otherNo` + ,`periodDiscount` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{typeId} + ,#{shortcut} + ,#{pointFlag} + ,#{frontFlag} + ,#{rechargeFlag} + ,#{fixeAmount} + ,#{discount} + ,#{otherRateType} + ,#{otherRateValue} + ,#{incomeFlag} + ,#{deleteFlag} + ,#{otherNo} + ,#{periodDiscount} + ,#{createDate} + ,#{createUser} + + + + + update cy_pay_mode + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`typeId` = #{typeId} + ,`shortcut` = #{shortcut} + ,`pointFlag` = #{pointFlag} + ,`frontFlag` = #{frontFlag} + ,`rechargeFlag` = #{rechargeFlag} + ,`fixeAmount` = #{fixeAmount} + ,`discount` = #{discount} + ,`otherRateType` = #{otherRateType} + ,`otherRateValue` = #{otherRateValue} + ,`incomeFlag` = #{incomeFlag} + ,`deleteFlag` = #{deleteFlag} + ,`otherNo` = #{otherNo} + ,`periodDiscount` = #{periodDiscount} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_pay_mode + where `id` = #{id} + + + + delete from cy_pay_mode + ${condition} + + + + delete from cy_pay_mode + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PayModeSeriesMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PayModeSeriesMapper.xml new file mode 100644 index 0000000..4aec826 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PayModeSeriesMapper.xml @@ -0,0 +1,137 @@ + + + + + + `id`,`tenantId`,`storeId`,`seriesId`,`payModeId`,`shortcut`,`pointFlag`,`frontFlag`,`fixeAmount`,`discount`,`otherRateType`,`otherRateValue`,`periodDiscount`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_pay_mode_series + + `id`,`tenantId` + ,`storeId` + ,`seriesId` + ,`payModeId` + ,`shortcut` + ,`pointFlag` + ,`frontFlag` + ,`fixeAmount` + ,`discount` + ,`otherRateType` + ,`otherRateValue` + ,`periodDiscount` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{storeId} + ,#{seriesId} + ,#{payModeId} + ,#{shortcut} + ,#{pointFlag} + ,#{frontFlag} + ,#{fixeAmount} + ,#{discount} + ,#{otherRateType} + ,#{otherRateValue} + ,#{periodDiscount} + ,#{createDate} + ,#{createUser} + + + + + update cy_pay_mode_series + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`seriesId` = #{seriesId} + ,`payModeId` = #{payModeId} + ,`shortcut` = #{shortcut} + ,`pointFlag` = #{pointFlag} + ,`frontFlag` = #{frontFlag} + ,`fixeAmount` = #{fixeAmount} + ,`discount` = #{discount} + ,`otherRateType` = #{otherRateType} + ,`otherRateValue` = #{otherRateValue} + ,`periodDiscount` = #{periodDiscount} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_pay_mode_series + where `id` = #{id} + + + + delete from cy_pay_mode_series + ${condition} + + + + delete from cy_pay_mode_series + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PayModeStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PayModeStoreMapper.xml new file mode 100644 index 0000000..1d7ab6a --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PayModeStoreMapper.xml @@ -0,0 +1,128 @@ + + + + + + `tenantId`,`storeId`,`modeId`,`shortcut`,`pointFlag`,`frontFlag`,`fixeAmount`,`discount`,`otherRateType`,`otherRateValue`,`periodDiscount` + + + + + + + + + + + + + + + + + + + + insert into cy_pay_mode_store + + `id`,`tenantId` + ,`storeId` + ,`modeId` + ,`shortcut` + ,`pointFlag` + ,`frontFlag` + ,`fixeAmount` + ,`discount` + ,`otherRateType` + ,`otherRateValue` + ,`periodDiscount` + + + #{id},#{tenantId} + ,#{storeId} + ,#{modeId} + ,#{shortcut} + ,#{pointFlag} + ,#{frontFlag} + ,#{fixeAmount} + ,#{discount} + ,#{otherRateType} + ,#{otherRateValue} + ,#{periodDiscount} + + + + + update cy_pay_mode_store + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`modeId` = #{modeId} + ,`shortcut` = #{shortcut} + ,`pointFlag` = #{pointFlag} + ,`frontFlag` = #{frontFlag} + ,`fixeAmount` = #{fixeAmount} + ,`discount` = #{discount} + ,`otherRateType` = #{otherRateType} + ,`otherRateValue` = #{otherRateValue} + ,`periodDiscount` = #{periodDiscount} + + where `id` = #{id} + + + + delete from cy_pay_mode_store + where `id` = #{id} + + + + delete from cy_pay_mode_store + ${condition} + + + + delete from cy_pay_mode_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PayTypeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PayTypeMapper.xml new file mode 100644 index 0000000..180d505 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PayTypeMapper.xml @@ -0,0 +1,113 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`sign`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_pay_type + + `id`,`tenantId` + ,`no` + ,`name` + ,`sign` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{sign} + ,#{createDate} + ,#{createUser} + + + + + update cy_pay_type + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`sign` = #{sign} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_pay_type + where `id` = #{id} + + + + delete from cy_pay_type + ${condition} + + + + delete from cy_pay_type + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PaymentParameterMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PaymentParameterMapper.xml new file mode 100644 index 0000000..4b861fd --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PaymentParameterMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`sign`,`pbody`,`enabled`,`certText`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_payment_parameter + + `id`,`tenantId` + ,`no` + ,`name` + ,`sign` + ,`pbody` + ,`enabled` + ,`certText` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{sign} + ,#{pbody} + ,#{enabled} + ,#{certText} + ,#{createUser} + ,#{createDate} + + + + + update cy_payment_parameter + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`sign` = #{sign} + ,`pbody` = #{pbody} + ,`enabled` = #{enabled} + ,`certText` = #{certText} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_payment_parameter + where `id` = #{id} + + + + delete from cy_payment_parameter + ${condition} + + + + delete from cy_payment_parameter + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PaymentParameterStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PaymentParameterStoreMapper.xml new file mode 100644 index 0000000..dcb716c --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PaymentParameterStoreMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`storeId`,`parameterId` + + + + + + + + + + + + + + + + + + + + insert into cy_payment_parameter_store + + `id`,`tenantId` + ,`storeId` + ,`parameterId` + + + #{id},#{tenantId} + ,#{storeId} + ,#{parameterId} + + + + + update cy_payment_parameter_store + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`parameterId` = #{parameterId} + + where `id` = #{id} + + + + delete from cy_payment_parameter_store + where `id` = #{id} + + + + delete from cy_payment_parameter_store + ${condition} + + + + delete from cy_payment_parameter_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PosInfoMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PosInfoMapper.xml new file mode 100644 index 0000000..ae74b85 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PosInfoMapper.xml @@ -0,0 +1,155 @@ + + + + + + `id`,`tenantId`,`appSign`,`terminalType`,`storeId`,`storeNo`,`posNo`,`name`,`MACAddress`,`serialNumber`,`cpuNumber`,`status`,`pollCode`,`appSecret`,`appKey`,`description`,`deleteFlag`,`aliasName`,`isTester`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_pos_info + + `id`,`tenantId` + ,`appSign` + ,`terminalType` + ,`storeId` + ,`storeNo` + ,`posNo` + ,`name` + ,`MACAddress` + ,`serialNumber` + ,`cpuNumber` + ,`status` + ,`pollCode` + ,`appSecret` + ,`appKey` + ,`description` + ,`deleteFlag` + ,`aliasName` + ,`isTester` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{appSign} + ,#{terminalType} + ,#{storeId} + ,#{storeNo} + ,#{posNo} + ,#{name} + ,#{MACAddress} + ,#{serialNumber} + ,#{cpuNumber} + ,#{status} + ,#{pollCode} + ,#{appSecret} + ,#{appKey} + ,#{description} + ,#{deleteFlag} + ,#{aliasName} + ,#{isTester} + ,#{createDate} + ,#{createUser} + + + + + update cy_pos_info + + `tenantId` = #{tenantId} + ,`appSign` = #{appSign} + ,`terminalType` = #{terminalType} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`posNo` = #{posNo} + ,`name` = #{name} + ,`MACAddress` = #{MACAddress} + ,`serialNumber` = #{serialNumber} + ,`cpuNumber` = #{cpuNumber} + ,`status` = #{status} + ,`pollCode` = #{pollCode} + ,`appSecret` = #{appSecret} + ,`appKey` = #{appKey} + ,`description` = #{description} + ,`deleteFlag` = #{deleteFlag} + ,`aliasName` = #{aliasName} + ,`isTester` = #{isTester} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_pos_info + where `id` = #{id} + + + + delete from cy_pos_info + ${condition} + + + + delete from cy_pos_info + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PosPollcodeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PosPollcodeMapper.xml new file mode 100644 index 0000000..ce1280a --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PosPollcodeMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`pollCode`,`storeId`,`storeNo`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_pos_pollcode + + `id`,`tenantId` + ,`pollCode` + ,`storeId` + ,`storeNo` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{pollCode} + ,#{storeId} + ,#{storeNo} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_pos_pollcode + + `tenantId` = #{tenantId} + ,`pollCode` = #{pollCode} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_pos_pollcode + where `id` = #{id} + + + + delete from cy_pos_pollcode + ${condition} + + + + delete from cy_pos_pollcode + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PosRoleMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PosRoleMapper.xml new file mode 100644 index 0000000..8edecf3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PosRoleMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`discount`,`free`,`description`,`type`,`deleteFlag`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_pos_role + + `id`,`tenantId` + ,`no` + ,`name` + ,`discount` + ,`free` + ,`description` + ,`type` + ,`deleteFlag` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{discount} + ,#{free} + ,#{description} + ,#{type} + ,#{deleteFlag} + ,#{createUser} + ,#{createDate} + + + + + update cy_pos_role + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`discount` = #{discount} + ,`free` = #{free} + ,`description` = #{description} + ,`type` = #{type} + ,`deleteFlag` = #{deleteFlag} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_pos_role + where `id` = #{id} + + + + delete from cy_pos_role + ${condition} + + + + delete from cy_pos_role + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PosRoleModuleMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PosRoleModuleMapper.xml new file mode 100644 index 0000000..70e4a2f --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PosRoleModuleMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`roleId`,`moduleNo` + + + + + + + + + + + + + + + + + + + + insert into cy_pos_role_module + + `id`,`tenantId` + ,`roleId` + ,`moduleNo` + + + #{id},#{tenantId} + ,#{roleId} + ,#{moduleNo} + + + + + update cy_pos_role_module + + `tenantId` = #{tenantId} + ,`roleId` = #{roleId} + ,`moduleNo` = #{moduleNo} + + where `id` = #{id} + + + + delete from cy_pos_role_module + where `id` = #{id} + + + + delete from cy_pos_role_module + ${condition} + + + + delete from cy_pos_role_module + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PosSetPlanConfigMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PosSetPlanConfigMapper.xml new file mode 100644 index 0000000..2cc52d7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PosSetPlanConfigMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`planId`,`clientId`,`group`,`keys`,`values`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_pos_set_plan_config + + `id`,`tenantId` + ,`planId` + ,`clientId` + ,`group` + ,`keys` + ,`values` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{planId} + ,#{clientId} + ,#{group} + ,#{keys} + ,#{values} + ,#{createDate} + ,#{createUser} + + + + + update cy_pos_set_plan_config + + `tenantId` = #{tenantId} + ,`planId` = #{planId} + ,`clientId` = #{clientId} + ,`group` = #{group} + ,`keys` = #{keys} + ,`values` = #{values} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_pos_set_plan_config + where `id` = #{id} + + + + delete from cy_pos_set_plan_config + ${condition} + + + + delete from cy_pos_set_plan_config + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PosSetPlanMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PosSetPlanMapper.xml new file mode 100644 index 0000000..2ace326 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PosSetPlanMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`name`,`terminalType`,`description`,`enable`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_pos_set_plan + + `id`,`tenantId` + ,`name` + ,`terminalType` + ,`description` + ,`enable` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{name} + ,#{terminalType} + ,#{description} + ,#{enable} + ,#{createDate} + ,#{createUser} + + + + + update cy_pos_set_plan + + `tenantId` = #{tenantId} + ,`name` = #{name} + ,`terminalType` = #{terminalType} + ,`description` = #{description} + ,`enable` = #{enable} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_pos_set_plan + where `id` = #{id} + + + + delete from cy_pos_set_plan + ${condition} + + + + delete from cy_pos_set_plan + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PosSetPlanModuleMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PosSetPlanModuleMapper.xml new file mode 100644 index 0000000..5589bca --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PosSetPlanModuleMapper.xml @@ -0,0 +1,158 @@ + + + + + + `id`,`tenantId`,`planId`,`clientId`,`area`,`parentId`,`name`,`alias`,`keycode`,`keydata`,`color1`,`color2`,`color3`,`fontSize`,`shortcut`,`orderNo`,`icon`,`enable`,`resourceId`,`layout`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_pos_set_plan_module + + `id`,`tenantId` + ,`planId` + ,`clientId` + ,`area` + ,`parentId` + ,`name` + ,`alias` + ,`keycode` + ,`keydata` + ,`color1` + ,`color2` + ,`color3` + ,`fontSize` + ,`shortcut` + ,`orderNo` + ,`icon` + ,`enable` + ,`resourceId` + ,`layout` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{planId} + ,#{clientId} + ,#{area} + ,#{parentId} + ,#{name} + ,#{alias} + ,#{keycode} + ,#{keydata} + ,#{color1} + ,#{color2} + ,#{color3} + ,#{fontSize} + ,#{shortcut} + ,#{orderNo} + ,#{icon} + ,#{enable} + ,#{resourceId} + ,#{layout} + ,#{createDate} + ,#{createUser} + + + + + update cy_pos_set_plan_module + + `tenantId` = #{tenantId} + ,`planId` = #{planId} + ,`clientId` = #{clientId} + ,`area` = #{area} + ,`parentId` = #{parentId} + ,`name` = #{name} + ,`alias` = #{alias} + ,`keycode` = #{keycode} + ,`keydata` = #{keydata} + ,`color1` = #{color1} + ,`color2` = #{color2} + ,`color3` = #{color3} + ,`fontSize` = #{fontSize} + ,`shortcut` = #{shortcut} + ,`orderNo` = #{orderNo} + ,`icon` = #{icon} + ,`enable` = #{enable} + ,`resourceId` = #{resourceId} + ,`layout` = #{layout} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_pos_set_plan_module + where `id` = #{id} + + + + delete from cy_pos_set_plan_module + ${condition} + + + + delete from cy_pos_set_plan_module + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PosSetPlanResourcesMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PosSetPlanResourcesMapper.xml new file mode 100644 index 0000000..3ae7a39 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PosSetPlanResourcesMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`planId`,`clientId`,`group`,`name`,`keycode`,`keydata`,`enable`,`permission`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_pos_set_plan_resources + + `id`,`tenantId` + ,`planId` + ,`clientId` + ,`group` + ,`name` + ,`keycode` + ,`keydata` + ,`enable` + ,`permission` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{planId} + ,#{clientId} + ,#{group} + ,#{name} + ,#{keycode} + ,#{keydata} + ,#{enable} + ,#{permission} + ,#{createDate} + ,#{createUser} + + + + + update cy_pos_set_plan_resources + + `tenantId` = #{tenantId} + ,`planId` = #{planId} + ,`clientId` = #{clientId} + ,`group` = #{group} + ,`name` = #{name} + ,`keycode` = #{keycode} + ,`keydata` = #{keydata} + ,`enable` = #{enable} + ,`permission` = #{permission} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_pos_set_plan_resources + where `id` = #{id} + + + + delete from cy_pos_set_plan_resources + ${condition} + + + + delete from cy_pos_set_plan_resources + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PosSetPlanShortcutMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PosSetPlanShortcutMapper.xml new file mode 100644 index 0000000..7f58593 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PosSetPlanShortcutMapper.xml @@ -0,0 +1,155 @@ + + + + + + `id`,`tenantId`,`planId`,`clientId`,`area`,`parentId`,`name`,`alias`,`keycode`,`keydata`,`color1`,`color2`,`color3`,`fontSize`,`shortcut`,`orderNo`,`icon`,`enable`,`resourceId`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_pos_set_plan_shortcut + + `id`,`tenantId` + ,`planId` + ,`clientId` + ,`area` + ,`parentId` + ,`name` + ,`alias` + ,`keycode` + ,`keydata` + ,`color1` + ,`color2` + ,`color3` + ,`fontSize` + ,`shortcut` + ,`orderNo` + ,`icon` + ,`enable` + ,`resourceId` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{planId} + ,#{clientId} + ,#{area} + ,#{parentId} + ,#{name} + ,#{alias} + ,#{keycode} + ,#{keydata} + ,#{color1} + ,#{color2} + ,#{color3} + ,#{fontSize} + ,#{shortcut} + ,#{orderNo} + ,#{icon} + ,#{enable} + ,#{resourceId} + ,#{createDate} + ,#{createUser} + + + + + update cy_pos_set_plan_shortcut + + `tenantId` = #{tenantId} + ,`planId` = #{planId} + ,`clientId` = #{clientId} + ,`area` = #{area} + ,`parentId` = #{parentId} + ,`name` = #{name} + ,`alias` = #{alias} + ,`keycode` = #{keycode} + ,`keydata` = #{keydata} + ,`color1` = #{color1} + ,`color2` = #{color2} + ,`color3` = #{color3} + ,`fontSize` = #{fontSize} + ,`shortcut` = #{shortcut} + ,`orderNo` = #{orderNo} + ,`icon` = #{icon} + ,`enable` = #{enable} + ,`resourceId` = #{resourceId} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_pos_set_plan_shortcut + where `id` = #{id} + + + + delete from cy_pos_set_plan_shortcut + ${condition} + + + + delete from cy_pos_set_plan_shortcut + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PosSetPlanStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PosSetPlanStoreMapper.xml new file mode 100644 index 0000000..93e3dd8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PosSetPlanStoreMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`storeId`,`planId` + + + + + + + + + + + + + + + + + + + + insert into cy_pos_set_plan_store + + `id`,`tenantId` + ,`storeId` + ,`planId` + + + #{id},#{tenantId} + ,#{storeId} + ,#{planId} + + + + + update cy_pos_set_plan_store + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`planId` = #{planId} + + where `id` = #{id} + + + + delete from cy_pos_set_plan_store + where `id` = #{id} + + + + delete from cy_pos_set_plan_store + ${condition} + + + + delete from cy_pos_set_plan_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PrintImageMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PrintImageMapper.xml new file mode 100644 index 0000000..312c521 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PrintImageMapper.xml @@ -0,0 +1,131 @@ + + + + + + `id`,`tenantId`,`type`,`name`,`width`,`height`,`groupName`,`storageFileName`,`description`,`stopFlag`,`deleteFlag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_print_image + + `id`,`tenantId` + ,`type` + ,`name` + ,`width` + ,`height` + ,`groupName` + ,`storageFileName` + ,`description` + ,`stopFlag` + ,`deleteFlag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{type} + ,#{name} + ,#{width} + ,#{height} + ,#{groupName} + ,#{storageFileName} + ,#{description} + ,#{stopFlag} + ,#{deleteFlag} + ,#{createDate} + ,#{createUser} + + + + + update cy_print_image + + `tenantId` = #{tenantId} + ,`type` = #{type} + ,`name` = #{name} + ,`width` = #{width} + ,`height` = #{height} + ,`groupName` = #{groupName} + ,`storageFileName` = #{storageFileName} + ,`description` = #{description} + ,`stopFlag` = #{stopFlag} + ,`deleteFlag` = #{deleteFlag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_print_image + where `id` = #{id} + + + + delete from cy_print_image + ${condition} + + + + delete from cy_print_image + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PrintImageStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PrintImageStoreMapper.xml new file mode 100644 index 0000000..a1e0691 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PrintImageStoreMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`storeId`,`imageId` + + + + + + + + + + + + + + + + + + + + insert into cy_print_image_store + + `id`,`tenantId` + ,`storeId` + ,`imageId` + + + #{id},#{tenantId} + ,#{storeId} + ,#{imageId} + + + + + update cy_print_image_store + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`imageId` = #{imageId} + + where `id` = #{id} + + + + delete from cy_print_image_store + where `id` = #{id} + + + + delete from cy_print_image_store + ${condition} + + + + delete from cy_print_image_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductBatchNegativeStockDifferMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductBatchNegativeStockDifferMapper.xml new file mode 100644 index 0000000..3ced754 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductBatchNegativeStockDifferMapper.xml @@ -0,0 +1,137 @@ + + + + + + `id`,`tenantId`,`batchNo`,`storageId`,`productId`,`productNo`,`specId`,`inventoryUnitId`,`inventoryUnitName`,`offsetBatchNo`,`price`,`quantity`,`amount`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_product_batch_negative_stock_differ + + `id`,`tenantId` + ,`batchNo` + ,`storageId` + ,`productId` + ,`productNo` + ,`specId` + ,`inventoryUnitId` + ,`inventoryUnitName` + ,`offsetBatchNo` + ,`price` + ,`quantity` + ,`amount` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{batchNo} + ,#{storageId} + ,#{productId} + ,#{productNo} + ,#{specId} + ,#{inventoryUnitId} + ,#{inventoryUnitName} + ,#{offsetBatchNo} + ,#{price} + ,#{quantity} + ,#{amount} + ,#{createUser} + ,#{createDate} + + + + + update cy_product_batch_negative_stock_differ + + `tenantId` = #{tenantId} + ,`batchNo` = #{batchNo} + ,`storageId` = #{storageId} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`specId` = #{specId} + ,`inventoryUnitId` = #{inventoryUnitId} + ,`inventoryUnitName` = #{inventoryUnitName} + ,`offsetBatchNo` = #{offsetBatchNo} + ,`price` = #{price} + ,`quantity` = #{quantity} + ,`amount` = #{amount} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_product_batch_negative_stock_differ + where `id` = #{id} + + + + delete from cy_product_batch_negative_stock_differ + ${condition} + + + + delete from cy_product_batch_negative_stock_differ + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductBatchNegativeStockMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductBatchNegativeStockMapper.xml new file mode 100644 index 0000000..128aa0c --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductBatchNegativeStockMapper.xml @@ -0,0 +1,146 @@ + + + + + + `id`,`tenantId`,`batchNo`,`storageId`,`ticketType`,`ticketNo`,`productId`,`productNo`,`specId`,`inventoryUnitId`,`inventoryUnitName`,`price`,`quantity`,`offsetBatchNo`,`offsetPrice`,`status`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_product_batch_negative_stock + + `id`,`tenantId` + ,`batchNo` + ,`storageId` + ,`ticketType` + ,`ticketNo` + ,`productId` + ,`productNo` + ,`specId` + ,`inventoryUnitId` + ,`inventoryUnitName` + ,`price` + ,`quantity` + ,`offsetBatchNo` + ,`offsetPrice` + ,`status` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{batchNo} + ,#{storageId} + ,#{ticketType} + ,#{ticketNo} + ,#{productId} + ,#{productNo} + ,#{specId} + ,#{inventoryUnitId} + ,#{inventoryUnitName} + ,#{price} + ,#{quantity} + ,#{offsetBatchNo} + ,#{offsetPrice} + ,#{status} + ,#{createUser} + ,#{createDate} + + + + + update cy_product_batch_negative_stock + + `tenantId` = #{tenantId} + ,`batchNo` = #{batchNo} + ,`storageId` = #{storageId} + ,`ticketType` = #{ticketType} + ,`ticketNo` = #{ticketNo} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`specId` = #{specId} + ,`inventoryUnitId` = #{inventoryUnitId} + ,`inventoryUnitName` = #{inventoryUnitName} + ,`price` = #{price} + ,`quantity` = #{quantity} + ,`offsetBatchNo` = #{offsetBatchNo} + ,`offsetPrice` = #{offsetPrice} + ,`status` = #{status} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_product_batch_negative_stock + where `id` = #{id} + + + + delete from cy_product_batch_negative_stock + ${condition} + + + + delete from cy_product_batch_negative_stock + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductBatchNumberMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductBatchNumberMapper.xml new file mode 100644 index 0000000..97e39f7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductBatchNumberMapper.xml @@ -0,0 +1,149 @@ + + + + + + `id`,`tenantId`,`batchNo`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`dispatchUnitId`,`dispatchUnitName`,`purchaseUnitId`,`purchaseUnitName`,`expiryTime`,`remark`,`status`,`pNo`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_product_batch_number + + `id`,`tenantId` + ,`batchNo` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`dispatchUnitId` + ,`dispatchUnitName` + ,`purchaseUnitId` + ,`purchaseUnitName` + ,`expiryTime` + ,`remark` + ,`status` + ,`pNo` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{batchNo} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{dispatchUnitId} + ,#{dispatchUnitName} + ,#{purchaseUnitId} + ,#{purchaseUnitName} + ,#{expiryTime} + ,#{remark} + ,#{status} + ,#{pNo} + ,#{createUser} + ,#{createDate} + + + + + update cy_product_batch_number + + `tenantId` = #{tenantId} + ,`batchNo` = #{batchNo} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`dispatchUnitId` = #{dispatchUnitId} + ,`dispatchUnitName` = #{dispatchUnitName} + ,`purchaseUnitId` = #{purchaseUnitId} + ,`purchaseUnitName` = #{purchaseUnitName} + ,`expiryTime` = #{expiryTime} + ,`remark` = #{remark} + ,`status` = #{status} + ,`pNo` = #{pNo} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_product_batch_number + where `id` = #{id} + + + + delete from cy_product_batch_number + ${condition} + + + + delete from cy_product_batch_number + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductBatchStockChangeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductBatchStockChangeMapper.xml new file mode 100644 index 0000000..abcc430 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductBatchStockChangeMapper.xml @@ -0,0 +1,155 @@ + + + + + + `id`,`tenantId`,`batchNo`,`storageId`,`productId`,`productNo`,`specId`,`priceIn`,`price`,`quantity`,`ticketType`,`ticketNo`,`inventoryUnitId`,`inventoryUnitName`,`supplierId`,`supplierNo`,`storeId`,`storeNo`,`pNo`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_product_batch_stock_change + + `id`,`tenantId` + ,`batchNo` + ,`storageId` + ,`productId` + ,`productNo` + ,`specId` + ,`priceIn` + ,`price` + ,`quantity` + ,`ticketType` + ,`ticketNo` + ,`inventoryUnitId` + ,`inventoryUnitName` + ,`supplierId` + ,`supplierNo` + ,`storeId` + ,`storeNo` + ,`pNo` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{batchNo} + ,#{storageId} + ,#{productId} + ,#{productNo} + ,#{specId} + ,#{priceIn} + ,#{price} + ,#{quantity} + ,#{ticketType} + ,#{ticketNo} + ,#{inventoryUnitId} + ,#{inventoryUnitName} + ,#{supplierId} + ,#{supplierNo} + ,#{storeId} + ,#{storeNo} + ,#{pNo} + ,#{createUser} + ,#{createDate} + + + + + update cy_product_batch_stock_change + + `tenantId` = #{tenantId} + ,`batchNo` = #{batchNo} + ,`storageId` = #{storageId} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`specId` = #{specId} + ,`priceIn` = #{priceIn} + ,`price` = #{price} + ,`quantity` = #{quantity} + ,`ticketType` = #{ticketType} + ,`ticketNo` = #{ticketNo} + ,`inventoryUnitId` = #{inventoryUnitId} + ,`inventoryUnitName` = #{inventoryUnitName} + ,`supplierId` = #{supplierId} + ,`supplierNo` = #{supplierNo} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`pNo` = #{pNo} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_product_batch_stock_change + where `id` = #{id} + + + + delete from cy_product_batch_stock_change + ${condition} + + + + delete from cy_product_batch_stock_change + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductBatchStockMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductBatchStockMapper.xml new file mode 100644 index 0000000..5580306 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductBatchStockMapper.xml @@ -0,0 +1,146 @@ + + + + + + `id`,`tenantId`,`batchNo`,`storageId`,`productId`,`productNo`,`specId`,`supplierId`,`price`,`quantity`,`remainQuantity`,`ticketType`,`ticketNo`,`inventoryUnitId`,`inventoryUnitName`,`pNo`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_product_batch_stock + + `id`,`tenantId` + ,`batchNo` + ,`storageId` + ,`productId` + ,`productNo` + ,`specId` + ,`supplierId` + ,`price` + ,`quantity` + ,`remainQuantity` + ,`ticketType` + ,`ticketNo` + ,`inventoryUnitId` + ,`inventoryUnitName` + ,`pNo` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{batchNo} + ,#{storageId} + ,#{productId} + ,#{productNo} + ,#{specId} + ,#{supplierId} + ,#{price} + ,#{quantity} + ,#{remainQuantity} + ,#{ticketType} + ,#{ticketNo} + ,#{inventoryUnitId} + ,#{inventoryUnitName} + ,#{pNo} + ,#{createUser} + ,#{createDate} + + + + + update cy_product_batch_stock + + `tenantId` = #{tenantId} + ,`batchNo` = #{batchNo} + ,`storageId` = #{storageId} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`specId` = #{specId} + ,`supplierId` = #{supplierId} + ,`price` = #{price} + ,`quantity` = #{quantity} + ,`remainQuantity` = #{remainQuantity} + ,`ticketType` = #{ticketType} + ,`ticketNo` = #{ticketNo} + ,`inventoryUnitId` = #{inventoryUnitId} + ,`inventoryUnitName` = #{inventoryUnitName} + ,`pNo` = #{pNo} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_product_batch_stock + where `id` = #{id} + + + + delete from cy_product_batch_stock + ${condition} + + + + delete from cy_product_batch_stock + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductBurdenMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductBurdenMapper.xml new file mode 100644 index 0000000..e75efe6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductBurdenMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`productId`,`specId`,`burdenProductId`,`burdenSpecId`,`salesUnitId`,`salesAmount`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_product_burden + + `id`,`tenantId` + ,`productId` + ,`specId` + ,`burdenProductId` + ,`burdenSpecId` + ,`salesUnitId` + ,`salesAmount` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{productId} + ,#{specId} + ,#{burdenProductId} + ,#{burdenSpecId} + ,#{salesUnitId} + ,#{salesAmount} + ,#{createDate} + ,#{createUser} + + + + + update cy_product_burden + + `tenantId` = #{tenantId} + ,`productId` = #{productId} + ,`specId` = #{specId} + ,`burdenProductId` = #{burdenProductId} + ,`burdenSpecId` = #{burdenSpecId} + ,`salesUnitId` = #{salesUnitId} + ,`salesAmount` = #{salesAmount} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_product_burden + where `id` = #{id} + + + + delete from cy_product_burden + ${condition} + + + + delete from cy_product_burden + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductImageMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductImageMapper.xml new file mode 100644 index 0000000..32fbe0b --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductImageMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`productId`,`width`,`height`,`groupName`,`storageFileName`,`length`,`mimeType`,`orderNo`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_product_image + + `id`,`tenantId` + ,`productId` + ,`width` + ,`height` + ,`groupName` + ,`storageFileName` + ,`length` + ,`mimeType` + ,`orderNo` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{productId} + ,#{width} + ,#{height} + ,#{groupName} + ,#{storageFileName} + ,#{length} + ,#{mimeType} + ,#{orderNo} + ,#{createDate} + ,#{createUser} + + + + + update cy_product_image + + `tenantId` = #{tenantId} + ,`productId` = #{productId} + ,`width` = #{width} + ,`height` = #{height} + ,`groupName` = #{groupName} + ,`storageFileName` = #{storageFileName} + ,`length` = #{length} + ,`mimeType` = #{mimeType} + ,`orderNo` = #{orderNo} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_product_image + where `id` = #{id} + + + + delete from cy_product_image + ${condition} + + + + delete from cy_product_image + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductKdsPlanMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductKdsPlanMapper.xml new file mode 100644 index 0000000..e33465c --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductKdsPlanMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`storeId`,`productId`,`chuxianFlag`,`chuxian`,`chuxianTime`,`chupinFlag`,`chupin`,`chupinTime`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_product_kds_plan + + `id`,`tenantId` + ,`storeId` + ,`productId` + ,`chuxianFlag` + ,`chuxian` + ,`chuxianTime` + ,`chupinFlag` + ,`chupin` + ,`chupinTime` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storeId} + ,#{productId} + ,#{chuxianFlag} + ,#{chuxian} + ,#{chuxianTime} + ,#{chupinFlag} + ,#{chupin} + ,#{chupinTime} + ,#{createUser} + ,#{createDate} + + + + + update cy_product_kds_plan + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`productId` = #{productId} + ,`chuxianFlag` = #{chuxianFlag} + ,`chuxian` = #{chuxian} + ,`chuxianTime` = #{chuxianTime} + ,`chupinFlag` = #{chupinFlag} + ,`chupin` = #{chupin} + ,`chupinTime` = #{chupinTime} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_product_kds_plan + where `id` = #{id} + + + + delete from cy_product_kds_plan + ${condition} + + + + delete from cy_product_kds_plan + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductKitPlanMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductKitPlanMapper.xml new file mode 100644 index 0000000..4299009 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductKitPlanMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`storeId`,`productId`,`chudaFlag`,`chuda`,`chupinFlag`,`chupin`,`labelFlag`,`labelValue`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_product_kit_plan + + `id`,`tenantId` + ,`storeId` + ,`productId` + ,`chudaFlag` + ,`chuda` + ,`chupinFlag` + ,`chupin` + ,`labelFlag` + ,`labelValue` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storeId} + ,#{productId} + ,#{chudaFlag} + ,#{chuda} + ,#{chupinFlag} + ,#{chupin} + ,#{labelFlag} + ,#{labelValue} + ,#{createUser} + ,#{createDate} + + + + + update cy_product_kit_plan + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`productId` = #{productId} + ,`chudaFlag` = #{chudaFlag} + ,`chuda` = #{chuda} + ,`chupinFlag` = #{chupinFlag} + ,`chupin` = #{chupin} + ,`labelFlag` = #{labelFlag} + ,`labelValue` = #{labelValue} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_product_kit_plan + where `id` = #{id} + + + + delete from cy_product_kit_plan + ${condition} + + + + delete from cy_product_kit_plan + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductMakeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductMakeMapper.xml new file mode 100644 index 0000000..b08dbaf --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductMakeMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`productId`,`makeId` + + + + + + + + + + + + + + + + + + + + insert into cy_product_make + + `id`,`tenantId` + ,`productId` + ,`makeId` + + + #{id},#{tenantId} + ,#{productId} + ,#{makeId} + + + + + update cy_product_make + + `tenantId` = #{tenantId} + ,`productId` = #{productId} + ,`makeId` = #{makeId} + + where `id` = #{id} + + + + delete from cy_product_make + where `id` = #{id} + + + + delete from cy_product_make + ${condition} + + + + delete from cy_product_make + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductMakeStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductMakeStoreMapper.xml new file mode 100644 index 0000000..2ed9f20 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductMakeStoreMapper.xml @@ -0,0 +1,107 @@ + + + + + + `tenantId`,`storeId`,`makeId`,`addPrice` + + + + + + + + + + + + + + + + + + + + insert into cy_product_make_store + + `id`,`tenantId` + ,`storeId` + ,`makeId` + ,`addPrice` + + + #{id},#{tenantId} + ,#{storeId} + ,#{makeId} + ,#{addPrice} + + + + + update cy_product_make_store + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`makeId` = #{makeId} + ,`addPrice` = #{addPrice} + + where `id` = #{id} + + + + delete from cy_product_make_store + where `id` = #{id} + + + + delete from cy_product_make_store + ${condition} + + + + delete from cy_product_make_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductMakeTemplateDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductMakeTemplateDetailMapper.xml new file mode 100644 index 0000000..2fd48af --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductMakeTemplateDetailMapper.xml @@ -0,0 +1,113 @@ + + + + + + `id`,`tenantId`,`templateId`,`makeId`,`addPrice`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_product_make_template_detail + + `id`,`tenantId` + ,`templateId` + ,`makeId` + ,`addPrice` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{templateId} + ,#{makeId} + ,#{addPrice} + ,#{createUser} + ,#{createDate} + + + + + update cy_product_make_template_detail + + `tenantId` = #{tenantId} + ,`templateId` = #{templateId} + ,`makeId` = #{makeId} + ,`addPrice` = #{addPrice} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_product_make_template_detail + where `id` = #{id} + + + + delete from cy_product_make_template_detail + ${condition} + + + + delete from cy_product_make_template_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductMakeTemplateMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductMakeTemplateMapper.xml new file mode 100644 index 0000000..8a13993 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductMakeTemplateMapper.xml @@ -0,0 +1,113 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_product_make_template + + `id`,`tenantId` + ,`no` + ,`name` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_product_make_template + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_product_make_template + where `id` = #{id} + + + + delete from cy_product_make_template + ${condition} + + + + delete from cy_product_make_template + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductMapper.xml new file mode 100644 index 0000000..a2f0cb2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductMapper.xml @@ -0,0 +1,269 @@ + + + + + + `id`,`tenantId`,`brandId`,`typeId`,`typePath`,`no`,`name`,`spell`,`assistNo`,`barCode`,`otherNo`,`english`,`shortName`,`spec`,`unitId`,`description`,`commissionType`,`commissionValue`,`discountFlag`,`tapleFlag`,`weighFlag`,`currentFlag`,`labelPrintFlag`,`suitFlag`,`mebDiscountFlag`,`giveFlag`,`promotionFlag`,`type`,`stockFlag`,`pointType`,`pointValue`,`purchaseTax`,`saleTax`,`lyRate`,`groupName`,`picture`,`stopFlag`,`deleteFlag`,`noType`,`zcFlag`,`erpCategoryCode`,`erpSyncFlag`,`selfFlag`,`storeId`,`storageId`,`kdsFlag`,`ext1`,`ext2`,`ext3`,`lineFlag`,`minCount`,`orderNo`,`isNew`,`monthSaleCount`,`praise`,`saleTimeType`,`saleTime`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_product + + `id`,`tenantId` + ,`brandId` + ,`typeId` + ,`typePath` + ,`no` + ,`name` + ,`spell` + ,`assistNo` + ,`barCode` + ,`otherNo` + ,`english` + ,`shortName` + ,`spec` + ,`unitId` + ,`description` + ,`commissionType` + ,`commissionValue` + ,`discountFlag` + ,`tapleFlag` + ,`weighFlag` + ,`currentFlag` + ,`labelPrintFlag` + ,`suitFlag` + ,`mebDiscountFlag` + ,`giveFlag` + ,`promotionFlag` + ,`type` + ,`stockFlag` + ,`pointType` + ,`pointValue` + ,`purchaseTax` + ,`saleTax` + ,`lyRate` + ,`groupName` + ,`picture` + ,`stopFlag` + ,`deleteFlag` + ,`noType` + ,`zcFlag` + ,`erpCategoryCode` + ,`erpSyncFlag` + ,`selfFlag` + ,`storeId` + ,`storageId` + ,`kdsFlag` + ,`ext1` + ,`ext2` + ,`ext3` + ,`lineFlag` + ,`minCount` + ,`orderNo` + ,`isNew` + ,`monthSaleCount` + ,`praise` + ,`saleTimeType` + ,`saleTime` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{brandId} + ,#{typeId} + ,#{typePath} + ,#{no} + ,#{name} + ,#{spell} + ,#{assistNo} + ,#{barCode} + ,#{otherNo} + ,#{english} + ,#{shortName} + ,#{spec} + ,#{unitId} + ,#{description} + ,#{commissionType} + ,#{commissionValue} + ,#{discountFlag} + ,#{tapleFlag} + ,#{weighFlag} + ,#{currentFlag} + ,#{labelPrintFlag} + ,#{suitFlag} + ,#{mebDiscountFlag} + ,#{giveFlag} + ,#{promotionFlag} + ,#{type} + ,#{stockFlag} + ,#{pointType} + ,#{pointValue} + ,#{purchaseTax} + ,#{saleTax} + ,#{lyRate} + ,#{groupName} + ,#{picture} + ,#{stopFlag} + ,#{deleteFlag} + ,#{noType} + ,#{zcFlag} + ,#{erpCategoryCode} + ,#{erpSyncFlag} + ,#{selfFlag} + ,#{storeId} + ,#{storageId} + ,#{kdsFlag} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{lineFlag} + ,#{minCount} + ,#{orderNo} + ,#{isNew} + ,#{monthSaleCount} + ,#{praise} + ,#{saleTimeType} + ,#{saleTime} + ,#{createDate} + ,#{createUser} + + + + + update cy_product + + `tenantId` = #{tenantId} + ,`brandId` = #{brandId} + ,`typeId` = #{typeId} + ,`typePath` = #{typePath} + ,`no` = #{no} + ,`name` = #{name} + ,`spell` = #{spell} + ,`assistNo` = #{assistNo} + ,`barCode` = #{barCode} + ,`otherNo` = #{otherNo} + ,`english` = #{english} + ,`shortName` = #{shortName} + ,`spec` = #{spec} + ,`unitId` = #{unitId} + ,`description` = #{description} + ,`commissionType` = #{commissionType} + ,`commissionValue` = #{commissionValue} + ,`discountFlag` = #{discountFlag} + ,`tapleFlag` = #{tapleFlag} + ,`weighFlag` = #{weighFlag} + ,`currentFlag` = #{currentFlag} + ,`labelPrintFlag` = #{labelPrintFlag} + ,`suitFlag` = #{suitFlag} + ,`mebDiscountFlag` = #{mebDiscountFlag} + ,`giveFlag` = #{giveFlag} + ,`promotionFlag` = #{promotionFlag} + ,`type` = #{type} + ,`stockFlag` = #{stockFlag} + ,`pointType` = #{pointType} + ,`pointValue` = #{pointValue} + ,`purchaseTax` = #{purchaseTax} + ,`saleTax` = #{saleTax} + ,`lyRate` = #{lyRate} + ,`groupName` = #{groupName} + ,`picture` = #{picture} + ,`stopFlag` = #{stopFlag} + ,`deleteFlag` = #{deleteFlag} + ,`noType` = #{noType} + ,`zcFlag` = #{zcFlag} + ,`erpCategoryCode` = #{erpCategoryCode} + ,`erpSyncFlag` = #{erpSyncFlag} + ,`selfFlag` = #{selfFlag} + ,`storeId` = #{storeId} + ,`storageId` = #{storageId} + ,`kdsFlag` = #{kdsFlag} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`lineFlag` = #{lineFlag} + ,`minCount` = #{minCount} + ,`orderNo` = #{orderNo} + ,`isNew` = #{isNew} + ,`monthSaleCount` = #{monthSaleCount} + ,`praise` = #{praise} + ,`saleTimeType` = #{saleTimeType} + ,`saleTime` = #{saleTime} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_product + where `id` = #{id} + + + + delete from cy_product + ${condition} + + + + delete from cy_product + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductRatioMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductRatioMapper.xml new file mode 100644 index 0000000..cb6e4d2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductRatioMapper.xml @@ -0,0 +1,146 @@ + + + + + + `id`,`tenantId`,`productId`,`dispatchUnitId`,`purchaseUnitId`,`pdScale`,`packUnitId`,`dpScale`,`salesUnitId`,`psScale`,`maxStock`,`minStock`,`thUseLevel`,`realThUseLevel`,`cost`,`costType`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_product_ratio + + `id`,`tenantId` + ,`productId` + ,`dispatchUnitId` + ,`purchaseUnitId` + ,`pdScale` + ,`packUnitId` + ,`dpScale` + ,`salesUnitId` + ,`psScale` + ,`maxStock` + ,`minStock` + ,`thUseLevel` + ,`realThUseLevel` + ,`cost` + ,`costType` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{productId} + ,#{dispatchUnitId} + ,#{purchaseUnitId} + ,#{pdScale} + ,#{packUnitId} + ,#{dpScale} + ,#{salesUnitId} + ,#{psScale} + ,#{maxStock} + ,#{minStock} + ,#{thUseLevel} + ,#{realThUseLevel} + ,#{cost} + ,#{costType} + ,#{createDate} + ,#{createUser} + + + + + update cy_product_ratio + + `tenantId` = #{tenantId} + ,`productId` = #{productId} + ,`dispatchUnitId` = #{dispatchUnitId} + ,`purchaseUnitId` = #{purchaseUnitId} + ,`pdScale` = #{pdScale} + ,`packUnitId` = #{packUnitId} + ,`dpScale` = #{dpScale} + ,`salesUnitId` = #{salesUnitId} + ,`psScale` = #{psScale} + ,`maxStock` = #{maxStock} + ,`minStock` = #{minStock} + ,`thUseLevel` = #{thUseLevel} + ,`realThUseLevel` = #{realThUseLevel} + ,`cost` = #{cost} + ,`costType` = #{costType} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_product_ratio + where `id` = #{id} + + + + delete from cy_product_ratio + ${condition} + + + + delete from cy_product_ratio + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductSpecMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductSpecMapper.xml new file mode 100644 index 0000000..9a44ef8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductSpecMapper.xml @@ -0,0 +1,167 @@ + + + + + + `id`,`tenantId`,`productId`,`no`,`name`,`price`,`minPrice`,`memberPrice`,`wprice`,`wmemberPrice`,`boxPrice`,`otherPrice`,`costPrice`,`purchasePrice`,`dispatchPrice`,`materialRate`,`isdefault`,`deleteFlag`,`erpCode`,`erpSyncStatus`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_product_spec + + `id`,`tenantId` + ,`productId` + ,`no` + ,`name` + ,`price` + ,`minPrice` + ,`memberPrice` + ,`wprice` + ,`wmemberPrice` + ,`boxPrice` + ,`otherPrice` + ,`costPrice` + ,`purchasePrice` + ,`dispatchPrice` + ,`materialRate` + ,`isdefault` + ,`deleteFlag` + ,`erpCode` + ,`erpSyncStatus` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{productId} + ,#{no} + ,#{name} + ,#{price} + ,#{minPrice} + ,#{memberPrice} + ,#{wprice} + ,#{wmemberPrice} + ,#{boxPrice} + ,#{otherPrice} + ,#{costPrice} + ,#{purchasePrice} + ,#{dispatchPrice} + ,#{materialRate} + ,#{isdefault} + ,#{deleteFlag} + ,#{erpCode} + ,#{erpSyncStatus} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_product_spec + + `tenantId` = #{tenantId} + ,`productId` = #{productId} + ,`no` = #{no} + ,`name` = #{name} + ,`price` = #{price} + ,`minPrice` = #{minPrice} + ,`memberPrice` = #{memberPrice} + ,`wprice` = #{wprice} + ,`wmemberPrice` = #{wmemberPrice} + ,`boxPrice` = #{boxPrice} + ,`otherPrice` = #{otherPrice} + ,`costPrice` = #{costPrice} + ,`purchasePrice` = #{purchasePrice} + ,`dispatchPrice` = #{dispatchPrice} + ,`materialRate` = #{materialRate} + ,`isdefault` = #{isdefault} + ,`deleteFlag` = #{deleteFlag} + ,`erpCode` = #{erpCode} + ,`erpSyncStatus` = #{erpSyncStatus} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_product_spec + where `id` = #{id} + + + + delete from cy_product_spec + ${condition} + + + + delete from cy_product_spec + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductStockLogMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductStockLogMapper.xml new file mode 100644 index 0000000..aed1b48 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductStockLogMapper.xml @@ -0,0 +1,185 @@ + + + + + + `id`,`tenantId`,`storageId`,`storageName`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`operationType`,`orderNo`,`orderType`,`orderTypeName`,`dispatchUnitId`,`dispatchUnitName`,`purchaseUnitId`,`purchaseUnitName`,`preAmount`,`amount`,`afterAmount`,`price`,`money`,`costAmount`,`supplierId`,`supplierNo`,`storeId`,`storeNo`,`pNo`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_product_stock_log + + `id`,`tenantId` + ,`storageId` + ,`storageName` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`operationType` + ,`orderNo` + ,`orderType` + ,`orderTypeName` + ,`dispatchUnitId` + ,`dispatchUnitName` + ,`purchaseUnitId` + ,`purchaseUnitName` + ,`preAmount` + ,`amount` + ,`afterAmount` + ,`price` + ,`money` + ,`costAmount` + ,`supplierId` + ,`supplierNo` + ,`storeId` + ,`storeNo` + ,`pNo` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storageId} + ,#{storageName} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{operationType} + ,#{orderNo} + ,#{orderType} + ,#{orderTypeName} + ,#{dispatchUnitId} + ,#{dispatchUnitName} + ,#{purchaseUnitId} + ,#{purchaseUnitName} + ,#{preAmount} + ,#{amount} + ,#{afterAmount} + ,#{price} + ,#{money} + ,#{costAmount} + ,#{supplierId} + ,#{supplierNo} + ,#{storeId} + ,#{storeNo} + ,#{pNo} + ,#{createUser} + ,#{createDate} + + + + + update cy_product_stock_log + + `tenantId` = #{tenantId} + ,`storageId` = #{storageId} + ,`storageName` = #{storageName} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`operationType` = #{operationType} + ,`orderNo` = #{orderNo} + ,`orderType` = #{orderType} + ,`orderTypeName` = #{orderTypeName} + ,`dispatchUnitId` = #{dispatchUnitId} + ,`dispatchUnitName` = #{dispatchUnitName} + ,`purchaseUnitId` = #{purchaseUnitId} + ,`purchaseUnitName` = #{purchaseUnitName} + ,`preAmount` = #{preAmount} + ,`amount` = #{amount} + ,`afterAmount` = #{afterAmount} + ,`price` = #{price} + ,`money` = #{money} + ,`costAmount` = #{costAmount} + ,`supplierId` = #{supplierId} + ,`supplierNo` = #{supplierNo} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`pNo` = #{pNo} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_product_stock_log + where `id` = #{id} + + + + delete from cy_product_stock_log + ${condition} + + + + delete from cy_product_stock_log + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductStockMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductStockMapper.xml new file mode 100644 index 0000000..d4c9928 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductStockMapper.xml @@ -0,0 +1,146 @@ + + + + + + `id`,`tenantId`,`storageId`,`storageName`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`dispatchUnitId`,`dispatchUnitName`,`purchaseUnitId`,`purchaseUnitName`,`stockAmount`,`stockCost`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_product_stock + + `id`,`tenantId` + ,`storageId` + ,`storageName` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`dispatchUnitId` + ,`dispatchUnitName` + ,`purchaseUnitId` + ,`purchaseUnitName` + ,`stockAmount` + ,`stockCost` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storageId} + ,#{storageName} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{dispatchUnitId} + ,#{dispatchUnitName} + ,#{purchaseUnitId} + ,#{purchaseUnitName} + ,#{stockAmount} + ,#{stockCost} + ,#{createUser} + ,#{createDate} + + + + + update cy_product_stock + + `tenantId` = #{tenantId} + ,`storageId` = #{storageId} + ,`storageName` = #{storageName} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`dispatchUnitId` = #{dispatchUnitId} + ,`dispatchUnitName` = #{dispatchUnitName} + ,`purchaseUnitId` = #{purchaseUnitId} + ,`purchaseUnitName` = #{purchaseUnitName} + ,`stockAmount` = #{stockAmount} + ,`stockCost` = #{stockCost} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_product_stock + where `id` = #{id} + + + + delete from cy_product_stock + ${condition} + + + + delete from cy_product_stock + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductStoreOutCollectDayMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductStoreOutCollectDayMapper.xml new file mode 100644 index 0000000..ab8798d --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductStoreOutCollectDayMapper.xml @@ -0,0 +1,149 @@ + + + + + + `id`,`tenantId`,`storeId`,`orderType`,`productId`,`productNo`,`productName`,`typeId`,`specName`,`productDescription`,`price`,`packUnitId`,`packUnitName`,`specId`,`totalAmount`,`type`,`no`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_product_store_out_collect_day + + `id`,`tenantId` + ,`storeId` + ,`orderType` + ,`productId` + ,`productNo` + ,`productName` + ,`typeId` + ,`specName` + ,`productDescription` + ,`price` + ,`packUnitId` + ,`packUnitName` + ,`specId` + ,`totalAmount` + ,`type` + ,`no` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storeId} + ,#{orderType} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{typeId} + ,#{specName} + ,#{productDescription} + ,#{price} + ,#{packUnitId} + ,#{packUnitName} + ,#{specId} + ,#{totalAmount} + ,#{type} + ,#{no} + ,#{createUser} + ,#{createDate} + + + + + update cy_product_store_out_collect_day + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`orderType` = #{orderType} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`typeId` = #{typeId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`price` = #{price} + ,`packUnitId` = #{packUnitId} + ,`packUnitName` = #{packUnitName} + ,`specId` = #{specId} + ,`totalAmount` = #{totalAmount} + ,`type` = #{type} + ,`no` = #{no} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_product_store_out_collect_day + where `id` = #{id} + + + + delete from cy_product_store_out_collect_day + ${condition} + + + + delete from cy_product_store_out_collect_day + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductStoreStockLogMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductStoreStockLogMapper.xml new file mode 100644 index 0000000..99f46b0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductStoreStockLogMapper.xml @@ -0,0 +1,167 @@ + + + + + + `id`,`tenantId`,`storeId`,`storageId`,`storageName`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`orderNo`,`orderType`,`orderTypeName`,`dispatchUnitId`,`dispatchUnitName`,`packUnitId`,`packUnitName`,`preAmount`,`amount`,`afterAmount`,`price`,`money`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_product_store_stock_log + + `id`,`tenantId` + ,`storeId` + ,`storageId` + ,`storageName` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`orderNo` + ,`orderType` + ,`orderTypeName` + ,`dispatchUnitId` + ,`dispatchUnitName` + ,`packUnitId` + ,`packUnitName` + ,`preAmount` + ,`amount` + ,`afterAmount` + ,`price` + ,`money` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storeId} + ,#{storageId} + ,#{storageName} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{orderNo} + ,#{orderType} + ,#{orderTypeName} + ,#{dispatchUnitId} + ,#{dispatchUnitName} + ,#{packUnitId} + ,#{packUnitName} + ,#{preAmount} + ,#{amount} + ,#{afterAmount} + ,#{price} + ,#{money} + ,#{createUser} + ,#{createDate} + + + + + update cy_product_store_stock_log + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`storageId` = #{storageId} + ,`storageName` = #{storageName} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`orderNo` = #{orderNo} + ,`orderType` = #{orderType} + ,`orderTypeName` = #{orderTypeName} + ,`dispatchUnitId` = #{dispatchUnitId} + ,`dispatchUnitName` = #{dispatchUnitName} + ,`packUnitId` = #{packUnitId} + ,`packUnitName` = #{packUnitName} + ,`preAmount` = #{preAmount} + ,`amount` = #{amount} + ,`afterAmount` = #{afterAmount} + ,`price` = #{price} + ,`money` = #{money} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_product_store_stock_log + where `id` = #{id} + + + + delete from cy_product_store_stock_log + ${condition} + + + + delete from cy_product_store_stock_log + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductStoreStockMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductStoreStockMapper.xml new file mode 100644 index 0000000..6d8d30d --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductStoreStockMapper.xml @@ -0,0 +1,152 @@ + + + + + + `id`,`tenantId`,`storeId`,`storageId`,`storageName`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`dispatchUnitId`,`dispatchUnitName`,`packUnitId`,`packUnitName`,`stockAmount`,`stockCost`,`minStock`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_product_store_stock + + `id`,`tenantId` + ,`storeId` + ,`storageId` + ,`storageName` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`dispatchUnitId` + ,`dispatchUnitName` + ,`packUnitId` + ,`packUnitName` + ,`stockAmount` + ,`stockCost` + ,`minStock` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storeId} + ,#{storageId} + ,#{storageName} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{dispatchUnitId} + ,#{dispatchUnitName} + ,#{packUnitId} + ,#{packUnitName} + ,#{stockAmount} + ,#{stockCost} + ,#{minStock} + ,#{createUser} + ,#{createDate} + + + + + update cy_product_store_stock + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`storageId` = #{storageId} + ,`storageName` = #{storageName} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`dispatchUnitId` = #{dispatchUnitId} + ,`dispatchUnitName` = #{dispatchUnitName} + ,`packUnitId` = #{packUnitId} + ,`packUnitName` = #{packUnitName} + ,`stockAmount` = #{stockAmount} + ,`stockCost` = #{stockCost} + ,`minStock` = #{minStock} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_product_store_stock + where `id` = #{id} + + + + delete from cy_product_store_stock + ${condition} + + + + delete from cy_product_store_stock + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductSuitDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductSuitDetailMapper.xml new file mode 100644 index 0000000..e86c860 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductSuitDetailMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`suitId`,`productId`,`specId`,`quantity`,`addPrice`,`defaultflag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_product_suit_detail + + `id`,`tenantId` + ,`suitId` + ,`productId` + ,`specId` + ,`quantity` + ,`addPrice` + ,`defaultflag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{suitId} + ,#{productId} + ,#{specId} + ,#{quantity} + ,#{addPrice} + ,#{defaultflag} + ,#{createDate} + ,#{createUser} + + + + + update cy_product_suit_detail + + `tenantId` = #{tenantId} + ,`suitId` = #{suitId} + ,`productId` = #{productId} + ,`specId` = #{specId} + ,`quantity` = #{quantity} + ,`addPrice` = #{addPrice} + ,`defaultflag` = #{defaultflag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_product_suit_detail + where `id` = #{id} + + + + delete from cy_product_suit_detail + ${condition} + + + + delete from cy_product_suit_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductSuitMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductSuitMapper.xml new file mode 100644 index 0000000..575bc35 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductSuitMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`productId`,`no`,`name`,`quantity`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_product_suit + + `id`,`tenantId` + ,`productId` + ,`no` + ,`name` + ,`quantity` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{productId} + ,#{no} + ,#{name} + ,#{quantity} + ,#{createDate} + ,#{createUser} + + + + + update cy_product_suit + + `tenantId` = #{tenantId} + ,`productId` = #{productId} + ,`no` = #{no} + ,`name` = #{name} + ,`quantity` = #{quantity} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_product_suit + where `id` = #{id} + + + + delete from cy_product_suit + ${condition} + + + + delete from cy_product_suit + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductTemplateDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductTemplateDetailMapper.xml new file mode 100644 index 0000000..d405621 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductTemplateDetailMapper.xml @@ -0,0 +1,131 @@ + + + + + + `id`,`tenantId`,`templateId`,`productId`,`specId`,`price`,`minPrice`,`memberPrice`,`wprice`,`wmemberPrice`,`otherPrice`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_product_template_detail + + `id`,`tenantId` + ,`templateId` + ,`productId` + ,`specId` + ,`price` + ,`minPrice` + ,`memberPrice` + ,`wprice` + ,`wmemberPrice` + ,`otherPrice` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{templateId} + ,#{productId} + ,#{specId} + ,#{price} + ,#{minPrice} + ,#{memberPrice} + ,#{wprice} + ,#{wmemberPrice} + ,#{otherPrice} + ,#{createUser} + ,#{createDate} + + + + + update cy_product_template_detail + + `tenantId` = #{tenantId} + ,`templateId` = #{templateId} + ,`productId` = #{productId} + ,`specId` = #{specId} + ,`price` = #{price} + ,`minPrice` = #{minPrice} + ,`memberPrice` = #{memberPrice} + ,`wprice` = #{wprice} + ,`wmemberPrice` = #{wmemberPrice} + ,`otherPrice` = #{otherPrice} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_product_template_detail + where `id` = #{id} + + + + delete from cy_product_template_detail + ${condition} + + + + delete from cy_product_template_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductTemplateMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductTemplateMapper.xml new file mode 100644 index 0000000..6634ab2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductTemplateMapper.xml @@ -0,0 +1,113 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_product_template + + `id`,`tenantId` + ,`no` + ,`name` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_product_template + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_product_template + where `id` = #{id} + + + + delete from cy_product_template + ${condition} + + + + delete from cy_product_template + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductTypeBrandMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductTypeBrandMapper.xml new file mode 100644 index 0000000..a31296a --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductTypeBrandMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`brandId`,`typeId` + + + + + + + + + + + + + + + + + + + + insert into cy_product_type_brand + + `id`,`tenantId` + ,`brandId` + ,`typeId` + + + #{id},#{tenantId} + ,#{brandId} + ,#{typeId} + + + + + update cy_product_type_brand + + `tenantId` = #{tenantId} + ,`brandId` = #{brandId} + ,`typeId` = #{typeId} + + where `id` = #{id} + + + + delete from cy_product_type_brand + where `id` = #{id} + + + + delete from cy_product_type_brand + ${condition} + + + + delete from cy_product_type_brand + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductTypeLabelInfoMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductTypeLabelInfoMapper.xml new file mode 100644 index 0000000..d32906b --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductTypeLabelInfoMapper.xml @@ -0,0 +1,134 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`color`,`imageName`,`width`,`height`,`groupName`,`storageFileName`,`linkUrl`,`deleteFlag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_product_type_label_info + + `id`,`tenantId` + ,`no` + ,`name` + ,`color` + ,`imageName` + ,`width` + ,`height` + ,`groupName` + ,`storageFileName` + ,`linkUrl` + ,`deleteFlag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{color} + ,#{imageName} + ,#{width} + ,#{height} + ,#{groupName} + ,#{storageFileName} + ,#{linkUrl} + ,#{deleteFlag} + ,#{createDate} + ,#{createUser} + + + + + update cy_product_type_label_info + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`color` = #{color} + ,`imageName` = #{imageName} + ,`width` = #{width} + ,`height` = #{height} + ,`groupName` = #{groupName} + ,`storageFileName` = #{storageFileName} + ,`linkUrl` = #{linkUrl} + ,`deleteFlag` = #{deleteFlag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_product_type_label_info + where `id` = #{id} + + + + delete from cy_product_type_label_info + ${condition} + + + + delete from cy_product_type_label_info + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductTypeLabelMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductTypeLabelMapper.xml new file mode 100644 index 0000000..0468036 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductTypeLabelMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`labelId`,`typeId` + + + + + + + + + + + + + + + + + + + + insert into cy_product_type_label + + `id`,`tenantId` + ,`labelId` + ,`typeId` + + + #{id},#{tenantId} + ,#{labelId} + ,#{typeId} + + + + + update cy_product_type_label + + `tenantId` = #{tenantId} + ,`labelId` = #{labelId} + ,`typeId` = #{typeId} + + where `id` = #{id} + + + + delete from cy_product_type_label + where `id` = #{id} + + + + delete from cy_product_type_label + ${condition} + + + + delete from cy_product_type_label + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductTypeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductTypeMapper.xml new file mode 100644 index 0000000..2c8c21d --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductTypeMapper.xml @@ -0,0 +1,152 @@ + + + + + + `id`,`tenantId`,`parentId`,`path`,`no`,`name`,`color`,`deleteFlag`,`sign`,`english`,`stopFlag`,`width`,`height`,`groupName`,`storageFileName`,`length`,`mimeType`,`orderNo`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_product_type + + `id`,`tenantId` + ,`parentId` + ,`path` + ,`no` + ,`name` + ,`color` + ,`deleteFlag` + ,`sign` + ,`english` + ,`stopFlag` + ,`width` + ,`height` + ,`groupName` + ,`storageFileName` + ,`length` + ,`mimeType` + ,`orderNo` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{parentId} + ,#{path} + ,#{no} + ,#{name} + ,#{color} + ,#{deleteFlag} + ,#{sign} + ,#{english} + ,#{stopFlag} + ,#{width} + ,#{height} + ,#{groupName} + ,#{storageFileName} + ,#{length} + ,#{mimeType} + ,#{orderNo} + ,#{createDate} + ,#{createUser} + + + + + update cy_product_type + + `tenantId` = #{tenantId} + ,`parentId` = #{parentId} + ,`path` = #{path} + ,`no` = #{no} + ,`name` = #{name} + ,`color` = #{color} + ,`deleteFlag` = #{deleteFlag} + ,`sign` = #{sign} + ,`english` = #{english} + ,`stopFlag` = #{stopFlag} + ,`width` = #{width} + ,`height` = #{height} + ,`groupName` = #{groupName} + ,`storageFileName` = #{storageFileName} + ,`length` = #{length} + ,`mimeType` = #{mimeType} + ,`orderNo` = #{orderNo} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_product_type + where `id` = #{id} + + + + delete from cy_product_type + ${condition} + + + + delete from cy_product_type + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProductUnitMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProductUnitMapper.xml new file mode 100644 index 0000000..f1d4dc9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProductUnitMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`deleteFlag`,`noType`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_product_unit + + `id`,`tenantId` + ,`no` + ,`name` + ,`deleteFlag` + ,`noType` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{deleteFlag} + ,#{noType} + ,#{createDate} + ,#{createUser} + + + + + update cy_product_unit + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`deleteFlag` = #{deleteFlag} + ,`noType` = #{noType} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_product_unit + where `id` = #{id} + + + + delete from cy_product_unit + ${condition} + + + + delete from cy_product_unit + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramAdPictureMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramAdPictureMapper.xml new file mode 100644 index 0000000..3abd533 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramAdPictureMapper.xml @@ -0,0 +1,131 @@ + + + + + + `id`,`tenantId`,`programId`,`orderNo`,`name`,`width`,`height`,`groupName`,`storageFileName`,`linkUrl`,`deleteFlag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_program_ad_picture + + `id`,`tenantId` + ,`programId` + ,`orderNo` + ,`name` + ,`width` + ,`height` + ,`groupName` + ,`storageFileName` + ,`linkUrl` + ,`deleteFlag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{programId} + ,#{orderNo} + ,#{name} + ,#{width} + ,#{height} + ,#{groupName} + ,#{storageFileName} + ,#{linkUrl} + ,#{deleteFlag} + ,#{createDate} + ,#{createUser} + + + + + update cy_program_ad_picture + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`orderNo` = #{orderNo} + ,`name` = #{name} + ,`width` = #{width} + ,`height` = #{height} + ,`groupName` = #{groupName} + ,`storageFileName` = #{storageFileName} + ,`linkUrl` = #{linkUrl} + ,`deleteFlag` = #{deleteFlag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_program_ad_picture + where `id` = #{id} + + + + delete from cy_program_ad_picture + ${condition} + + + + delete from cy_program_ad_picture + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramAdjustPriceProductMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramAdjustPriceProductMapper.xml new file mode 100644 index 0000000..178e98a --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramAdjustPriceProductMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`programId`,`ticketId`,`ticketNo`,`productId`,`specId`,`wprice`,`wmemberPrice`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_program_adjust_price_product + + `id`,`tenantId` + ,`programId` + ,`ticketId` + ,`ticketNo` + ,`productId` + ,`specId` + ,`wprice` + ,`wmemberPrice` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{programId} + ,#{ticketId} + ,#{ticketNo} + ,#{productId} + ,#{specId} + ,#{wprice} + ,#{wmemberPrice} + ,#{createUser} + ,#{createDate} + + + + + update cy_program_adjust_price_product + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`productId` = #{productId} + ,`specId` = #{specId} + ,`wprice` = #{wprice} + ,`wmemberPrice` = #{wmemberPrice} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_program_adjust_price_product + where `id` = #{id} + + + + delete from cy_program_adjust_price_product + ${condition} + + + + delete from cy_program_adjust_price_product + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramAdjustPriceStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramAdjustPriceStoreMapper.xml new file mode 100644 index 0000000..f65bd04 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramAdjustPriceStoreMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`programId`,`ticketId`,`ticketNo`,`storeId`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_program_adjust_price_store + + `id`,`tenantId` + ,`programId` + ,`ticketId` + ,`ticketNo` + ,`storeId` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{programId} + ,#{ticketId} + ,#{ticketNo} + ,#{storeId} + ,#{createUser} + ,#{createDate} + + + + + update cy_program_adjust_price_store + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`storeId` = #{storeId} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_program_adjust_price_store + where `id` = #{id} + + + + delete from cy_program_adjust_price_store + ${condition} + + + + delete from cy_program_adjust_price_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramAdjustPriceTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramAdjustPriceTicketMapper.xml new file mode 100644 index 0000000..e806fdb --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramAdjustPriceTicketMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`programId`,`no`,`effectDate`,`description`,`status`,`checkPeople`,`checkDate`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_program_adjust_price_ticket + + `id`,`tenantId` + ,`programId` + ,`no` + ,`effectDate` + ,`description` + ,`status` + ,`checkPeople` + ,`checkDate` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{programId} + ,#{no} + ,#{effectDate} + ,#{description} + ,#{status} + ,#{checkPeople} + ,#{checkDate} + ,#{createUser} + ,#{createDate} + + + + + update cy_program_adjust_price_ticket + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`no` = #{no} + ,`effectDate` = #{effectDate} + ,`description` = #{description} + ,`status` = #{status} + ,`checkPeople` = #{checkPeople} + ,`checkDate` = #{checkDate} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_program_adjust_price_ticket + where `id` = #{id} + + + + delete from cy_program_adjust_price_ticket + ${condition} + + + + delete from cy_program_adjust_price_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramDeliverAddressMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramDeliverAddressMapper.xml new file mode 100644 index 0000000..a206384 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramDeliverAddressMapper.xml @@ -0,0 +1,140 @@ + + + + + + `id`,`tenantId`,`programId`,`memberId`,`openId`,`mobile`,`receiveName`,`receiveMobile`,`receiveAddress`,`receiveDoor`,`latitude`,`longitude`,`defaultFlag`,`addressType`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_program_deliver_address + + `id`,`tenantId` + ,`programId` + ,`memberId` + ,`openId` + ,`mobile` + ,`receiveName` + ,`receiveMobile` + ,`receiveAddress` + ,`receiveDoor` + ,`latitude` + ,`longitude` + ,`defaultFlag` + ,`addressType` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{programId} + ,#{memberId} + ,#{openId} + ,#{mobile} + ,#{receiveName} + ,#{receiveMobile} + ,#{receiveAddress} + ,#{receiveDoor} + ,#{latitude} + ,#{longitude} + ,#{defaultFlag} + ,#{addressType} + ,#{createUser} + ,#{createDate} + + + + + update cy_program_deliver_address + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`memberId` = #{memberId} + ,`openId` = #{openId} + ,`mobile` = #{mobile} + ,`receiveName` = #{receiveName} + ,`receiveMobile` = #{receiveMobile} + ,`receiveAddress` = #{receiveAddress} + ,`receiveDoor` = #{receiveDoor} + ,`latitude` = #{latitude} + ,`longitude` = #{longitude} + ,`defaultFlag` = #{defaultFlag} + ,`addressType` = #{addressType} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_program_deliver_address + where `id` = #{id} + + + + delete from cy_program_deliver_address + ${condition} + + + + delete from cy_program_deliver_address + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramEvaluateImageMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramEvaluateImageMapper.xml new file mode 100644 index 0000000..cdd05bb --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramEvaluateImageMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`evaluateId`,`width`,`height`,`groupName`,`storageFileName`,`orderNo`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_program_evaluate_image + + `id`,`tenantId` + ,`evaluateId` + ,`width` + ,`height` + ,`groupName` + ,`storageFileName` + ,`orderNo` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{evaluateId} + ,#{width} + ,#{height} + ,#{groupName} + ,#{storageFileName} + ,#{orderNo} + ,#{createUser} + ,#{createDate} + + + + + update cy_program_evaluate_image + + `tenantId` = #{tenantId} + ,`evaluateId` = #{evaluateId} + ,`width` = #{width} + ,`height` = #{height} + ,`groupName` = #{groupName} + ,`storageFileName` = #{storageFileName} + ,`orderNo` = #{orderNo} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_program_evaluate_image + where `id` = #{id} + + + + delete from cy_program_evaluate_image + ${condition} + + + + delete from cy_program_evaluate_image + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramEvaluateMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramEvaluateMapper.xml new file mode 100644 index 0000000..5bc6420 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramEvaluateMapper.xml @@ -0,0 +1,149 @@ + + + + + + `id`,`tenantId`,`programId`,`memberId`,`openId`,`mobile`,`storeId`,`storeNo`,`storeName`,`touxiang`,`memberName`,`memo`,`storeLevel`,`productLevel`,`serverLevel`,`tickingTime`,`status`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_program_evaluate + + `id`,`tenantId` + ,`programId` + ,`memberId` + ,`openId` + ,`mobile` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`touxiang` + ,`memberName` + ,`memo` + ,`storeLevel` + ,`productLevel` + ,`serverLevel` + ,`tickingTime` + ,`status` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{programId} + ,#{memberId} + ,#{openId} + ,#{mobile} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{touxiang} + ,#{memberName} + ,#{memo} + ,#{storeLevel} + ,#{productLevel} + ,#{serverLevel} + ,#{tickingTime} + ,#{status} + ,#{createUser} + ,#{createDate} + + + + + update cy_program_evaluate + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`memberId` = #{memberId} + ,`openId` = #{openId} + ,`mobile` = #{mobile} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`touxiang` = #{touxiang} + ,`memberName` = #{memberName} + ,`memo` = #{memo} + ,`storeLevel` = #{storeLevel} + ,`productLevel` = #{productLevel} + ,`serverLevel` = #{serverLevel} + ,`tickingTime` = #{tickingTime} + ,`status` = #{status} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_program_evaluate + where `id` = #{id} + + + + delete from cy_program_evaluate + ${condition} + + + + delete from cy_program_evaluate + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramIndexPictureMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramIndexPictureMapper.xml new file mode 100644 index 0000000..ef328fe --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramIndexPictureMapper.xml @@ -0,0 +1,134 @@ + + + + + + `id`,`tenantId`,`programId`,`path`,`indexPictureType`,`funcName`,`width`,`height`,`groupName`,`storageFileName`,`linkUrl`,`deleteFlag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_program_index_picture + + `id`,`tenantId` + ,`programId` + ,`path` + ,`indexPictureType` + ,`funcName` + ,`width` + ,`height` + ,`groupName` + ,`storageFileName` + ,`linkUrl` + ,`deleteFlag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{programId} + ,#{path} + ,#{indexPictureType} + ,#{funcName} + ,#{width} + ,#{height} + ,#{groupName} + ,#{storageFileName} + ,#{linkUrl} + ,#{deleteFlag} + ,#{createDate} + ,#{createUser} + + + + + update cy_program_index_picture + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`path` = #{path} + ,`indexPictureType` = #{indexPictureType} + ,`funcName` = #{funcName} + ,`width` = #{width} + ,`height` = #{height} + ,`groupName` = #{groupName} + ,`storageFileName` = #{storageFileName} + ,`linkUrl` = #{linkUrl} + ,`deleteFlag` = #{deleteFlag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_program_index_picture + where `id` = #{id} + + + + delete from cy_program_index_picture + ${condition} + + + + delete from cy_program_index_picture + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramPaymentParameterMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramPaymentParameterMapper.xml new file mode 100644 index 0000000..4dd2245 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramPaymentParameterMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`programId`,`no`,`name`,`sign`,`pbody`,`enabled`,`certText`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_program_payment_parameter + + `id`,`tenantId` + ,`programId` + ,`no` + ,`name` + ,`sign` + ,`pbody` + ,`enabled` + ,`certText` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{programId} + ,#{no} + ,#{name} + ,#{sign} + ,#{pbody} + ,#{enabled} + ,#{certText} + ,#{createUser} + ,#{createDate} + + + + + update cy_program_payment_parameter + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`no` = #{no} + ,`name` = #{name} + ,`sign` = #{sign} + ,`pbody` = #{pbody} + ,`enabled` = #{enabled} + ,`certText` = #{certText} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_program_payment_parameter + where `id` = #{id} + + + + delete from cy_program_payment_parameter + ${condition} + + + + delete from cy_program_payment_parameter + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramPaymentParameterStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramPaymentParameterStoreMapper.xml new file mode 100644 index 0000000..fce64c2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramPaymentParameterStoreMapper.xml @@ -0,0 +1,107 @@ + + + + + + `tenantId`,`storeId`,`parameterId`,`programId` + + + + + + + + + + + + + + + + + + + + insert into cy_program_payment_parameter_store + + `id`,`tenantId` + ,`storeId` + ,`parameterId` + ,`programId` + + + #{id},#{tenantId} + ,#{storeId} + ,#{parameterId} + ,#{programId} + + + + + update cy_program_payment_parameter_store + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`parameterId` = #{parameterId} + ,`programId` = #{programId} + + where `id` = #{id} + + + + delete from cy_program_payment_parameter_store + where `id` = #{id} + + + + delete from cy_program_payment_parameter_store + ${condition} + + + + delete from cy_program_payment_parameter_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramProductCategoryMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramProductCategoryMapper.xml new file mode 100644 index 0000000..cdd7872 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramProductCategoryMapper.xml @@ -0,0 +1,134 @@ + + + + + + `id`,`tenantId`,`programId`,`name`,`description`,`orderNo`,`path`,`deleteFlag`,`nameEn`,`typePath`,`typeId`,`typeName`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_program_product_category + + `id`,`tenantId` + ,`programId` + ,`name` + ,`description` + ,`orderNo` + ,`path` + ,`deleteFlag` + ,`nameEn` + ,`typePath` + ,`typeId` + ,`typeName` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{programId} + ,#{name} + ,#{description} + ,#{orderNo} + ,#{path} + ,#{deleteFlag} + ,#{nameEn} + ,#{typePath} + ,#{typeId} + ,#{typeName} + ,#{createUser} + ,#{createDate} + + + + + update cy_program_product_category + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`name` = #{name} + ,`description` = #{description} + ,`orderNo` = #{orderNo} + ,`path` = #{path} + ,`deleteFlag` = #{deleteFlag} + ,`nameEn` = #{nameEn} + ,`typePath` = #{typePath} + ,`typeId` = #{typeId} + ,`typeName` = #{typeName} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_program_product_category + where `id` = #{id} + + + + delete from cy_program_product_category + ${condition} + + + + delete from cy_program_product_category + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramProductMakeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramProductMakeMapper.xml new file mode 100644 index 0000000..1a63bdb --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramProductMakeMapper.xml @@ -0,0 +1,113 @@ + + + + + + `tenantId`,`programId`,`productId`,`typeId`,`makeId`,`addPrice` + + + + + + + + + + + + + + + + + + + + insert into cy_program_product_make + + `id`,`tenantId` + ,`programId` + ,`productId` + ,`typeId` + ,`makeId` + ,`addPrice` + + + #{id},#{tenantId} + ,#{programId} + ,#{productId} + ,#{typeId} + ,#{makeId} + ,#{addPrice} + + + + + update cy_program_product_make + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`productId` = #{productId} + ,`typeId` = #{typeId} + ,`makeId` = #{makeId} + ,`addPrice` = #{addPrice} + + where `id` = #{id} + + + + delete from cy_program_product_make + where `id` = #{id} + + + + delete from cy_program_product_make + ${condition} + + + + delete from cy_program_product_make + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramProductTemplateDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramProductTemplateDetailMapper.xml new file mode 100644 index 0000000..a3f3bf3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramProductTemplateDetailMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`programId`,`templateId`,`templateNo`,`productId`,`specId`,`wprice`,`wmemberPrice`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_program_product_template_detail + + `id`,`tenantId` + ,`programId` + ,`templateId` + ,`templateNo` + ,`productId` + ,`specId` + ,`wprice` + ,`wmemberPrice` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{programId} + ,#{templateId} + ,#{templateNo} + ,#{productId} + ,#{specId} + ,#{wprice} + ,#{wmemberPrice} + ,#{createUser} + ,#{createDate} + + + + + update cy_program_product_template_detail + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`templateId` = #{templateId} + ,`templateNo` = #{templateNo} + ,`productId` = #{productId} + ,`specId` = #{specId} + ,`wprice` = #{wprice} + ,`wmemberPrice` = #{wmemberPrice} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_program_product_template_detail + where `id` = #{id} + + + + delete from cy_program_product_template_detail + ${condition} + + + + delete from cy_program_product_template_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramProductTemplateMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramProductTemplateMapper.xml new file mode 100644 index 0000000..9fd7b80 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramProductTemplateMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`programId`,`no`,`name`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_program_product_template + + `id`,`tenantId` + ,`programId` + ,`no` + ,`name` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{programId} + ,#{no} + ,#{name} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_program_product_template + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`no` = #{no} + ,`name` = #{name} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_program_product_template + where `id` = #{id} + + + + delete from cy_program_product_template + ${condition} + + + + delete from cy_program_product_template + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramProductTemplateStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramProductTemplateStoreMapper.xml new file mode 100644 index 0000000..cd7fcef --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramProductTemplateStoreMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`programId`,`templateId`,`templateNo`,`storeId`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_program_product_template_store + + `id`,`tenantId` + ,`programId` + ,`templateId` + ,`templateNo` + ,`storeId` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{programId} + ,#{templateId} + ,#{templateNo} + ,#{storeId} + ,#{createUser} + ,#{createDate} + + + + + update cy_program_product_template_store + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`templateId` = #{templateId} + ,`templateNo` = #{templateNo} + ,`storeId` = #{storeId} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_program_product_template_store + where `id` = #{id} + + + + delete from cy_program_product_template_store + ${condition} + + + + delete from cy_program_product_template_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionBlackListGoodsMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionBlackListGoodsMapper.xml new file mode 100644 index 0000000..e428a41 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionBlackListGoodsMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`programId`,`tenantId`,`promotionId`,`promotionSn`,`productId`,`specId`,`productNo`,`productName`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_program_promotion_black_list_goods + + `id`,`tenantId` + ,`programId` + ,`promotionId` + ,`promotionSn` + ,`productId` + ,`specId` + ,`productNo` + ,`productName` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{programId} + ,#{promotionId} + ,#{promotionSn} + ,#{productId} + ,#{specId} + ,#{productNo} + ,#{productName} + ,#{createUser} + ,#{createDate} + + + + + update cy_program_promotion_black_list_goods + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`promotionId` = #{promotionId} + ,`promotionSn` = #{promotionSn} + ,`productId` = #{productId} + ,`specId` = #{specId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_program_promotion_black_list_goods + where `id` = #{id} + + + + delete from cy_program_promotion_black_list_goods + ${condition} + + + + delete from cy_program_promotion_black_list_goods + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionBlackListStoreAreaMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionBlackListStoreAreaMapper.xml new file mode 100644 index 0000000..9638363 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionBlackListStoreAreaMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`programId`,`promotionId`,`promotionSn`,`areaId`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_program_promotion_black_list_store_area + + `id`,`tenantId` + ,`programId` + ,`promotionId` + ,`promotionSn` + ,`areaId` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{programId} + ,#{promotionId} + ,#{promotionSn} + ,#{areaId} + ,#{createUser} + ,#{createDate} + + + + + update cy_program_promotion_black_list_store_area + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`promotionId` = #{promotionId} + ,`promotionSn` = #{promotionSn} + ,`areaId` = #{areaId} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_program_promotion_black_list_store_area + where `id` = #{id} + + + + delete from cy_program_promotion_black_list_store_area + ${condition} + + + + delete from cy_program_promotion_black_list_store_area + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionBlackListStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionBlackListStoreMapper.xml new file mode 100644 index 0000000..fce99d1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionBlackListStoreMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`programId`,`promotionId`,`promotionSn`,`storeId`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_program_promotion_black_list_store + + `id`,`tenantId` + ,`programId` + ,`promotionId` + ,`promotionSn` + ,`storeId` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{programId} + ,#{promotionId} + ,#{promotionSn} + ,#{storeId} + ,#{createUser} + ,#{createDate} + + + + + update cy_program_promotion_black_list_store + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`promotionId` = #{promotionId} + ,`promotionSn` = #{promotionSn} + ,`storeId` = #{storeId} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_program_promotion_black_list_store + where `id` = #{id} + + + + delete from cy_program_promotion_black_list_store + ${condition} + + + + delete from cy_program_promotion_black_list_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionCategoryMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionCategoryMapper.xml new file mode 100644 index 0000000..6a2785b --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionCategoryMapper.xml @@ -0,0 +1,131 @@ + + + + + + `id`,`tenantId`,`programId`,`promotionId`,`promotionSn`,`typeId`,`typeNo`,`typeName`,`discountType`,`discount`,`status`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_program_promotion_category + + `id`,`tenantId` + ,`programId` + ,`promotionId` + ,`promotionSn` + ,`typeId` + ,`typeNo` + ,`typeName` + ,`discountType` + ,`discount` + ,`status` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{programId} + ,#{promotionId} + ,#{promotionSn} + ,#{typeId} + ,#{typeNo} + ,#{typeName} + ,#{discountType} + ,#{discount} + ,#{status} + ,#{createUser} + ,#{createDate} + + + + + update cy_program_promotion_category + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`promotionId` = #{promotionId} + ,`promotionSn` = #{promotionSn} + ,`typeId` = #{typeId} + ,`typeNo` = #{typeNo} + ,`typeName` = #{typeName} + ,`discountType` = #{discountType} + ,`discount` = #{discount} + ,`status` = #{status} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_program_promotion_category + where `id` = #{id} + + + + delete from cy_program_promotion_category + ${condition} + + + + delete from cy_program_promotion_category + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionGoodsMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionGoodsMapper.xml new file mode 100644 index 0000000..ab364fd --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionGoodsMapper.xml @@ -0,0 +1,146 @@ + + + + + + `id`,`tenantId`,`programId`,`promotionId`,`promotionSn`,`productId`,`specId`,`productNo`,`productName`,`salePrice`,`specialPrice`,`discountType`,`discount`,`limitNum`,`allLimitNum`,`status`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_program_promotion_goods + + `id`,`tenantId` + ,`programId` + ,`promotionId` + ,`promotionSn` + ,`productId` + ,`specId` + ,`productNo` + ,`productName` + ,`salePrice` + ,`specialPrice` + ,`discountType` + ,`discount` + ,`limitNum` + ,`allLimitNum` + ,`status` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{programId} + ,#{promotionId} + ,#{promotionSn} + ,#{productId} + ,#{specId} + ,#{productNo} + ,#{productName} + ,#{salePrice} + ,#{specialPrice} + ,#{discountType} + ,#{discount} + ,#{limitNum} + ,#{allLimitNum} + ,#{status} + ,#{createUser} + ,#{createDate} + + + + + update cy_program_promotion_goods + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`promotionId` = #{promotionId} + ,`promotionSn` = #{promotionSn} + ,`productId` = #{productId} + ,`specId` = #{specId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`salePrice` = #{salePrice} + ,`specialPrice` = #{specialPrice} + ,`discountType` = #{discountType} + ,`discount` = #{discount} + ,`limitNum` = #{limitNum} + ,`allLimitNum` = #{allLimitNum} + ,`status` = #{status} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_program_promotion_goods + where `id` = #{id} + + + + delete from cy_program_promotion_goods + ${condition} + + + + delete from cy_program_promotion_goods + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionSchemeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionSchemeMapper.xml new file mode 100644 index 0000000..588a20b --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionSchemeMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`programId`,`sn`,`promotionId`,`promotionSn`,`type`,`rule`,`memo`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_program_promotion_scheme + + `id`,`tenantId` + ,`programId` + ,`sn` + ,`promotionId` + ,`promotionSn` + ,`type` + ,`rule` + ,`memo` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{programId} + ,#{sn} + ,#{promotionId} + ,#{promotionSn} + ,#{type} + ,#{rule} + ,#{memo} + ,#{createUser} + ,#{createDate} + + + + + update cy_program_promotion_scheme + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`sn` = #{sn} + ,`promotionId` = #{promotionId} + ,`promotionSn` = #{promotionSn} + ,`type` = #{type} + ,`rule` = #{rule} + ,`memo` = #{memo} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_program_promotion_scheme + where `id` = #{id} + + + + delete from cy_program_promotion_scheme + ${condition} + + + + delete from cy_program_promotion_scheme + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionStoreAreaMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionStoreAreaMapper.xml new file mode 100644 index 0000000..7e6281f --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionStoreAreaMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`programId`,`promotionId`,`promotionSn`,`areaId`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_program_promotion_store_area + + `id`,`tenantId` + ,`programId` + ,`promotionId` + ,`promotionSn` + ,`areaId` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{programId} + ,#{promotionId} + ,#{promotionSn} + ,#{areaId} + ,#{createUser} + ,#{createDate} + + + + + update cy_program_promotion_store_area + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`promotionId` = #{promotionId} + ,`promotionSn` = #{promotionSn} + ,`areaId` = #{areaId} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_program_promotion_store_area + where `id` = #{id} + + + + delete from cy_program_promotion_store_area + ${condition} + + + + delete from cy_program_promotion_store_area + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionStoreMapper.xml new file mode 100644 index 0000000..0cf9fab --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionStoreMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`programId`,`promotionId`,`promotionSn`,`storeId`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_program_promotion_store + + `id`,`tenantId` + ,`programId` + ,`promotionId` + ,`promotionSn` + ,`storeId` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{programId} + ,#{promotionId} + ,#{promotionSn} + ,#{storeId} + ,#{createUser} + ,#{createDate} + + + + + update cy_program_promotion_store + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`promotionId` = #{promotionId} + ,`promotionSn` = #{promotionSn} + ,`storeId` = #{storeId} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_program_promotion_store + where `id` = #{id} + + + + delete from cy_program_promotion_store + ${condition} + + + + delete from cy_program_promotion_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionTaskMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionTaskMapper.xml new file mode 100644 index 0000000..7687ada --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionTaskMapper.xml @@ -0,0 +1,197 @@ + + + + + + `id`,`tenantId`,`programId`,`sn`,`promotionId`,`promotionSn`,`promotionType`,`storeId`,`valueType`,`valueId`,`valueNo`,`valueName`,`valueExt1`,`valueExt2`,`schemeId`,`schemeSn`,`startDate`,`endDate`,`startTime`,`endTime`,`validWeek`,`validMonth`,`isOnlyMember`,`isRepeatDiscount`,`isAll`,`goodsBlackList`,`discountType`,`discountValue`,`rule`,`setMan`,`setTime`,`status`,`deleteFlag`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_program_promotion_task + + `id`,`tenantId` + ,`programId` + ,`sn` + ,`promotionId` + ,`promotionSn` + ,`promotionType` + ,`storeId` + ,`valueType` + ,`valueId` + ,`valueNo` + ,`valueName` + ,`valueExt1` + ,`valueExt2` + ,`schemeId` + ,`schemeSn` + ,`startDate` + ,`endDate` + ,`startTime` + ,`endTime` + ,`validWeek` + ,`validMonth` + ,`isOnlyMember` + ,`isRepeatDiscount` + ,`isAll` + ,`goodsBlackList` + ,`discountType` + ,`discountValue` + ,`rule` + ,`setMan` + ,`setTime` + ,`status` + ,`deleteFlag` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{programId} + ,#{sn} + ,#{promotionId} + ,#{promotionSn} + ,#{promotionType} + ,#{storeId} + ,#{valueType} + ,#{valueId} + ,#{valueNo} + ,#{valueName} + ,#{valueExt1} + ,#{valueExt2} + ,#{schemeId} + ,#{schemeSn} + ,#{startDate} + ,#{endDate} + ,#{startTime} + ,#{endTime} + ,#{validWeek} + ,#{validMonth} + ,#{isOnlyMember} + ,#{isRepeatDiscount} + ,#{isAll} + ,#{goodsBlackList} + ,#{discountType} + ,#{discountValue} + ,#{rule} + ,#{setMan} + ,#{setTime} + ,#{status} + ,#{deleteFlag} + ,#{createUser} + ,#{createDate} + + + + + update cy_program_promotion_task + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`sn` = #{sn} + ,`promotionId` = #{promotionId} + ,`promotionSn` = #{promotionSn} + ,`promotionType` = #{promotionType} + ,`storeId` = #{storeId} + ,`valueType` = #{valueType} + ,`valueId` = #{valueId} + ,`valueNo` = #{valueNo} + ,`valueName` = #{valueName} + ,`valueExt1` = #{valueExt1} + ,`valueExt2` = #{valueExt2} + ,`schemeId` = #{schemeId} + ,`schemeSn` = #{schemeSn} + ,`startDate` = #{startDate} + ,`endDate` = #{endDate} + ,`startTime` = #{startTime} + ,`endTime` = #{endTime} + ,`validWeek` = #{validWeek} + ,`validMonth` = #{validMonth} + ,`isOnlyMember` = #{isOnlyMember} + ,`isRepeatDiscount` = #{isRepeatDiscount} + ,`isAll` = #{isAll} + ,`goodsBlackList` = #{goodsBlackList} + ,`discountType` = #{discountType} + ,`discountValue` = #{discountValue} + ,`rule` = #{rule} + ,`setMan` = #{setMan} + ,`setTime` = #{setTime} + ,`status` = #{status} + ,`deleteFlag` = #{deleteFlag} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_program_promotion_task + where `id` = #{id} + + + + delete from cy_program_promotion_task + ${condition} + + + + delete from cy_program_promotion_task + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionTicketMapper.xml new file mode 100644 index 0000000..99cba3b --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramPromotionTicketMapper.xml @@ -0,0 +1,188 @@ + + + + + + `id`,`tenantId`,`programId`,`sn`,`type`,`startDate`,`endDate`,`startTime`,`endTime`,`validWeek`,`validMonth`,`isOnlyMember`,`isAll`,`isAllStore`,`isRepeatDiscount`,`isGoods`,`isCategory`,`isStore`,`isStoreArea`,`isAreaBlack`,`isStoreBlack`,`isGoodsBlack`,`status`,`memo`,`confirmUser`,`confirmDate`,`confirmStatus`,`lastTaskDate`,`lastTaskNo`,`deleteFlag`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_program_promotion_ticket + + `id`,`tenantId` + ,`programId` + ,`sn` + ,`type` + ,`startDate` + ,`endDate` + ,`startTime` + ,`endTime` + ,`validWeek` + ,`validMonth` + ,`isOnlyMember` + ,`isAll` + ,`isAllStore` + ,`isRepeatDiscount` + ,`isGoods` + ,`isCategory` + ,`isStore` + ,`isStoreArea` + ,`isAreaBlack` + ,`isStoreBlack` + ,`isGoodsBlack` + ,`status` + ,`memo` + ,`confirmUser` + ,`confirmDate` + ,`confirmStatus` + ,`lastTaskDate` + ,`lastTaskNo` + ,`deleteFlag` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{programId} + ,#{sn} + ,#{type} + ,#{startDate} + ,#{endDate} + ,#{startTime} + ,#{endTime} + ,#{validWeek} + ,#{validMonth} + ,#{isOnlyMember} + ,#{isAll} + ,#{isAllStore} + ,#{isRepeatDiscount} + ,#{isGoods} + ,#{isCategory} + ,#{isStore} + ,#{isStoreArea} + ,#{isAreaBlack} + ,#{isStoreBlack} + ,#{isGoodsBlack} + ,#{status} + ,#{memo} + ,#{confirmUser} + ,#{confirmDate} + ,#{confirmStatus} + ,#{lastTaskDate} + ,#{lastTaskNo} + ,#{deleteFlag} + ,#{createUser} + ,#{createDate} + + + + + update cy_program_promotion_ticket + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`sn` = #{sn} + ,`type` = #{type} + ,`startDate` = #{startDate} + ,`endDate` = #{endDate} + ,`startTime` = #{startTime} + ,`endTime` = #{endTime} + ,`validWeek` = #{validWeek} + ,`validMonth` = #{validMonth} + ,`isOnlyMember` = #{isOnlyMember} + ,`isAll` = #{isAll} + ,`isAllStore` = #{isAllStore} + ,`isRepeatDiscount` = #{isRepeatDiscount} + ,`isGoods` = #{isGoods} + ,`isCategory` = #{isCategory} + ,`isStore` = #{isStore} + ,`isStoreArea` = #{isStoreArea} + ,`isAreaBlack` = #{isAreaBlack} + ,`isStoreBlack` = #{isStoreBlack} + ,`isGoodsBlack` = #{isGoodsBlack} + ,`status` = #{status} + ,`memo` = #{memo} + ,`confirmUser` = #{confirmUser} + ,`confirmDate` = #{confirmDate} + ,`confirmStatus` = #{confirmStatus} + ,`lastTaskDate` = #{lastTaskDate} + ,`lastTaskNo` = #{lastTaskNo} + ,`deleteFlag` = #{deleteFlag} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_program_promotion_ticket + where `id` = #{id} + + + + delete from cy_program_promotion_ticket + ${condition} + + + + delete from cy_program_promotion_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramSettingMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramSettingMapper.xml new file mode 100644 index 0000000..aaa6c31 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramSettingMapper.xml @@ -0,0 +1,158 @@ + + + + + + `id`,`tenantId`,`name`,`type`,`color`,`memberFlag`,`lineFlag`,`indexStyle`,`wxStatus`,`wxBoday`,`aliStatus`,`aliBoday`,`wxTemplate`,`aliTemplate`,`cyApi`,`cardApi`,`description`,`wid`,`enableFlag`,`dataVersion`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_program_setting + + `id`,`tenantId` + ,`name` + ,`type` + ,`color` + ,`memberFlag` + ,`lineFlag` + ,`indexStyle` + ,`wxStatus` + ,`wxBoday` + ,`aliStatus` + ,`aliBoday` + ,`wxTemplate` + ,`aliTemplate` + ,`cyApi` + ,`cardApi` + ,`description` + ,`wid` + ,`enableFlag` + ,`dataVersion` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{name} + ,#{type} + ,#{color} + ,#{memberFlag} + ,#{lineFlag} + ,#{indexStyle} + ,#{wxStatus} + ,#{wxBoday} + ,#{aliStatus} + ,#{aliBoday} + ,#{wxTemplate} + ,#{aliTemplate} + ,#{cyApi} + ,#{cardApi} + ,#{description} + ,#{wid} + ,#{enableFlag} + ,#{dataVersion} + ,#{createDate} + ,#{createUser} + + + + + update cy_program_setting + + `tenantId` = #{tenantId} + ,`name` = #{name} + ,`type` = #{type} + ,`color` = #{color} + ,`memberFlag` = #{memberFlag} + ,`lineFlag` = #{lineFlag} + ,`indexStyle` = #{indexStyle} + ,`wxStatus` = #{wxStatus} + ,`wxBoday` = #{wxBoday} + ,`aliStatus` = #{aliStatus} + ,`aliBoday` = #{aliBoday} + ,`wxTemplate` = #{wxTemplate} + ,`aliTemplate` = #{aliTemplate} + ,`cyApi` = #{cyApi} + ,`cardApi` = #{cardApi} + ,`description` = #{description} + ,`wid` = #{wid} + ,`enableFlag` = #{enableFlag} + ,`dataVersion` = #{dataVersion} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_program_setting + where `id` = #{id} + + + + delete from cy_program_setting + ${condition} + + + + delete from cy_program_setting + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramStoreBusinessTicketDeliverMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramStoreBusinessTicketDeliverMapper.xml new file mode 100644 index 0000000..2588d18 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramStoreBusinessTicketDeliverMapper.xml @@ -0,0 +1,170 @@ + + + + + + `id`,`clientId`,`tenantId`,`storeId`,`programId`,`ticketId`,`busNo`,`orderTel`,`name`,`address`,`latitude`,`longitude`,`deliverType`,`deliverComName`,`deliverFee`,`logisticsDispatcherMobile`,`logisticsDispatcherName`,`logisticsReceiptTime`,`logisticsFetchTime`,`logisticsFinishTime`,`isInvalid`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_program_store_business_ticket_deliver + + `id`,`tenantId` + ,`clientId` + ,`storeId` + ,`programId` + ,`ticketId` + ,`busNo` + ,`orderTel` + ,`name` + ,`address` + ,`latitude` + ,`longitude` + ,`deliverType` + ,`deliverComName` + ,`deliverFee` + ,`logisticsDispatcherMobile` + ,`logisticsDispatcherName` + ,`logisticsReceiptTime` + ,`logisticsFetchTime` + ,`logisticsFinishTime` + ,`isInvalid` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{storeId} + ,#{programId} + ,#{ticketId} + ,#{busNo} + ,#{orderTel} + ,#{name} + ,#{address} + ,#{latitude} + ,#{longitude} + ,#{deliverType} + ,#{deliverComName} + ,#{deliverFee} + ,#{logisticsDispatcherMobile} + ,#{logisticsDispatcherName} + ,#{logisticsReceiptTime} + ,#{logisticsFetchTime} + ,#{logisticsFinishTime} + ,#{isInvalid} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_program_store_business_ticket_deliver + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`storeId` = #{storeId} + ,`programId` = #{programId} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`orderTel` = #{orderTel} + ,`name` = #{name} + ,`address` = #{address} + ,`latitude` = #{latitude} + ,`longitude` = #{longitude} + ,`deliverType` = #{deliverType} + ,`deliverComName` = #{deliverComName} + ,`deliverFee` = #{deliverFee} + ,`logisticsDispatcherMobile` = #{logisticsDispatcherMobile} + ,`logisticsDispatcherName` = #{logisticsDispatcherName} + ,`logisticsReceiptTime` = #{logisticsReceiptTime} + ,`logisticsFetchTime` = #{logisticsFetchTime} + ,`logisticsFinishTime` = #{logisticsFinishTime} + ,`isInvalid` = #{isInvalid} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_program_store_business_ticket_deliver + where `id` = #{id} + + + + delete from cy_program_store_business_ticket_deliver + ${condition} + + + + delete from cy_program_store_business_ticket_deliver + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramStoreBusinessTicketInfoMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramStoreBusinessTicketInfoMapper.xml new file mode 100644 index 0000000..2553856 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramStoreBusinessTicketInfoMapper.xml @@ -0,0 +1,143 @@ + + + + + + `id`,`clientId`,`tenantId`,`storeId`,`programId`,`ticketId`,`busNo`,`type`,`info`,`discountMoney`,`isInvalid`,`saleDate`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_program_store_business_ticket_info + + `id`,`tenantId` + ,`clientId` + ,`storeId` + ,`programId` + ,`ticketId` + ,`busNo` + ,`type` + ,`info` + ,`discountMoney` + ,`isInvalid` + ,`saleDate` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{storeId} + ,#{programId} + ,#{ticketId} + ,#{busNo} + ,#{type} + ,#{info} + ,#{discountMoney} + ,#{isInvalid} + ,#{saleDate} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_program_store_business_ticket_info + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`storeId` = #{storeId} + ,`programId` = #{programId} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`type` = #{type} + ,`info` = #{info} + ,`discountMoney` = #{discountMoney} + ,`isInvalid` = #{isInvalid} + ,`saleDate` = #{saleDate} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_program_store_business_ticket_info + where `id` = #{id} + + + + delete from cy_program_store_business_ticket_info + ${condition} + + + + delete from cy_program_store_business_ticket_info + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramStoreBusinessTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramStoreBusinessTicketMapper.xml new file mode 100644 index 0000000..f638d34 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramStoreBusinessTicketMapper.xml @@ -0,0 +1,236 @@ + + + + + + `id`,`clientId`,`tenantId`,`memberId`,`openId`,`sourceType`,`touxiang`,`memberName`,`mobile`,`programId`,`no`,`storeId`,`storeNo`,`storeName`,`status`,`deliverStatus`,`refundStatus`,`saleDate`,`tableNo`,`tableName`,`people`,`busMode`,`reserveTime`,`deliverFee`,`packageFee`,`amount`,`discount`,`discountTotal`,`receivable`,`maling`,`paid`,`noOrg`,`backCause`,`isMember`,`memberNo`,`memberJifen`,`isInvalid`,`seqNo`,`weather`,`weeker`,`deductionRate`,`chargeBack`,`settleFlag`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_program_store_business_ticket + + `id`,`tenantId` + ,`clientId` + ,`memberId` + ,`openId` + ,`sourceType` + ,`touxiang` + ,`memberName` + ,`mobile` + ,`programId` + ,`no` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`status` + ,`deliverStatus` + ,`refundStatus` + ,`saleDate` + ,`tableNo` + ,`tableName` + ,`people` + ,`busMode` + ,`reserveTime` + ,`deliverFee` + ,`packageFee` + ,`amount` + ,`discount` + ,`discountTotal` + ,`receivable` + ,`maling` + ,`paid` + ,`noOrg` + ,`backCause` + ,`isMember` + ,`memberNo` + ,`memberJifen` + ,`isInvalid` + ,`seqNo` + ,`weather` + ,`weeker` + ,`deductionRate` + ,`chargeBack` + ,`settleFlag` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{memberId} + ,#{openId} + ,#{sourceType} + ,#{touxiang} + ,#{memberName} + ,#{mobile} + ,#{programId} + ,#{no} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{status} + ,#{deliverStatus} + ,#{refundStatus} + ,#{saleDate} + ,#{tableNo} + ,#{tableName} + ,#{people} + ,#{busMode} + ,#{reserveTime} + ,#{deliverFee} + ,#{packageFee} + ,#{amount} + ,#{discount} + ,#{discountTotal} + ,#{receivable} + ,#{maling} + ,#{paid} + ,#{noOrg} + ,#{backCause} + ,#{isMember} + ,#{memberNo} + ,#{memberJifen} + ,#{isInvalid} + ,#{seqNo} + ,#{weather} + ,#{weeker} + ,#{deductionRate} + ,#{chargeBack} + ,#{settleFlag} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_program_store_business_ticket + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`memberId` = #{memberId} + ,`openId` = #{openId} + ,`sourceType` = #{sourceType} + ,`touxiang` = #{touxiang} + ,`memberName` = #{memberName} + ,`mobile` = #{mobile} + ,`programId` = #{programId} + ,`no` = #{no} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`status` = #{status} + ,`deliverStatus` = #{deliverStatus} + ,`refundStatus` = #{refundStatus} + ,`saleDate` = #{saleDate} + ,`tableNo` = #{tableNo} + ,`tableName` = #{tableName} + ,`people` = #{people} + ,`busMode` = #{busMode} + ,`reserveTime` = #{reserveTime} + ,`deliverFee` = #{deliverFee} + ,`packageFee` = #{packageFee} + ,`amount` = #{amount} + ,`discount` = #{discount} + ,`discountTotal` = #{discountTotal} + ,`receivable` = #{receivable} + ,`maling` = #{maling} + ,`paid` = #{paid} + ,`noOrg` = #{noOrg} + ,`backCause` = #{backCause} + ,`isMember` = #{isMember} + ,`memberNo` = #{memberNo} + ,`memberJifen` = #{memberJifen} + ,`isInvalid` = #{isInvalid} + ,`seqNo` = #{seqNo} + ,`weather` = #{weather} + ,`weeker` = #{weeker} + ,`deductionRate` = #{deductionRate} + ,`chargeBack` = #{chargeBack} + ,`settleFlag` = #{settleFlag} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_program_store_business_ticket + where `id` = #{id} + + + + delete from cy_program_store_business_ticket + ${condition} + + + + delete from cy_program_store_business_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramStoreMakeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramStoreMakeMapper.xml new file mode 100644 index 0000000..13873f6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramStoreMakeMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`programId`,`storeId`,`typeId`,`makeId`,`description`,`price`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_program_store_make + + `id`,`tenantId` + ,`programId` + ,`storeId` + ,`typeId` + ,`makeId` + ,`description` + ,`price` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{programId} + ,#{storeId} + ,#{typeId} + ,#{makeId} + ,#{description} + ,#{price} + ,#{createDate} + ,#{createUser} + + + + + update cy_program_store_make + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`storeId` = #{storeId} + ,`typeId` = #{typeId} + ,`makeId` = #{makeId} + ,`description` = #{description} + ,`price` = #{price} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_program_store_make + where `id` = #{id} + + + + delete from cy_program_store_make + ${condition} + + + + delete from cy_program_store_make + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramStoreMapper.xml new file mode 100644 index 0000000..2c642dd --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramStoreMapper.xml @@ -0,0 +1,215 @@ + + + + + + `id`,`tenantId`,`programId`,`storeId`,`storeNo`,`storeName`,`orderTel`,`address`,`latitude`,`longitude`,`noticeInfo`,`isOpen`,`memberPriceEnabled`,`memberPayEnabled`,`storeMakeEnabled`,`paymentParamEnabled`,`openTimeType`,`openTime`,`discomFlag`,`autoDeliveryFlag`,`distributionSelfLimits`,`deliverType`,`deliverParameter`,`deliverFee`,`deliverFeeDiscountType`,`deliverFeeDiscountRule`,`deliverMoney`,`deliverKilometre`,`busModes`,`takeOutBoxFeeFlag`,`name`,`width`,`height`,`groupName`,`storageFileName`,`linkUrl`,`memoTags`,`enabled`,`deleteFlag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_program_store + + `id`,`tenantId` + ,`programId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`orderTel` + ,`address` + ,`latitude` + ,`longitude` + ,`noticeInfo` + ,`isOpen` + ,`memberPriceEnabled` + ,`memberPayEnabled` + ,`storeMakeEnabled` + ,`paymentParamEnabled` + ,`openTimeType` + ,`openTime` + ,`discomFlag` + ,`autoDeliveryFlag` + ,`distributionSelfLimits` + ,`deliverType` + ,`deliverParameter` + ,`deliverFee` + ,`deliverFeeDiscountType` + ,`deliverFeeDiscountRule` + ,`deliverMoney` + ,`deliverKilometre` + ,`busModes` + ,`takeOutBoxFeeFlag` + ,`name` + ,`width` + ,`height` + ,`groupName` + ,`storageFileName` + ,`linkUrl` + ,`memoTags` + ,`enabled` + ,`deleteFlag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{programId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{orderTel} + ,#{address} + ,#{latitude} + ,#{longitude} + ,#{noticeInfo} + ,#{isOpen} + ,#{memberPriceEnabled} + ,#{memberPayEnabled} + ,#{storeMakeEnabled} + ,#{paymentParamEnabled} + ,#{openTimeType} + ,#{openTime} + ,#{discomFlag} + ,#{autoDeliveryFlag} + ,#{distributionSelfLimits} + ,#{deliverType} + ,#{deliverParameter} + ,#{deliverFee} + ,#{deliverFeeDiscountType} + ,#{deliverFeeDiscountRule} + ,#{deliverMoney} + ,#{deliverKilometre} + ,#{busModes} + ,#{takeOutBoxFeeFlag} + ,#{name} + ,#{width} + ,#{height} + ,#{groupName} + ,#{storageFileName} + ,#{linkUrl} + ,#{memoTags} + ,#{enabled} + ,#{deleteFlag} + ,#{createDate} + ,#{createUser} + + + + + update cy_program_store + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`orderTel` = #{orderTel} + ,`address` = #{address} + ,`latitude` = #{latitude} + ,`longitude` = #{longitude} + ,`noticeInfo` = #{noticeInfo} + ,`isOpen` = #{isOpen} + ,`memberPriceEnabled` = #{memberPriceEnabled} + ,`memberPayEnabled` = #{memberPayEnabled} + ,`storeMakeEnabled` = #{storeMakeEnabled} + ,`paymentParamEnabled` = #{paymentParamEnabled} + ,`openTimeType` = #{openTimeType} + ,`openTime` = #{openTime} + ,`discomFlag` = #{discomFlag} + ,`autoDeliveryFlag` = #{autoDeliveryFlag} + ,`distributionSelfLimits` = #{distributionSelfLimits} + ,`deliverType` = #{deliverType} + ,`deliverParameter` = #{deliverParameter} + ,`deliverFee` = #{deliverFee} + ,`deliverFeeDiscountType` = #{deliverFeeDiscountType} + ,`deliverFeeDiscountRule` = #{deliverFeeDiscountRule} + ,`deliverMoney` = #{deliverMoney} + ,`deliverKilometre` = #{deliverKilometre} + ,`busModes` = #{busModes} + ,`takeOutBoxFeeFlag` = #{takeOutBoxFeeFlag} + ,`name` = #{name} + ,`width` = #{width} + ,`height` = #{height} + ,`groupName` = #{groupName} + ,`storageFileName` = #{storageFileName} + ,`linkUrl` = #{linkUrl} + ,`memoTags` = #{memoTags} + ,`enabled` = #{enabled} + ,`deleteFlag` = #{deleteFlag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_program_store + where `id` = #{id} + + + + delete from cy_program_store + ${condition} + + + + delete from cy_program_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramStoreOrderProductInfoMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramStoreOrderProductInfoMapper.xml new file mode 100644 index 0000000..c3e4a4e --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramStoreOrderProductInfoMapper.xml @@ -0,0 +1,152 @@ + + + + + + `id`,`clientId`,`programId`,`orderItemId`,`tenantId`,`storeId`,`ticketId`,`busNo`,`type`,`info`,`discountMoney`,`isInvalid`,`saleDate`,`tableNo`,`tableName`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_program_store_order_product_info + + `id`,`tenantId` + ,`clientId` + ,`programId` + ,`orderItemId` + ,`storeId` + ,`ticketId` + ,`busNo` + ,`type` + ,`info` + ,`discountMoney` + ,`isInvalid` + ,`saleDate` + ,`tableNo` + ,`tableName` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{programId} + ,#{orderItemId} + ,#{storeId} + ,#{ticketId} + ,#{busNo} + ,#{type} + ,#{info} + ,#{discountMoney} + ,#{isInvalid} + ,#{saleDate} + ,#{tableNo} + ,#{tableName} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_program_store_order_product_info + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`programId` = #{programId} + ,`orderItemId` = #{orderItemId} + ,`storeId` = #{storeId} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`type` = #{type} + ,`info` = #{info} + ,`discountMoney` = #{discountMoney} + ,`isInvalid` = #{isInvalid} + ,`saleDate` = #{saleDate} + ,`tableNo` = #{tableNo} + ,`tableName` = #{tableName} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_program_store_order_product_info + where `id` = #{id} + + + + delete from cy_program_store_order_product_info + ${condition} + + + + delete from cy_program_store_order_product_info + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramStoreOrderProductMakeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramStoreOrderProductMakeMapper.xml new file mode 100644 index 0000000..7be4150 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramStoreOrderProductMakeMapper.xml @@ -0,0 +1,182 @@ + + + + + + `id`,`clientId`,`tenantId`,`programId`,`orderItemId`,`storeId`,`storeNo`,`storeName`,`ticketId`,`busNo`,`makeId`,`makeName`,`addPrice`,`discountPrice`,`count`,`rcount`,`addTotal`,`discountAddTotal`,`discount`,`qtyFlag`,`hand`,`isInvalid`,`saleDate`,`tableNo`,`tableName`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_program_store_order_product_make + + `id`,`tenantId` + ,`clientId` + ,`programId` + ,`orderItemId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`ticketId` + ,`busNo` + ,`makeId` + ,`makeName` + ,`addPrice` + ,`discountPrice` + ,`count` + ,`rcount` + ,`addTotal` + ,`discountAddTotal` + ,`discount` + ,`qtyFlag` + ,`hand` + ,`isInvalid` + ,`saleDate` + ,`tableNo` + ,`tableName` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{programId} + ,#{orderItemId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{ticketId} + ,#{busNo} + ,#{makeId} + ,#{makeName} + ,#{addPrice} + ,#{discountPrice} + ,#{count} + ,#{rcount} + ,#{addTotal} + ,#{discountAddTotal} + ,#{discount} + ,#{qtyFlag} + ,#{hand} + ,#{isInvalid} + ,#{saleDate} + ,#{tableNo} + ,#{tableName} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_program_store_order_product_make + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`programId` = #{programId} + ,`orderItemId` = #{orderItemId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`makeId` = #{makeId} + ,`makeName` = #{makeName} + ,`addPrice` = #{addPrice} + ,`discountPrice` = #{discountPrice} + ,`count` = #{count} + ,`rcount` = #{rcount} + ,`addTotal` = #{addTotal} + ,`discountAddTotal` = #{discountAddTotal} + ,`discount` = #{discount} + ,`qtyFlag` = #{qtyFlag} + ,`hand` = #{hand} + ,`isInvalid` = #{isInvalid} + ,`saleDate` = #{saleDate} + ,`tableNo` = #{tableNo} + ,`tableName` = #{tableName} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_program_store_order_product_make + where `id` = #{id} + + + + delete from cy_program_store_order_product_make + ${condition} + + + + delete from cy_program_store_order_product_make + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramStoreOrderProductMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramStoreOrderProductMapper.xml new file mode 100644 index 0000000..654f06f --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramStoreOrderProductMapper.xml @@ -0,0 +1,260 @@ + + + + + + `id`,`clientId`,`parentId`,`tenantId`,`programId`,`storeId`,`storeNo`,`storeName`,`ticketId`,`busNo`,`busMode`,`tableNo`,`tableName`,`productId`,`productNo`,`productName`,`productUnitId`,`productUnitName`,`productImageUrl`,`seriesId`,`seriesName`,`typePath`,`typeId`,`typeName`,`specId`,`specName`,`count`,`rcount`,`price`,`priceOrg`,`discountPrice`,`isSuit`,`suitId`,`saleDate`,`amount`,`discount`,`discountTotal`,`receivable`,`addPriceTotal`,`discountAddTotal`,`amountAddTotal`,`amountTotal`,`receivableTotal`,`packageFee`,`isMember`,`memberNo`,`isInvalid`,`lineNo`,`seqNo`,`weather`,`weeker`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_program_store_order_product + + `id`,`tenantId` + ,`clientId` + ,`parentId` + ,`programId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`ticketId` + ,`busNo` + ,`busMode` + ,`tableNo` + ,`tableName` + ,`productId` + ,`productNo` + ,`productName` + ,`productUnitId` + ,`productUnitName` + ,`productImageUrl` + ,`seriesId` + ,`seriesName` + ,`typePath` + ,`typeId` + ,`typeName` + ,`specId` + ,`specName` + ,`count` + ,`rcount` + ,`price` + ,`priceOrg` + ,`discountPrice` + ,`isSuit` + ,`suitId` + ,`saleDate` + ,`amount` + ,`discount` + ,`discountTotal` + ,`receivable` + ,`addPriceTotal` + ,`discountAddTotal` + ,`amountAddTotal` + ,`amountTotal` + ,`receivableTotal` + ,`packageFee` + ,`isMember` + ,`memberNo` + ,`isInvalid` + ,`lineNo` + ,`seqNo` + ,`weather` + ,`weeker` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{parentId} + ,#{programId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{ticketId} + ,#{busNo} + ,#{busMode} + ,#{tableNo} + ,#{tableName} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{productUnitId} + ,#{productUnitName} + ,#{productImageUrl} + ,#{seriesId} + ,#{seriesName} + ,#{typePath} + ,#{typeId} + ,#{typeName} + ,#{specId} + ,#{specName} + ,#{count} + ,#{rcount} + ,#{price} + ,#{priceOrg} + ,#{discountPrice} + ,#{isSuit} + ,#{suitId} + ,#{saleDate} + ,#{amount} + ,#{discount} + ,#{discountTotal} + ,#{receivable} + ,#{addPriceTotal} + ,#{discountAddTotal} + ,#{amountAddTotal} + ,#{amountTotal} + ,#{receivableTotal} + ,#{packageFee} + ,#{isMember} + ,#{memberNo} + ,#{isInvalid} + ,#{lineNo} + ,#{seqNo} + ,#{weather} + ,#{weeker} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_program_store_order_product + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`parentId` = #{parentId} + ,`programId` = #{programId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`busMode` = #{busMode} + ,`tableNo` = #{tableNo} + ,`tableName` = #{tableName} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`productUnitId` = #{productUnitId} + ,`productUnitName` = #{productUnitName} + ,`productImageUrl` = #{productImageUrl} + ,`seriesId` = #{seriesId} + ,`seriesName` = #{seriesName} + ,`typePath` = #{typePath} + ,`typeId` = #{typeId} + ,`typeName` = #{typeName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`count` = #{count} + ,`rcount` = #{rcount} + ,`price` = #{price} + ,`priceOrg` = #{priceOrg} + ,`discountPrice` = #{discountPrice} + ,`isSuit` = #{isSuit} + ,`suitId` = #{suitId} + ,`saleDate` = #{saleDate} + ,`amount` = #{amount} + ,`discount` = #{discount} + ,`discountTotal` = #{discountTotal} + ,`receivable` = #{receivable} + ,`addPriceTotal` = #{addPriceTotal} + ,`discountAddTotal` = #{discountAddTotal} + ,`amountAddTotal` = #{amountAddTotal} + ,`amountTotal` = #{amountTotal} + ,`receivableTotal` = #{receivableTotal} + ,`packageFee` = #{packageFee} + ,`isMember` = #{isMember} + ,`memberNo` = #{memberNo} + ,`isInvalid` = #{isInvalid} + ,`lineNo` = #{lineNo} + ,`seqNo` = #{seqNo} + ,`weather` = #{weather} + ,`weeker` = #{weeker} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_program_store_order_product + where `id` = #{id} + + + + delete from cy_program_store_order_product + ${condition} + + + + delete from cy_program_store_order_product + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramStorePayMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramStorePayMapper.xml new file mode 100644 index 0000000..eba3120 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramStorePayMapper.xml @@ -0,0 +1,209 @@ + + + + + + `id`,`clientId`,`tenantId`,`programId`,`storeId`,`storeNo`,`storeName`,`payNo`,`ticketId`,`busNo`,`busMode`,`tableNo`,`tableName`,`payTypeNo`,`payType`,`paid`,`rchange`,`money`,`overAmount`,`voucherNo`,`payDate`,`cardno`,`cardYe`,`cardJf`,`incomeFlag`,`otherRateType`,`otherRateValue`,`otherRate`,`payChannel`,`deductionRate`,`chargeBack`,`settleFlag`,`memo`,`isInvalid`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_program_store_pay + + `id`,`tenantId` + ,`clientId` + ,`programId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`payNo` + ,`ticketId` + ,`busNo` + ,`busMode` + ,`tableNo` + ,`tableName` + ,`payTypeNo` + ,`payType` + ,`paid` + ,`rchange` + ,`money` + ,`overAmount` + ,`voucherNo` + ,`payDate` + ,`cardno` + ,`cardYe` + ,`cardJf` + ,`incomeFlag` + ,`otherRateType` + ,`otherRateValue` + ,`otherRate` + ,`payChannel` + ,`deductionRate` + ,`chargeBack` + ,`settleFlag` + ,`memo` + ,`isInvalid` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{programId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{payNo} + ,#{ticketId} + ,#{busNo} + ,#{busMode} + ,#{tableNo} + ,#{tableName} + ,#{payTypeNo} + ,#{payType} + ,#{paid} + ,#{rchange} + ,#{money} + ,#{overAmount} + ,#{voucherNo} + ,#{payDate} + ,#{cardno} + ,#{cardYe} + ,#{cardJf} + ,#{incomeFlag} + ,#{otherRateType} + ,#{otherRateValue} + ,#{otherRate} + ,#{payChannel} + ,#{deductionRate} + ,#{chargeBack} + ,#{settleFlag} + ,#{memo} + ,#{isInvalid} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_program_store_pay + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`programId` = #{programId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`payNo` = #{payNo} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`busMode` = #{busMode} + ,`tableNo` = #{tableNo} + ,`tableName` = #{tableName} + ,`payTypeNo` = #{payTypeNo} + ,`payType` = #{payType} + ,`paid` = #{paid} + ,`rchange` = #{rchange} + ,`money` = #{money} + ,`overAmount` = #{overAmount} + ,`voucherNo` = #{voucherNo} + ,`payDate` = #{payDate} + ,`cardno` = #{cardno} + ,`cardYe` = #{cardYe} + ,`cardJf` = #{cardJf} + ,`incomeFlag` = #{incomeFlag} + ,`otherRateType` = #{otherRateType} + ,`otherRateValue` = #{otherRateValue} + ,`otherRate` = #{otherRate} + ,`payChannel` = #{payChannel} + ,`deductionRate` = #{deductionRate} + ,`chargeBack` = #{chargeBack} + ,`settleFlag` = #{settleFlag} + ,`memo` = #{memo} + ,`isInvalid` = #{isInvalid} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_program_store_pay + where `id` = #{id} + + + + delete from cy_program_store_pay + ${condition} + + + + delete from cy_program_store_pay + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ProgramStoreProductMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ProgramStoreProductMapper.xml new file mode 100644 index 0000000..1db0d46 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ProgramStoreProductMapper.xml @@ -0,0 +1,140 @@ + + + + + + `id`,`tenantId`,`programId`,`storeId`,`productId`,`specId`,`productUnitId`,`typeId`,`typePath`,`wprice`,`wmemberPrice`,`totalStock`,`saleStock`,`stock`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_program_store_product + + `id`,`tenantId` + ,`programId` + ,`storeId` + ,`productId` + ,`specId` + ,`productUnitId` + ,`typeId` + ,`typePath` + ,`wprice` + ,`wmemberPrice` + ,`totalStock` + ,`saleStock` + ,`stock` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{programId} + ,#{storeId} + ,#{productId} + ,#{specId} + ,#{productUnitId} + ,#{typeId} + ,#{typePath} + ,#{wprice} + ,#{wmemberPrice} + ,#{totalStock} + ,#{saleStock} + ,#{stock} + ,#{createDate} + ,#{createUser} + + + + + update cy_program_store_product + + `tenantId` = #{tenantId} + ,`programId` = #{programId} + ,`storeId` = #{storeId} + ,`productId` = #{productId} + ,`specId` = #{specId} + ,`productUnitId` = #{productUnitId} + ,`typeId` = #{typeId} + ,`typePath` = #{typePath} + ,`wprice` = #{wprice} + ,`wmemberPrice` = #{wmemberPrice} + ,`totalStock` = #{totalStock} + ,`saleStock` = #{saleStock} + ,`stock` = #{stock} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_program_store_product + where `id` = #{id} + + + + delete from cy_program_store_product + ${condition} + + + + delete from cy_program_store_product + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PromotionBlackListGoodsMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PromotionBlackListGoodsMapper.xml new file mode 100644 index 0000000..9d9bd96 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PromotionBlackListGoodsMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`promotionId`,`promotionSn`,`productId`,`specId`,`productNo`,`productName`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_promotion_black_list_goods + + `id`,`tenantId` + ,`promotionId` + ,`promotionSn` + ,`productId` + ,`specId` + ,`productNo` + ,`productName` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{promotionId} + ,#{promotionSn} + ,#{productId} + ,#{specId} + ,#{productNo} + ,#{productName} + ,#{createUser} + ,#{createDate} + + + + + update cy_promotion_black_list_goods + + `tenantId` = #{tenantId} + ,`promotionId` = #{promotionId} + ,`promotionSn` = #{promotionSn} + ,`productId` = #{productId} + ,`specId` = #{specId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_promotion_black_list_goods + where `id` = #{id} + + + + delete from cy_promotion_black_list_goods + ${condition} + + + + delete from cy_promotion_black_list_goods + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PromotionBlackListStoreAreaMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PromotionBlackListStoreAreaMapper.xml new file mode 100644 index 0000000..6e57a6e --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PromotionBlackListStoreAreaMapper.xml @@ -0,0 +1,113 @@ + + + + + + `id`,`tenantId`,`promotionId`,`promotionSn`,`areaId`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_promotion_black_list_store_area + + `id`,`tenantId` + ,`promotionId` + ,`promotionSn` + ,`areaId` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{promotionId} + ,#{promotionSn} + ,#{areaId} + ,#{createUser} + ,#{createDate} + + + + + update cy_promotion_black_list_store_area + + `tenantId` = #{tenantId} + ,`promotionId` = #{promotionId} + ,`promotionSn` = #{promotionSn} + ,`areaId` = #{areaId} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_promotion_black_list_store_area + where `id` = #{id} + + + + delete from cy_promotion_black_list_store_area + ${condition} + + + + delete from cy_promotion_black_list_store_area + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PromotionBlackListStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PromotionBlackListStoreMapper.xml new file mode 100644 index 0000000..ac76436 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PromotionBlackListStoreMapper.xml @@ -0,0 +1,113 @@ + + + + + + `id`,`tenantId`,`promotionId`,`promotionSn`,`storeId`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_promotion_black_list_store + + `id`,`tenantId` + ,`promotionId` + ,`promotionSn` + ,`storeId` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{promotionId} + ,#{promotionSn} + ,#{storeId} + ,#{createUser} + ,#{createDate} + + + + + update cy_promotion_black_list_store + + `tenantId` = #{tenantId} + ,`promotionId` = #{promotionId} + ,`promotionSn` = #{promotionSn} + ,`storeId` = #{storeId} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_promotion_black_list_store + where `id` = #{id} + + + + delete from cy_promotion_black_list_store + ${condition} + + + + delete from cy_promotion_black_list_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PromotionCategoryMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PromotionCategoryMapper.xml new file mode 100644 index 0000000..d2f274a --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PromotionCategoryMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`promotionId`,`promotionSn`,`typeId`,`typeNo`,`typeName`,`discountType`,`discount`,`status`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_promotion_category + + `id`,`tenantId` + ,`promotionId` + ,`promotionSn` + ,`typeId` + ,`typeNo` + ,`typeName` + ,`discountType` + ,`discount` + ,`status` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{promotionId} + ,#{promotionSn} + ,#{typeId} + ,#{typeNo} + ,#{typeName} + ,#{discountType} + ,#{discount} + ,#{status} + ,#{createUser} + ,#{createDate} + + + + + update cy_promotion_category + + `tenantId` = #{tenantId} + ,`promotionId` = #{promotionId} + ,`promotionSn` = #{promotionSn} + ,`typeId` = #{typeId} + ,`typeNo` = #{typeNo} + ,`typeName` = #{typeName} + ,`discountType` = #{discountType} + ,`discount` = #{discount} + ,`status` = #{status} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_promotion_category + where `id` = #{id} + + + + delete from cy_promotion_category + ${condition} + + + + delete from cy_promotion_category + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PromotionGoodsMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PromotionGoodsMapper.xml new file mode 100644 index 0000000..1b5236d --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PromotionGoodsMapper.xml @@ -0,0 +1,143 @@ + + + + + + `id`,`tenantId`,`promotionId`,`promotionSn`,`productId`,`specId`,`productNo`,`productName`,`salePrice`,`specialPrice`,`discountType`,`discount`,`limitNum`,`allLimitNum`,`status`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_promotion_goods + + `id`,`tenantId` + ,`promotionId` + ,`promotionSn` + ,`productId` + ,`specId` + ,`productNo` + ,`productName` + ,`salePrice` + ,`specialPrice` + ,`discountType` + ,`discount` + ,`limitNum` + ,`allLimitNum` + ,`status` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{promotionId} + ,#{promotionSn} + ,#{productId} + ,#{specId} + ,#{productNo} + ,#{productName} + ,#{salePrice} + ,#{specialPrice} + ,#{discountType} + ,#{discount} + ,#{limitNum} + ,#{allLimitNum} + ,#{status} + ,#{createUser} + ,#{createDate} + + + + + update cy_promotion_goods + + `tenantId` = #{tenantId} + ,`promotionId` = #{promotionId} + ,`promotionSn` = #{promotionSn} + ,`productId` = #{productId} + ,`specId` = #{specId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`salePrice` = #{salePrice} + ,`specialPrice` = #{specialPrice} + ,`discountType` = #{discountType} + ,`discount` = #{discount} + ,`limitNum` = #{limitNum} + ,`allLimitNum` = #{allLimitNum} + ,`status` = #{status} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_promotion_goods + where `id` = #{id} + + + + delete from cy_promotion_goods + ${condition} + + + + delete from cy_promotion_goods + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PromotionScheduleMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PromotionScheduleMapper.xml new file mode 100644 index 0000000..642a21b --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PromotionScheduleMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`sn`,`name`,`startDate`,`endDate`,`status`,`memo`,`deleteFlag`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_promotion_schedule + + `id`,`tenantId` + ,`sn` + ,`name` + ,`startDate` + ,`endDate` + ,`status` + ,`memo` + ,`deleteFlag` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{sn} + ,#{name} + ,#{startDate} + ,#{endDate} + ,#{status} + ,#{memo} + ,#{deleteFlag} + ,#{createUser} + ,#{createDate} + + + + + update cy_promotion_schedule + + `tenantId` = #{tenantId} + ,`sn` = #{sn} + ,`name` = #{name} + ,`startDate` = #{startDate} + ,`endDate` = #{endDate} + ,`status` = #{status} + ,`memo` = #{memo} + ,`deleteFlag` = #{deleteFlag} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_promotion_schedule + where `id` = #{id} + + + + delete from cy_promotion_schedule + ${condition} + + + + delete from cy_promotion_schedule + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PromotionSchemeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PromotionSchemeMapper.xml new file mode 100644 index 0000000..ebeacb8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PromotionSchemeMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`sn`,`promotionId`,`promotionSn`,`type`,`rule`,`memo`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_promotion_scheme + + `id`,`tenantId` + ,`sn` + ,`promotionId` + ,`promotionSn` + ,`type` + ,`rule` + ,`memo` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{sn} + ,#{promotionId} + ,#{promotionSn} + ,#{type} + ,#{rule} + ,#{memo} + ,#{createUser} + ,#{createDate} + + + + + update cy_promotion_scheme + + `tenantId` = #{tenantId} + ,`sn` = #{sn} + ,`promotionId` = #{promotionId} + ,`promotionSn` = #{promotionSn} + ,`type` = #{type} + ,`rule` = #{rule} + ,`memo` = #{memo} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_promotion_scheme + where `id` = #{id} + + + + delete from cy_promotion_scheme + ${condition} + + + + delete from cy_promotion_scheme + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PromotionStoreAreaMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PromotionStoreAreaMapper.xml new file mode 100644 index 0000000..9b31595 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PromotionStoreAreaMapper.xml @@ -0,0 +1,113 @@ + + + + + + `id`,`tenantId`,`promotionId`,`promotionSn`,`areaId`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_promotion_store_area + + `id`,`tenantId` + ,`promotionId` + ,`promotionSn` + ,`areaId` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{promotionId} + ,#{promotionSn} + ,#{areaId} + ,#{createUser} + ,#{createDate} + + + + + update cy_promotion_store_area + + `tenantId` = #{tenantId} + ,`promotionId` = #{promotionId} + ,`promotionSn` = #{promotionSn} + ,`areaId` = #{areaId} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_promotion_store_area + where `id` = #{id} + + + + delete from cy_promotion_store_area + ${condition} + + + + delete from cy_promotion_store_area + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PromotionStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PromotionStoreMapper.xml new file mode 100644 index 0000000..8321cf2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PromotionStoreMapper.xml @@ -0,0 +1,113 @@ + + + + + + `id`,`tenantId`,`promotionId`,`promotionSn`,`storeId`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_promotion_store + + `id`,`tenantId` + ,`promotionId` + ,`promotionSn` + ,`storeId` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{promotionId} + ,#{promotionSn} + ,#{storeId} + ,#{createUser} + ,#{createDate} + + + + + update cy_promotion_store + + `tenantId` = #{tenantId} + ,`promotionId` = #{promotionId} + ,`promotionSn` = #{promotionSn} + ,`storeId` = #{storeId} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_promotion_store + where `id` = #{id} + + + + delete from cy_promotion_store + ${condition} + + + + delete from cy_promotion_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PromotionTaskMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PromotionTaskMapper.xml new file mode 100644 index 0000000..2c3f188 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PromotionTaskMapper.xml @@ -0,0 +1,200 @@ + + + + + + `id`,`tenantId`,`sn`,`scheduleId`,`scheduleSn`,`promotionId`,`promotionSn`,`promotionType`,`storeId`,`valueType`,`valueId`,`valueNo`,`valueName`,`valueExt1`,`valueExt2`,`schemeId`,`schemeSn`,`startDate`,`endDate`,`startTime`,`endTime`,`validWeek`,`validMonth`,`isOnlyMember`,`isRepeatDiscount`,`isAll`,`goodsBlackList`,`discountType`,`discountValue`,`rule`,`setMan`,`setTime`,`status`,`deleteFlag`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_promotion_task + + `id`,`tenantId` + ,`sn` + ,`scheduleId` + ,`scheduleSn` + ,`promotionId` + ,`promotionSn` + ,`promotionType` + ,`storeId` + ,`valueType` + ,`valueId` + ,`valueNo` + ,`valueName` + ,`valueExt1` + ,`valueExt2` + ,`schemeId` + ,`schemeSn` + ,`startDate` + ,`endDate` + ,`startTime` + ,`endTime` + ,`validWeek` + ,`validMonth` + ,`isOnlyMember` + ,`isRepeatDiscount` + ,`isAll` + ,`goodsBlackList` + ,`discountType` + ,`discountValue` + ,`rule` + ,`setMan` + ,`setTime` + ,`status` + ,`deleteFlag` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{sn} + ,#{scheduleId} + ,#{scheduleSn} + ,#{promotionId} + ,#{promotionSn} + ,#{promotionType} + ,#{storeId} + ,#{valueType} + ,#{valueId} + ,#{valueNo} + ,#{valueName} + ,#{valueExt1} + ,#{valueExt2} + ,#{schemeId} + ,#{schemeSn} + ,#{startDate} + ,#{endDate} + ,#{startTime} + ,#{endTime} + ,#{validWeek} + ,#{validMonth} + ,#{isOnlyMember} + ,#{isRepeatDiscount} + ,#{isAll} + ,#{goodsBlackList} + ,#{discountType} + ,#{discountValue} + ,#{rule} + ,#{setMan} + ,#{setTime} + ,#{status} + ,#{deleteFlag} + ,#{createUser} + ,#{createDate} + + + + + update cy_promotion_task + + `tenantId` = #{tenantId} + ,`sn` = #{sn} + ,`scheduleId` = #{scheduleId} + ,`scheduleSn` = #{scheduleSn} + ,`promotionId` = #{promotionId} + ,`promotionSn` = #{promotionSn} + ,`promotionType` = #{promotionType} + ,`storeId` = #{storeId} + ,`valueType` = #{valueType} + ,`valueId` = #{valueId} + ,`valueNo` = #{valueNo} + ,`valueName` = #{valueName} + ,`valueExt1` = #{valueExt1} + ,`valueExt2` = #{valueExt2} + ,`schemeId` = #{schemeId} + ,`schemeSn` = #{schemeSn} + ,`startDate` = #{startDate} + ,`endDate` = #{endDate} + ,`startTime` = #{startTime} + ,`endTime` = #{endTime} + ,`validWeek` = #{validWeek} + ,`validMonth` = #{validMonth} + ,`isOnlyMember` = #{isOnlyMember} + ,`isRepeatDiscount` = #{isRepeatDiscount} + ,`isAll` = #{isAll} + ,`goodsBlackList` = #{goodsBlackList} + ,`discountType` = #{discountType} + ,`discountValue` = #{discountValue} + ,`rule` = #{rule} + ,`setMan` = #{setMan} + ,`setTime` = #{setTime} + ,`status` = #{status} + ,`deleteFlag` = #{deleteFlag} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_promotion_task + where `id` = #{id} + + + + delete from cy_promotion_task + ${condition} + + + + delete from cy_promotion_task + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PromotionTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PromotionTicketMapper.xml new file mode 100644 index 0000000..72f8513 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PromotionTicketMapper.xml @@ -0,0 +1,191 @@ + + + + + + `id`,`tenantId`,`scheduleId`,`scheduleSn`,`sn`,`type`,`startDate`,`endDate`,`startTime`,`endTime`,`validWeek`,`validMonth`,`isOnlyMember`,`isAll`,`isAllStore`,`isRepeatDiscount`,`isGoods`,`isCategory`,`isStore`,`isStoreArea`,`isAreaBlack`,`isStoreBlack`,`isGoodsBlack`,`status`,`memo`,`confirmUser`,`confirmDate`,`confirmStatus`,`lastTaskDate`,`lastTaskNo`,`deleteFlag`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_promotion_ticket + + `id`,`tenantId` + ,`scheduleId` + ,`scheduleSn` + ,`sn` + ,`type` + ,`startDate` + ,`endDate` + ,`startTime` + ,`endTime` + ,`validWeek` + ,`validMonth` + ,`isOnlyMember` + ,`isAll` + ,`isAllStore` + ,`isRepeatDiscount` + ,`isGoods` + ,`isCategory` + ,`isStore` + ,`isStoreArea` + ,`isAreaBlack` + ,`isStoreBlack` + ,`isGoodsBlack` + ,`status` + ,`memo` + ,`confirmUser` + ,`confirmDate` + ,`confirmStatus` + ,`lastTaskDate` + ,`lastTaskNo` + ,`deleteFlag` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{scheduleId} + ,#{scheduleSn} + ,#{sn} + ,#{type} + ,#{startDate} + ,#{endDate} + ,#{startTime} + ,#{endTime} + ,#{validWeek} + ,#{validMonth} + ,#{isOnlyMember} + ,#{isAll} + ,#{isAllStore} + ,#{isRepeatDiscount} + ,#{isGoods} + ,#{isCategory} + ,#{isStore} + ,#{isStoreArea} + ,#{isAreaBlack} + ,#{isStoreBlack} + ,#{isGoodsBlack} + ,#{status} + ,#{memo} + ,#{confirmUser} + ,#{confirmDate} + ,#{confirmStatus} + ,#{lastTaskDate} + ,#{lastTaskNo} + ,#{deleteFlag} + ,#{createUser} + ,#{createDate} + + + + + update cy_promotion_ticket + + `tenantId` = #{tenantId} + ,`scheduleId` = #{scheduleId} + ,`scheduleSn` = #{scheduleSn} + ,`sn` = #{sn} + ,`type` = #{type} + ,`startDate` = #{startDate} + ,`endDate` = #{endDate} + ,`startTime` = #{startTime} + ,`endTime` = #{endTime} + ,`validWeek` = #{validWeek} + ,`validMonth` = #{validMonth} + ,`isOnlyMember` = #{isOnlyMember} + ,`isAll` = #{isAll} + ,`isAllStore` = #{isAllStore} + ,`isRepeatDiscount` = #{isRepeatDiscount} + ,`isGoods` = #{isGoods} + ,`isCategory` = #{isCategory} + ,`isStore` = #{isStore} + ,`isStoreArea` = #{isStoreArea} + ,`isAreaBlack` = #{isAreaBlack} + ,`isStoreBlack` = #{isStoreBlack} + ,`isGoodsBlack` = #{isGoodsBlack} + ,`status` = #{status} + ,`memo` = #{memo} + ,`confirmUser` = #{confirmUser} + ,`confirmDate` = #{confirmDate} + ,`confirmStatus` = #{confirmStatus} + ,`lastTaskDate` = #{lastTaskDate} + ,`lastTaskNo` = #{lastTaskNo} + ,`deleteFlag` = #{deleteFlag} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_promotion_ticket + where `id` = #{id} + + + + delete from cy_promotion_ticket + ${condition} + + + + delete from cy_promotion_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PurchaseStorageTicketDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PurchaseStorageTicketDetailMapper.xml new file mode 100644 index 0000000..cc7f4d2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PurchaseStorageTicketDetailMapper.xml @@ -0,0 +1,167 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`dispatchUnitId`,`dispatchUnitName`,`purchaseUnitId`,`purchaseUnitName`,`pdScale`,`amount`,`price`,`money`,`giveUnitId`,`giveUnitName`,`giveAmount`,`description`,`pbNo`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_purchase_storage_ticket_detail + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`dispatchUnitId` + ,`dispatchUnitName` + ,`purchaseUnitId` + ,`purchaseUnitName` + ,`pdScale` + ,`amount` + ,`price` + ,`money` + ,`giveUnitId` + ,`giveUnitName` + ,`giveAmount` + ,`description` + ,`pbNo` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{dispatchUnitId} + ,#{dispatchUnitName} + ,#{purchaseUnitId} + ,#{purchaseUnitName} + ,#{pdScale} + ,#{amount} + ,#{price} + ,#{money} + ,#{giveUnitId} + ,#{giveUnitName} + ,#{giveAmount} + ,#{description} + ,#{pbNo} + ,#{createUser} + ,#{createDate} + + + + + update cy_purchase_storage_ticket_detail + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`dispatchUnitId` = #{dispatchUnitId} + ,`dispatchUnitName` = #{dispatchUnitName} + ,`purchaseUnitId` = #{purchaseUnitId} + ,`purchaseUnitName` = #{purchaseUnitName} + ,`pdScale` = #{pdScale} + ,`amount` = #{amount} + ,`price` = #{price} + ,`money` = #{money} + ,`giveUnitId` = #{giveUnitId} + ,`giveUnitName` = #{giveUnitName} + ,`giveAmount` = #{giveAmount} + ,`description` = #{description} + ,`pbNo` = #{pbNo} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_purchase_storage_ticket_detail + where `id` = #{id} + + + + delete from cy_purchase_storage_ticket_detail + ${condition} + + + + delete from cy_purchase_storage_ticket_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PurchaseStorageTicketLogMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PurchaseStorageTicketLogMapper.xml new file mode 100644 index 0000000..9f520b9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PurchaseStorageTicketLogMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`type`,`status`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_purchase_storage_ticket_log + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`type` + ,`status` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{type} + ,#{status} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_purchase_storage_ticket_log + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`type` = #{type} + ,`status` = #{status} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_purchase_storage_ticket_log + where `id` = #{id} + + + + delete from cy_purchase_storage_ticket_log + ${condition} + + + + delete from cy_purchase_storage_ticket_log + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PurchaseStorageTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PurchaseStorageTicketMapper.xml new file mode 100644 index 0000000..8e619c4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PurchaseStorageTicketMapper.xml @@ -0,0 +1,158 @@ + + + + + + `id`,`tenantId`,`no`,`purchaseTicketId`,`purchaseTicketNo`,`supplierId`,`supplierNo`,`supplierName`,`storageId`,`storageName`,`description`,`status`,`purchaseUser`,`stockMan`,`setMan`,`setDate`,`checkMan`,`checkDate`,`orderMoney`,`isPayment`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_purchase_storage_ticket + + `id`,`tenantId` + ,`no` + ,`purchaseTicketId` + ,`purchaseTicketNo` + ,`supplierId` + ,`supplierNo` + ,`supplierName` + ,`storageId` + ,`storageName` + ,`description` + ,`status` + ,`purchaseUser` + ,`stockMan` + ,`setMan` + ,`setDate` + ,`checkMan` + ,`checkDate` + ,`orderMoney` + ,`isPayment` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{purchaseTicketId} + ,#{purchaseTicketNo} + ,#{supplierId} + ,#{supplierNo} + ,#{supplierName} + ,#{storageId} + ,#{storageName} + ,#{description} + ,#{status} + ,#{purchaseUser} + ,#{stockMan} + ,#{setMan} + ,#{setDate} + ,#{checkMan} + ,#{checkDate} + ,#{orderMoney} + ,#{isPayment} + ,#{createUser} + ,#{createDate} + + + + + update cy_purchase_storage_ticket + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`purchaseTicketId` = #{purchaseTicketId} + ,`purchaseTicketNo` = #{purchaseTicketNo} + ,`supplierId` = #{supplierId} + ,`supplierNo` = #{supplierNo} + ,`supplierName` = #{supplierName} + ,`storageId` = #{storageId} + ,`storageName` = #{storageName} + ,`description` = #{description} + ,`status` = #{status} + ,`purchaseUser` = #{purchaseUser} + ,`stockMan` = #{stockMan} + ,`setMan` = #{setMan} + ,`setDate` = #{setDate} + ,`checkMan` = #{checkMan} + ,`checkDate` = #{checkDate} + ,`orderMoney` = #{orderMoney} + ,`isPayment` = #{isPayment} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_purchase_storage_ticket + where `id` = #{id} + + + + delete from cy_purchase_storage_ticket + ${condition} + + + + delete from cy_purchase_storage_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PurchaseTemplateDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PurchaseTemplateDetailMapper.xml new file mode 100644 index 0000000..afd04b8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PurchaseTemplateDetailMapper.xml @@ -0,0 +1,140 @@ + + + + + + `id`,`tenantId`,`ticketId`,`productId`,`productNo`,`productName`,`dispatchUnitId`,`dispatchUnitName`,`specId`,`specName`,`productDescription`,`purchaseUnitId`,`purchaseUnitName`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_purchase_template_detail + + `id`,`tenantId` + ,`ticketId` + ,`productId` + ,`productNo` + ,`productName` + ,`dispatchUnitId` + ,`dispatchUnitName` + ,`specId` + ,`specName` + ,`productDescription` + ,`purchaseUnitId` + ,`purchaseUnitName` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{dispatchUnitId} + ,#{dispatchUnitName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{purchaseUnitId} + ,#{purchaseUnitName} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_purchase_template_detail + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`dispatchUnitId` = #{dispatchUnitId} + ,`dispatchUnitName` = #{dispatchUnitName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`purchaseUnitId` = #{purchaseUnitId} + ,`purchaseUnitName` = #{purchaseUnitName} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_purchase_template_detail + where `id` = #{id} + + + + delete from cy_purchase_template_detail + ${condition} + + + + delete from cy_purchase_template_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PurchaseTemplateMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PurchaseTemplateMapper.xml new file mode 100644 index 0000000..7cde27c --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PurchaseTemplateMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`description`,`type`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_purchase_template + + `id`,`tenantId` + ,`no` + ,`name` + ,`description` + ,`type` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{description} + ,#{type} + ,#{createUser} + ,#{createDate} + + + + + update cy_purchase_template + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`description` = #{description} + ,`type` = #{type} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_purchase_template + where `id` = #{id} + + + + delete from cy_purchase_template + ${condition} + + + + delete from cy_purchase_template + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PurchaseTicketDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PurchaseTicketDetailMapper.xml new file mode 100644 index 0000000..c640872 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PurchaseTicketDetailMapper.xml @@ -0,0 +1,158 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`dispatchUnitId`,`dispatchUnitName`,`stockAmount`,`purchaseUnitId`,`purchaseUnitName`,`pdScale`,`amount`,`price`,`money`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_purchase_ticket_detail + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`dispatchUnitId` + ,`dispatchUnitName` + ,`stockAmount` + ,`purchaseUnitId` + ,`purchaseUnitName` + ,`pdScale` + ,`amount` + ,`price` + ,`money` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{dispatchUnitId} + ,#{dispatchUnitName} + ,#{stockAmount} + ,#{purchaseUnitId} + ,#{purchaseUnitName} + ,#{pdScale} + ,#{amount} + ,#{price} + ,#{money} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_purchase_ticket_detail + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`dispatchUnitId` = #{dispatchUnitId} + ,`dispatchUnitName` = #{dispatchUnitName} + ,`stockAmount` = #{stockAmount} + ,`purchaseUnitId` = #{purchaseUnitId} + ,`purchaseUnitName` = #{purchaseUnitName} + ,`pdScale` = #{pdScale} + ,`amount` = #{amount} + ,`price` = #{price} + ,`money` = #{money} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_purchase_ticket_detail + where `id` = #{id} + + + + delete from cy_purchase_ticket_detail + ${condition} + + + + delete from cy_purchase_ticket_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PurchaseTicketLogMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PurchaseTicketLogMapper.xml new file mode 100644 index 0000000..5cded57 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PurchaseTicketLogMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`type`,`status`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_purchase_ticket_log + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`type` + ,`status` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{type} + ,#{status} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_purchase_ticket_log + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`type` = #{type} + ,`status` = #{status} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_purchase_ticket_log + where `id` = #{id} + + + + delete from cy_purchase_ticket_log + ${condition} + + + + delete from cy_purchase_ticket_log + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PurchaseTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PurchaseTicketMapper.xml new file mode 100644 index 0000000..244a705 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PurchaseTicketMapper.xml @@ -0,0 +1,143 @@ + + + + + + `id`,`tenantId`,`no`,`storageId`,`supplierId`,`supplierNo`,`deliveryDate`,`status`,`isUse`,`purchaseUser`,`setMan`,`setDate`,`checkMan`,`checkDate`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_purchase_ticket + + `id`,`tenantId` + ,`no` + ,`storageId` + ,`supplierId` + ,`supplierNo` + ,`deliveryDate` + ,`status` + ,`isUse` + ,`purchaseUser` + ,`setMan` + ,`setDate` + ,`checkMan` + ,`checkDate` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{storageId} + ,#{supplierId} + ,#{supplierNo} + ,#{deliveryDate} + ,#{status} + ,#{isUse} + ,#{purchaseUser} + ,#{setMan} + ,#{setDate} + ,#{checkMan} + ,#{checkDate} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_purchase_ticket + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`storageId` = #{storageId} + ,`supplierId` = #{supplierId} + ,`supplierNo` = #{supplierNo} + ,`deliveryDate` = #{deliveryDate} + ,`status` = #{status} + ,`isUse` = #{isUse} + ,`purchaseUser` = #{purchaseUser} + ,`setMan` = #{setMan} + ,`setDate` = #{setDate} + ,`checkMan` = #{checkMan} + ,`checkDate` = #{checkDate} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_purchase_ticket + where `id` = #{id} + + + + delete from cy_purchase_ticket + ${condition} + + + + delete from cy_purchase_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PurchasepriceMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PurchasepriceMapper.xml new file mode 100644 index 0000000..d056764 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PurchasepriceMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`supplierId`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`purchasePrice`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_purchaseprice + + `id`,`tenantId` + ,`supplierId` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`purchasePrice` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{supplierId} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{purchasePrice} + ,#{createDate} + ,#{createUser} + + + + + update cy_purchaseprice + + `tenantId` = #{tenantId} + ,`supplierId` = #{supplierId} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`purchasePrice` = #{purchasePrice} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_purchaseprice + where `id` = #{id} + + + + delete from cy_purchaseprice + ${condition} + + + + delete from cy_purchaseprice + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PurchasepriceTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PurchasepriceTicketMapper.xml new file mode 100644 index 0000000..477642a --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PurchasepriceTicketMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`no`,`status`,`makeUser`,`makeDate`,`checkUser`,`checkDate`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_purchaseprice_ticket + + `id`,`tenantId` + ,`no` + ,`status` + ,`makeUser` + ,`makeDate` + ,`checkUser` + ,`checkDate` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{status} + ,#{makeUser} + ,#{makeDate} + ,#{checkUser} + ,#{checkDate} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_purchaseprice_ticket + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`status` = #{status} + ,`makeUser` = #{makeUser} + ,`makeDate` = #{makeDate} + ,`checkUser` = #{checkUser} + ,`checkDate` = #{checkDate} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_purchaseprice_ticket + where `id` = #{id} + + + + delete from cy_purchaseprice_ticket + ${condition} + + + + delete from cy_purchaseprice_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/PurchasepriceTicketMaterialMapper.xml b/food-pdm-tools/src/generate/food/mybatis/PurchasepriceTicketMaterialMapper.xml new file mode 100644 index 0000000..b5dc528 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/PurchasepriceTicketMaterialMapper.xml @@ -0,0 +1,140 @@ + + + + + + `id`,`tenantId`,`ticketId`,`supplierId`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`purchaseUnitId`,`hpurchasePrice`,`purchasePrice`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_purchaseprice_ticket_material + + `id`,`tenantId` + ,`ticketId` + ,`supplierId` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`purchaseUnitId` + ,`hpurchasePrice` + ,`purchasePrice` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{supplierId} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{purchaseUnitId} + ,#{hpurchasePrice} + ,#{purchasePrice} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_purchaseprice_ticket_material + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`supplierId` = #{supplierId} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`purchaseUnitId` = #{purchaseUnitId} + ,`hpurchasePrice` = #{hpurchasePrice} + ,`purchasePrice` = #{purchasePrice} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_purchaseprice_ticket_material + where `id` = #{id} + + + + delete from cy_purchaseprice_ticket_material + ${condition} + + + + delete from cy_purchaseprice_ticket_material + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/QimaiAdjustPriceGoodsMapper.xml b/food-pdm-tools/src/generate/food/mybatis/QimaiAdjustPriceGoodsMapper.xml new file mode 100644 index 0000000..6d8cd82 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/QimaiAdjustPriceGoodsMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`goodsId`,`productId`,`specId`,`price`,`memberPrice`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_qimai_adjust_price_goods + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`goodsId` + ,`productId` + ,`specId` + ,`price` + ,`memberPrice` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{goodsId} + ,#{productId} + ,#{specId} + ,#{price} + ,#{memberPrice} + ,#{createUser} + ,#{createDate} + + + + + update cy_qimai_adjust_price_goods + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`goodsId` = #{goodsId} + ,`productId` = #{productId} + ,`specId` = #{specId} + ,`price` = #{price} + ,`memberPrice` = #{memberPrice} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_qimai_adjust_price_goods + where `id` = #{id} + + + + delete from cy_qimai_adjust_price_goods + ${condition} + + + + delete from cy_qimai_adjust_price_goods + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/QimaiAdjustPriceStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/QimaiAdjustPriceStoreMapper.xml new file mode 100644 index 0000000..0372b23 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/QimaiAdjustPriceStoreMapper.xml @@ -0,0 +1,113 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`storeId`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_qimai_adjust_price_store + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`storeId` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{storeId} + ,#{createUser} + ,#{createDate} + + + + + update cy_qimai_adjust_price_store + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`storeId` = #{storeId} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_qimai_adjust_price_store + where `id` = #{id} + + + + delete from cy_qimai_adjust_price_store + ${condition} + + + + delete from cy_qimai_adjust_price_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/QimaiAdjustPriceTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/QimaiAdjustPriceTicketMapper.xml new file mode 100644 index 0000000..b055984 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/QimaiAdjustPriceTicketMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`no`,`effectDate`,`description`,`status`,`checkPeople`,`checkDate`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_qimai_adjust_price_ticket + + `id`,`tenantId` + ,`no` + ,`effectDate` + ,`description` + ,`status` + ,`checkPeople` + ,`checkDate` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{effectDate} + ,#{description} + ,#{status} + ,#{checkPeople} + ,#{checkDate} + ,#{createUser} + ,#{createDate} + + + + + update cy_qimai_adjust_price_ticket + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`effectDate` = #{effectDate} + ,`description` = #{description} + ,`status` = #{status} + ,`checkPeople` = #{checkPeople} + ,`checkDate` = #{checkDate} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_qimai_adjust_price_ticket + where `id` = #{id} + + + + delete from cy_qimai_adjust_price_ticket + ${condition} + + + + delete from cy_qimai_adjust_price_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/QimaiAttributeCategoryMapper.xml b/food-pdm-tools/src/generate/food/mybatis/QimaiAttributeCategoryMapper.xml new file mode 100644 index 0000000..3e8b7a9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/QimaiAttributeCategoryMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`setId`,`no`,`name`,`specFlag`,`multiId`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_qimai_attribute_category + + `id`,`tenantId` + ,`setId` + ,`no` + ,`name` + ,`specFlag` + ,`multiId` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{setId} + ,#{no} + ,#{name} + ,#{specFlag} + ,#{multiId} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_qimai_attribute_category + + `tenantId` = #{tenantId} + ,`setId` = #{setId} + ,`no` = #{no} + ,`name` = #{name} + ,`specFlag` = #{specFlag} + ,`multiId` = #{multiId} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_qimai_attribute_category + where `id` = #{id} + + + + delete from cy_qimai_attribute_category + ${condition} + + + + delete from cy_qimai_attribute_category + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/QimaiAttributeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/QimaiAttributeMapper.xml new file mode 100644 index 0000000..47d6f48 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/QimaiAttributeMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`setId`,`no`,`name`,`categoryId`,`multiId`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_qimai_attribute + + `id`,`tenantId` + ,`setId` + ,`no` + ,`name` + ,`categoryId` + ,`multiId` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{setId} + ,#{no} + ,#{name} + ,#{categoryId} + ,#{multiId} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_qimai_attribute + + `tenantId` = #{tenantId} + ,`setId` = #{setId} + ,`no` = #{no} + ,`name` = #{name} + ,`categoryId` = #{categoryId} + ,`multiId` = #{multiId} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_qimai_attribute + where `id` = #{id} + + + + delete from cy_qimai_attribute + ${condition} + + + + delete from cy_qimai_attribute + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/QimaiChargeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/QimaiChargeMapper.xml new file mode 100644 index 0000000..17bf9a1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/QimaiChargeMapper.xml @@ -0,0 +1,140 @@ + + + + + + `id`,`tenantId`,`setId`,`name`,`no`,`makeDetailId`,`multiId`,`type`,`tsPrice`,`wmPrice`,`enabled`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_qimai_charge + + `id`,`tenantId` + ,`setId` + ,`name` + ,`no` + ,`makeDetailId` + ,`multiId` + ,`type` + ,`tsPrice` + ,`wmPrice` + ,`enabled` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{setId} + ,#{name} + ,#{no} + ,#{makeDetailId} + ,#{multiId} + ,#{type} + ,#{tsPrice} + ,#{wmPrice} + ,#{enabled} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_qimai_charge + + `tenantId` = #{tenantId} + ,`setId` = #{setId} + ,`name` = #{name} + ,`no` = #{no} + ,`makeDetailId` = #{makeDetailId} + ,`multiId` = #{multiId} + ,`type` = #{type} + ,`tsPrice` = #{tsPrice} + ,`wmPrice` = #{wmPrice} + ,`enabled` = #{enabled} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_qimai_charge + where `id` = #{id} + + + + delete from cy_qimai_charge + ${condition} + + + + delete from cy_qimai_charge + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/QimaiOrderItemMapper.xml b/food-pdm-tools/src/generate/food/mybatis/QimaiOrderItemMapper.xml new file mode 100644 index 0000000..141442e --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/QimaiOrderItemMapper.xml @@ -0,0 +1,155 @@ + + + + + + `id`,`tenantId`,`orderId`,`dishId`,`name`,`image`,`price`,`minus`,`costPrice`,`num`,`isSend`,`sentAt`,`isGive`,`incomeRate`,`tradeMark`,`incomeRate2`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_qimai_order_item + + `id`,`tenantId` + ,`orderId` + ,`dishId` + ,`name` + ,`image` + ,`price` + ,`minus` + ,`costPrice` + ,`num` + ,`isSend` + ,`sentAt` + ,`isGive` + ,`incomeRate` + ,`tradeMark` + ,`incomeRate2` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{orderId} + ,#{dishId} + ,#{name} + ,#{image} + ,#{price} + ,#{minus} + ,#{costPrice} + ,#{num} + ,#{isSend} + ,#{sentAt} + ,#{isGive} + ,#{incomeRate} + ,#{tradeMark} + ,#{incomeRate2} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_qimai_order_item + + `tenantId` = #{tenantId} + ,`orderId` = #{orderId} + ,`dishId` = #{dishId} + ,`name` = #{name} + ,`image` = #{image} + ,`price` = #{price} + ,`minus` = #{minus} + ,`costPrice` = #{costPrice} + ,`num` = #{num} + ,`isSend` = #{isSend} + ,`sentAt` = #{sentAt} + ,`isGive` = #{isGive} + ,`incomeRate` = #{incomeRate} + ,`tradeMark` = #{tradeMark} + ,`incomeRate2` = #{incomeRate2} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_qimai_order_item + where `id` = #{id} + + + + delete from cy_qimai_order_item + ${condition} + + + + delete from cy_qimai_order_item + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/QimaiOrderMapper.xml b/food-pdm-tools/src/generate/food/mybatis/QimaiOrderMapper.xml new file mode 100644 index 0000000..5f42270 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/QimaiOrderMapper.xml @@ -0,0 +1,260 @@ + + + + + + `id`,`tenantId`,`message`,`storeId`,`orderId`,`multiStoreName`,`multiStoreId`,`orderNo`,`createdTime`,`payTime`,`status`,`sortNum`,`amount`,`totalAmount`,`minusAmount`,`useCoupon`,`couponType`,`postscript`,`typeCateText`,`userName`,`payUserName`,`source`,`sourceTxt`,`moblie`,`userNameAll`,`goodsName`,`refundOrderId`,`refundOrderStatus`,`refundOrderStatusText`,`goods`,`mutilUser`,`tableNumber`,`freight`,`tablewarePrice`,`finalStatus`,`statusText`,`peopleNumber`,`multiStoreMark`,`completedAt`,`reserveTakeoutTime`,`mealTime`,`express`,`lat`,`lng`,`thirdDelivery`,`acceptName`,`acceptMobile`,`address`,`payModel`,`walletAmount`,`receivableAmount`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_qimai_order + + `id`,`tenantId` + ,`message` + ,`storeId` + ,`orderId` + ,`multiStoreName` + ,`multiStoreId` + ,`orderNo` + ,`createdTime` + ,`payTime` + ,`status` + ,`sortNum` + ,`amount` + ,`totalAmount` + ,`minusAmount` + ,`useCoupon` + ,`couponType` + ,`postscript` + ,`typeCateText` + ,`userName` + ,`payUserName` + ,`source` + ,`sourceTxt` + ,`moblie` + ,`userNameAll` + ,`goodsName` + ,`refundOrderId` + ,`refundOrderStatus` + ,`refundOrderStatusText` + ,`goods` + ,`mutilUser` + ,`tableNumber` + ,`freight` + ,`tablewarePrice` + ,`finalStatus` + ,`statusText` + ,`peopleNumber` + ,`multiStoreMark` + ,`completedAt` + ,`reserveTakeoutTime` + ,`mealTime` + ,`express` + ,`lat` + ,`lng` + ,`thirdDelivery` + ,`acceptName` + ,`acceptMobile` + ,`address` + ,`payModel` + ,`walletAmount` + ,`receivableAmount` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{message} + ,#{storeId} + ,#{orderId} + ,#{multiStoreName} + ,#{multiStoreId} + ,#{orderNo} + ,#{createdTime} + ,#{payTime} + ,#{status} + ,#{sortNum} + ,#{amount} + ,#{totalAmount} + ,#{minusAmount} + ,#{useCoupon} + ,#{couponType} + ,#{postscript} + ,#{typeCateText} + ,#{userName} + ,#{payUserName} + ,#{source} + ,#{sourceTxt} + ,#{moblie} + ,#{userNameAll} + ,#{goodsName} + ,#{refundOrderId} + ,#{refundOrderStatus} + ,#{refundOrderStatusText} + ,#{goods} + ,#{mutilUser} + ,#{tableNumber} + ,#{freight} + ,#{tablewarePrice} + ,#{finalStatus} + ,#{statusText} + ,#{peopleNumber} + ,#{multiStoreMark} + ,#{completedAt} + ,#{reserveTakeoutTime} + ,#{mealTime} + ,#{express} + ,#{lat} + ,#{lng} + ,#{thirdDelivery} + ,#{acceptName} + ,#{acceptMobile} + ,#{address} + ,#{payModel} + ,#{walletAmount} + ,#{receivableAmount} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_qimai_order + + `tenantId` = #{tenantId} + ,`message` = #{message} + ,`storeId` = #{storeId} + ,`orderId` = #{orderId} + ,`multiStoreName` = #{multiStoreName} + ,`multiStoreId` = #{multiStoreId} + ,`orderNo` = #{orderNo} + ,`createdTime` = #{createdTime} + ,`payTime` = #{payTime} + ,`status` = #{status} + ,`sortNum` = #{sortNum} + ,`amount` = #{amount} + ,`totalAmount` = #{totalAmount} + ,`minusAmount` = #{minusAmount} + ,`useCoupon` = #{useCoupon} + ,`couponType` = #{couponType} + ,`postscript` = #{postscript} + ,`typeCateText` = #{typeCateText} + ,`userName` = #{userName} + ,`payUserName` = #{payUserName} + ,`source` = #{source} + ,`sourceTxt` = #{sourceTxt} + ,`moblie` = #{moblie} + ,`userNameAll` = #{userNameAll} + ,`goodsName` = #{goodsName} + ,`refundOrderId` = #{refundOrderId} + ,`refundOrderStatus` = #{refundOrderStatus} + ,`refundOrderStatusText` = #{refundOrderStatusText} + ,`goods` = #{goods} + ,`mutilUser` = #{mutilUser} + ,`tableNumber` = #{tableNumber} + ,`freight` = #{freight} + ,`tablewarePrice` = #{tablewarePrice} + ,`finalStatus` = #{finalStatus} + ,`statusText` = #{statusText} + ,`peopleNumber` = #{peopleNumber} + ,`multiStoreMark` = #{multiStoreMark} + ,`completedAt` = #{completedAt} + ,`reserveTakeoutTime` = #{reserveTakeoutTime} + ,`mealTime` = #{mealTime} + ,`express` = #{express} + ,`lat` = #{lat} + ,`lng` = #{lng} + ,`thirdDelivery` = #{thirdDelivery} + ,`acceptName` = #{acceptName} + ,`acceptMobile` = #{acceptMobile} + ,`address` = #{address} + ,`payModel` = #{payModel} + ,`walletAmount` = #{walletAmount} + ,`receivableAmount` = #{receivableAmount} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_qimai_order + where `id` = #{id} + + + + delete from cy_qimai_order + ${condition} + + + + delete from cy_qimai_order + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/QimaiOrderPayMapper.xml b/food-pdm-tools/src/generate/food/mybatis/QimaiOrderPayMapper.xml new file mode 100644 index 0000000..e44481d --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/QimaiOrderPayMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`orderId`,`name`,`type`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_qimai_order_pay + + `id`,`tenantId` + ,`orderId` + ,`name` + ,`type` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{orderId} + ,#{name} + ,#{type} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_qimai_order_pay + + `tenantId` = #{tenantId} + ,`orderId` = #{orderId} + ,`name` = #{name} + ,`type` = #{type} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_qimai_order_pay + where `id` = #{id} + + + + delete from cy_qimai_order_pay + ${condition} + + + + delete from cy_qimai_order_pay + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/QimaiProductAttributeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/QimaiProductAttributeMapper.xml new file mode 100644 index 0000000..1d7cb7c --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/QimaiProductAttributeMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`setId`,`productId`,`attributeId`,`no`,`name`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_qimai_product_attribute + + `id`,`tenantId` + ,`setId` + ,`productId` + ,`attributeId` + ,`no` + ,`name` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{setId} + ,#{productId} + ,#{attributeId} + ,#{no} + ,#{name} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_qimai_product_attribute + + `tenantId` = #{tenantId} + ,`setId` = #{setId} + ,`productId` = #{productId} + ,`attributeId` = #{attributeId} + ,`no` = #{no} + ,`name` = #{name} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_qimai_product_attribute + where `id` = #{id} + + + + delete from cy_qimai_product_attribute + ${condition} + + + + delete from cy_qimai_product_attribute + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/QimaiProductCategoryMapper.xml b/food-pdm-tools/src/generate/food/mybatis/QimaiProductCategoryMapper.xml new file mode 100644 index 0000000..259580f --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/QimaiProductCategoryMapper.xml @@ -0,0 +1,143 @@ + + + + + + `id`,`tenantId`,`setId`,`no`,`name`,`type`,`multiId`,`showPeriod`,`beginDate`,`endDate`,`weeks`,`period`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_qimai_product_category + + `id`,`tenantId` + ,`setId` + ,`no` + ,`name` + ,`type` + ,`multiId` + ,`showPeriod` + ,`beginDate` + ,`endDate` + ,`weeks` + ,`period` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{setId} + ,#{no} + ,#{name} + ,#{type} + ,#{multiId} + ,#{showPeriod} + ,#{beginDate} + ,#{endDate} + ,#{weeks} + ,#{period} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_qimai_product_category + + `tenantId` = #{tenantId} + ,`setId` = #{setId} + ,`no` = #{no} + ,`name` = #{name} + ,`type` = #{type} + ,`multiId` = #{multiId} + ,`showPeriod` = #{showPeriod} + ,`beginDate` = #{beginDate} + ,`endDate` = #{endDate} + ,`weeks` = #{weeks} + ,`period` = #{period} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_qimai_product_category + where `id` = #{id} + + + + delete from cy_qimai_product_category + ${condition} + + + + delete from cy_qimai_product_category + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/QimaiProductChargeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/QimaiProductChargeMapper.xml new file mode 100644 index 0000000..7936c31 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/QimaiProductChargeMapper.xml @@ -0,0 +1,137 @@ + + + + + + `id`,`tenantId`,`setId`,`productId`,`qimaiProductId`,`multiId`,`chargeId`,`makeDetailId`,`chargeName`,`chargeMultiId`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_qimai_product_charge + + `id`,`tenantId` + ,`setId` + ,`productId` + ,`qimaiProductId` + ,`multiId` + ,`chargeId` + ,`makeDetailId` + ,`chargeName` + ,`chargeMultiId` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{setId} + ,#{productId} + ,#{qimaiProductId} + ,#{multiId} + ,#{chargeId} + ,#{makeDetailId} + ,#{chargeName} + ,#{chargeMultiId} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_qimai_product_charge + + `tenantId` = #{tenantId} + ,`setId` = #{setId} + ,`productId` = #{productId} + ,`qimaiProductId` = #{qimaiProductId} + ,`multiId` = #{multiId} + ,`chargeId` = #{chargeId} + ,`makeDetailId` = #{makeDetailId} + ,`chargeName` = #{chargeName} + ,`chargeMultiId` = #{chargeMultiId} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_qimai_product_charge + where `id` = #{id} + + + + delete from cy_qimai_product_charge + ${condition} + + + + delete from cy_qimai_product_charge + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/QimaiProductMapper.xml b/food-pdm-tools/src/generate/food/mybatis/QimaiProductMapper.xml new file mode 100644 index 0000000..b84715d --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/QimaiProductMapper.xml @@ -0,0 +1,206 @@ + + + + + + `id`,`tenantId`,`setId`,`productId`,`productNo`,`name`,`description`,`multiId`,`categoryId`,`categoryPath`,`useSpec`,`unit`,`sellTimeStatus`,`sellTime`,`productionTime`,`saleType`,`content`,`packCost`,`tsOrgPrice`,`wmOrgPrice`,`tsSalePrice`,`wmSalePrice`,`isCardDiscount`,`shelveStatus`,`pricingMode`,`isSellOffline`,`isSellOnline`,`sellPrice`,`isUseProperty`,`property`,`type`,`coverImg`,`sales`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_qimai_product + + `id`,`tenantId` + ,`setId` + ,`productId` + ,`productNo` + ,`name` + ,`description` + ,`multiId` + ,`categoryId` + ,`categoryPath` + ,`useSpec` + ,`unit` + ,`sellTimeStatus` + ,`sellTime` + ,`productionTime` + ,`saleType` + ,`content` + ,`packCost` + ,`tsOrgPrice` + ,`wmOrgPrice` + ,`tsSalePrice` + ,`wmSalePrice` + ,`isCardDiscount` + ,`shelveStatus` + ,`pricingMode` + ,`isSellOffline` + ,`isSellOnline` + ,`sellPrice` + ,`isUseProperty` + ,`property` + ,`type` + ,`coverImg` + ,`sales` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{setId} + ,#{productId} + ,#{productNo} + ,#{name} + ,#{description} + ,#{multiId} + ,#{categoryId} + ,#{categoryPath} + ,#{useSpec} + ,#{unit} + ,#{sellTimeStatus} + ,#{sellTime} + ,#{productionTime} + ,#{saleType} + ,#{content} + ,#{packCost} + ,#{tsOrgPrice} + ,#{wmOrgPrice} + ,#{tsSalePrice} + ,#{wmSalePrice} + ,#{isCardDiscount} + ,#{shelveStatus} + ,#{pricingMode} + ,#{isSellOffline} + ,#{isSellOnline} + ,#{sellPrice} + ,#{isUseProperty} + ,#{property} + ,#{type} + ,#{coverImg} + ,#{sales} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_qimai_product + + `tenantId` = #{tenantId} + ,`setId` = #{setId} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`name` = #{name} + ,`description` = #{description} + ,`multiId` = #{multiId} + ,`categoryId` = #{categoryId} + ,`categoryPath` = #{categoryPath} + ,`useSpec` = #{useSpec} + ,`unit` = #{unit} + ,`sellTimeStatus` = #{sellTimeStatus} + ,`sellTime` = #{sellTime} + ,`productionTime` = #{productionTime} + ,`saleType` = #{saleType} + ,`content` = #{content} + ,`packCost` = #{packCost} + ,`tsOrgPrice` = #{tsOrgPrice} + ,`wmOrgPrice` = #{wmOrgPrice} + ,`tsSalePrice` = #{tsSalePrice} + ,`wmSalePrice` = #{wmSalePrice} + ,`isCardDiscount` = #{isCardDiscount} + ,`shelveStatus` = #{shelveStatus} + ,`pricingMode` = #{pricingMode} + ,`isSellOffline` = #{isSellOffline} + ,`isSellOnline` = #{isSellOnline} + ,`sellPrice` = #{sellPrice} + ,`isUseProperty` = #{isUseProperty} + ,`property` = #{property} + ,`type` = #{type} + ,`coverImg` = #{coverImg} + ,`sales` = #{sales} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_qimai_product + where `id` = #{id} + + + + delete from cy_qimai_product + ${condition} + + + + delete from cy_qimai_product + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/QimaiProductSpecMapper.xml b/food-pdm-tools/src/generate/food/mybatis/QimaiProductSpecMapper.xml new file mode 100644 index 0000000..5cdc12a --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/QimaiProductSpecMapper.xml @@ -0,0 +1,143 @@ + + + + + + `id`,`tenantId`,`setId`,`productId`,`attributeId`,`specId`,`no`,`name`,`tsOrgPrice`,`wmOrgPrice`,`tsSalePrice`,`wmSalePrice`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_qimai_product_spec + + `id`,`tenantId` + ,`setId` + ,`productId` + ,`attributeId` + ,`specId` + ,`no` + ,`name` + ,`tsOrgPrice` + ,`wmOrgPrice` + ,`tsSalePrice` + ,`wmSalePrice` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{setId} + ,#{productId} + ,#{attributeId} + ,#{specId} + ,#{no} + ,#{name} + ,#{tsOrgPrice} + ,#{wmOrgPrice} + ,#{tsSalePrice} + ,#{wmSalePrice} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_qimai_product_spec + + `tenantId` = #{tenantId} + ,`setId` = #{setId} + ,`productId` = #{productId} + ,`attributeId` = #{attributeId} + ,`specId` = #{specId} + ,`no` = #{no} + ,`name` = #{name} + ,`tsOrgPrice` = #{tsOrgPrice} + ,`wmOrgPrice` = #{wmOrgPrice} + ,`tsSalePrice` = #{tsSalePrice} + ,`wmSalePrice` = #{wmSalePrice} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_qimai_product_spec + where `id` = #{id} + + + + delete from cy_qimai_product_spec + ${condition} + + + + delete from cy_qimai_product_spec + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/QimaiProductTemplateDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/QimaiProductTemplateDetailMapper.xml new file mode 100644 index 0000000..a821552 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/QimaiProductTemplateDetailMapper.xml @@ -0,0 +1,143 @@ + + + + + + `id`,`tenantId`,`setId`,`templateId`,`templateNo`,`productId`,`productNo`,`productName`,`specId`,`specName`,`qimaiProductId`,`qimaiSpecId`,`productMultiId`,`price`,`memberPrice`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_qimai_product_template_detail + + `id`,`tenantId` + ,`setId` + ,`templateId` + ,`templateNo` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`qimaiProductId` + ,`qimaiSpecId` + ,`productMultiId` + ,`price` + ,`memberPrice` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{setId} + ,#{templateId} + ,#{templateNo} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{qimaiProductId} + ,#{qimaiSpecId} + ,#{productMultiId} + ,#{price} + ,#{memberPrice} + ,#{createUser} + ,#{createDate} + + + + + update cy_qimai_product_template_detail + + `tenantId` = #{tenantId} + ,`setId` = #{setId} + ,`templateId` = #{templateId} + ,`templateNo` = #{templateNo} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`qimaiProductId` = #{qimaiProductId} + ,`qimaiSpecId` = #{qimaiSpecId} + ,`productMultiId` = #{productMultiId} + ,`price` = #{price} + ,`memberPrice` = #{memberPrice} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_qimai_product_template_detail + where `id` = #{id} + + + + delete from cy_qimai_product_template_detail + ${condition} + + + + delete from cy_qimai_product_template_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/QimaiProductTemplateMapper.xml b/food-pdm-tools/src/generate/food/mybatis/QimaiProductTemplateMapper.xml new file mode 100644 index 0000000..d7c9ada --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/QimaiProductTemplateMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`setId`,`no`,`name`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_qimai_product_template + + `id`,`tenantId` + ,`setId` + ,`no` + ,`name` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{setId} + ,#{no} + ,#{name} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_qimai_product_template + + `tenantId` = #{tenantId} + ,`setId` = #{setId} + ,`no` = #{no} + ,`name` = #{name} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_qimai_product_template + where `id` = #{id} + + + + delete from cy_qimai_product_template + ${condition} + + + + delete from cy_qimai_product_template + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/QimaiProductTemplateStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/QimaiProductTemplateStoreMapper.xml new file mode 100644 index 0000000..891569e --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/QimaiProductTemplateStoreMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`setId`,`templateId`,`templateNo`,`storeId`,`storeNo`,`storeName`,`qimaiStoreId`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_qimai_product_template_store + + `id`,`tenantId` + ,`setId` + ,`templateId` + ,`templateNo` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`qimaiStoreId` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{setId} + ,#{templateId} + ,#{templateNo} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{qimaiStoreId} + ,#{createUser} + ,#{createDate} + + + + + update cy_qimai_product_template_store + + `tenantId` = #{tenantId} + ,`setId` = #{setId} + ,`templateId` = #{templateId} + ,`templateNo` = #{templateNo} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`qimaiStoreId` = #{qimaiStoreId} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_qimai_product_template_store + where `id` = #{id} + + + + delete from cy_qimai_product_template_store + ${condition} + + + + delete from cy_qimai_product_template_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/QimaiStoreLableMapper.xml b/food-pdm-tools/src/generate/food/mybatis/QimaiStoreLableMapper.xml new file mode 100644 index 0000000..278a7f3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/QimaiStoreLableMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`setId`,`lableId`,`name`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_qimai_store_lable + + `id`,`tenantId` + ,`setId` + ,`lableId` + ,`name` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{setId} + ,#{lableId} + ,#{name} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_qimai_store_lable + + `tenantId` = #{tenantId} + ,`setId` = #{setId} + ,`lableId` = #{lableId} + ,`name` = #{name} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_qimai_store_lable + where `id` = #{id} + + + + delete from cy_qimai_store_lable + ${condition} + + + + delete from cy_qimai_store_lable + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/QimaiStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/QimaiStoreMapper.xml new file mode 100644 index 0000000..a5db362 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/QimaiStoreMapper.xml @@ -0,0 +1,188 @@ + + + + + + `id`,`tenantId`,`setId`,`storeId`,`storeNo`,`storeName`,`multiId`,`provinceId`,`cityId`,`areaId`,`idCard`,`photo`,`linkman`,`street`,`longitude`,`latitude`,`perPrice`,`notice`,`mobile`,`tel`,`status`,`isEat`,`isTakeout`,`isAppoint`,`lable`,`service`,`saletimes`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_qimai_store + + `id`,`tenantId` + ,`setId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`multiId` + ,`provinceId` + ,`cityId` + ,`areaId` + ,`idCard` + ,`photo` + ,`linkman` + ,`street` + ,`longitude` + ,`latitude` + ,`perPrice` + ,`notice` + ,`mobile` + ,`tel` + ,`status` + ,`isEat` + ,`isTakeout` + ,`isAppoint` + ,`lable` + ,`service` + ,`saletimes` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{setId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{multiId} + ,#{provinceId} + ,#{cityId} + ,#{areaId} + ,#{idCard} + ,#{photo} + ,#{linkman} + ,#{street} + ,#{longitude} + ,#{latitude} + ,#{perPrice} + ,#{notice} + ,#{mobile} + ,#{tel} + ,#{status} + ,#{isEat} + ,#{isTakeout} + ,#{isAppoint} + ,#{lable} + ,#{service} + ,#{saletimes} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_qimai_store + + `tenantId` = #{tenantId} + ,`setId` = #{setId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`multiId` = #{multiId} + ,`provinceId` = #{provinceId} + ,`cityId` = #{cityId} + ,`areaId` = #{areaId} + ,`idCard` = #{idCard} + ,`photo` = #{photo} + ,`linkman` = #{linkman} + ,`street` = #{street} + ,`longitude` = #{longitude} + ,`latitude` = #{latitude} + ,`perPrice` = #{perPrice} + ,`notice` = #{notice} + ,`mobile` = #{mobile} + ,`tel` = #{tel} + ,`status` = #{status} + ,`isEat` = #{isEat} + ,`isTakeout` = #{isTakeout} + ,`isAppoint` = #{isAppoint} + ,`lable` = #{lable} + ,`service` = #{service} + ,`saletimes` = #{saletimes} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_qimai_store + where `id` = #{id} + + + + delete from cy_qimai_store + ${condition} + + + + delete from cy_qimai_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/QimaiStoreProductMapper.xml b/food-pdm-tools/src/generate/food/mybatis/QimaiStoreProductMapper.xml new file mode 100644 index 0000000..8eae98a --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/QimaiStoreProductMapper.xml @@ -0,0 +1,161 @@ + + + + + + `id`,`tenantId`,`setId`,`storeId`,`storeNo`,`storeName`,`qimaiStoreId`,`storeMultiId`,`productId`,`productNo`,`productName`,`qimaiProductId`,`productMultiId`,`specId`,`specName`,`qimaiSpecId`,`tsPrice`,`wmPrice`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_qimai_store_product + + `id`,`tenantId` + ,`setId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`qimaiStoreId` + ,`storeMultiId` + ,`productId` + ,`productNo` + ,`productName` + ,`qimaiProductId` + ,`productMultiId` + ,`specId` + ,`specName` + ,`qimaiSpecId` + ,`tsPrice` + ,`wmPrice` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{setId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{qimaiStoreId} + ,#{storeMultiId} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{qimaiProductId} + ,#{productMultiId} + ,#{specId} + ,#{specName} + ,#{qimaiSpecId} + ,#{tsPrice} + ,#{wmPrice} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_qimai_store_product + + `tenantId` = #{tenantId} + ,`setId` = #{setId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`qimaiStoreId` = #{qimaiStoreId} + ,`storeMultiId` = #{storeMultiId} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`qimaiProductId` = #{qimaiProductId} + ,`productMultiId` = #{productMultiId} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`qimaiSpecId` = #{qimaiSpecId} + ,`tsPrice` = #{tsPrice} + ,`wmPrice` = #{wmPrice} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_qimai_store_product + where `id` = #{id} + + + + delete from cy_qimai_store_product + ${condition} + + + + delete from cy_qimai_store_product + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/QimaiSuitDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/QimaiSuitDetailMapper.xml new file mode 100644 index 0000000..da31466 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/QimaiSuitDetailMapper.xml @@ -0,0 +1,134 @@ + + + + + + `id`,`tenantId`,`setId`,`qimaiProductId`,`suitId`,`productId`,`productNo`,`name`,`multiId`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_qimai_suit_detail + + `id`,`tenantId` + ,`setId` + ,`qimaiProductId` + ,`suitId` + ,`productId` + ,`productNo` + ,`name` + ,`multiId` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{setId} + ,#{qimaiProductId} + ,#{suitId} + ,#{productId} + ,#{productNo} + ,#{name} + ,#{multiId} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_qimai_suit_detail + + `tenantId` = #{tenantId} + ,`setId` = #{setId} + ,`qimaiProductId` = #{qimaiProductId} + ,`suitId` = #{suitId} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`name` = #{name} + ,`multiId` = #{multiId} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_qimai_suit_detail + where `id` = #{id} + + + + delete from cy_qimai_suit_detail + ${condition} + + + + delete from cy_qimai_suit_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ReceiveDifferenceDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ReceiveDifferenceDetailMapper.xml new file mode 100644 index 0000000..7c729ba --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ReceiveDifferenceDetailMapper.xml @@ -0,0 +1,167 @@ + + + + + + `id`,`tenantId`,`ticketId`,`storageId`,`storageName`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`askgoodsAmount`,`dispatchAmount`,`dispatchUnitId`,`dispatchUnitName`,`price`,`money`,`receivegoodsAmount`,`subtotalPrice`,`differenceAmount`,`differencePrice`,`type`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_receive_difference_detail + + `id`,`tenantId` + ,`ticketId` + ,`storageId` + ,`storageName` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`askgoodsAmount` + ,`dispatchAmount` + ,`dispatchUnitId` + ,`dispatchUnitName` + ,`price` + ,`money` + ,`receivegoodsAmount` + ,`subtotalPrice` + ,`differenceAmount` + ,`differencePrice` + ,`type` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{storageId} + ,#{storageName} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{askgoodsAmount} + ,#{dispatchAmount} + ,#{dispatchUnitId} + ,#{dispatchUnitName} + ,#{price} + ,#{money} + ,#{receivegoodsAmount} + ,#{subtotalPrice} + ,#{differenceAmount} + ,#{differencePrice} + ,#{type} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_receive_difference_detail + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`storageId` = #{storageId} + ,`storageName` = #{storageName} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`askgoodsAmount` = #{askgoodsAmount} + ,`dispatchAmount` = #{dispatchAmount} + ,`dispatchUnitId` = #{dispatchUnitId} + ,`dispatchUnitName` = #{dispatchUnitName} + ,`price` = #{price} + ,`money` = #{money} + ,`receivegoodsAmount` = #{receivegoodsAmount} + ,`subtotalPrice` = #{subtotalPrice} + ,`differenceAmount` = #{differenceAmount} + ,`differencePrice` = #{differencePrice} + ,`type` = #{type} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_receive_difference_detail + where `id` = #{id} + + + + delete from cy_receive_difference_detail + ${condition} + + + + delete from cy_receive_difference_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ReceiveDifferenceTicketLogMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ReceiveDifferenceTicketLogMapper.xml new file mode 100644 index 0000000..200d9e3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ReceiveDifferenceTicketLogMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`type`,`status`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_receive_difference_ticket_log + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`type` + ,`status` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{type} + ,#{status} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_receive_difference_ticket_log + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`type` = #{type} + ,`status` = #{status} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_receive_difference_ticket_log + where `id` = #{id} + + + + delete from cy_receive_difference_ticket_log + ${condition} + + + + delete from cy_receive_difference_ticket_log + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ReceiveDifferenceTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ReceiveDifferenceTicketMapper.xml new file mode 100644 index 0000000..30e577e --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ReceiveDifferenceTicketMapper.xml @@ -0,0 +1,143 @@ + + + + + + `id`,`tenantId`,`no`,`dispatchId`,`dispatchNo`,`storeId`,`storeNo`,`storeName`,`status`,`description`,`operator`,`setMan`,`setDate`,`checkMan`,`checkDate`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_receive_difference_ticket + + `id`,`tenantId` + ,`no` + ,`dispatchId` + ,`dispatchNo` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`status` + ,`description` + ,`operator` + ,`setMan` + ,`setDate` + ,`checkMan` + ,`checkDate` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{dispatchId} + ,#{dispatchNo} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{status} + ,#{description} + ,#{operator} + ,#{setMan} + ,#{setDate} + ,#{checkMan} + ,#{checkDate} + ,#{createUser} + ,#{createDate} + + + + + update cy_receive_difference_ticket + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`dispatchId` = #{dispatchId} + ,`dispatchNo` = #{dispatchNo} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`status` = #{status} + ,`description` = #{description} + ,`operator` = #{operator} + ,`setMan` = #{setMan} + ,`setDate` = #{setDate} + ,`checkMan` = #{checkMan} + ,`checkDate` = #{checkDate} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_receive_difference_ticket + where `id` = #{id} + + + + delete from cy_receive_difference_ticket + ${condition} + + + + delete from cy_receive_difference_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ReceiveDifferenceTicketPayMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ReceiveDifferenceTicketPayMapper.xml new file mode 100644 index 0000000..5b2a434 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ReceiveDifferenceTicketPayMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`ticketId`,`storeId`,`storeNo`,`storeName`,`description`,`type`,`money`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_receive_difference_ticket_pay + + `id`,`tenantId` + ,`ticketId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`description` + ,`type` + ,`money` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{description} + ,#{type} + ,#{money} + ,#{createUser} + ,#{createDate} + + + + + update cy_receive_difference_ticket_pay + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`description` = #{description} + ,`type` = #{type} + ,`money` = #{money} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_receive_difference_ticket_pay + where `id` = #{id} + + + + delete from cy_receive_difference_ticket_pay + ${condition} + + + + delete from cy_receive_difference_ticket_pay + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ReceiveGoodsDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ReceiveGoodsDetailMapper.xml new file mode 100644 index 0000000..1b115fa --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ReceiveGoodsDetailMapper.xml @@ -0,0 +1,158 @@ + + + + + + `id`,`tenantId`,`ticketId`,`storageId`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`dispatchUnitId`,`dispatchUnitName`,`dispatchPrice`,`askgoodsAmount`,`dispatchAmount`,`receiveAmount`,`subtotalPrice`,`differenceAmount`,`differencePrice`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_receive_goods_detail + + `id`,`tenantId` + ,`ticketId` + ,`storageId` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`dispatchUnitId` + ,`dispatchUnitName` + ,`dispatchPrice` + ,`askgoodsAmount` + ,`dispatchAmount` + ,`receiveAmount` + ,`subtotalPrice` + ,`differenceAmount` + ,`differencePrice` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{storageId} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{dispatchUnitId} + ,#{dispatchUnitName} + ,#{dispatchPrice} + ,#{askgoodsAmount} + ,#{dispatchAmount} + ,#{receiveAmount} + ,#{subtotalPrice} + ,#{differenceAmount} + ,#{differencePrice} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_receive_goods_detail + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`storageId` = #{storageId} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`dispatchUnitId` = #{dispatchUnitId} + ,`dispatchUnitName` = #{dispatchUnitName} + ,`dispatchPrice` = #{dispatchPrice} + ,`askgoodsAmount` = #{askgoodsAmount} + ,`dispatchAmount` = #{dispatchAmount} + ,`receiveAmount` = #{receiveAmount} + ,`subtotalPrice` = #{subtotalPrice} + ,`differenceAmount` = #{differenceAmount} + ,`differencePrice` = #{differencePrice} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_receive_goods_detail + where `id` = #{id} + + + + delete from cy_receive_goods_detail + ${condition} + + + + delete from cy_receive_goods_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ReceiveGoodsTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ReceiveGoodsTicketMapper.xml new file mode 100644 index 0000000..d97001e --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ReceiveGoodsTicketMapper.xml @@ -0,0 +1,140 @@ + + + + + + `id`,`tenantId`,`storeId`,`storageId`,`dispatchId`,`dispatchNo`,`no`,`status`,`isUse`,`description`,`setMan`,`setDate`,`checkMan`,`checkDate`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_receive_goods_ticket + + `id`,`tenantId` + ,`storeId` + ,`storageId` + ,`dispatchId` + ,`dispatchNo` + ,`no` + ,`status` + ,`isUse` + ,`description` + ,`setMan` + ,`setDate` + ,`checkMan` + ,`checkDate` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storeId} + ,#{storageId} + ,#{dispatchId} + ,#{dispatchNo} + ,#{no} + ,#{status} + ,#{isUse} + ,#{description} + ,#{setMan} + ,#{setDate} + ,#{checkMan} + ,#{checkDate} + ,#{createUser} + ,#{createDate} + + + + + update cy_receive_goods_ticket + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`storageId` = #{storageId} + ,`dispatchId` = #{dispatchId} + ,`dispatchNo` = #{dispatchNo} + ,`no` = #{no} + ,`status` = #{status} + ,`isUse` = #{isUse} + ,`description` = #{description} + ,`setMan` = #{setMan} + ,`setDate` = #{setDate} + ,`checkMan` = #{checkMan} + ,`checkDate` = #{checkDate} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_receive_goods_ticket + where `id` = #{id} + + + + delete from cy_receive_goods_ticket + ${condition} + + + + delete from cy_receive_goods_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/RechargeParameterMapper.xml b/food-pdm-tools/src/generate/food/mybatis/RechargeParameterMapper.xml new file mode 100644 index 0000000..c071fc8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/RechargeParameterMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`sign`,`pbody`,`enabled`,`certText`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_recharge_parameter + + `id`,`tenantId` + ,`no` + ,`name` + ,`sign` + ,`pbody` + ,`enabled` + ,`certText` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{sign} + ,#{pbody} + ,#{enabled} + ,#{certText} + ,#{createUser} + ,#{createDate} + + + + + update cy_recharge_parameter + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`sign` = #{sign} + ,`pbody` = #{pbody} + ,`enabled` = #{enabled} + ,`certText` = #{certText} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_recharge_parameter + where `id` = #{id} + + + + delete from cy_recharge_parameter + ${condition} + + + + delete from cy_recharge_parameter + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/RechargeParameterStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/RechargeParameterStoreMapper.xml new file mode 100644 index 0000000..a54b615 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/RechargeParameterStoreMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`storeId`,`parameterId` + + + + + + + + + + + + + + + + + + + + insert into cy_recharge_parameter_store + + `id`,`tenantId` + ,`storeId` + ,`parameterId` + + + #{id},#{tenantId} + ,#{storeId} + ,#{parameterId} + + + + + update cy_recharge_parameter_store + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`parameterId` = #{parameterId} + + where `id` = #{id} + + + + delete from cy_recharge_parameter_store + where `id` = #{id} + + + + delete from cy_recharge_parameter_store + ${condition} + + + + delete from cy_recharge_parameter_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/SaleClearMapper.xml b/food-pdm-tools/src/generate/food/mybatis/SaleClearMapper.xml new file mode 100644 index 0000000..0c1a06d --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/SaleClearMapper.xml @@ -0,0 +1,182 @@ + + + + + + `id`,`tenantId`,`storeNo`,`posNo`,`brandId`,`typeId`,`typeName`,`productId`,`productNo`,`productName`,`quantity`,`notify`,`sales`,`total`,`startTime`,`endTime`,`stopTime`,`stopUser`,`unitId`,`unitName`,`specId`,`specName`,`suitFlag`,`stopFlag`,`memo`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into pos_sale_clear + + `id`,`tenantId` + ,`storeNo` + ,`posNo` + ,`brandId` + ,`typeId` + ,`typeName` + ,`productId` + ,`productNo` + ,`productName` + ,`quantity` + ,`notify` + ,`sales` + ,`total` + ,`startTime` + ,`endTime` + ,`stopTime` + ,`stopUser` + ,`unitId` + ,`unitName` + ,`specId` + ,`specName` + ,`suitFlag` + ,`stopFlag` + ,`memo` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storeNo} + ,#{posNo} + ,#{brandId} + ,#{typeId} + ,#{typeName} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{quantity} + ,#{notify} + ,#{sales} + ,#{total} + ,#{startTime} + ,#{endTime} + ,#{stopTime} + ,#{stopUser} + ,#{unitId} + ,#{unitName} + ,#{specId} + ,#{specName} + ,#{suitFlag} + ,#{stopFlag} + ,#{memo} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update pos_sale_clear + + `tenantId` = #{tenantId} + ,`storeNo` = #{storeNo} + ,`posNo` = #{posNo} + ,`brandId` = #{brandId} + ,`typeId` = #{typeId} + ,`typeName` = #{typeName} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`quantity` = #{quantity} + ,`notify` = #{notify} + ,`sales` = #{sales} + ,`total` = #{total} + ,`startTime` = #{startTime} + ,`endTime` = #{endTime} + ,`stopTime` = #{stopTime} + ,`stopUser` = #{stopUser} + ,`unitId` = #{unitId} + ,`unitName` = #{unitName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`suitFlag` = #{suitFlag} + ,`stopFlag` = #{stopFlag} + ,`memo` = #{memo} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from pos_sale_clear + where `id` = #{id} + + + + delete from pos_sale_clear + ${condition} + + + + delete from pos_sale_clear + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ServerDataVersionMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ServerDataVersionMapper.xml new file mode 100644 index 0000000..e0b42c3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ServerDataVersionMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`dataType`,`dataVerion`,`ext1`,`ext2`,`ext3`,`tenantId`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_server_data_version + + `id`,`tenantId` + ,`dataType` + ,`dataVerion` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{dataType} + ,#{dataVerion} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_server_data_version + + `tenantId` = #{tenantId} + ,`dataType` = #{dataType} + ,`dataVerion` = #{dataVerion} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_server_data_version + where `id` = #{id} + + + + delete from cy_server_data_version + ${condition} + + + + delete from cy_server_data_version + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ShopMeituanOrderExtraMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ShopMeituanOrderExtraMapper.xml new file mode 100644 index 0000000..36e0d57 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ShopMeituanOrderExtraMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`orderId`,`reduceFee`,`poiCharge`,`mtCharge`,`remark`,`type`,`actDetailId`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_shop_meituan_order_extra + + `id`,`tenantId` + ,`orderId` + ,`reduceFee` + ,`poiCharge` + ,`mtCharge` + ,`remark` + ,`type` + ,`actDetailId` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{orderId} + ,#{reduceFee} + ,#{poiCharge} + ,#{mtCharge} + ,#{remark} + ,#{type} + ,#{actDetailId} + ,#{createUser} + ,#{createDate} + + + + + update cy_shop_meituan_order_extra + + `tenantId` = #{tenantId} + ,`orderId` = #{orderId} + ,`reduceFee` = #{reduceFee} + ,`poiCharge` = #{poiCharge} + ,`mtCharge` = #{mtCharge} + ,`remark` = #{remark} + ,`type` = #{type} + ,`actDetailId` = #{actDetailId} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_shop_meituan_order_extra + where `id` = #{id} + + + + delete from cy_shop_meituan_order_extra + ${condition} + + + + delete from cy_shop_meituan_order_extra + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ShopMeituanOrderItemMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ShopMeituanOrderItemMapper.xml new file mode 100644 index 0000000..6910849 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ShopMeituanOrderItemMapper.xml @@ -0,0 +1,143 @@ + + + + + + `id`,`tenantId`,`orderId`,`appFoodCode`,`foodName`,`quantity`,`price`,`storeId`,`skuId`,`boxNum`,`boxPrice`,`unit`,`foodDiscount`,`foodProperty`,`cartId`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_shop_meituan_order_item + + `id`,`tenantId` + ,`orderId` + ,`appFoodCode` + ,`foodName` + ,`quantity` + ,`price` + ,`storeId` + ,`skuId` + ,`boxNum` + ,`boxPrice` + ,`unit` + ,`foodDiscount` + ,`foodProperty` + ,`cartId` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{orderId} + ,#{appFoodCode} + ,#{foodName} + ,#{quantity} + ,#{price} + ,#{storeId} + ,#{skuId} + ,#{boxNum} + ,#{boxPrice} + ,#{unit} + ,#{foodDiscount} + ,#{foodProperty} + ,#{cartId} + ,#{createUser} + ,#{createDate} + + + + + update cy_shop_meituan_order_item + + `tenantId` = #{tenantId} + ,`orderId` = #{orderId} + ,`appFoodCode` = #{appFoodCode} + ,`foodName` = #{foodName} + ,`quantity` = #{quantity} + ,`price` = #{price} + ,`storeId` = #{storeId} + ,`skuId` = #{skuId} + ,`boxNum` = #{boxNum} + ,`boxPrice` = #{boxPrice} + ,`unit` = #{unit} + ,`foodDiscount` = #{foodDiscount} + ,`foodProperty` = #{foodProperty} + ,`cartId` = #{cartId} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_shop_meituan_order_item + where `id` = #{id} + + + + delete from cy_shop_meituan_order_item + ${condition} + + + + delete from cy_shop_meituan_order_item + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ShopMeituanOrderMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ShopMeituanOrderMapper.xml new file mode 100644 index 0000000..f7c52c3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ShopMeituanOrderMapper.xml @@ -0,0 +1,284 @@ + + + + + + `id`,`tenantId`,`message`,`orderId`,`orderIdView`,`wmPoiName`,`wmPoiAddress`,`wmPoiPhone`,`storeId`,`recipientAddress`,`recipientPhone`,`backupRecipientPhone`,`recipientName`,`shippingFee`,`total`,`originalPrice`,`caution`,`shipperPhone`,`status`,`cityId`,`hasInvoiced`,`invoiceTitle`,`taxpayerId`,`cTime`,`uTime`,`deliveryTime`,`isThirdShipping`,`payType`,`pickType`,`latitude`,`longitude`,`daySeq`,`isFavorites`,`isPoiFirstOrder`,`dinnersNumber`,`logisticsCode`,`avgSendTime`,`orderSendTime`,`orderReceiveTime`,`orderConfirmTime`,`orderCancelTime`,`orderCompletedTime`,`logisticsStatus`,`logisticsId`,`logisticsName`,`logisticsSendTime`,`logisticsConfirmTime`,`logisticsCancelTime`,`logisticsFetchTime`,`logisticsCompletedTime`,`logisticsDispatcherName`,`logisticsDispatcherMobile`,`channel`,`detail`,`extras`,`poiReceiveDetail`,`cancelReason`,`cancelReasonCode`,`refundReason`,`foodShareFeeChargeByPoi`,`wmPoiReceiveCent`,`refundReasonCode`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_shop_meituan_order + + `id`,`tenantId` + ,`message` + ,`orderId` + ,`orderIdView` + ,`wmPoiName` + ,`wmPoiAddress` + ,`wmPoiPhone` + ,`storeId` + ,`recipientAddress` + ,`recipientPhone` + ,`backupRecipientPhone` + ,`recipientName` + ,`shippingFee` + ,`total` + ,`originalPrice` + ,`caution` + ,`shipperPhone` + ,`status` + ,`cityId` + ,`hasInvoiced` + ,`invoiceTitle` + ,`taxpayerId` + ,`cTime` + ,`uTime` + ,`deliveryTime` + ,`isThirdShipping` + ,`payType` + ,`pickType` + ,`latitude` + ,`longitude` + ,`daySeq` + ,`isFavorites` + ,`isPoiFirstOrder` + ,`dinnersNumber` + ,`logisticsCode` + ,`avgSendTime` + ,`orderSendTime` + ,`orderReceiveTime` + ,`orderConfirmTime` + ,`orderCancelTime` + ,`orderCompletedTime` + ,`logisticsStatus` + ,`logisticsId` + ,`logisticsName` + ,`logisticsSendTime` + ,`logisticsConfirmTime` + ,`logisticsCancelTime` + ,`logisticsFetchTime` + ,`logisticsCompletedTime` + ,`logisticsDispatcherName` + ,`logisticsDispatcherMobile` + ,`channel` + ,`detail` + ,`extras` + ,`poiReceiveDetail` + ,`cancelReason` + ,`cancelReasonCode` + ,`refundReason` + ,`foodShareFeeChargeByPoi` + ,`wmPoiReceiveCent` + ,`refundReasonCode` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{message} + ,#{orderId} + ,#{orderIdView} + ,#{wmPoiName} + ,#{wmPoiAddress} + ,#{wmPoiPhone} + ,#{storeId} + ,#{recipientAddress} + ,#{recipientPhone} + ,#{backupRecipientPhone} + ,#{recipientName} + ,#{shippingFee} + ,#{total} + ,#{originalPrice} + ,#{caution} + ,#{shipperPhone} + ,#{status} + ,#{cityId} + ,#{hasInvoiced} + ,#{invoiceTitle} + ,#{taxpayerId} + ,#{cTime} + ,#{uTime} + ,#{deliveryTime} + ,#{isThirdShipping} + ,#{payType} + ,#{pickType} + ,#{latitude} + ,#{longitude} + ,#{daySeq} + ,#{isFavorites} + ,#{isPoiFirstOrder} + ,#{dinnersNumber} + ,#{logisticsCode} + ,#{avgSendTime} + ,#{orderSendTime} + ,#{orderReceiveTime} + ,#{orderConfirmTime} + ,#{orderCancelTime} + ,#{orderCompletedTime} + ,#{logisticsStatus} + ,#{logisticsId} + ,#{logisticsName} + ,#{logisticsSendTime} + ,#{logisticsConfirmTime} + ,#{logisticsCancelTime} + ,#{logisticsFetchTime} + ,#{logisticsCompletedTime} + ,#{logisticsDispatcherName} + ,#{logisticsDispatcherMobile} + ,#{channel} + ,#{detail} + ,#{extras} + ,#{poiReceiveDetail} + ,#{cancelReason} + ,#{cancelReasonCode} + ,#{refundReason} + ,#{foodShareFeeChargeByPoi} + ,#{wmPoiReceiveCent} + ,#{refundReasonCode} + ,#{createUser} + ,#{createDate} + + + + + update cy_shop_meituan_order + + `tenantId` = #{tenantId} + ,`message` = #{message} + ,`orderId` = #{orderId} + ,`orderIdView` = #{orderIdView} + ,`wmPoiName` = #{wmPoiName} + ,`wmPoiAddress` = #{wmPoiAddress} + ,`wmPoiPhone` = #{wmPoiPhone} + ,`storeId` = #{storeId} + ,`recipientAddress` = #{recipientAddress} + ,`recipientPhone` = #{recipientPhone} + ,`backupRecipientPhone` = #{backupRecipientPhone} + ,`recipientName` = #{recipientName} + ,`shippingFee` = #{shippingFee} + ,`total` = #{total} + ,`originalPrice` = #{originalPrice} + ,`caution` = #{caution} + ,`shipperPhone` = #{shipperPhone} + ,`status` = #{status} + ,`cityId` = #{cityId} + ,`hasInvoiced` = #{hasInvoiced} + ,`invoiceTitle` = #{invoiceTitle} + ,`taxpayerId` = #{taxpayerId} + ,`cTime` = #{cTime} + ,`uTime` = #{uTime} + ,`deliveryTime` = #{deliveryTime} + ,`isThirdShipping` = #{isThirdShipping} + ,`payType` = #{payType} + ,`pickType` = #{pickType} + ,`latitude` = #{latitude} + ,`longitude` = #{longitude} + ,`daySeq` = #{daySeq} + ,`isFavorites` = #{isFavorites} + ,`isPoiFirstOrder` = #{isPoiFirstOrder} + ,`dinnersNumber` = #{dinnersNumber} + ,`logisticsCode` = #{logisticsCode} + ,`avgSendTime` = #{avgSendTime} + ,`orderSendTime` = #{orderSendTime} + ,`orderReceiveTime` = #{orderReceiveTime} + ,`orderConfirmTime` = #{orderConfirmTime} + ,`orderCancelTime` = #{orderCancelTime} + ,`orderCompletedTime` = #{orderCompletedTime} + ,`logisticsStatus` = #{logisticsStatus} + ,`logisticsId` = #{logisticsId} + ,`logisticsName` = #{logisticsName} + ,`logisticsSendTime` = #{logisticsSendTime} + ,`logisticsConfirmTime` = #{logisticsConfirmTime} + ,`logisticsCancelTime` = #{logisticsCancelTime} + ,`logisticsFetchTime` = #{logisticsFetchTime} + ,`logisticsCompletedTime` = #{logisticsCompletedTime} + ,`logisticsDispatcherName` = #{logisticsDispatcherName} + ,`logisticsDispatcherMobile` = #{logisticsDispatcherMobile} + ,`channel` = #{channel} + ,`detail` = #{detail} + ,`extras` = #{extras} + ,`poiReceiveDetail` = #{poiReceiveDetail} + ,`cancelReason` = #{cancelReason} + ,`cancelReasonCode` = #{cancelReasonCode} + ,`refundReason` = #{refundReason} + ,`foodShareFeeChargeByPoi` = #{foodShareFeeChargeByPoi} + ,`wmPoiReceiveCent` = #{wmPoiReceiveCent} + ,`refundReasonCode` = #{refundReasonCode} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_shop_meituan_order + where `id` = #{id} + + + + delete from cy_shop_meituan_order + ${condition} + + + + delete from cy_shop_meituan_order + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/SplitFoodAccount2Mapper.xml b/food-pdm-tools/src/generate/food/mybatis/SplitFoodAccount2Mapper.xml new file mode 100644 index 0000000..7d81ba2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/SplitFoodAccount2Mapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`shopId`,`goodId`,`accountId`,`type`,`status`,`detail`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_split_food_account2 + + `id`,`tenantId` + ,`shopId` + ,`goodId` + ,`accountId` + ,`type` + ,`status` + ,`detail` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{shopId} + ,#{goodId} + ,#{accountId} + ,#{type} + ,#{status} + ,#{detail} + ,#{createUser} + ,#{createDate} + + + + + update cy_split_food_account2 + + `tenantId` = #{tenantId} + ,`shopId` = #{shopId} + ,`goodId` = #{goodId} + ,`accountId` = #{accountId} + ,`type` = #{type} + ,`status` = #{status} + ,`detail` = #{detail} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_split_food_account2 + where `id` = #{id} + + + + delete from cy_split_food_account2 + ${condition} + + + + delete from cy_split_food_account2 + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/SplitFoodAccountMapper.xml b/food-pdm-tools/src/generate/food/mybatis/SplitFoodAccountMapper.xml new file mode 100644 index 0000000..42f7475 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/SplitFoodAccountMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`shopId`,`goodId`,`accountId`,`type`,`status`,`detail`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_split_food_account + + `id`,`tenantId` + ,`shopId` + ,`goodId` + ,`accountId` + ,`type` + ,`status` + ,`detail` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{shopId} + ,#{goodId} + ,#{accountId} + ,#{type} + ,#{status} + ,#{detail} + ,#{createUser} + ,#{createDate} + + + + + update cy_split_food_account + + `tenantId` = #{tenantId} + ,`shopId` = #{shopId} + ,`goodId` = #{goodId} + ,`accountId` = #{accountId} + ,`type` = #{type} + ,`status` = #{status} + ,`detail` = #{detail} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_split_food_account + where `id` = #{id} + + + + delete from cy_split_food_account + ${condition} + + + + delete from cy_split_food_account + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/SplitPayLogMapper.xml b/food-pdm-tools/src/generate/food/mybatis/SplitPayLogMapper.xml new file mode 100644 index 0000000..eebd55d --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/SplitPayLogMapper.xml @@ -0,0 +1,137 @@ + + + + + + `id`,`clientId`,`tenantId`,`storeId`,`splitStoreId`,`storeNo`,`requestDomain`,`requestMessage`,`responseMessage`,`remark1`,`remark2`,`remark3`,`status`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_split_pay_log + + `id`,`tenantId` + ,`clientId` + ,`storeId` + ,`splitStoreId` + ,`storeNo` + ,`requestDomain` + ,`requestMessage` + ,`responseMessage` + ,`remark1` + ,`remark2` + ,`remark3` + ,`status` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{storeId} + ,#{splitStoreId} + ,#{storeNo} + ,#{requestDomain} + ,#{requestMessage} + ,#{responseMessage} + ,#{remark1} + ,#{remark2} + ,#{remark3} + ,#{status} + ,#{createDate} + ,#{createUser} + + + + + update cy_split_pay_log + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`storeId` = #{storeId} + ,`splitStoreId` = #{splitStoreId} + ,`storeNo` = #{storeNo} + ,`requestDomain` = #{requestDomain} + ,`requestMessage` = #{requestMessage} + ,`responseMessage` = #{responseMessage} + ,`remark1` = #{remark1} + ,`remark2` = #{remark2} + ,`remark3` = #{remark3} + ,`status` = #{status} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_split_pay_log + where `id` = #{id} + + + + delete from cy_split_pay_log + ${condition} + + + + delete from cy_split_pay_log + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/SplitPayResultMapper.xml b/food-pdm-tools/src/generate/food/mybatis/SplitPayResultMapper.xml new file mode 100644 index 0000000..98b2aaa --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/SplitPayResultMapper.xml @@ -0,0 +1,140 @@ + + + + + + `id`,`clientId`,`tenantId`,`storeId`,`splitStoreId`,`storeNo`,`payNo`,`ticketId`,`busNo`,`money`,`ymoney`,`smoney`,`memo`,`status`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_split_pay_result + + `id`,`tenantId` + ,`clientId` + ,`storeId` + ,`splitStoreId` + ,`storeNo` + ,`payNo` + ,`ticketId` + ,`busNo` + ,`money` + ,`ymoney` + ,`smoney` + ,`memo` + ,`status` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{storeId} + ,#{splitStoreId} + ,#{storeNo} + ,#{payNo} + ,#{ticketId} + ,#{busNo} + ,#{money} + ,#{ymoney} + ,#{smoney} + ,#{memo} + ,#{status} + ,#{createDate} + ,#{createUser} + + + + + update cy_split_pay_result + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`storeId` = #{storeId} + ,`splitStoreId` = #{splitStoreId} + ,`storeNo` = #{storeNo} + ,`payNo` = #{payNo} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`money` = #{money} + ,`ymoney` = #{ymoney} + ,`smoney` = #{smoney} + ,`memo` = #{memo} + ,`status` = #{status} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_split_pay_result + where `id` = #{id} + + + + delete from cy_split_pay_result + ${condition} + + + + delete from cy_split_pay_result + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/SplitShopAccountMapper.xml b/food-pdm-tools/src/generate/food/mybatis/SplitShopAccountMapper.xml new file mode 100644 index 0000000..fbee983 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/SplitShopAccountMapper.xml @@ -0,0 +1,212 @@ + + + + + + `id`,`tenantId`,`pshopId`,`shopId`,`bizUserId`,`phone`,`companyName`,`companyAddress`,`authType`,`uniCredit`,`businessLicense`,`organizationCode`,`taxRegister`,`expLicense`,`telephone`,`legalName`,`identityType`,`legalIds`,`legalPhone`,`accountNo`,`parentBankName`,`bankCityNo`,`bankName`,`unionBank`,`province`,`city`,`backUrl`,`memberType`,`isphone`,`iscreate`,`isinfo`,`isvideo`,`isagree`,`pictureUrl`,`source`,`type`,`status`,`detail`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_split_shop_account + + `id`,`tenantId` + ,`pshopId` + ,`shopId` + ,`bizUserId` + ,`phone` + ,`companyName` + ,`companyAddress` + ,`authType` + ,`uniCredit` + ,`businessLicense` + ,`organizationCode` + ,`taxRegister` + ,`expLicense` + ,`telephone` + ,`legalName` + ,`identityType` + ,`legalIds` + ,`legalPhone` + ,`accountNo` + ,`parentBankName` + ,`bankCityNo` + ,`bankName` + ,`unionBank` + ,`province` + ,`city` + ,`backUrl` + ,`memberType` + ,`isphone` + ,`iscreate` + ,`isinfo` + ,`isvideo` + ,`isagree` + ,`pictureUrl` + ,`source` + ,`type` + ,`status` + ,`detail` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{pshopId} + ,#{shopId} + ,#{bizUserId} + ,#{phone} + ,#{companyName} + ,#{companyAddress} + ,#{authType} + ,#{uniCredit} + ,#{businessLicense} + ,#{organizationCode} + ,#{taxRegister} + ,#{expLicense} + ,#{telephone} + ,#{legalName} + ,#{identityType} + ,#{legalIds} + ,#{legalPhone} + ,#{accountNo} + ,#{parentBankName} + ,#{bankCityNo} + ,#{bankName} + ,#{unionBank} + ,#{province} + ,#{city} + ,#{backUrl} + ,#{memberType} + ,#{isphone} + ,#{iscreate} + ,#{isinfo} + ,#{isvideo} + ,#{isagree} + ,#{pictureUrl} + ,#{source} + ,#{type} + ,#{status} + ,#{detail} + ,#{createUser} + ,#{createDate} + + + + + update cy_split_shop_account + + `tenantId` = #{tenantId} + ,`pshopId` = #{pshopId} + ,`shopId` = #{shopId} + ,`bizUserId` = #{bizUserId} + ,`phone` = #{phone} + ,`companyName` = #{companyName} + ,`companyAddress` = #{companyAddress} + ,`authType` = #{authType} + ,`uniCredit` = #{uniCredit} + ,`businessLicense` = #{businessLicense} + ,`organizationCode` = #{organizationCode} + ,`taxRegister` = #{taxRegister} + ,`expLicense` = #{expLicense} + ,`telephone` = #{telephone} + ,`legalName` = #{legalName} + ,`identityType` = #{identityType} + ,`legalIds` = #{legalIds} + ,`legalPhone` = #{legalPhone} + ,`accountNo` = #{accountNo} + ,`parentBankName` = #{parentBankName} + ,`bankCityNo` = #{bankCityNo} + ,`bankName` = #{bankName} + ,`unionBank` = #{unionBank} + ,`province` = #{province} + ,`city` = #{city} + ,`backUrl` = #{backUrl} + ,`memberType` = #{memberType} + ,`isphone` = #{isphone} + ,`iscreate` = #{iscreate} + ,`isinfo` = #{isinfo} + ,`isvideo` = #{isvideo} + ,`isagree` = #{isagree} + ,`pictureUrl` = #{pictureUrl} + ,`source` = #{source} + ,`type` = #{type} + ,`status` = #{status} + ,`detail` = #{detail} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_split_shop_account + where `id` = #{id} + + + + delete from cy_split_shop_account + ${condition} + + + + delete from cy_split_shop_account + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/SplitShopWithdrawalMapper.xml b/food-pdm-tools/src/generate/food/mybatis/SplitShopWithdrawalMapper.xml new file mode 100644 index 0000000..7a0e6a3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/SplitShopWithdrawalMapper.xml @@ -0,0 +1,149 @@ + + + + + + `id`,`clientId`,`tenantId`,`programId`,`storeId`,`splitStoreId`,`storeNo`,`payTypeNo`,`amount`,`fee`,`receivedAmount`,`payDate`,`cardno`,`ext`,`memo`,`type`,`status`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_split_shop_withdrawal + + `id`,`tenantId` + ,`clientId` + ,`programId` + ,`storeId` + ,`splitStoreId` + ,`storeNo` + ,`payTypeNo` + ,`amount` + ,`fee` + ,`receivedAmount` + ,`payDate` + ,`cardno` + ,`ext` + ,`memo` + ,`type` + ,`status` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{programId} + ,#{storeId} + ,#{splitStoreId} + ,#{storeNo} + ,#{payTypeNo} + ,#{amount} + ,#{fee} + ,#{receivedAmount} + ,#{payDate} + ,#{cardno} + ,#{ext} + ,#{memo} + ,#{type} + ,#{status} + ,#{createDate} + ,#{createUser} + + + + + update cy_split_shop_withdrawal + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`programId` = #{programId} + ,`storeId` = #{storeId} + ,`splitStoreId` = #{splitStoreId} + ,`storeNo` = #{storeNo} + ,`payTypeNo` = #{payTypeNo} + ,`amount` = #{amount} + ,`fee` = #{fee} + ,`receivedAmount` = #{receivedAmount} + ,`payDate` = #{payDate} + ,`cardno` = #{cardno} + ,`ext` = #{ext} + ,`memo` = #{memo} + ,`type` = #{type} + ,`status` = #{status} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_split_shop_withdrawal + where `id` = #{id} + + + + delete from cy_split_shop_withdrawal + ${condition} + + + + delete from cy_split_shop_withdrawal + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/SplitStorePayMapper.xml b/food-pdm-tools/src/generate/food/mybatis/SplitStorePayMapper.xml new file mode 100644 index 0000000..cbc734e --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/SplitStorePayMapper.xml @@ -0,0 +1,185 @@ + + + + + + `id`,`clientId`,`tenantId`,`programId`,`storeId`,`splitStoreId`,`storeNo`,`payNo`,`ticketId`,`busNo`,`payTypeNo`,`payType`,`paid`,`rchange`,`money`,`overAmount`,`voucherNo`,`payDate`,`cardno`,`incomeFlag`,`otherRateType`,`otherRateValue`,`otherRate`,`payClientType`,`payChannel`,`deductionRate`,`chargeBack`,`memo`,`isInvalid`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_split_store_pay + + `id`,`tenantId` + ,`clientId` + ,`programId` + ,`storeId` + ,`splitStoreId` + ,`storeNo` + ,`payNo` + ,`ticketId` + ,`busNo` + ,`payTypeNo` + ,`payType` + ,`paid` + ,`rchange` + ,`money` + ,`overAmount` + ,`voucherNo` + ,`payDate` + ,`cardno` + ,`incomeFlag` + ,`otherRateType` + ,`otherRateValue` + ,`otherRate` + ,`payClientType` + ,`payChannel` + ,`deductionRate` + ,`chargeBack` + ,`memo` + ,`isInvalid` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{programId} + ,#{storeId} + ,#{splitStoreId} + ,#{storeNo} + ,#{payNo} + ,#{ticketId} + ,#{busNo} + ,#{payTypeNo} + ,#{payType} + ,#{paid} + ,#{rchange} + ,#{money} + ,#{overAmount} + ,#{voucherNo} + ,#{payDate} + ,#{cardno} + ,#{incomeFlag} + ,#{otherRateType} + ,#{otherRateValue} + ,#{otherRate} + ,#{payClientType} + ,#{payChannel} + ,#{deductionRate} + ,#{chargeBack} + ,#{memo} + ,#{isInvalid} + ,#{createDate} + ,#{createUser} + + + + + update cy_split_store_pay + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`programId` = #{programId} + ,`storeId` = #{storeId} + ,`splitStoreId` = #{splitStoreId} + ,`storeNo` = #{storeNo} + ,`payNo` = #{payNo} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`payTypeNo` = #{payTypeNo} + ,`payType` = #{payType} + ,`paid` = #{paid} + ,`rchange` = #{rchange} + ,`money` = #{money} + ,`overAmount` = #{overAmount} + ,`voucherNo` = #{voucherNo} + ,`payDate` = #{payDate} + ,`cardno` = #{cardno} + ,`incomeFlag` = #{incomeFlag} + ,`otherRateType` = #{otherRateType} + ,`otherRateValue` = #{otherRateValue} + ,`otherRate` = #{otherRate} + ,`payClientType` = #{payClientType} + ,`payChannel` = #{payChannel} + ,`deductionRate` = #{deductionRate} + ,`chargeBack` = #{chargeBack} + ,`memo` = #{memo} + ,`isInvalid` = #{isInvalid} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_split_store_pay + where `id` = #{id} + + + + delete from cy_split_store_pay + ${condition} + + + + delete from cy_split_store_pay + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StorageMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StorageMapper.xml new file mode 100644 index 0000000..f1fdaf3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StorageMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`typeId`,`name`,`no`,`manager`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_storage + + `id`,`tenantId` + ,`typeId` + ,`name` + ,`no` + ,`manager` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{typeId} + ,#{name} + ,#{no} + ,#{manager} + ,#{createUser} + ,#{createDate} + + + + + update cy_storage + + `tenantId` = #{tenantId} + ,`typeId` = #{typeId} + ,`name` = #{name} + ,`no` = #{no} + ,`manager` = #{manager} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_storage + where `id` = #{id} + + + + delete from cy_storage + ${condition} + + + + delete from cy_storage + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StorageStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StorageStoreMapper.xml new file mode 100644 index 0000000..f65cc03 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StorageStoreMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`storeId`,`storageId` + + + + + + + + + + + + + + + + + + + + insert into cy_storage_store + + `id`,`tenantId` + ,`storeId` + ,`storageId` + + + #{id},#{tenantId} + ,#{storeId} + ,#{storageId} + + + + + update cy_storage_store + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`storageId` = #{storageId} + + where `id` = #{id} + + + + delete from cy_storage_store + where `id` = #{id} + + + + delete from cy_storage_store + ${condition} + + + + delete from cy_storage_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StorageTypeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StorageTypeMapper.xml new file mode 100644 index 0000000..ed31178 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StorageTypeMapper.xml @@ -0,0 +1,110 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_storage_type + + `id`,`tenantId` + ,`no` + ,`name` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{createDate} + ,#{createUser} + + + + + update cy_storage_type + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_storage_type + where `id` = #{id} + + + + delete from cy_storage_type + ${condition} + + + + delete from cy_storage_type + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreAccountDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreAccountDetailMapper.xml new file mode 100644 index 0000000..6e42672 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreAccountDetailMapper.xml @@ -0,0 +1,152 @@ + + + + + + `id`,`tenantId`,`accountId`,`storeId`,`storeNo`,`type`,`busType`,`busNo`,`busTime`,`payType`,`voucherNo`,`status`,`amount`,`aftAmount`,`workerNo`,`posNo`,`sourceSign`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_account_detail + + `id`,`tenantId` + ,`accountId` + ,`storeId` + ,`storeNo` + ,`type` + ,`busType` + ,`busNo` + ,`busTime` + ,`payType` + ,`voucherNo` + ,`status` + ,`amount` + ,`aftAmount` + ,`workerNo` + ,`posNo` + ,`sourceSign` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{accountId} + ,#{storeId} + ,#{storeNo} + ,#{type} + ,#{busType} + ,#{busNo} + ,#{busTime} + ,#{payType} + ,#{voucherNo} + ,#{status} + ,#{amount} + ,#{aftAmount} + ,#{workerNo} + ,#{posNo} + ,#{sourceSign} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_account_detail + + `tenantId` = #{tenantId} + ,`accountId` = #{accountId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`type` = #{type} + ,`busType` = #{busType} + ,`busNo` = #{busNo} + ,`busTime` = #{busTime} + ,`payType` = #{payType} + ,`voucherNo` = #{voucherNo} + ,`status` = #{status} + ,`amount` = #{amount} + ,`aftAmount` = #{aftAmount} + ,`workerNo` = #{workerNo} + ,`posNo` = #{posNo} + ,`sourceSign` = #{sourceSign} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_account_detail + where `id` = #{id} + + + + delete from cy_store_account_detail + ${condition} + + + + delete from cy_store_account_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreAccountMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreAccountMapper.xml new file mode 100644 index 0000000..9fd47de --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreAccountMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`no`,`storeId`,`storeNo`,`status`,`payPwd`,`description`,`amount`,`freezeAmount`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_account + + `id`,`tenantId` + ,`no` + ,`storeId` + ,`storeNo` + ,`status` + ,`payPwd` + ,`description` + ,`amount` + ,`freezeAmount` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{storeId} + ,#{storeNo} + ,#{status} + ,#{payPwd} + ,#{description} + ,#{amount} + ,#{freezeAmount} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_account + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`status` = #{status} + ,`payPwd` = #{payPwd} + ,`description` = #{description} + ,`amount` = #{amount} + ,`freezeAmount` = #{freezeAmount} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_account + where `id` = #{id} + + + + delete from cy_store_account + ${condition} + + + + delete from cy_store_account + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreAccountRechargeParameterMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreAccountRechargeParameterMapper.xml new file mode 100644 index 0000000..a0a01e6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreAccountRechargeParameterMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`sign`,`pbody`,`enabled`,`certText`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_store_account_recharge_parameter + + `id`,`tenantId` + ,`no` + ,`name` + ,`sign` + ,`pbody` + ,`enabled` + ,`certText` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{sign} + ,#{pbody} + ,#{enabled} + ,#{certText} + ,#{createUser} + ,#{createDate} + + + + + update cy_store_account_recharge_parameter + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`sign` = #{sign} + ,`pbody` = #{pbody} + ,`enabled` = #{enabled} + ,`certText` = #{certText} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_store_account_recharge_parameter + where `id` = #{id} + + + + delete from cy_store_account_recharge_parameter + ${condition} + + + + delete from cy_store_account_recharge_parameter + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreAccountRechargeRecordMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreAccountRechargeRecordMapper.xml new file mode 100644 index 0000000..b6ed87e --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreAccountRechargeRecordMapper.xml @@ -0,0 +1,167 @@ + + + + + + `id`,`tenantId`,`storeId`,`storeNo`,`accountId`,`sourceSign`,`ticketNo`,`amount`,`status`,`rechargeStatus`,`description`,`payType`,`payVoucherNo`,`payDate`,`payAccount`,`title`,`content`,`deviceInfo`,`attach`,`reqStr`,`respStr`,`notifySign`,`notifyData`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_account_recharge_record + + `id`,`tenantId` + ,`storeId` + ,`storeNo` + ,`accountId` + ,`sourceSign` + ,`ticketNo` + ,`amount` + ,`status` + ,`rechargeStatus` + ,`description` + ,`payType` + ,`payVoucherNo` + ,`payDate` + ,`payAccount` + ,`title` + ,`content` + ,`deviceInfo` + ,`attach` + ,`reqStr` + ,`respStr` + ,`notifySign` + ,`notifyData` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{storeId} + ,#{storeNo} + ,#{accountId} + ,#{sourceSign} + ,#{ticketNo} + ,#{amount} + ,#{status} + ,#{rechargeStatus} + ,#{description} + ,#{payType} + ,#{payVoucherNo} + ,#{payDate} + ,#{payAccount} + ,#{title} + ,#{content} + ,#{deviceInfo} + ,#{attach} + ,#{reqStr} + ,#{respStr} + ,#{notifySign} + ,#{notifyData} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_account_recharge_record + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`accountId` = #{accountId} + ,`sourceSign` = #{sourceSign} + ,`ticketNo` = #{ticketNo} + ,`amount` = #{amount} + ,`status` = #{status} + ,`rechargeStatus` = #{rechargeStatus} + ,`description` = #{description} + ,`payType` = #{payType} + ,`payVoucherNo` = #{payVoucherNo} + ,`payDate` = #{payDate} + ,`payAccount` = #{payAccount} + ,`title` = #{title} + ,`content` = #{content} + ,`deviceInfo` = #{deviceInfo} + ,`attach` = #{attach} + ,`reqStr` = #{reqStr} + ,`respStr` = #{respStr} + ,`notifySign` = #{notifySign} + ,`notifyData` = #{notifyData} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_account_recharge_record + where `id` = #{id} + + + + delete from cy_store_account_recharge_record + ${condition} + + + + delete from cy_store_account_recharge_record + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreAreaMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreAreaMapper.xml new file mode 100644 index 0000000..4deb4cf --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreAreaMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`parentId`,`no`,`name`,`path`,`deleteFlag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_area + + `id`,`tenantId` + ,`parentId` + ,`no` + ,`name` + ,`path` + ,`deleteFlag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{parentId} + ,#{no} + ,#{name} + ,#{path} + ,#{deleteFlag} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_area + + `tenantId` = #{tenantId} + ,`parentId` = #{parentId} + ,`no` = #{no} + ,`name` = #{name} + ,`path` = #{path} + ,`deleteFlag` = #{deleteFlag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_area + where `id` = #{id} + + + + delete from cy_store_area + ${condition} + + + + delete from cy_store_area + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreBrandMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreBrandMapper.xml new file mode 100644 index 0000000..608fe51 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreBrandMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`brandId`,`storeId` + + + + + + + + + + + + + + + + + + + + insert into cy_store_brand + + `id`,`tenantId` + ,`brandId` + ,`storeId` + + + #{id},#{tenantId} + ,#{brandId} + ,#{storeId} + + + + + update cy_store_brand + + `tenantId` = #{tenantId} + ,`brandId` = #{brandId} + ,`storeId` = #{storeId} + + where `id` = #{id} + + + + delete from cy_store_brand + where `id` = #{id} + + + + delete from cy_store_brand + ${condition} + + + + delete from cy_store_brand + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreBusinessTicketCheckMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreBusinessTicketCheckMapper.xml new file mode 100644 index 0000000..0b345a2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreBusinessTicketCheckMapper.xml @@ -0,0 +1,110 @@ + + + + + + `id`,`tenantId`,`storeId`,`busNo`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_business_ticket_check + + `id`,`tenantId` + ,`storeId` + ,`busNo` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{storeId} + ,#{busNo} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_business_ticket_check + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`busNo` = #{busNo} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_business_ticket_check + where `id` = #{id} + + + + delete from cy_store_business_ticket_check + ${condition} + + + + delete from cy_store_business_ticket_check + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreBusinessTicketDaysummaryMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreBusinessTicketDaysummaryMapper.xml new file mode 100644 index 0000000..c4e9bf6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreBusinessTicketDaysummaryMapper.xml @@ -0,0 +1,170 @@ + + + + + + `id`,`tenantId`,`summaryDay`,`storeId`,`storeNo`,`storeName`,`status`,`workNo`,`people`,`busMode`,`amount`,`discountTotal`,`receivable`,`maling`,`paid`,`posNo`,`weeker`,`estimatedCost`,`estimatedProfitAmount`,`totalCost`,`profitAmount`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_business_ticket_daysummary + + `id`,`tenantId` + ,`summaryDay` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`status` + ,`workNo` + ,`people` + ,`busMode` + ,`amount` + ,`discountTotal` + ,`receivable` + ,`maling` + ,`paid` + ,`posNo` + ,`weeker` + ,`estimatedCost` + ,`estimatedProfitAmount` + ,`totalCost` + ,`profitAmount` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{summaryDay} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{status} + ,#{workNo} + ,#{people} + ,#{busMode} + ,#{amount} + ,#{discountTotal} + ,#{receivable} + ,#{maling} + ,#{paid} + ,#{posNo} + ,#{weeker} + ,#{estimatedCost} + ,#{estimatedProfitAmount} + ,#{totalCost} + ,#{profitAmount} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_business_ticket_daysummary + + `tenantId` = #{tenantId} + ,`summaryDay` = #{summaryDay} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`status` = #{status} + ,`workNo` = #{workNo} + ,`people` = #{people} + ,`busMode` = #{busMode} + ,`amount` = #{amount} + ,`discountTotal` = #{discountTotal} + ,`receivable` = #{receivable} + ,`maling` = #{maling} + ,`paid` = #{paid} + ,`posNo` = #{posNo} + ,`weeker` = #{weeker} + ,`estimatedCost` = #{estimatedCost} + ,`estimatedProfitAmount` = #{estimatedProfitAmount} + ,`totalCost` = #{totalCost} + ,`profitAmount` = #{profitAmount} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_business_ticket_daysummary + where `id` = #{id} + + + + delete from cy_store_business_ticket_daysummary + ${condition} + + + + delete from cy_store_business_ticket_daysummary + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreBusinessTicketDeliveryMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreBusinessTicketDeliveryMapper.xml new file mode 100644 index 0000000..9345d55 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreBusinessTicketDeliveryMapper.xml @@ -0,0 +1,158 @@ + + + + + + `id`,`clientId`,`tenantId`,`storeId`,`ticketId`,`busNo`,`isInvalid`,`orderTime`,`visitorName`,`orderTel`,`recipientName`,`recipientPhone`,`recipientAddress`,`deliveryWorkerNo`,`deliveryWorkerName`,`advanceAmount`,`distributionFee`,`deliveryBeginTime`,`deliveryEndTime`,`settlementTime`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_business_ticket_delivery + + `id`,`tenantId` + ,`clientId` + ,`storeId` + ,`ticketId` + ,`busNo` + ,`isInvalid` + ,`orderTime` + ,`visitorName` + ,`orderTel` + ,`recipientName` + ,`recipientPhone` + ,`recipientAddress` + ,`deliveryWorkerNo` + ,`deliveryWorkerName` + ,`advanceAmount` + ,`distributionFee` + ,`deliveryBeginTime` + ,`deliveryEndTime` + ,`settlementTime` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{storeId} + ,#{ticketId} + ,#{busNo} + ,#{isInvalid} + ,#{orderTime} + ,#{visitorName} + ,#{orderTel} + ,#{recipientName} + ,#{recipientPhone} + ,#{recipientAddress} + ,#{deliveryWorkerNo} + ,#{deliveryWorkerName} + ,#{advanceAmount} + ,#{distributionFee} + ,#{deliveryBeginTime} + ,#{deliveryEndTime} + ,#{settlementTime} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_business_ticket_delivery + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`storeId` = #{storeId} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`isInvalid` = #{isInvalid} + ,`orderTime` = #{orderTime} + ,`visitorName` = #{visitorName} + ,`orderTel` = #{orderTel} + ,`recipientName` = #{recipientName} + ,`recipientPhone` = #{recipientPhone} + ,`recipientAddress` = #{recipientAddress} + ,`deliveryWorkerNo` = #{deliveryWorkerNo} + ,`deliveryWorkerName` = #{deliveryWorkerName} + ,`advanceAmount` = #{advanceAmount} + ,`distributionFee` = #{distributionFee} + ,`deliveryBeginTime` = #{deliveryBeginTime} + ,`deliveryEndTime` = #{deliveryEndTime} + ,`settlementTime` = #{settlementTime} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_business_ticket_delivery + where `id` = #{id} + + + + delete from cy_store_business_ticket_delivery + ${condition} + + + + delete from cy_store_business_ticket_delivery + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreBusinessTicketInfoDaysummaryMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreBusinessTicketInfoDaysummaryMapper.xml new file mode 100644 index 0000000..1a61c0e --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreBusinessTicketInfoDaysummaryMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`summaryDay`,`storeId`,`type`,`discountMoney`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_business_ticket_info_daysummary + + `id`,`tenantId` + ,`summaryDay` + ,`storeId` + ,`type` + ,`discountMoney` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{summaryDay} + ,#{storeId} + ,#{type} + ,#{discountMoney} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_business_ticket_info_daysummary + + `tenantId` = #{tenantId} + ,`summaryDay` = #{summaryDay} + ,`storeId` = #{storeId} + ,`type` = #{type} + ,`discountMoney` = #{discountMoney} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_business_ticket_info_daysummary + where `id` = #{id} + + + + delete from cy_store_business_ticket_info_daysummary + ${condition} + + + + delete from cy_store_business_ticket_info_daysummary + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreBusinessTicketInfoMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreBusinessTicketInfoMapper.xml new file mode 100644 index 0000000..a30f235 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreBusinessTicketInfoMapper.xml @@ -0,0 +1,140 @@ + + + + + + `id`,`clientId`,`tenantId`,`storeId`,`ticketId`,`busNo`,`type`,`info`,`discountMoney`,`isInvalid`,`saleDate`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_business_ticket_info + + `id`,`tenantId` + ,`clientId` + ,`storeId` + ,`ticketId` + ,`busNo` + ,`type` + ,`info` + ,`discountMoney` + ,`isInvalid` + ,`saleDate` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{storeId} + ,#{ticketId} + ,#{busNo} + ,#{type} + ,#{info} + ,#{discountMoney} + ,#{isInvalid} + ,#{saleDate} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_business_ticket_info + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`storeId` = #{storeId} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`type` = #{type} + ,`info` = #{info} + ,`discountMoney` = #{discountMoney} + ,`isInvalid` = #{isInvalid} + ,`saleDate` = #{saleDate} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_business_ticket_info + where `id` = #{id} + + + + delete from cy_store_business_ticket_info + ${condition} + + + + delete from cy_store_business_ticket_info + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreBusinessTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreBusinessTicketMapper.xml new file mode 100644 index 0000000..6226ad6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreBusinessTicketMapper.xml @@ -0,0 +1,233 @@ + + + + + + `id`,`clientId`,`tenantId`,`no`,`storeId`,`storeNo`,`storeName`,`status`,`workNo`,`saleDate`,`tableNo`,`people`,`busMode`,`shiftNo`,`shiftName`,`amount`,`discount`,`discountTotal`,`receivable`,`maling`,`paid`,`noOrg`,`backCause`,`isMember`,`memberNo`,`memberJifen`,`deviceName`,`deviceMac`,`deviceIp`,`posNo`,`isInvalid`,`seqNo`,`weather`,`weeker`,`isStockDeal`,`estimatedCost`,`estimatedProfitAmount`,`estimatedProfitMargin`,`totalCost`,`profitAmount`,`profitMargin`,`tableName`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_business_ticket + + `id`,`tenantId` + ,`clientId` + ,`no` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`status` + ,`workNo` + ,`saleDate` + ,`tableNo` + ,`people` + ,`busMode` + ,`shiftNo` + ,`shiftName` + ,`amount` + ,`discount` + ,`discountTotal` + ,`receivable` + ,`maling` + ,`paid` + ,`noOrg` + ,`backCause` + ,`isMember` + ,`memberNo` + ,`memberJifen` + ,`deviceName` + ,`deviceMac` + ,`deviceIp` + ,`posNo` + ,`isInvalid` + ,`seqNo` + ,`weather` + ,`weeker` + ,`isStockDeal` + ,`estimatedCost` + ,`estimatedProfitAmount` + ,`estimatedProfitMargin` + ,`totalCost` + ,`profitAmount` + ,`profitMargin` + ,`tableName` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{no} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{status} + ,#{workNo} + ,#{saleDate} + ,#{tableNo} + ,#{people} + ,#{busMode} + ,#{shiftNo} + ,#{shiftName} + ,#{amount} + ,#{discount} + ,#{discountTotal} + ,#{receivable} + ,#{maling} + ,#{paid} + ,#{noOrg} + ,#{backCause} + ,#{isMember} + ,#{memberNo} + ,#{memberJifen} + ,#{deviceName} + ,#{deviceMac} + ,#{deviceIp} + ,#{posNo} + ,#{isInvalid} + ,#{seqNo} + ,#{weather} + ,#{weeker} + ,#{isStockDeal} + ,#{estimatedCost} + ,#{estimatedProfitAmount} + ,#{estimatedProfitMargin} + ,#{totalCost} + ,#{profitAmount} + ,#{profitMargin} + ,#{tableName} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_business_ticket + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`no` = #{no} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`status` = #{status} + ,`workNo` = #{workNo} + ,`saleDate` = #{saleDate} + ,`tableNo` = #{tableNo} + ,`people` = #{people} + ,`busMode` = #{busMode} + ,`shiftNo` = #{shiftNo} + ,`shiftName` = #{shiftName} + ,`amount` = #{amount} + ,`discount` = #{discount} + ,`discountTotal` = #{discountTotal} + ,`receivable` = #{receivable} + ,`maling` = #{maling} + ,`paid` = #{paid} + ,`noOrg` = #{noOrg} + ,`backCause` = #{backCause} + ,`isMember` = #{isMember} + ,`memberNo` = #{memberNo} + ,`memberJifen` = #{memberJifen} + ,`deviceName` = #{deviceName} + ,`deviceMac` = #{deviceMac} + ,`deviceIp` = #{deviceIp} + ,`posNo` = #{posNo} + ,`isInvalid` = #{isInvalid} + ,`seqNo` = #{seqNo} + ,`weather` = #{weather} + ,`weeker` = #{weeker} + ,`isStockDeal` = #{isStockDeal} + ,`estimatedCost` = #{estimatedCost} + ,`estimatedProfitAmount` = #{estimatedProfitAmount} + ,`estimatedProfitMargin` = #{estimatedProfitMargin} + ,`totalCost` = #{totalCost} + ,`profitAmount` = #{profitAmount} + ,`profitMargin` = #{profitMargin} + ,`tableName` = #{tableName} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_business_ticket + where `id` = #{id} + + + + delete from cy_store_business_ticket + ${condition} + + + + delete from cy_store_business_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreBusinessTicketTableMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreBusinessTicketTableMapper.xml new file mode 100644 index 0000000..18cc21e --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreBusinessTicketTableMapper.xml @@ -0,0 +1,215 @@ + + + + + + `id`,`clientId`,`tenantId`,`storeId`,`ticketId`,`busNo`,`isInvalid`,`tableId`,`tableNo`,`tableName`,`typeId`,`typeNo`,`typeName`,`areaId`,`areaNo`,`areaName`,`tableStatus`,`openTime`,`openUser`,`serialNo`,`seatNumber`,`peopleNumber`,`excessFlag`,`totalAmount`,`totalRefund`,`totalQuantity`,`discountAmount`,`discountRate`,`receivableAmount`,`paidAmount`,`malingAmount`,`masterTable`,`perCapitaAmount`,`posNo`,`payNo`,`finishTime`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_business_ticket_table + + `id`,`tenantId` + ,`clientId` + ,`storeId` + ,`ticketId` + ,`busNo` + ,`isInvalid` + ,`tableId` + ,`tableNo` + ,`tableName` + ,`typeId` + ,`typeNo` + ,`typeName` + ,`areaId` + ,`areaNo` + ,`areaName` + ,`tableStatus` + ,`openTime` + ,`openUser` + ,`serialNo` + ,`seatNumber` + ,`peopleNumber` + ,`excessFlag` + ,`totalAmount` + ,`totalRefund` + ,`totalQuantity` + ,`discountAmount` + ,`discountRate` + ,`receivableAmount` + ,`paidAmount` + ,`malingAmount` + ,`masterTable` + ,`perCapitaAmount` + ,`posNo` + ,`payNo` + ,`finishTime` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{storeId} + ,#{ticketId} + ,#{busNo} + ,#{isInvalid} + ,#{tableId} + ,#{tableNo} + ,#{tableName} + ,#{typeId} + ,#{typeNo} + ,#{typeName} + ,#{areaId} + ,#{areaNo} + ,#{areaName} + ,#{tableStatus} + ,#{openTime} + ,#{openUser} + ,#{serialNo} + ,#{seatNumber} + ,#{peopleNumber} + ,#{excessFlag} + ,#{totalAmount} + ,#{totalRefund} + ,#{totalQuantity} + ,#{discountAmount} + ,#{discountRate} + ,#{receivableAmount} + ,#{paidAmount} + ,#{malingAmount} + ,#{masterTable} + ,#{perCapitaAmount} + ,#{posNo} + ,#{payNo} + ,#{finishTime} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_business_ticket_table + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`storeId` = #{storeId} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`isInvalid` = #{isInvalid} + ,`tableId` = #{tableId} + ,`tableNo` = #{tableNo} + ,`tableName` = #{tableName} + ,`typeId` = #{typeId} + ,`typeNo` = #{typeNo} + ,`typeName` = #{typeName} + ,`areaId` = #{areaId} + ,`areaNo` = #{areaNo} + ,`areaName` = #{areaName} + ,`tableStatus` = #{tableStatus} + ,`openTime` = #{openTime} + ,`openUser` = #{openUser} + ,`serialNo` = #{serialNo} + ,`seatNumber` = #{seatNumber} + ,`peopleNumber` = #{peopleNumber} + ,`excessFlag` = #{excessFlag} + ,`totalAmount` = #{totalAmount} + ,`totalRefund` = #{totalRefund} + ,`totalQuantity` = #{totalQuantity} + ,`discountAmount` = #{discountAmount} + ,`discountRate` = #{discountRate} + ,`receivableAmount` = #{receivableAmount} + ,`paidAmount` = #{paidAmount} + ,`malingAmount` = #{malingAmount} + ,`masterTable` = #{masterTable} + ,`perCapitaAmount` = #{perCapitaAmount} + ,`posNo` = #{posNo} + ,`payNo` = #{payNo} + ,`finishTime` = #{finishTime} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_business_ticket_table + where `id` = #{id} + + + + delete from cy_store_business_ticket_table + ${condition} + + + + delete from cy_store_business_ticket_table + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreCostManageLogMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreCostManageLogMapper.xml new file mode 100644 index 0000000..d922ad3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreCostManageLogMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`feeId`,`feeName`,`storeNos`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_cost_manage_log + + `id`,`tenantId` + ,`feeId` + ,`feeName` + ,`storeNos` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{feeId} + ,#{feeName} + ,#{storeNos} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_cost_manage_log + + `tenantId` = #{tenantId} + ,`feeId` = #{feeId} + ,`feeName` = #{feeName} + ,`storeNos` = #{storeNos} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_cost_manage_log + where `id` = #{id} + + + + delete from cy_store_cost_manage_log + ${condition} + + + + delete from cy_store_cost_manage_log + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreCostManageMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreCostManageMapper.xml new file mode 100644 index 0000000..1c3406f --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreCostManageMapper.xml @@ -0,0 +1,155 @@ + + + + + + `id`,`tenantId`,`feeType`,`no`,`name`,`money`,`cutPaymentType`,`cutPaymentTime`,`cronTime`,`startTime`,`endTime`,`status`,`exeStatus`,`isEnable`,`beforeMoney`,`beforeCronTime`,`checkMan`,`checkTime`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_store_cost_manage + + `id`,`tenantId` + ,`feeType` + ,`no` + ,`name` + ,`money` + ,`cutPaymentType` + ,`cutPaymentTime` + ,`cronTime` + ,`startTime` + ,`endTime` + ,`status` + ,`exeStatus` + ,`isEnable` + ,`beforeMoney` + ,`beforeCronTime` + ,`checkMan` + ,`checkTime` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{feeType} + ,#{no} + ,#{name} + ,#{money} + ,#{cutPaymentType} + ,#{cutPaymentTime} + ,#{cronTime} + ,#{startTime} + ,#{endTime} + ,#{status} + ,#{exeStatus} + ,#{isEnable} + ,#{beforeMoney} + ,#{beforeCronTime} + ,#{checkMan} + ,#{checkTime} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_store_cost_manage + + `tenantId` = #{tenantId} + ,`feeType` = #{feeType} + ,`no` = #{no} + ,`name` = #{name} + ,`money` = #{money} + ,`cutPaymentType` = #{cutPaymentType} + ,`cutPaymentTime` = #{cutPaymentTime} + ,`cronTime` = #{cronTime} + ,`startTime` = #{startTime} + ,`endTime` = #{endTime} + ,`status` = #{status} + ,`exeStatus` = #{exeStatus} + ,`isEnable` = #{isEnable} + ,`beforeMoney` = #{beforeMoney} + ,`beforeCronTime` = #{beforeCronTime} + ,`checkMan` = #{checkMan} + ,`checkTime` = #{checkTime} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_store_cost_manage + where `id` = #{id} + + + + delete from cy_store_cost_manage + ${condition} + + + + delete from cy_store_cost_manage + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreCostManageStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreCostManageStoreMapper.xml new file mode 100644 index 0000000..9cb69b2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreCostManageStoreMapper.xml @@ -0,0 +1,110 @@ + + + + + + `tenantId`,`storeId`,`feeId`,`storeNo`,`storeName` + + + + + + + + + + + + + + + + + + + + insert into cy_store_cost_manage_store + + `id`,`tenantId` + ,`storeId` + ,`feeId` + ,`storeNo` + ,`storeName` + + + #{id},#{tenantId} + ,#{storeId} + ,#{feeId} + ,#{storeNo} + ,#{storeName} + + + + + update cy_store_cost_manage_store + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`feeId` = #{feeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + + where `id` = #{id} + + + + delete from cy_store_cost_manage_store + where `id` = #{id} + + + + delete from cy_store_cost_manage_store + ${condition} + + + + delete from cy_store_cost_manage_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreCostRevenueMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreCostRevenueMapper.xml new file mode 100644 index 0000000..01325f3 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreCostRevenueMapper.xml @@ -0,0 +1,158 @@ + + + + + + `id`,`tenantId`,`storeId`,`storeNo`,`storeName`,`workId`,`workNo`,`workName`,`shiftNo`,`shiftName`,`name`,`money`,`type`,`description`,`memo`,`inputDate`,`posNo`,`deviceName`,`deviceMac`,`deviceIp`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_cost_revenue + + `id`,`tenantId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`workId` + ,`workNo` + ,`workName` + ,`shiftNo` + ,`shiftName` + ,`name` + ,`money` + ,`type` + ,`description` + ,`memo` + ,`inputDate` + ,`posNo` + ,`deviceName` + ,`deviceMac` + ,`deviceIp` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{workId} + ,#{workNo} + ,#{workName} + ,#{shiftNo} + ,#{shiftName} + ,#{name} + ,#{money} + ,#{type} + ,#{description} + ,#{memo} + ,#{inputDate} + ,#{posNo} + ,#{deviceName} + ,#{deviceMac} + ,#{deviceIp} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_cost_revenue + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`workId` = #{workId} + ,`workNo` = #{workNo} + ,`workName` = #{workName} + ,`shiftNo` = #{shiftNo} + ,`shiftName` = #{shiftName} + ,`name` = #{name} + ,`money` = #{money} + ,`type` = #{type} + ,`description` = #{description} + ,`memo` = #{memo} + ,`inputDate` = #{inputDate} + ,`posNo` = #{posNo} + ,`deviceName` = #{deviceName} + ,`deviceMac` = #{deviceMac} + ,`deviceIp` = #{deviceIp} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_cost_revenue + where `id` = #{id} + + + + delete from cy_store_cost_revenue + ${condition} + + + + delete from cy_store_cost_revenue + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreDeliveryOrderItemMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreDeliveryOrderItemMapper.xml new file mode 100644 index 0000000..1b69c48 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreDeliveryOrderItemMapper.xml @@ -0,0 +1,227 @@ + + + + + + `id`,`clientId`,`parentId`,`tenantId`,`storeId`,`storeNo`,`storeName`,`ticketId`,`busNo`,`productId`,`productNo`,`productName`,`productUnitId`,`productUnitName`,`typeId`,`typeName`,`specId`,`specName`,`count`,`rcount`,`price`,`priceOrg`,`discountPrice`,`isSuit`,`suitId`,`workerNo`,`saleDate`,`deviceName`,`deviceMac`,`deviceIp`,`posNo`,`amount`,`discount`,`discountTotal`,`receivable`,`addPriceTotal`,`discountAddTotal`,`amountAddTotal`,`amountTotal`,`receivableTotal`,`isInvalid`,`lineNo`,`seqNo`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_delivery_order_item + + `id`,`tenantId` + ,`clientId` + ,`parentId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`ticketId` + ,`busNo` + ,`productId` + ,`productNo` + ,`productName` + ,`productUnitId` + ,`productUnitName` + ,`typeId` + ,`typeName` + ,`specId` + ,`specName` + ,`count` + ,`rcount` + ,`price` + ,`priceOrg` + ,`discountPrice` + ,`isSuit` + ,`suitId` + ,`workerNo` + ,`saleDate` + ,`deviceName` + ,`deviceMac` + ,`deviceIp` + ,`posNo` + ,`amount` + ,`discount` + ,`discountTotal` + ,`receivable` + ,`addPriceTotal` + ,`discountAddTotal` + ,`amountAddTotal` + ,`amountTotal` + ,`receivableTotal` + ,`isInvalid` + ,`lineNo` + ,`seqNo` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{parentId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{ticketId} + ,#{busNo} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{productUnitId} + ,#{productUnitName} + ,#{typeId} + ,#{typeName} + ,#{specId} + ,#{specName} + ,#{count} + ,#{rcount} + ,#{price} + ,#{priceOrg} + ,#{discountPrice} + ,#{isSuit} + ,#{suitId} + ,#{workerNo} + ,#{saleDate} + ,#{deviceName} + ,#{deviceMac} + ,#{deviceIp} + ,#{posNo} + ,#{amount} + ,#{discount} + ,#{discountTotal} + ,#{receivable} + ,#{addPriceTotal} + ,#{discountAddTotal} + ,#{amountAddTotal} + ,#{amountTotal} + ,#{receivableTotal} + ,#{isInvalid} + ,#{lineNo} + ,#{seqNo} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_delivery_order_item + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`parentId` = #{parentId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`productUnitId` = #{productUnitId} + ,`productUnitName` = #{productUnitName} + ,`typeId` = #{typeId} + ,`typeName` = #{typeName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`count` = #{count} + ,`rcount` = #{rcount} + ,`price` = #{price} + ,`priceOrg` = #{priceOrg} + ,`discountPrice` = #{discountPrice} + ,`isSuit` = #{isSuit} + ,`suitId` = #{suitId} + ,`workerNo` = #{workerNo} + ,`saleDate` = #{saleDate} + ,`deviceName` = #{deviceName} + ,`deviceMac` = #{deviceMac} + ,`deviceIp` = #{deviceIp} + ,`posNo` = #{posNo} + ,`amount` = #{amount} + ,`discount` = #{discount} + ,`discountTotal` = #{discountTotal} + ,`receivable` = #{receivable} + ,`addPriceTotal` = #{addPriceTotal} + ,`discountAddTotal` = #{discountAddTotal} + ,`amountAddTotal` = #{amountAddTotal} + ,`amountTotal` = #{amountTotal} + ,`receivableTotal` = #{receivableTotal} + ,`isInvalid` = #{isInvalid} + ,`lineNo` = #{lineNo} + ,`seqNo` = #{seqNo} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_delivery_order_item + where `id` = #{id} + + + + delete from cy_store_delivery_order_item + ${condition} + + + + delete from cy_store_delivery_order_item + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreDeliveryOrderMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreDeliveryOrderMapper.xml new file mode 100644 index 0000000..cf9812c --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreDeliveryOrderMapper.xml @@ -0,0 +1,200 @@ + + + + + + `id`,`clientId`,`tenantId`,`no`,`storeId`,`storeNo`,`storeName`,`status`,`workNo`,`saleDate`,`amount`,`discount`,`discountTotal`,`receivable`,`maling`,`paid`,`deviceName`,`deviceMac`,`deviceIp`,`posNo`,`isInvalid`,`orderTime`,`visitorName`,`orderTel`,`recipientName`,`recipientPhone`,`recipientAddress`,`deliveryWorkerNo`,`deliveryWorkerName`,`advanceAmount`,`distributionFee`,`deliveryBeginTime`,`deliveryEndTime`,`settlementTime`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_delivery_order + + `id`,`tenantId` + ,`clientId` + ,`no` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`status` + ,`workNo` + ,`saleDate` + ,`amount` + ,`discount` + ,`discountTotal` + ,`receivable` + ,`maling` + ,`paid` + ,`deviceName` + ,`deviceMac` + ,`deviceIp` + ,`posNo` + ,`isInvalid` + ,`orderTime` + ,`visitorName` + ,`orderTel` + ,`recipientName` + ,`recipientPhone` + ,`recipientAddress` + ,`deliveryWorkerNo` + ,`deliveryWorkerName` + ,`advanceAmount` + ,`distributionFee` + ,`deliveryBeginTime` + ,`deliveryEndTime` + ,`settlementTime` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{no} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{status} + ,#{workNo} + ,#{saleDate} + ,#{amount} + ,#{discount} + ,#{discountTotal} + ,#{receivable} + ,#{maling} + ,#{paid} + ,#{deviceName} + ,#{deviceMac} + ,#{deviceIp} + ,#{posNo} + ,#{isInvalid} + ,#{orderTime} + ,#{visitorName} + ,#{orderTel} + ,#{recipientName} + ,#{recipientPhone} + ,#{recipientAddress} + ,#{deliveryWorkerNo} + ,#{deliveryWorkerName} + ,#{advanceAmount} + ,#{distributionFee} + ,#{deliveryBeginTime} + ,#{deliveryEndTime} + ,#{settlementTime} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_delivery_order + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`no` = #{no} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`status` = #{status} + ,`workNo` = #{workNo} + ,`saleDate` = #{saleDate} + ,`amount` = #{amount} + ,`discount` = #{discount} + ,`discountTotal` = #{discountTotal} + ,`receivable` = #{receivable} + ,`maling` = #{maling} + ,`paid` = #{paid} + ,`deviceName` = #{deviceName} + ,`deviceMac` = #{deviceMac} + ,`deviceIp` = #{deviceIp} + ,`posNo` = #{posNo} + ,`isInvalid` = #{isInvalid} + ,`orderTime` = #{orderTime} + ,`visitorName` = #{visitorName} + ,`orderTel` = #{orderTel} + ,`recipientName` = #{recipientName} + ,`recipientPhone` = #{recipientPhone} + ,`recipientAddress` = #{recipientAddress} + ,`deliveryWorkerNo` = #{deliveryWorkerNo} + ,`deliveryWorkerName` = #{deliveryWorkerName} + ,`advanceAmount` = #{advanceAmount} + ,`distributionFee` = #{distributionFee} + ,`deliveryBeginTime` = #{deliveryBeginTime} + ,`deliveryEndTime` = #{deliveryEndTime} + ,`settlementTime` = #{settlementTime} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_delivery_order + where `id` = #{id} + + + + delete from cy_store_delivery_order + ${condition} + + + + delete from cy_store_delivery_order + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreDepartmentMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreDepartmentMapper.xml new file mode 100644 index 0000000..a218965 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreDepartmentMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`manager`,`phone`,`email`,`enabled`,`description`,`deleteFlag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_department + + `id`,`tenantId` + ,`no` + ,`name` + ,`manager` + ,`phone` + ,`email` + ,`enabled` + ,`description` + ,`deleteFlag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{manager} + ,#{phone} + ,#{email} + ,#{enabled} + ,#{description} + ,#{deleteFlag} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_department + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`manager` = #{manager} + ,`phone` = #{phone} + ,`email` = #{email} + ,`enabled` = #{enabled} + ,`description` = #{description} + ,`deleteFlag` = #{deleteFlag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_department + where `id` = #{id} + + + + delete from cy_store_department + ${condition} + + + + delete from cy_store_department + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreDispatchAccountLogMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreDispatchAccountLogMapper.xml new file mode 100644 index 0000000..404d6c6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreDispatchAccountLogMapper.xml @@ -0,0 +1,131 @@ + + + + + + `id`,`tenantId`,`storeId`,`preBalance`,`balance`,`afterBalance`,`type`,`ticketNo`,`setMan`,`setDate`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_store_dispatch_account_log + + `id`,`tenantId` + ,`storeId` + ,`preBalance` + ,`balance` + ,`afterBalance` + ,`type` + ,`ticketNo` + ,`setMan` + ,`setDate` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storeId} + ,#{preBalance} + ,#{balance} + ,#{afterBalance} + ,#{type} + ,#{ticketNo} + ,#{setMan} + ,#{setDate} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_store_dispatch_account_log + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`preBalance` = #{preBalance} + ,`balance` = #{balance} + ,`afterBalance` = #{afterBalance} + ,`type` = #{type} + ,`ticketNo` = #{ticketNo} + ,`setMan` = #{setMan} + ,`setDate` = #{setDate} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_store_dispatch_account_log + where `id` = #{id} + + + + delete from cy_store_dispatch_account_log + ${condition} + + + + delete from cy_store_dispatch_account_log + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreDispatchAccountMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreDispatchAccountMapper.xml new file mode 100644 index 0000000..6423c85 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreDispatchAccountMapper.xml @@ -0,0 +1,110 @@ + + + + + + `id`,`tenantId`,`storeId`,`balance`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_store_dispatch_account + + `id`,`tenantId` + ,`storeId` + ,`balance` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storeId} + ,#{balance} + ,#{createUser} + ,#{createDate} + + + + + update cy_store_dispatch_account + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`balance` = #{balance} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_store_dispatch_account + where `id` = #{id} + + + + delete from cy_store_dispatch_account + ${condition} + + + + delete from cy_store_dispatch_account + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreEnchashmentRecordLogMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreEnchashmentRecordLogMapper.xml new file mode 100644 index 0000000..621c2fd --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreEnchashmentRecordLogMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`recordId`,`type`,`status`,`sourceSign`,`workerNo`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_enchashment_record_log + + `id`,`tenantId` + ,`recordId` + ,`type` + ,`status` + ,`sourceSign` + ,`workerNo` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{recordId} + ,#{type} + ,#{status} + ,#{sourceSign} + ,#{workerNo} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_enchashment_record_log + + `tenantId` = #{tenantId} + ,`recordId` = #{recordId} + ,`type` = #{type} + ,`status` = #{status} + ,`sourceSign` = #{sourceSign} + ,`workerNo` = #{workerNo} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_enchashment_record_log + where `id` = #{id} + + + + delete from cy_store_enchashment_record_log + ${condition} + + + + delete from cy_store_enchashment_record_log + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreEnchashmentRecordMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreEnchashmentRecordMapper.xml new file mode 100644 index 0000000..036d63d --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreEnchashmentRecordMapper.xml @@ -0,0 +1,167 @@ + + + + + + `id`,`tenantId`,`storeId`,`storeNo`,`accountId`,`busType`,`amount`,`status`,`payType`,`voucherNo`,`aftAmount`,`applyWorkerNo`,`applyDate`,`description`,`sourceSign`,`cancelWorkerNo`,`cancelReason`,`cancelDate`,`auditWorkerNo`,`auditReason`,`auditDate`,`settleWorkerNo`,`settleDate`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_enchashment_record + + `id`,`tenantId` + ,`storeId` + ,`storeNo` + ,`accountId` + ,`busType` + ,`amount` + ,`status` + ,`payType` + ,`voucherNo` + ,`aftAmount` + ,`applyWorkerNo` + ,`applyDate` + ,`description` + ,`sourceSign` + ,`cancelWorkerNo` + ,`cancelReason` + ,`cancelDate` + ,`auditWorkerNo` + ,`auditReason` + ,`auditDate` + ,`settleWorkerNo` + ,`settleDate` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{storeId} + ,#{storeNo} + ,#{accountId} + ,#{busType} + ,#{amount} + ,#{status} + ,#{payType} + ,#{voucherNo} + ,#{aftAmount} + ,#{applyWorkerNo} + ,#{applyDate} + ,#{description} + ,#{sourceSign} + ,#{cancelWorkerNo} + ,#{cancelReason} + ,#{cancelDate} + ,#{auditWorkerNo} + ,#{auditReason} + ,#{auditDate} + ,#{settleWorkerNo} + ,#{settleDate} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_enchashment_record + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`accountId` = #{accountId} + ,`busType` = #{busType} + ,`amount` = #{amount} + ,`status` = #{status} + ,`payType` = #{payType} + ,`voucherNo` = #{voucherNo} + ,`aftAmount` = #{aftAmount} + ,`applyWorkerNo` = #{applyWorkerNo} + ,`applyDate` = #{applyDate} + ,`description` = #{description} + ,`sourceSign` = #{sourceSign} + ,`cancelWorkerNo` = #{cancelWorkerNo} + ,`cancelReason` = #{cancelReason} + ,`cancelDate` = #{cancelDate} + ,`auditWorkerNo` = #{auditWorkerNo} + ,`auditReason` = #{auditReason} + ,`auditDate` = #{auditDate} + ,`settleWorkerNo` = #{settleWorkerNo} + ,`settleDate` = #{settleDate} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_enchashment_record + where `id` = #{id} + + + + delete from cy_store_enchashment_record + ${condition} + + + + delete from cy_store_enchashment_record + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreFeeCutLogMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreFeeCutLogMapper.xml new file mode 100644 index 0000000..bb5cbda --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreFeeCutLogMapper.xml @@ -0,0 +1,137 @@ + + + + + + `id`,`tenantId`,`accountId`,`storeId`,`storeNo`,`storeName`,`feeType`,`feeName`,`cutPaymentType`,`status`,`amount`,`aftAmount`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_fee_cut_log + + `id`,`tenantId` + ,`accountId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`feeType` + ,`feeName` + ,`cutPaymentType` + ,`status` + ,`amount` + ,`aftAmount` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{accountId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{feeType} + ,#{feeName} + ,#{cutPaymentType} + ,#{status} + ,#{amount} + ,#{aftAmount} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_fee_cut_log + + `tenantId` = #{tenantId} + ,`accountId` = #{accountId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`feeType` = #{feeType} + ,`feeName` = #{feeName} + ,`cutPaymentType` = #{cutPaymentType} + ,`status` = #{status} + ,`amount` = #{amount} + ,`aftAmount` = #{aftAmount} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_fee_cut_log + where `id` = #{id} + + + + delete from cy_store_fee_cut_log + ${condition} + + + + delete from cy_store_fee_cut_log + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreHandoverDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreHandoverDetailMapper.xml new file mode 100644 index 0000000..6b382c7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreHandoverDetailMapper.xml @@ -0,0 +1,155 @@ + + + + + + `id`,`clientId`,`tenantId`,`storeId`,`ticketId`,`busNo`,`payModeNo`,`payModeName`,`count`,`money`,`handsMoney`,`cardCount`,`cardMoney`,`sumMoney`,`isInvalid`,`posNo`,`deviceName`,`deviceMac`,`deviceIp`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_handover_detail + + `id`,`tenantId` + ,`clientId` + ,`storeId` + ,`ticketId` + ,`busNo` + ,`payModeNo` + ,`payModeName` + ,`count` + ,`money` + ,`handsMoney` + ,`cardCount` + ,`cardMoney` + ,`sumMoney` + ,`isInvalid` + ,`posNo` + ,`deviceName` + ,`deviceMac` + ,`deviceIp` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{storeId} + ,#{ticketId} + ,#{busNo} + ,#{payModeNo} + ,#{payModeName} + ,#{count} + ,#{money} + ,#{handsMoney} + ,#{cardCount} + ,#{cardMoney} + ,#{sumMoney} + ,#{isInvalid} + ,#{posNo} + ,#{deviceName} + ,#{deviceMac} + ,#{deviceIp} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_handover_detail + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`storeId` = #{storeId} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`payModeNo` = #{payModeNo} + ,`payModeName` = #{payModeName} + ,`count` = #{count} + ,`money` = #{money} + ,`handsMoney` = #{handsMoney} + ,`cardCount` = #{cardCount} + ,`cardMoney` = #{cardMoney} + ,`sumMoney` = #{sumMoney} + ,`isInvalid` = #{isInvalid} + ,`posNo` = #{posNo} + ,`deviceName` = #{deviceName} + ,`deviceMac` = #{deviceMac} + ,`deviceIp` = #{deviceIp} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_handover_detail + where `id` = #{id} + + + + delete from cy_store_handover_detail + ${condition} + + + + delete from cy_store_handover_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreHandoverDetailPartMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreHandoverDetailPartMapper.xml new file mode 100644 index 0000000..2c8e0a8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreHandoverDetailPartMapper.xml @@ -0,0 +1,146 @@ + + + + + + `id`,`clientId`,`tenantId`,`storeId`,`ticketId`,`busNo`,`specName`,`preCount`,`count`,`handsCount`,`difCount`,`isInvalid`,`posNo`,`deviceName`,`deviceMac`,`deviceIp`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_handover_detail_part + + `id`,`tenantId` + ,`clientId` + ,`storeId` + ,`ticketId` + ,`busNo` + ,`specName` + ,`preCount` + ,`count` + ,`handsCount` + ,`difCount` + ,`isInvalid` + ,`posNo` + ,`deviceName` + ,`deviceMac` + ,`deviceIp` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{storeId} + ,#{ticketId} + ,#{busNo} + ,#{specName} + ,#{preCount} + ,#{count} + ,#{handsCount} + ,#{difCount} + ,#{isInvalid} + ,#{posNo} + ,#{deviceName} + ,#{deviceMac} + ,#{deviceIp} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_handover_detail_part + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`storeId` = #{storeId} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`specName` = #{specName} + ,`preCount` = #{preCount} + ,`count` = #{count} + ,`handsCount` = #{handsCount} + ,`difCount` = #{difCount} + ,`isInvalid` = #{isInvalid} + ,`posNo` = #{posNo} + ,`deviceName` = #{deviceName} + ,`deviceMac` = #{deviceMac} + ,`deviceIp` = #{deviceIp} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_handover_detail_part + where `id` = #{id} + + + + delete from cy_store_handover_detail_part + ${condition} + + + + delete from cy_store_handover_detail_part + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreHandoverDetailPayMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreHandoverDetailPayMapper.xml new file mode 100644 index 0000000..bc25831 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreHandoverDetailPayMapper.xml @@ -0,0 +1,149 @@ + + + + + + `id`,`clientId`,`tenantId`,`storeId`,`ticketId`,`busNo`,`payModeNo`,`payModeName`,`busMode`,`money`,`count`,`busType`,`isInvalid`,`posNo`,`deviceName`,`deviceMac`,`deviceIp`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_handover_detail_pay + + `id`,`tenantId` + ,`clientId` + ,`storeId` + ,`ticketId` + ,`busNo` + ,`payModeNo` + ,`payModeName` + ,`busMode` + ,`money` + ,`count` + ,`busType` + ,`isInvalid` + ,`posNo` + ,`deviceName` + ,`deviceMac` + ,`deviceIp` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{storeId} + ,#{ticketId} + ,#{busNo} + ,#{payModeNo} + ,#{payModeName} + ,#{busMode} + ,#{money} + ,#{count} + ,#{busType} + ,#{isInvalid} + ,#{posNo} + ,#{deviceName} + ,#{deviceMac} + ,#{deviceIp} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_handover_detail_pay + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`storeId` = #{storeId} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`payModeNo` = #{payModeNo} + ,`payModeName` = #{payModeName} + ,`busMode` = #{busMode} + ,`money` = #{money} + ,`count` = #{count} + ,`busType` = #{busType} + ,`isInvalid` = #{isInvalid} + ,`posNo` = #{posNo} + ,`deviceName` = #{deviceName} + ,`deviceMac` = #{deviceMac} + ,`deviceIp` = #{deviceIp} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_handover_detail_pay + where `id` = #{id} + + + + delete from cy_store_handover_detail_pay + ${condition} + + + + delete from cy_store_handover_detail_pay + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreHandoverMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreHandoverMapper.xml new file mode 100644 index 0000000..e08333b --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreHandoverMapper.xml @@ -0,0 +1,233 @@ + + + + + + `id`,`clientId`,`tenantId`,`no`,`storeId`,`storeNo`,`storeName`,`workId`,`workNo`,`workName`,`shiftNo`,`shiftName`,`datetimeBegin`,`datetimeEnd`,`datetimeShift`,`acceptWorkerNo`,`posNo`,`memo`,`peopleCount`,`dealTicketCount`,`dealAmount`,`backTicketCount`,`backAmount`,`ticketCount`,`amount`,`discountMoney`,`couponDiscountMoney`,`otherDiscountMoney`,`receivable`,`maling`,`paid`,`cardCount`,`cardRealMoney`,`cardRefundCount`,`cardRefundMoney`,`sumRealMoney`,`inmoney`,`outmoney`,`distributionFee`,`shiftAmount`,`imprest`,`deviceName`,`deviceMac`,`deviceIp`,`isInvalid`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_handover + + `id`,`tenantId` + ,`clientId` + ,`no` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`workId` + ,`workNo` + ,`workName` + ,`shiftNo` + ,`shiftName` + ,`datetimeBegin` + ,`datetimeEnd` + ,`datetimeShift` + ,`acceptWorkerNo` + ,`posNo` + ,`memo` + ,`peopleCount` + ,`dealTicketCount` + ,`dealAmount` + ,`backTicketCount` + ,`backAmount` + ,`ticketCount` + ,`amount` + ,`discountMoney` + ,`couponDiscountMoney` + ,`otherDiscountMoney` + ,`receivable` + ,`maling` + ,`paid` + ,`cardCount` + ,`cardRealMoney` + ,`cardRefundCount` + ,`cardRefundMoney` + ,`sumRealMoney` + ,`inmoney` + ,`outmoney` + ,`distributionFee` + ,`shiftAmount` + ,`imprest` + ,`deviceName` + ,`deviceMac` + ,`deviceIp` + ,`isInvalid` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{no} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{workId} + ,#{workNo} + ,#{workName} + ,#{shiftNo} + ,#{shiftName} + ,#{datetimeBegin} + ,#{datetimeEnd} + ,#{datetimeShift} + ,#{acceptWorkerNo} + ,#{posNo} + ,#{memo} + ,#{peopleCount} + ,#{dealTicketCount} + ,#{dealAmount} + ,#{backTicketCount} + ,#{backAmount} + ,#{ticketCount} + ,#{amount} + ,#{discountMoney} + ,#{couponDiscountMoney} + ,#{otherDiscountMoney} + ,#{receivable} + ,#{maling} + ,#{paid} + ,#{cardCount} + ,#{cardRealMoney} + ,#{cardRefundCount} + ,#{cardRefundMoney} + ,#{sumRealMoney} + ,#{inmoney} + ,#{outmoney} + ,#{distributionFee} + ,#{shiftAmount} + ,#{imprest} + ,#{deviceName} + ,#{deviceMac} + ,#{deviceIp} + ,#{isInvalid} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_handover + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`no` = #{no} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`workId` = #{workId} + ,`workNo` = #{workNo} + ,`workName` = #{workName} + ,`shiftNo` = #{shiftNo} + ,`shiftName` = #{shiftName} + ,`datetimeBegin` = #{datetimeBegin} + ,`datetimeEnd` = #{datetimeEnd} + ,`datetimeShift` = #{datetimeShift} + ,`acceptWorkerNo` = #{acceptWorkerNo} + ,`posNo` = #{posNo} + ,`memo` = #{memo} + ,`peopleCount` = #{peopleCount} + ,`dealTicketCount` = #{dealTicketCount} + ,`dealAmount` = #{dealAmount} + ,`backTicketCount` = #{backTicketCount} + ,`backAmount` = #{backAmount} + ,`ticketCount` = #{ticketCount} + ,`amount` = #{amount} + ,`discountMoney` = #{discountMoney} + ,`couponDiscountMoney` = #{couponDiscountMoney} + ,`otherDiscountMoney` = #{otherDiscountMoney} + ,`receivable` = #{receivable} + ,`maling` = #{maling} + ,`paid` = #{paid} + ,`cardCount` = #{cardCount} + ,`cardRealMoney` = #{cardRealMoney} + ,`cardRefundCount` = #{cardRefundCount} + ,`cardRefundMoney` = #{cardRefundMoney} + ,`sumRealMoney` = #{sumRealMoney} + ,`inmoney` = #{inmoney} + ,`outmoney` = #{outmoney} + ,`distributionFee` = #{distributionFee} + ,`shiftAmount` = #{shiftAmount} + ,`imprest` = #{imprest} + ,`deviceName` = #{deviceName} + ,`deviceMac` = #{deviceMac} + ,`deviceIp` = #{deviceIp} + ,`isInvalid` = #{isInvalid} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_handover + where `id` = #{id} + + + + delete from cy_store_handover + ${condition} + + + + delete from cy_store_handover + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreLoginLogMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreLoginLogMapper.xml new file mode 100644 index 0000000..358abcf --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreLoginLogMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`workerNo`,`storeNo`,`storeName`,`loginTime`,`type`,`posNo`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_login_log + + `id`,`tenantId` + ,`workerNo` + ,`storeNo` + ,`storeName` + ,`loginTime` + ,`type` + ,`posNo` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{workerNo} + ,#{storeNo} + ,#{storeName} + ,#{loginTime} + ,#{type} + ,#{posNo} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_login_log + + `tenantId` = #{tenantId} + ,`workerNo` = #{workerNo} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`loginTime` = #{loginTime} + ,`type` = #{type} + ,`posNo` = #{posNo} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_login_log + where `id` = #{id} + + + + delete from cy_store_login_log + ${condition} + + + + delete from cy_store_login_log + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreMapper.xml new file mode 100644 index 0000000..02128b6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreMapper.xml @@ -0,0 +1,236 @@ + + + + + + `id`,`tenantId`,`areaId`,`areaPath`,`typeId`,`no`,`name`,`manager`,`tel`,`mobile`,`orderTel`,`printName`,`address`,`mail`,`square`,`deskAmount`,`seatAmount`,`registerFlag`,`stapleFlag`,`enabled`,`deleteFlag`,`width`,`height`,`groupName`,`storageFileName`,`authFlag`,`latitude`,`longitude`,`noType`,`maxOffLine`,`productFlag`,`thirdNo`,`ext1`,`ext2`,`groupId`,`groupNo`,`deductionRate`,`status`,`singleFlag`,`description`,`logoUrl`,`defaultFlag`,`storeTaxRateFlag`,`saleTax`,`lyRate`,`storeRate`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store + + `id`,`tenantId` + ,`areaId` + ,`areaPath` + ,`typeId` + ,`no` + ,`name` + ,`manager` + ,`tel` + ,`mobile` + ,`orderTel` + ,`printName` + ,`address` + ,`mail` + ,`square` + ,`deskAmount` + ,`seatAmount` + ,`registerFlag` + ,`stapleFlag` + ,`enabled` + ,`deleteFlag` + ,`width` + ,`height` + ,`groupName` + ,`storageFileName` + ,`authFlag` + ,`latitude` + ,`longitude` + ,`noType` + ,`maxOffLine` + ,`productFlag` + ,`thirdNo` + ,`ext1` + ,`ext2` + ,`groupId` + ,`groupNo` + ,`deductionRate` + ,`status` + ,`singleFlag` + ,`description` + ,`logoUrl` + ,`defaultFlag` + ,`storeTaxRateFlag` + ,`saleTax` + ,`lyRate` + ,`storeRate` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{areaId} + ,#{areaPath} + ,#{typeId} + ,#{no} + ,#{name} + ,#{manager} + ,#{tel} + ,#{mobile} + ,#{orderTel} + ,#{printName} + ,#{address} + ,#{mail} + ,#{square} + ,#{deskAmount} + ,#{seatAmount} + ,#{registerFlag} + ,#{stapleFlag} + ,#{enabled} + ,#{deleteFlag} + ,#{width} + ,#{height} + ,#{groupName} + ,#{storageFileName} + ,#{authFlag} + ,#{latitude} + ,#{longitude} + ,#{noType} + ,#{maxOffLine} + ,#{productFlag} + ,#{thirdNo} + ,#{ext1} + ,#{ext2} + ,#{groupId} + ,#{groupNo} + ,#{deductionRate} + ,#{status} + ,#{singleFlag} + ,#{description} + ,#{logoUrl} + ,#{defaultFlag} + ,#{storeTaxRateFlag} + ,#{saleTax} + ,#{lyRate} + ,#{storeRate} + ,#{createDate} + ,#{createUser} + + + + + update cy_store + + `tenantId` = #{tenantId} + ,`areaId` = #{areaId} + ,`areaPath` = #{areaPath} + ,`typeId` = #{typeId} + ,`no` = #{no} + ,`name` = #{name} + ,`manager` = #{manager} + ,`tel` = #{tel} + ,`mobile` = #{mobile} + ,`orderTel` = #{orderTel} + ,`printName` = #{printName} + ,`address` = #{address} + ,`mail` = #{mail} + ,`square` = #{square} + ,`deskAmount` = #{deskAmount} + ,`seatAmount` = #{seatAmount} + ,`registerFlag` = #{registerFlag} + ,`stapleFlag` = #{stapleFlag} + ,`enabled` = #{enabled} + ,`deleteFlag` = #{deleteFlag} + ,`width` = #{width} + ,`height` = #{height} + ,`groupName` = #{groupName} + ,`storageFileName` = #{storageFileName} + ,`authFlag` = #{authFlag} + ,`latitude` = #{latitude} + ,`longitude` = #{longitude} + ,`noType` = #{noType} + ,`maxOffLine` = #{maxOffLine} + ,`productFlag` = #{productFlag} + ,`thirdNo` = #{thirdNo} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`groupId` = #{groupId} + ,`groupNo` = #{groupNo} + ,`deductionRate` = #{deductionRate} + ,`status` = #{status} + ,`singleFlag` = #{singleFlag} + ,`description` = #{description} + ,`logoUrl` = #{logoUrl} + ,`defaultFlag` = #{defaultFlag} + ,`storeTaxRateFlag` = #{storeTaxRateFlag} + ,`saleTax` = #{saleTax} + ,`lyRate` = #{lyRate} + ,`storeRate` = #{storeRate} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store + where `id` = #{id} + + + + delete from cy_store + ${condition} + + + + delete from cy_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreOperationLogMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreOperationLogMapper.xml new file mode 100644 index 0000000..a5c5b70 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreOperationLogMapper.xml @@ -0,0 +1,155 @@ + + + + + + `id`,`tenantId`,`storeId`,`storeNo`,`storeName`,`workerNo`,`shiftNo`,`shiftName`,`deviceName`,`deviceMac`,`deviceIp`,`posNo`,`operationTime`,`type`,`typeTxt`,`memo`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_store_operation_log + + `id`,`tenantId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`workerNo` + ,`shiftNo` + ,`shiftName` + ,`deviceName` + ,`deviceMac` + ,`deviceIp` + ,`posNo` + ,`operationTime` + ,`type` + ,`typeTxt` + ,`memo` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{workerNo} + ,#{shiftNo} + ,#{shiftName} + ,#{deviceName} + ,#{deviceMac} + ,#{deviceIp} + ,#{posNo} + ,#{operationTime} + ,#{type} + ,#{typeTxt} + ,#{memo} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_store_operation_log + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`workerNo` = #{workerNo} + ,`shiftNo` = #{shiftNo} + ,`shiftName` = #{shiftName} + ,`deviceName` = #{deviceName} + ,`deviceMac` = #{deviceMac} + ,`deviceIp` = #{deviceIp} + ,`posNo` = #{posNo} + ,`operationTime` = #{operationTime} + ,`type` = #{type} + ,`typeTxt` = #{typeTxt} + ,`memo` = #{memo} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_store_operation_log + where `id` = #{id} + + + + delete from cy_store_operation_log + ${condition} + + + + delete from cy_store_operation_log + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreOrderProductDaysummaryMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreOrderProductDaysummaryMapper.xml new file mode 100644 index 0000000..75cbf90 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreOrderProductDaysummaryMapper.xml @@ -0,0 +1,227 @@ + + + + + + `id`,`tenantId`,`summaryDay`,`storeId`,`storeNo`,`storeName`,`busMode`,`productId`,`productNo`,`productName`,`productUnitId`,`productUnitName`,`seriesId`,`seriesName`,`typePath`,`typeId`,`typeName`,`specId`,`specName`,`count`,`rcount`,`price`,`priceOrg`,`discountPrice`,`isSuit`,`workerNo`,`posNo`,`amount`,`discountTotal`,`receivable`,`addPriceTotal`,`discountAddTotal`,`amountAddTotal`,`amountTotal`,`receivableTotal`,`weeker`,`estimatedCost`,`estimatedProfitAmount`,`totalCost`,`profitAmount`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_order_product_daysummary + + `id`,`tenantId` + ,`summaryDay` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`busMode` + ,`productId` + ,`productNo` + ,`productName` + ,`productUnitId` + ,`productUnitName` + ,`seriesId` + ,`seriesName` + ,`typePath` + ,`typeId` + ,`typeName` + ,`specId` + ,`specName` + ,`count` + ,`rcount` + ,`price` + ,`priceOrg` + ,`discountPrice` + ,`isSuit` + ,`workerNo` + ,`posNo` + ,`amount` + ,`discountTotal` + ,`receivable` + ,`addPriceTotal` + ,`discountAddTotal` + ,`amountAddTotal` + ,`amountTotal` + ,`receivableTotal` + ,`weeker` + ,`estimatedCost` + ,`estimatedProfitAmount` + ,`totalCost` + ,`profitAmount` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{summaryDay} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{busMode} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{productUnitId} + ,#{productUnitName} + ,#{seriesId} + ,#{seriesName} + ,#{typePath} + ,#{typeId} + ,#{typeName} + ,#{specId} + ,#{specName} + ,#{count} + ,#{rcount} + ,#{price} + ,#{priceOrg} + ,#{discountPrice} + ,#{isSuit} + ,#{workerNo} + ,#{posNo} + ,#{amount} + ,#{discountTotal} + ,#{receivable} + ,#{addPriceTotal} + ,#{discountAddTotal} + ,#{amountAddTotal} + ,#{amountTotal} + ,#{receivableTotal} + ,#{weeker} + ,#{estimatedCost} + ,#{estimatedProfitAmount} + ,#{totalCost} + ,#{profitAmount} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_order_product_daysummary + + `tenantId` = #{tenantId} + ,`summaryDay` = #{summaryDay} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`busMode` = #{busMode} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`productUnitId` = #{productUnitId} + ,`productUnitName` = #{productUnitName} + ,`seriesId` = #{seriesId} + ,`seriesName` = #{seriesName} + ,`typePath` = #{typePath} + ,`typeId` = #{typeId} + ,`typeName` = #{typeName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`count` = #{count} + ,`rcount` = #{rcount} + ,`price` = #{price} + ,`priceOrg` = #{priceOrg} + ,`discountPrice` = #{discountPrice} + ,`isSuit` = #{isSuit} + ,`workerNo` = #{workerNo} + ,`posNo` = #{posNo} + ,`amount` = #{amount} + ,`discountTotal` = #{discountTotal} + ,`receivable` = #{receivable} + ,`addPriceTotal` = #{addPriceTotal} + ,`discountAddTotal` = #{discountAddTotal} + ,`amountAddTotal` = #{amountAddTotal} + ,`amountTotal` = #{amountTotal} + ,`receivableTotal` = #{receivableTotal} + ,`weeker` = #{weeker} + ,`estimatedCost` = #{estimatedCost} + ,`estimatedProfitAmount` = #{estimatedProfitAmount} + ,`totalCost` = #{totalCost} + ,`profitAmount` = #{profitAmount} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_order_product_daysummary + where `id` = #{id} + + + + delete from cy_store_order_product_daysummary + ${condition} + + + + delete from cy_store_order_product_daysummary + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreOrderProductInfoDaysummaryMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreOrderProductInfoDaysummaryMapper.xml new file mode 100644 index 0000000..252e852 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreOrderProductInfoDaysummaryMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`summaryDay`,`storeId`,`type`,`discountMoney`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_order_product_info_daysummary + + `id`,`tenantId` + ,`summaryDay` + ,`storeId` + ,`type` + ,`discountMoney` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{summaryDay} + ,#{storeId} + ,#{type} + ,#{discountMoney} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_order_product_info_daysummary + + `tenantId` = #{tenantId} + ,`summaryDay` = #{summaryDay} + ,`storeId` = #{storeId} + ,`type` = #{type} + ,`discountMoney` = #{discountMoney} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_order_product_info_daysummary + where `id` = #{id} + + + + delete from cy_store_order_product_info_daysummary + ${condition} + + + + delete from cy_store_order_product_info_daysummary + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreOrderProductInfoMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreOrderProductInfoMapper.xml new file mode 100644 index 0000000..0a6aac0 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreOrderProductInfoMapper.xml @@ -0,0 +1,149 @@ + + + + + + `id`,`clientId`,`orderItemId`,`tenantId`,`storeId`,`ticketId`,`busNo`,`type`,`info`,`discountMoney`,`isInvalid`,`saleDate`,`tableNo`,`tableName`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_order_product_info + + `id`,`tenantId` + ,`clientId` + ,`orderItemId` + ,`storeId` + ,`ticketId` + ,`busNo` + ,`type` + ,`info` + ,`discountMoney` + ,`isInvalid` + ,`saleDate` + ,`tableNo` + ,`tableName` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{orderItemId} + ,#{storeId} + ,#{ticketId} + ,#{busNo} + ,#{type} + ,#{info} + ,#{discountMoney} + ,#{isInvalid} + ,#{saleDate} + ,#{tableNo} + ,#{tableName} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_order_product_info + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`orderItemId` = #{orderItemId} + ,`storeId` = #{storeId} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`type` = #{type} + ,`info` = #{info} + ,`discountMoney` = #{discountMoney} + ,`isInvalid` = #{isInvalid} + ,`saleDate` = #{saleDate} + ,`tableNo` = #{tableNo} + ,`tableName` = #{tableName} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_order_product_info + where `id` = #{id} + + + + delete from cy_store_order_product_info + ${condition} + + + + delete from cy_store_order_product_info + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreOrderProductMakeDaysummaryMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreOrderProductMakeDaysummaryMapper.xml new file mode 100644 index 0000000..8e7d6f6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreOrderProductMakeDaysummaryMapper.xml @@ -0,0 +1,149 @@ + + + + + + `id`,`tenantId`,`summaryDay`,`storeId`,`storeNo`,`storeName`,`makeId`,`makeName`,`addPrice`,`discountPrice`,`count`,`rcount`,`addTotal`,`discountAddTotal`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_order_product_make_daysummary + + `id`,`tenantId` + ,`summaryDay` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`makeId` + ,`makeName` + ,`addPrice` + ,`discountPrice` + ,`count` + ,`rcount` + ,`addTotal` + ,`discountAddTotal` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{summaryDay} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{makeId} + ,#{makeName} + ,#{addPrice} + ,#{discountPrice} + ,#{count} + ,#{rcount} + ,#{addTotal} + ,#{discountAddTotal} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_order_product_make_daysummary + + `tenantId` = #{tenantId} + ,`summaryDay` = #{summaryDay} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`makeId` = #{makeId} + ,`makeName` = #{makeName} + ,`addPrice` = #{addPrice} + ,`discountPrice` = #{discountPrice} + ,`count` = #{count} + ,`rcount` = #{rcount} + ,`addTotal` = #{addTotal} + ,`discountAddTotal` = #{discountAddTotal} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_order_product_make_daysummary + where `id` = #{id} + + + + delete from cy_store_order_product_make_daysummary + ${condition} + + + + delete from cy_store_order_product_make_daysummary + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreOrderProductMakeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreOrderProductMakeMapper.xml new file mode 100644 index 0000000..f3ea96f --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreOrderProductMakeMapper.xml @@ -0,0 +1,179 @@ + + + + + + `id`,`clientId`,`tenantId`,`orderItemId`,`storeId`,`storeNo`,`storeName`,`ticketId`,`busNo`,`makeId`,`makeName`,`addPrice`,`discountPrice`,`count`,`rcount`,`addTotal`,`discountAddTotal`,`discount`,`qtyFlag`,`hand`,`isInvalid`,`saleDate`,`tableNo`,`tableName`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_order_product_make + + `id`,`tenantId` + ,`clientId` + ,`orderItemId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`ticketId` + ,`busNo` + ,`makeId` + ,`makeName` + ,`addPrice` + ,`discountPrice` + ,`count` + ,`rcount` + ,`addTotal` + ,`discountAddTotal` + ,`discount` + ,`qtyFlag` + ,`hand` + ,`isInvalid` + ,`saleDate` + ,`tableNo` + ,`tableName` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{orderItemId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{ticketId} + ,#{busNo} + ,#{makeId} + ,#{makeName} + ,#{addPrice} + ,#{discountPrice} + ,#{count} + ,#{rcount} + ,#{addTotal} + ,#{discountAddTotal} + ,#{discount} + ,#{qtyFlag} + ,#{hand} + ,#{isInvalid} + ,#{saleDate} + ,#{tableNo} + ,#{tableName} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_order_product_make + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`orderItemId` = #{orderItemId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`makeId` = #{makeId} + ,`makeName` = #{makeName} + ,`addPrice` = #{addPrice} + ,`discountPrice` = #{discountPrice} + ,`count` = #{count} + ,`rcount` = #{rcount} + ,`addTotal` = #{addTotal} + ,`discountAddTotal` = #{discountAddTotal} + ,`discount` = #{discount} + ,`qtyFlag` = #{qtyFlag} + ,`hand` = #{hand} + ,`isInvalid` = #{isInvalid} + ,`saleDate` = #{saleDate} + ,`tableNo` = #{tableNo} + ,`tableName` = #{tableName} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_order_product_make + where `id` = #{id} + + + + delete from cy_store_order_product_make + ${condition} + + + + delete from cy_store_order_product_make + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreOrderProductMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreOrderProductMapper.xml new file mode 100644 index 0000000..d421bbf --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreOrderProductMapper.xml @@ -0,0 +1,287 @@ + + + + + + `id`,`clientId`,`parentId`,`tenantId`,`storeId`,`storeNo`,`storeName`,`ticketId`,`busNo`,`busMode`,`tableNo`,`productId`,`productNo`,`productName`,`productUnitId`,`productUnitName`,`seriesId`,`seriesName`,`typePath`,`typeId`,`typeName`,`specId`,`specName`,`count`,`rcount`,`price`,`priceOrg`,`discountPrice`,`isSuit`,`suitId`,`workerNo`,`saleDate`,`deviceName`,`deviceMac`,`deviceIp`,`posNo`,`amount`,`discount`,`discountTotal`,`receivable`,`addPriceTotal`,`discountAddTotal`,`amountAddTotal`,`amountTotal`,`receivableTotal`,`isMember`,`memberNo`,`isInvalid`,`lineNo`,`seqNo`,`weather`,`weeker`,`isStockDeal`,`estimatedCost`,`estimatedProfitAmount`,`estimatedProfitMargin`,`totalCost`,`profitAmount`,`profitMargin`,`tableName`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_order_product + + `id`,`tenantId` + ,`clientId` + ,`parentId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`ticketId` + ,`busNo` + ,`busMode` + ,`tableNo` + ,`productId` + ,`productNo` + ,`productName` + ,`productUnitId` + ,`productUnitName` + ,`seriesId` + ,`seriesName` + ,`typePath` + ,`typeId` + ,`typeName` + ,`specId` + ,`specName` + ,`count` + ,`rcount` + ,`price` + ,`priceOrg` + ,`discountPrice` + ,`isSuit` + ,`suitId` + ,`workerNo` + ,`saleDate` + ,`deviceName` + ,`deviceMac` + ,`deviceIp` + ,`posNo` + ,`amount` + ,`discount` + ,`discountTotal` + ,`receivable` + ,`addPriceTotal` + ,`discountAddTotal` + ,`amountAddTotal` + ,`amountTotal` + ,`receivableTotal` + ,`isMember` + ,`memberNo` + ,`isInvalid` + ,`lineNo` + ,`seqNo` + ,`weather` + ,`weeker` + ,`isStockDeal` + ,`estimatedCost` + ,`estimatedProfitAmount` + ,`estimatedProfitMargin` + ,`totalCost` + ,`profitAmount` + ,`profitMargin` + ,`tableName` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{parentId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{ticketId} + ,#{busNo} + ,#{busMode} + ,#{tableNo} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{productUnitId} + ,#{productUnitName} + ,#{seriesId} + ,#{seriesName} + ,#{typePath} + ,#{typeId} + ,#{typeName} + ,#{specId} + ,#{specName} + ,#{count} + ,#{rcount} + ,#{price} + ,#{priceOrg} + ,#{discountPrice} + ,#{isSuit} + ,#{suitId} + ,#{workerNo} + ,#{saleDate} + ,#{deviceName} + ,#{deviceMac} + ,#{deviceIp} + ,#{posNo} + ,#{amount} + ,#{discount} + ,#{discountTotal} + ,#{receivable} + ,#{addPriceTotal} + ,#{discountAddTotal} + ,#{amountAddTotal} + ,#{amountTotal} + ,#{receivableTotal} + ,#{isMember} + ,#{memberNo} + ,#{isInvalid} + ,#{lineNo} + ,#{seqNo} + ,#{weather} + ,#{weeker} + ,#{isStockDeal} + ,#{estimatedCost} + ,#{estimatedProfitAmount} + ,#{estimatedProfitMargin} + ,#{totalCost} + ,#{profitAmount} + ,#{profitMargin} + ,#{tableName} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_order_product + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`parentId` = #{parentId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`busMode` = #{busMode} + ,`tableNo` = #{tableNo} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`productUnitId` = #{productUnitId} + ,`productUnitName` = #{productUnitName} + ,`seriesId` = #{seriesId} + ,`seriesName` = #{seriesName} + ,`typePath` = #{typePath} + ,`typeId` = #{typeId} + ,`typeName` = #{typeName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`count` = #{count} + ,`rcount` = #{rcount} + ,`price` = #{price} + ,`priceOrg` = #{priceOrg} + ,`discountPrice` = #{discountPrice} + ,`isSuit` = #{isSuit} + ,`suitId` = #{suitId} + ,`workerNo` = #{workerNo} + ,`saleDate` = #{saleDate} + ,`deviceName` = #{deviceName} + ,`deviceMac` = #{deviceMac} + ,`deviceIp` = #{deviceIp} + ,`posNo` = #{posNo} + ,`amount` = #{amount} + ,`discount` = #{discount} + ,`discountTotal` = #{discountTotal} + ,`receivable` = #{receivable} + ,`addPriceTotal` = #{addPriceTotal} + ,`discountAddTotal` = #{discountAddTotal} + ,`amountAddTotal` = #{amountAddTotal} + ,`amountTotal` = #{amountTotal} + ,`receivableTotal` = #{receivableTotal} + ,`isMember` = #{isMember} + ,`memberNo` = #{memberNo} + ,`isInvalid` = #{isInvalid} + ,`lineNo` = #{lineNo} + ,`seqNo` = #{seqNo} + ,`weather` = #{weather} + ,`weeker` = #{weeker} + ,`isStockDeal` = #{isStockDeal} + ,`estimatedCost` = #{estimatedCost} + ,`estimatedProfitAmount` = #{estimatedProfitAmount} + ,`estimatedProfitMargin` = #{estimatedProfitMargin} + ,`totalCost` = #{totalCost} + ,`profitAmount` = #{profitAmount} + ,`profitMargin` = #{profitMargin} + ,`tableName` = #{tableName} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_order_product + where `id` = #{id} + + + + delete from cy_store_order_product + ${condition} + + + + delete from cy_store_order_product + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StorePayDaysummaryMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StorePayDaysummaryMapper.xml new file mode 100644 index 0000000..1171c2c --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StorePayDaysummaryMapper.xml @@ -0,0 +1,167 @@ + + + + + + `id`,`tenantId`,`summaryDay`,`storeId`,`storeNo`,`storeName`,`busMode`,`payTypeNo`,`payType`,`paid`,`rchange`,`money`,`overAmount`,`workNo`,`posNo`,`incomeFlag`,`otherRateType`,`otherRateValue`,`otherRate`,`payChannel`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_pay_daysummary + + `id`,`tenantId` + ,`summaryDay` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`busMode` + ,`payTypeNo` + ,`payType` + ,`paid` + ,`rchange` + ,`money` + ,`overAmount` + ,`workNo` + ,`posNo` + ,`incomeFlag` + ,`otherRateType` + ,`otherRateValue` + ,`otherRate` + ,`payChannel` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{summaryDay} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{busMode} + ,#{payTypeNo} + ,#{payType} + ,#{paid} + ,#{rchange} + ,#{money} + ,#{overAmount} + ,#{workNo} + ,#{posNo} + ,#{incomeFlag} + ,#{otherRateType} + ,#{otherRateValue} + ,#{otherRate} + ,#{payChannel} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_pay_daysummary + + `tenantId` = #{tenantId} + ,`summaryDay` = #{summaryDay} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`busMode` = #{busMode} + ,`payTypeNo` = #{payTypeNo} + ,`payType` = #{payType} + ,`paid` = #{paid} + ,`rchange` = #{rchange} + ,`money` = #{money} + ,`overAmount` = #{overAmount} + ,`workNo` = #{workNo} + ,`posNo` = #{posNo} + ,`incomeFlag` = #{incomeFlag} + ,`otherRateType` = #{otherRateType} + ,`otherRateValue` = #{otherRateValue} + ,`otherRate` = #{otherRate} + ,`payChannel` = #{payChannel} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_pay_daysummary + where `id` = #{id} + + + + delete from cy_store_pay_daysummary + ${condition} + + + + delete from cy_store_pay_daysummary + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StorePayMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StorePayMapper.xml new file mode 100644 index 0000000..5d621ec --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StorePayMapper.xml @@ -0,0 +1,212 @@ + + + + + + `id`,`clientId`,`tenantId`,`storeId`,`storeNo`,`storeName`,`payNo`,`ticketId`,`busNo`,`busMode`,`tableNo`,`payTypeNo`,`payType`,`paid`,`rchange`,`money`,`overAmount`,`workNo`,`deviceName`,`deviceMac`,`deviceIp`,`posNo`,`voucherNo`,`payDate`,`cardno`,`cardYe`,`cardJf`,`incomeFlag`,`otherRateType`,`otherRateValue`,`otherRate`,`payChannel`,`memo`,`isInvalid`,`tableName`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_pay + + `id`,`tenantId` + ,`clientId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`payNo` + ,`ticketId` + ,`busNo` + ,`busMode` + ,`tableNo` + ,`payTypeNo` + ,`payType` + ,`paid` + ,`rchange` + ,`money` + ,`overAmount` + ,`workNo` + ,`deviceName` + ,`deviceMac` + ,`deviceIp` + ,`posNo` + ,`voucherNo` + ,`payDate` + ,`cardno` + ,`cardYe` + ,`cardJf` + ,`incomeFlag` + ,`otherRateType` + ,`otherRateValue` + ,`otherRate` + ,`payChannel` + ,`memo` + ,`isInvalid` + ,`tableName` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{payNo} + ,#{ticketId} + ,#{busNo} + ,#{busMode} + ,#{tableNo} + ,#{payTypeNo} + ,#{payType} + ,#{paid} + ,#{rchange} + ,#{money} + ,#{overAmount} + ,#{workNo} + ,#{deviceName} + ,#{deviceMac} + ,#{deviceIp} + ,#{posNo} + ,#{voucherNo} + ,#{payDate} + ,#{cardno} + ,#{cardYe} + ,#{cardJf} + ,#{incomeFlag} + ,#{otherRateType} + ,#{otherRateValue} + ,#{otherRate} + ,#{payChannel} + ,#{memo} + ,#{isInvalid} + ,#{tableName} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_pay + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`payNo` = #{payNo} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`busMode` = #{busMode} + ,`tableNo` = #{tableNo} + ,`payTypeNo` = #{payTypeNo} + ,`payType` = #{payType} + ,`paid` = #{paid} + ,`rchange` = #{rchange} + ,`money` = #{money} + ,`overAmount` = #{overAmount} + ,`workNo` = #{workNo} + ,`deviceName` = #{deviceName} + ,`deviceMac` = #{deviceMac} + ,`deviceIp` = #{deviceIp} + ,`posNo` = #{posNo} + ,`voucherNo` = #{voucherNo} + ,`payDate` = #{payDate} + ,`cardno` = #{cardno} + ,`cardYe` = #{cardYe} + ,`cardJf` = #{cardJf} + ,`incomeFlag` = #{incomeFlag} + ,`otherRateType` = #{otherRateType} + ,`otherRateValue` = #{otherRateValue} + ,`otherRate` = #{otherRate} + ,`payChannel` = #{payChannel} + ,`memo` = #{memo} + ,`isInvalid` = #{isInvalid} + ,`tableName` = #{tableName} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_pay + where `id` = #{id} + + + + delete from cy_store_pay + ${condition} + + + + delete from cy_store_pay + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreProductMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreProductMapper.xml new file mode 100644 index 0000000..9e2592d --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreProductMapper.xml @@ -0,0 +1,167 @@ + + + + + + `id`,`tenantId`,`storeId`,`productId`,`specId`,`productUnitId`,`typeId`,`typePath`,`price`,`minPrice`,`memberPrice`,`otherPrice`,`costPrice`,`purchasePrice`,`dispatchPrice`,`thUseLevel`,`realThUseLevel`,`cost`,`wprice`,`wmemberPrice`,`totalStock`,`saleStock`,`stock`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_product + + `id`,`tenantId` + ,`storeId` + ,`productId` + ,`specId` + ,`productUnitId` + ,`typeId` + ,`typePath` + ,`price` + ,`minPrice` + ,`memberPrice` + ,`otherPrice` + ,`costPrice` + ,`purchasePrice` + ,`dispatchPrice` + ,`thUseLevel` + ,`realThUseLevel` + ,`cost` + ,`wprice` + ,`wmemberPrice` + ,`totalStock` + ,`saleStock` + ,`stock` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{storeId} + ,#{productId} + ,#{specId} + ,#{productUnitId} + ,#{typeId} + ,#{typePath} + ,#{price} + ,#{minPrice} + ,#{memberPrice} + ,#{otherPrice} + ,#{costPrice} + ,#{purchasePrice} + ,#{dispatchPrice} + ,#{thUseLevel} + ,#{realThUseLevel} + ,#{cost} + ,#{wprice} + ,#{wmemberPrice} + ,#{totalStock} + ,#{saleStock} + ,#{stock} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_product + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`productId` = #{productId} + ,`specId` = #{specId} + ,`productUnitId` = #{productUnitId} + ,`typeId` = #{typeId} + ,`typePath` = #{typePath} + ,`price` = #{price} + ,`minPrice` = #{minPrice} + ,`memberPrice` = #{memberPrice} + ,`otherPrice` = #{otherPrice} + ,`costPrice` = #{costPrice} + ,`purchasePrice` = #{purchasePrice} + ,`dispatchPrice` = #{dispatchPrice} + ,`thUseLevel` = #{thUseLevel} + ,`realThUseLevel` = #{realThUseLevel} + ,`cost` = #{cost} + ,`wprice` = #{wprice} + ,`wmemberPrice` = #{wmemberPrice} + ,`totalStock` = #{totalStock} + ,`saleStock` = #{saleStock} + ,`stock` = #{stock} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_product + where `id` = #{id} + + + + delete from cy_store_product + ${condition} + + + + delete from cy_store_product + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreProductSaleStockMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreProductSaleStockMapper.xml new file mode 100644 index 0000000..f507102 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreProductSaleStockMapper.xml @@ -0,0 +1,167 @@ + + + + + + `id`,`tenantId`,`seriesId`,`seriesName`,`typePath`,`typeId`,`typeName`,`productId`,`productNo`,`productName`,`specId`,`sepcName`,`productUnitId`,`productUnitName`,`storeId`,`storeNo`,`storeName`,`totalStock`,`saleStock`,`stock`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_product_sale_stock + + `id`,`tenantId` + ,`seriesId` + ,`seriesName` + ,`typePath` + ,`typeId` + ,`typeName` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`sepcName` + ,`productUnitId` + ,`productUnitName` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`totalStock` + ,`saleStock` + ,`stock` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{seriesId} + ,#{seriesName} + ,#{typePath} + ,#{typeId} + ,#{typeName} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{sepcName} + ,#{productUnitId} + ,#{productUnitName} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{totalStock} + ,#{saleStock} + ,#{stock} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_product_sale_stock + + `tenantId` = #{tenantId} + ,`seriesId` = #{seriesId} + ,`seriesName` = #{seriesName} + ,`typePath` = #{typePath} + ,`typeId` = #{typeId} + ,`typeName` = #{typeName} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`sepcName` = #{sepcName} + ,`productUnitId` = #{productUnitId} + ,`productUnitName` = #{productUnitName} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`totalStock` = #{totalStock} + ,`saleStock` = #{saleStock} + ,`stock` = #{stock} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_product_sale_stock + where `id` = #{id} + + + + delete from cy_store_product_sale_stock + ${condition} + + + + delete from cy_store_product_sale_stock + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreStockCheckTemplateDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreStockCheckTemplateDetailMapper.xml new file mode 100644 index 0000000..722d5ef --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreStockCheckTemplateDetailMapper.xml @@ -0,0 +1,131 @@ + + + + + + `id`,`tenantId`,`ticketId`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`stockUnitId`,`stockUnitName`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_store_stock_check_template_detail + + `id`,`tenantId` + ,`ticketId` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`stockUnitId` + ,`stockUnitName` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{stockUnitId} + ,#{stockUnitName} + ,#{createUser} + ,#{createDate} + + + + + update cy_store_stock_check_template_detail + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`stockUnitId` = #{stockUnitId} + ,`stockUnitName` = #{stockUnitName} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_store_stock_check_template_detail + where `id` = #{id} + + + + delete from cy_store_stock_check_template_detail + ${condition} + + + + delete from cy_store_stock_check_template_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreStockCheckTemplateMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreStockCheckTemplateMapper.xml new file mode 100644 index 0000000..a85fe3a --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreStockCheckTemplateMapper.xml @@ -0,0 +1,113 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_store_stock_check_template + + `id`,`tenantId` + ,`no` + ,`name` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_store_stock_check_template + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_store_stock_check_template + where `id` = #{id} + + + + delete from cy_store_stock_check_template + ${condition} + + + + delete from cy_store_stock_check_template + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreStockCheckTemplateStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreStockCheckTemplateStoreMapper.xml new file mode 100644 index 0000000..6c6e0aa --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreStockCheckTemplateStoreMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`storeId`,`ticketId` + + + + + + + + + + + + + + + + + + + + insert into cy_store_stock_check_template_store + + `id`,`tenantId` + ,`storeId` + ,`ticketId` + + + #{id},#{tenantId} + ,#{storeId} + ,#{ticketId} + + + + + update cy_store_stock_check_template_store + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`ticketId` = #{ticketId} + + where `id` = #{id} + + + + delete from cy_store_stock_check_template_store + where `id` = #{id} + + + + delete from cy_store_stock_check_template_store + ${condition} + + + + delete from cy_store_stock_check_template_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreStockCheckTicketDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreStockCheckTicketDetailMapper.xml new file mode 100644 index 0000000..a7084f8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreStockCheckTicketDetailMapper.xml @@ -0,0 +1,161 @@ + + + + + + `id`,`tenantId`,`ticketId`,`storageId`,`storageName`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`stockUnitId`,`stockUnitName`,`sysPrice`,`sysAmount`,`checkAmount`,`differenceAmount`,`sysMoney`,`checkMoney`,`differenceMoney`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_store_stock_check_ticket_detail + + `id`,`tenantId` + ,`ticketId` + ,`storageId` + ,`storageName` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`stockUnitId` + ,`stockUnitName` + ,`sysPrice` + ,`sysAmount` + ,`checkAmount` + ,`differenceAmount` + ,`sysMoney` + ,`checkMoney` + ,`differenceMoney` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{storageId} + ,#{storageName} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{stockUnitId} + ,#{stockUnitName} + ,#{sysPrice} + ,#{sysAmount} + ,#{checkAmount} + ,#{differenceAmount} + ,#{sysMoney} + ,#{checkMoney} + ,#{differenceMoney} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_store_stock_check_ticket_detail + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`storageId` = #{storageId} + ,`storageName` = #{storageName} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`stockUnitId` = #{stockUnitId} + ,`stockUnitName` = #{stockUnitName} + ,`sysPrice` = #{sysPrice} + ,`sysAmount` = #{sysAmount} + ,`checkAmount` = #{checkAmount} + ,`differenceAmount` = #{differenceAmount} + ,`sysMoney` = #{sysMoney} + ,`checkMoney` = #{checkMoney} + ,`differenceMoney` = #{differenceMoney} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_store_stock_check_ticket_detail + where `id` = #{id} + + + + delete from cy_store_stock_check_ticket_detail + ${condition} + + + + delete from cy_store_stock_check_ticket_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreStockCheckTicketLogMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreStockCheckTicketLogMapper.xml new file mode 100644 index 0000000..fdadd6a --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreStockCheckTicketLogMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`type`,`status`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_stock_check_ticket_log + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`type` + ,`status` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{type} + ,#{status} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_stock_check_ticket_log + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`type` = #{type} + ,`status` = #{status} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_stock_check_ticket_log + where `id` = #{id} + + + + delete from cy_store_stock_check_ticket_log + ${condition} + + + + delete from cy_store_stock_check_ticket_log + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreStockCheckTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreStockCheckTicketMapper.xml new file mode 100644 index 0000000..194ef87 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreStockCheckTicketMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`storeId`,`no`,`status`,`description`,`setMan`,`setDate`,`checkMan`,`checkDate`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_store_stock_check_ticket + + `id`,`tenantId` + ,`storeId` + ,`no` + ,`status` + ,`description` + ,`setMan` + ,`setDate` + ,`checkMan` + ,`checkDate` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storeId} + ,#{no} + ,#{status} + ,#{description} + ,#{setMan} + ,#{setDate} + ,#{checkMan} + ,#{checkDate} + ,#{createUser} + ,#{createDate} + + + + + update cy_store_stock_check_ticket + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`no` = #{no} + ,`status` = #{status} + ,`description` = #{description} + ,`setMan` = #{setMan} + ,`setDate` = #{setDate} + ,`checkMan` = #{checkMan} + ,`checkDate` = #{checkDate} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_store_stock_check_ticket + where `id` = #{id} + + + + delete from cy_store_stock_check_ticket + ${condition} + + + + delete from cy_store_stock_check_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreStorageMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreStorageMapper.xml new file mode 100644 index 0000000..f31c4bb --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreStorageMapper.xml @@ -0,0 +1,110 @@ + + + + + + `id`,`tenantId`,`name`,`no`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_store_storage + + `id`,`tenantId` + ,`name` + ,`no` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{name} + ,#{no} + ,#{createUser} + ,#{createDate} + + + + + update cy_store_storage + + `tenantId` = #{tenantId} + ,`name` = #{name} + ,`no` = #{no} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_store_storage + where `id` = #{id} + + + + delete from cy_store_storage + ${condition} + + + + delete from cy_store_storage + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreStorageOutTicketDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreStorageOutTicketDetailMapper.xml new file mode 100644 index 0000000..35ed45f --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreStorageOutTicketDetailMapper.xml @@ -0,0 +1,146 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`stockUnitId`,`stockUnitName`,`amount`,`price`,`money`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_store_storage_out_ticket_detail + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`stockUnitId` + ,`stockUnitName` + ,`amount` + ,`price` + ,`money` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{stockUnitId} + ,#{stockUnitName} + ,#{amount} + ,#{price} + ,#{money} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_store_storage_out_ticket_detail + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`stockUnitId` = #{stockUnitId} + ,`stockUnitName` = #{stockUnitName} + ,`amount` = #{amount} + ,`price` = #{price} + ,`money` = #{money} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_store_storage_out_ticket_detail + where `id` = #{id} + + + + delete from cy_store_storage_out_ticket_detail + ${condition} + + + + delete from cy_store_storage_out_ticket_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreStorageOutTicketLogMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreStorageOutTicketLogMapper.xml new file mode 100644 index 0000000..daf6fd7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreStorageOutTicketLogMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`type`,`status`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_storage_out_ticket_log + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`type` + ,`status` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{type} + ,#{status} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_storage_out_ticket_log + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`type` = #{type} + ,`status` = #{status} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_storage_out_ticket_log + where `id` = #{id} + + + + delete from cy_store_storage_out_ticket_log + ${condition} + + + + delete from cy_store_storage_out_ticket_log + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreStorageOutTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreStorageOutTicketMapper.xml new file mode 100644 index 0000000..60f33f4 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreStorageOutTicketMapper.xml @@ -0,0 +1,143 @@ + + + + + + `id`,`tenantId`,`no`,`storeId`,`storeNo`,`storeName`,`type`,`storageId`,`storageName`,`description`,`status`,`setMan`,`setDate`,`checkMan`,`checkDate`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_store_storage_out_ticket + + `id`,`tenantId` + ,`no` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`type` + ,`storageId` + ,`storageName` + ,`description` + ,`status` + ,`setMan` + ,`setDate` + ,`checkMan` + ,`checkDate` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{type} + ,#{storageId} + ,#{storageName} + ,#{description} + ,#{status} + ,#{setMan} + ,#{setDate} + ,#{checkMan} + ,#{checkDate} + ,#{createUser} + ,#{createDate} + + + + + update cy_store_storage_out_ticket + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`type` = #{type} + ,`storageId` = #{storageId} + ,`storageName` = #{storageName} + ,`description` = #{description} + ,`status` = #{status} + ,`setMan` = #{setMan} + ,`setDate` = #{setDate} + ,`checkMan` = #{checkMan} + ,`checkDate` = #{checkDate} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_store_storage_out_ticket + where `id` = #{id} + + + + delete from cy_store_storage_out_ticket + ${condition} + + + + delete from cy_store_storage_out_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreStorageTicketDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreStorageTicketDetailMapper.xml new file mode 100644 index 0000000..bb0e6b7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreStorageTicketDetailMapper.xml @@ -0,0 +1,146 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`stockUnitId`,`stockUnitName`,`amount`,`price`,`money`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_store_storage_ticket_detail + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`stockUnitId` + ,`stockUnitName` + ,`amount` + ,`price` + ,`money` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{stockUnitId} + ,#{stockUnitName} + ,#{amount} + ,#{price} + ,#{money} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_store_storage_ticket_detail + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`stockUnitId` = #{stockUnitId} + ,`stockUnitName` = #{stockUnitName} + ,`amount` = #{amount} + ,`price` = #{price} + ,`money` = #{money} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_store_storage_ticket_detail + where `id` = #{id} + + + + delete from cy_store_storage_ticket_detail + ${condition} + + + + delete from cy_store_storage_ticket_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreStorageTicketLogMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreStorageTicketLogMapper.xml new file mode 100644 index 0000000..9a2e3e7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreStorageTicketLogMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`type`,`status`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_storage_ticket_log + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`type` + ,`status` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{type} + ,#{status} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_storage_ticket_log + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`type` = #{type} + ,`status` = #{status} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_storage_ticket_log + where `id` = #{id} + + + + delete from cy_store_storage_ticket_log + ${condition} + + + + delete from cy_store_storage_ticket_log + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreStorageTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreStorageTicketMapper.xml new file mode 100644 index 0000000..eb56882 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreStorageTicketMapper.xml @@ -0,0 +1,143 @@ + + + + + + `id`,`tenantId`,`no`,`storeId`,`storeNo`,`storeName`,`type`,`storageId`,`storageName`,`description`,`status`,`setMan`,`setDate`,`checkMan`,`checkDate`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_store_storage_ticket + + `id`,`tenantId` + ,`no` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`type` + ,`storageId` + ,`storageName` + ,`description` + ,`status` + ,`setMan` + ,`setDate` + ,`checkMan` + ,`checkDate` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{type} + ,#{storageId} + ,#{storageName} + ,#{description} + ,#{status} + ,#{setMan} + ,#{setDate} + ,#{checkMan} + ,#{checkDate} + ,#{createUser} + ,#{createDate} + + + + + update cy_store_storage_ticket + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`type` = #{type} + ,`storageId` = #{storageId} + ,`storageName` = #{storageName} + ,`description` = #{description} + ,`status` = #{status} + ,`setMan` = #{setMan} + ,`setDate` = #{setDate} + ,`checkMan` = #{checkMan} + ,`checkDate` = #{checkDate} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_store_storage_ticket + where `id` = #{id} + + + + delete from cy_store_storage_ticket + ${condition} + + + + delete from cy_store_storage_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreTypeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreTypeMapper.xml new file mode 100644 index 0000000..9b1c92c --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreTypeMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`sign`,`deleteFlag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_type + + `id`,`tenantId` + ,`no` + ,`name` + ,`sign` + ,`deleteFlag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{sign} + ,#{deleteFlag} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_type + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`sign` = #{sign} + ,`deleteFlag` = #{deleteFlag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_type + where `id` = #{id} + + + + delete from cy_store_type + ${condition} + + + + delete from cy_store_type + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreWorkerExtMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreWorkerExtMapper.xml new file mode 100644 index 0000000..aacd267 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreWorkerExtMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`workerId`,`workerNo`,`storeId`,`storeNo`,`passwd`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_worker_ext + + `id`,`tenantId` + ,`workerId` + ,`workerNo` + ,`storeId` + ,`storeNo` + ,`passwd` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{workerId} + ,#{workerNo} + ,#{storeId} + ,#{storeNo} + ,#{passwd} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_worker_ext + + `tenantId` = #{tenantId} + ,`workerId` = #{workerId} + ,`workerNo` = #{workerNo} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`passwd` = #{passwd} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_worker_ext + where `id` = #{id} + + + + delete from cy_store_worker_ext + ${condition} + + + + delete from cy_store_worker_ext + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreWorkerMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreWorkerMapper.xml new file mode 100644 index 0000000..3b60918 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreWorkerMapper.xml @@ -0,0 +1,146 @@ + + + + + + `id`,`tenantId`,`storeId`,`departmentId`,`no`,`name`,`sex`,`birthday`,`email`,`mobile`,`isAdmin`,`passwd`,`enabled`,`description`,`deleteFlag`,`noType`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_store_worker + + `id`,`tenantId` + ,`storeId` + ,`departmentId` + ,`no` + ,`name` + ,`sex` + ,`birthday` + ,`email` + ,`mobile` + ,`isAdmin` + ,`passwd` + ,`enabled` + ,`description` + ,`deleteFlag` + ,`noType` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{storeId} + ,#{departmentId} + ,#{no} + ,#{name} + ,#{sex} + ,#{birthday} + ,#{email} + ,#{mobile} + ,#{isAdmin} + ,#{passwd} + ,#{enabled} + ,#{description} + ,#{deleteFlag} + ,#{noType} + ,#{createDate} + ,#{createUser} + + + + + update cy_store_worker + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`departmentId` = #{departmentId} + ,`no` = #{no} + ,`name` = #{name} + ,`sex` = #{sex} + ,`birthday` = #{birthday} + ,`email` = #{email} + ,`mobile` = #{mobile} + ,`isAdmin` = #{isAdmin} + ,`passwd` = #{passwd} + ,`enabled` = #{enabled} + ,`description` = #{description} + ,`deleteFlag` = #{deleteFlag} + ,`noType` = #{noType} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_store_worker + where `id` = #{id} + + + + delete from cy_store_worker + ${condition} + + + + delete from cy_store_worker + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoreWorkerRoleMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoreWorkerRoleMapper.xml new file mode 100644 index 0000000..c7beee1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoreWorkerRoleMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`workerId`,`roleId` + + + + + + + + + + + + + + + + + + + + insert into cy_store_worker_role + + `id`,`tenantId` + ,`workerId` + ,`roleId` + + + #{id},#{tenantId} + ,#{workerId} + ,#{roleId} + + + + + update cy_store_worker_role + + `tenantId` = #{tenantId} + ,`workerId` = #{workerId} + ,`roleId` = #{roleId} + + where `id` = #{id} + + + + delete from cy_store_worker_role + where `id` = #{id} + + + + delete from cy_store_worker_role + ${condition} + + + + delete from cy_store_worker_role + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoretableAreaMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoretableAreaMapper.xml new file mode 100644 index 0000000..1169397 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoretableAreaMapper.xml @@ -0,0 +1,113 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`deleteFlag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_storetable_area + + `id`,`tenantId` + ,`no` + ,`name` + ,`deleteFlag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{deleteFlag} + ,#{createDate} + ,#{createUser} + + + + + update cy_storetable_area + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`deleteFlag` = #{deleteFlag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_storetable_area + where `id` = #{id} + + + + delete from cy_storetable_area + ${condition} + + + + delete from cy_storetable_area + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoretableMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoretableMapper.xml new file mode 100644 index 0000000..dbf8691 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoretableMapper.xml @@ -0,0 +1,131 @@ + + + + + + `id`,`tenantId`,`storeId`,`areaId`,`typeId`,`no`,`name`,`number`,`deleteFlag`,`aliasName`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_storetable + + `id`,`tenantId` + ,`storeId` + ,`areaId` + ,`typeId` + ,`no` + ,`name` + ,`number` + ,`deleteFlag` + ,`aliasName` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{storeId} + ,#{areaId} + ,#{typeId} + ,#{no} + ,#{name} + ,#{number} + ,#{deleteFlag} + ,#{aliasName} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_storetable + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`areaId` = #{areaId} + ,`typeId` = #{typeId} + ,`no` = #{no} + ,`name` = #{name} + ,`number` = #{number} + ,`deleteFlag` = #{deleteFlag} + ,`aliasName` = #{aliasName} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_storetable + where `id` = #{id} + + + + delete from cy_storetable + ${condition} + + + + delete from cy_storetable + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/StoretableTypeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/StoretableTypeMapper.xml new file mode 100644 index 0000000..79074a6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/StoretableTypeMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`color`,`deleteFlag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_storetable_type + + `id`,`tenantId` + ,`no` + ,`name` + ,`color` + ,`deleteFlag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{color} + ,#{deleteFlag} + ,#{createDate} + ,#{createUser} + + + + + update cy_storetable_type + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`color` = #{color} + ,`deleteFlag` = #{deleteFlag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_storetable_type + where `id` = #{id} + + + + delete from cy_storetable_type + ${condition} + + + + delete from cy_storetable_type + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/SupplierMapper.xml b/food-pdm-tools/src/generate/food/mybatis/SupplierMapper.xml new file mode 100644 index 0000000..efef871 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/SupplierMapper.xml @@ -0,0 +1,155 @@ + + + + + + `id`,`tenantId`,`typeId`,`no`,`name`,`shortName`,`enterpriseNature`,`status`,`address`,`linkMan`,`mobile`,`fax`,`code`,`email`,`depositBank`,`reputationLevel`,`bankAccount`,`registerDate`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_supplier + + `id`,`tenantId` + ,`typeId` + ,`no` + ,`name` + ,`shortName` + ,`enterpriseNature` + ,`status` + ,`address` + ,`linkMan` + ,`mobile` + ,`fax` + ,`code` + ,`email` + ,`depositBank` + ,`reputationLevel` + ,`bankAccount` + ,`registerDate` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{typeId} + ,#{no} + ,#{name} + ,#{shortName} + ,#{enterpriseNature} + ,#{status} + ,#{address} + ,#{linkMan} + ,#{mobile} + ,#{fax} + ,#{code} + ,#{email} + ,#{depositBank} + ,#{reputationLevel} + ,#{bankAccount} + ,#{registerDate} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_supplier + + `tenantId` = #{tenantId} + ,`typeId` = #{typeId} + ,`no` = #{no} + ,`name` = #{name} + ,`shortName` = #{shortName} + ,`enterpriseNature` = #{enterpriseNature} + ,`status` = #{status} + ,`address` = #{address} + ,`linkMan` = #{linkMan} + ,`mobile` = #{mobile} + ,`fax` = #{fax} + ,`code` = #{code} + ,`email` = #{email} + ,`depositBank` = #{depositBank} + ,`reputationLevel` = #{reputationLevel} + ,`bankAccount` = #{bankAccount} + ,`registerDate` = #{registerDate} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_supplier + where `id` = #{id} + + + + delete from cy_supplier + ${condition} + + + + delete from cy_supplier + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/SupplierTypeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/SupplierTypeMapper.xml new file mode 100644 index 0000000..26c637c --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/SupplierTypeMapper.xml @@ -0,0 +1,110 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_supplier_type + + `id`,`tenantId` + ,`no` + ,`name` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{createDate} + ,#{createUser} + + + + + update cy_supplier_type + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_supplier_type + where `id` = #{id} + + + + delete from cy_supplier_type + ${condition} + + + + delete from cy_supplier_type + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/TaskScheduleMapper.xml b/food-pdm-tools/src/generate/food/mybatis/TaskScheduleMapper.xml new file mode 100644 index 0000000..f995156 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/TaskScheduleMapper.xml @@ -0,0 +1,134 @@ + + + + + + `id`,`tenantId`,`groupSign`,`sign`,`jobDesc`,`jobCron`,`executorHandler`,`executorParam`,`alarmEmail`,`author`,`status`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_task_schedule + + `id`,`tenantId` + ,`groupSign` + ,`sign` + ,`jobDesc` + ,`jobCron` + ,`executorHandler` + ,`executorParam` + ,`alarmEmail` + ,`author` + ,`status` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{groupSign} + ,#{sign} + ,#{jobDesc} + ,#{jobCron} + ,#{executorHandler} + ,#{executorParam} + ,#{alarmEmail} + ,#{author} + ,#{status} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_task_schedule + + `tenantId` = #{tenantId} + ,`groupSign` = #{groupSign} + ,`sign` = #{sign} + ,`jobDesc` = #{jobDesc} + ,`jobCron` = #{jobCron} + ,`executorHandler` = #{executorHandler} + ,`executorParam` = #{executorParam} + ,`alarmEmail` = #{alarmEmail} + ,`author` = #{author} + ,`status` = #{status} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_task_schedule + where `id` = #{id} + + + + delete from cy_task_schedule + ${condition} + + + + delete from cy_task_schedule + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ThuselevelTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ThuselevelTicketMapper.xml new file mode 100644 index 0000000..5ec56f8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ThuselevelTicketMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`no`,`status`,`makeUser`,`makeDate`,`checkUser`,`checkDate`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_thuselevel_ticket + + `id`,`tenantId` + ,`no` + ,`status` + ,`makeUser` + ,`makeDate` + ,`checkUser` + ,`checkDate` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{status} + ,#{makeUser} + ,#{makeDate} + ,#{checkUser} + ,#{checkDate} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_thuselevel_ticket + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`status` = #{status} + ,`makeUser` = #{makeUser} + ,`makeDate` = #{makeDate} + ,`checkUser` = #{checkUser} + ,`checkDate` = #{checkDate} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_thuselevel_ticket + where `id` = #{id} + + + + delete from cy_thuselevel_ticket + ${condition} + + + + delete from cy_thuselevel_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ThuselevelTicketMaterialMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ThuselevelTicketMaterialMapper.xml new file mode 100644 index 0000000..c71e6e1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ThuselevelTicketMaterialMapper.xml @@ -0,0 +1,140 @@ + + + + + + `id`,`tenantId`,`ticketId`,`productId`,`productNo`,`productName`,`specId`,`specName`,`productDescription`,`packUnitId`,`packUnit`,`thUseLevel`,`cost`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_thuselevel_ticket_material + + `id`,`tenantId` + ,`ticketId` + ,`productId` + ,`productNo` + ,`productName` + ,`specId` + ,`specName` + ,`productDescription` + ,`packUnitId` + ,`packUnit` + ,`thUseLevel` + ,`cost` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{specId} + ,#{specName} + ,#{productDescription} + ,#{packUnitId} + ,#{packUnit} + ,#{thUseLevel} + ,#{cost} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_thuselevel_ticket_material + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`productDescription` = #{productDescription} + ,`packUnitId` = #{packUnitId} + ,`packUnit` = #{packUnit} + ,`thUseLevel` = #{thUseLevel} + ,`cost` = #{cost} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_thuselevel_ticket_material + where `id` = #{id} + + + + delete from cy_thuselevel_ticket_material + ${condition} + + + + delete from cy_thuselevel_ticket_material + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/ThuselevelTicketStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/ThuselevelTicketStoreMapper.xml new file mode 100644 index 0000000..c2a78e9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/ThuselevelTicketStoreMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`ticketId`,`storeId`,`storeNo`,`storeName`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_thuselevel_ticket_store + + `id`,`tenantId` + ,`ticketId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{createDate} + ,#{createUser} + + + + + update cy_thuselevel_ticket_store + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_thuselevel_ticket_store + where `id` = #{id} + + + + delete from cy_thuselevel_ticket_store + ${condition} + + + + delete from cy_thuselevel_ticket_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/TicketPrintSettingMapper.xml b/food-pdm-tools/src/generate/food/mybatis/TicketPrintSettingMapper.xml new file mode 100644 index 0000000..026ff29 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/TicketPrintSettingMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`ticketSign`,`key`,`value`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_ticket_print_setting + + `id`,`tenantId` + ,`ticketSign` + ,`key` + ,`value` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{ticketSign} + ,#{key} + ,#{value} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_ticket_print_setting + + `tenantId` = #{tenantId} + ,`ticketSign` = #{ticketSign} + ,`key` = #{key} + ,`value` = #{value} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_ticket_print_setting + where `id` = #{id} + + + + delete from cy_ticket_print_setting + ${condition} + + + + delete from cy_ticket_print_setting + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/TidianOrderDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/TidianOrderDetailMapper.xml new file mode 100644 index 0000000..14483c5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/TidianOrderDetailMapper.xml @@ -0,0 +1,158 @@ + + + + + + `id`,`tenantId`,`message`,`storeId`,`orderNumber`,`detailNumber`,`seq`,`parentDetailNumber`,`parentSeq`,`detailType`,`quantity`,`unitPrice`,`totalPrice`,`detailTargetNumber`,`detailTargetName`,`rptTtl`,`addTime`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_tidian_order_detail + + `id`,`tenantId` + ,`message` + ,`storeId` + ,`orderNumber` + ,`detailNumber` + ,`seq` + ,`parentDetailNumber` + ,`parentSeq` + ,`detailType` + ,`quantity` + ,`unitPrice` + ,`totalPrice` + ,`detailTargetNumber` + ,`detailTargetName` + ,`rptTtl` + ,`addTime` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{message} + ,#{storeId} + ,#{orderNumber} + ,#{detailNumber} + ,#{seq} + ,#{parentDetailNumber} + ,#{parentSeq} + ,#{detailType} + ,#{quantity} + ,#{unitPrice} + ,#{totalPrice} + ,#{detailTargetNumber} + ,#{detailTargetName} + ,#{rptTtl} + ,#{addTime} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_tidian_order_detail + + `tenantId` = #{tenantId} + ,`message` = #{message} + ,`storeId` = #{storeId} + ,`orderNumber` = #{orderNumber} + ,`detailNumber` = #{detailNumber} + ,`seq` = #{seq} + ,`parentDetailNumber` = #{parentDetailNumber} + ,`parentSeq` = #{parentSeq} + ,`detailType` = #{detailType} + ,`quantity` = #{quantity} + ,`unitPrice` = #{unitPrice} + ,`totalPrice` = #{totalPrice} + ,`detailTargetNumber` = #{detailTargetNumber} + ,`detailTargetName` = #{detailTargetName} + ,`rptTtl` = #{rptTtl} + ,`addTime` = #{addTime} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_tidian_order_detail + where `id` = #{id} + + + + delete from cy_tidian_order_detail + ${condition} + + + + delete from cy_tidian_order_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/TidianOrderMapper.xml b/food-pdm-tools/src/generate/food/mybatis/TidianOrderMapper.xml new file mode 100644 index 0000000..10f7ee5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/TidianOrderMapper.xml @@ -0,0 +1,215 @@ + + + + + + `id`,`tenantId`,`message`,`storeId`,`orderNumber`,`timePeriodNumber`,`mcNo`,`source`,`channel`,`seq`,`storeNumber`,`people`,`openTime`,`menuTotal`,`discountTotal`,`orderTotal`,`transType`,`reservation`,`packTtl`,`deliverTtl`,`tableNumber`,`outChannel`,`outSeq`,`platform`,`reservationTime`,`transactions`,`customerName`,`customerTele`,`customerAddress`,`lat`,`lng`,`customerDesc`,`payment`,`openId`,`nickname`,`mobile`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_tidian_order + + `id`,`tenantId` + ,`message` + ,`storeId` + ,`orderNumber` + ,`timePeriodNumber` + ,`mcNo` + ,`source` + ,`channel` + ,`seq` + ,`storeNumber` + ,`people` + ,`openTime` + ,`menuTotal` + ,`discountTotal` + ,`orderTotal` + ,`transType` + ,`reservation` + ,`packTtl` + ,`deliverTtl` + ,`tableNumber` + ,`outChannel` + ,`outSeq` + ,`platform` + ,`reservationTime` + ,`transactions` + ,`customerName` + ,`customerTele` + ,`customerAddress` + ,`lat` + ,`lng` + ,`customerDesc` + ,`payment` + ,`openId` + ,`nickname` + ,`mobile` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{message} + ,#{storeId} + ,#{orderNumber} + ,#{timePeriodNumber} + ,#{mcNo} + ,#{source} + ,#{channel} + ,#{seq} + ,#{storeNumber} + ,#{people} + ,#{openTime} + ,#{menuTotal} + ,#{discountTotal} + ,#{orderTotal} + ,#{transType} + ,#{reservation} + ,#{packTtl} + ,#{deliverTtl} + ,#{tableNumber} + ,#{outChannel} + ,#{outSeq} + ,#{platform} + ,#{reservationTime} + ,#{transactions} + ,#{customerName} + ,#{customerTele} + ,#{customerAddress} + ,#{lat} + ,#{lng} + ,#{customerDesc} + ,#{payment} + ,#{openId} + ,#{nickname} + ,#{mobile} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_tidian_order + + `tenantId` = #{tenantId} + ,`message` = #{message} + ,`storeId` = #{storeId} + ,`orderNumber` = #{orderNumber} + ,`timePeriodNumber` = #{timePeriodNumber} + ,`mcNo` = #{mcNo} + ,`source` = #{source} + ,`channel` = #{channel} + ,`seq` = #{seq} + ,`storeNumber` = #{storeNumber} + ,`people` = #{people} + ,`openTime` = #{openTime} + ,`menuTotal` = #{menuTotal} + ,`discountTotal` = #{discountTotal} + ,`orderTotal` = #{orderTotal} + ,`transType` = #{transType} + ,`reservation` = #{reservation} + ,`packTtl` = #{packTtl} + ,`deliverTtl` = #{deliverTtl} + ,`tableNumber` = #{tableNumber} + ,`outChannel` = #{outChannel} + ,`outSeq` = #{outSeq} + ,`platform` = #{platform} + ,`reservationTime` = #{reservationTime} + ,`transactions` = #{transactions} + ,`customerName` = #{customerName} + ,`customerTele` = #{customerTele} + ,`customerAddress` = #{customerAddress} + ,`lat` = #{lat} + ,`lng` = #{lng} + ,`customerDesc` = #{customerDesc} + ,`payment` = #{payment} + ,`openId` = #{openId} + ,`nickname` = #{nickname} + ,`mobile` = #{mobile} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_tidian_order + where `id` = #{id} + + + + delete from cy_tidian_order + ${condition} + + + + delete from cy_tidian_order + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/TidianOrderPayMapper.xml b/food-pdm-tools/src/generate/food/mybatis/TidianOrderPayMapper.xml new file mode 100644 index 0000000..2a29092 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/TidianOrderPayMapper.xml @@ -0,0 +1,140 @@ + + + + + + `id`,`tenantId`,`message`,`storeId`,`orderNumber`,`paymentTime`,`paymentmethodName`,`paymentmethodAction`,`paymentmethodNumber`,`outterTraxNo`,`amount`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_tidian_order_pay + + `id`,`tenantId` + ,`message` + ,`storeId` + ,`orderNumber` + ,`paymentTime` + ,`paymentmethodName` + ,`paymentmethodAction` + ,`paymentmethodNumber` + ,`outterTraxNo` + ,`amount` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{message} + ,#{storeId} + ,#{orderNumber} + ,#{paymentTime} + ,#{paymentmethodName} + ,#{paymentmethodAction} + ,#{paymentmethodNumber} + ,#{outterTraxNo} + ,#{amount} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_tidian_order_pay + + `tenantId` = #{tenantId} + ,`message` = #{message} + ,`storeId` = #{storeId} + ,`orderNumber` = #{orderNumber} + ,`paymentTime` = #{paymentTime} + ,`paymentmethodName` = #{paymentmethodName} + ,`paymentmethodAction` = #{paymentmethodAction} + ,`paymentmethodNumber` = #{paymentmethodNumber} + ,`outterTraxNo` = #{outterTraxNo} + ,`amount` = #{amount} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_tidian_order_pay + where `id` = #{id} + + + + delete from cy_tidian_order_pay + ${condition} + + + + delete from cy_tidian_order_pay + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/TidianStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/TidianStoreMapper.xml new file mode 100644 index 0000000..c29f763 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/TidianStoreMapper.xml @@ -0,0 +1,170 @@ + + + + + + `id`,`tenantId`,`setId`,`storeId`,`storeNo`,`storeName`,`storeType`,`province`,`city`,`address`,`telephone`,`zipcode`,`contactName`,`contactTelephone`,`openTime`,`longitude`,`latitude`,`busiStart`,`busiEnd`,`minDeliveryAmount`,`transNumbers`,`ext1`,`ext2`,`ext3`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_tidian_store + + `id`,`tenantId` + ,`setId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`storeType` + ,`province` + ,`city` + ,`address` + ,`telephone` + ,`zipcode` + ,`contactName` + ,`contactTelephone` + ,`openTime` + ,`longitude` + ,`latitude` + ,`busiStart` + ,`busiEnd` + ,`minDeliveryAmount` + ,`transNumbers` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{setId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{storeType} + ,#{province} + ,#{city} + ,#{address} + ,#{telephone} + ,#{zipcode} + ,#{contactName} + ,#{contactTelephone} + ,#{openTime} + ,#{longitude} + ,#{latitude} + ,#{busiStart} + ,#{busiEnd} + ,#{minDeliveryAmount} + ,#{transNumbers} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createUser} + ,#{createDate} + + + + + update cy_tidian_store + + `tenantId` = #{tenantId} + ,`setId` = #{setId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`storeType` = #{storeType} + ,`province` = #{province} + ,`city` = #{city} + ,`address` = #{address} + ,`telephone` = #{telephone} + ,`zipcode` = #{zipcode} + ,`contactName` = #{contactName} + ,`contactTelephone` = #{contactTelephone} + ,`openTime` = #{openTime} + ,`longitude` = #{longitude} + ,`latitude` = #{latitude} + ,`busiStart` = #{busiStart} + ,`busiEnd` = #{busiEnd} + ,`minDeliveryAmount` = #{minDeliveryAmount} + ,`transNumbers` = #{transNumbers} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_tidian_store + where `id` = #{id} + + + + delete from cy_tidian_store + ${condition} + + + + delete from cy_tidian_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/VisitorAddressMapper.xml b/food-pdm-tools/src/generate/food/mybatis/VisitorAddressMapper.xml new file mode 100644 index 0000000..3f48e41 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/VisitorAddressMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`storeId`,`visitorId`,`name`,`telephone`,`areaName`,`address`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_visitor_address + + `id`,`tenantId` + ,`storeId` + ,`visitorId` + ,`name` + ,`telephone` + ,`areaName` + ,`address` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storeId} + ,#{visitorId} + ,#{name} + ,#{telephone} + ,#{areaName} + ,#{address} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_visitor_address + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`visitorId` = #{visitorId} + ,`name` = #{name} + ,`telephone` = #{telephone} + ,`areaName` = #{areaName} + ,`address` = #{address} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_visitor_address + where `id` = #{id} + + + + delete from cy_visitor_address + ${condition} + + + + delete from cy_visitor_address + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/VisitorMapper.xml b/food-pdm-tools/src/generate/food/mybatis/VisitorMapper.xml new file mode 100644 index 0000000..9acc57d --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/VisitorMapper.xml @@ -0,0 +1,140 @@ + + + + + + `id`,`tenantId`,`storeId`,`no`,`tel`,`name`,`spell`,`sex`,`title`,`position`,`fphone`,`sphone`,`description`,`deleteFlag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_visitor + + `id`,`tenantId` + ,`storeId` + ,`no` + ,`tel` + ,`name` + ,`spell` + ,`sex` + ,`title` + ,`position` + ,`fphone` + ,`sphone` + ,`description` + ,`deleteFlag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{storeId} + ,#{no} + ,#{tel} + ,#{name} + ,#{spell} + ,#{sex} + ,#{title} + ,#{position} + ,#{fphone} + ,#{sphone} + ,#{description} + ,#{deleteFlag} + ,#{createDate} + ,#{createUser} + + + + + update cy_visitor + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`no` = #{no} + ,`tel` = #{tel} + ,`name` = #{name} + ,`spell` = #{spell} + ,`sex` = #{sex} + ,`title` = #{title} + ,`position` = #{position} + ,`fphone` = #{fphone} + ,`sphone` = #{sphone} + ,`description` = #{description} + ,`deleteFlag` = #{deleteFlag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_visitor + where `id` = #{id} + + + + delete from cy_visitor + ${condition} + + + + delete from cy_visitor + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/VisitorTagMapper.xml b/food-pdm-tools/src/generate/food/mybatis/VisitorTagMapper.xml new file mode 100644 index 0000000..efe895d --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/VisitorTagMapper.xml @@ -0,0 +1,113 @@ + + + + + + `id`,`tenantId`,`storeId`,`visitorId`,`name`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_visitor_tag + + `id`,`tenantId` + ,`storeId` + ,`visitorId` + ,`name` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storeId} + ,#{visitorId} + ,#{name} + ,#{createUser} + ,#{createDate} + + + + + update cy_visitor_tag + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`visitorId` = #{visitorId} + ,`name` = #{name} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_visitor_tag + where `id` = #{id} + + + + delete from cy_visitor_tag + ${condition} + + + + delete from cy_visitor_tag + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/VposAdPictureMapper.xml b/food-pdm-tools/src/generate/food/mybatis/VposAdPictureMapper.xml new file mode 100644 index 0000000..d1a477e --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/VposAdPictureMapper.xml @@ -0,0 +1,131 @@ + + + + + + `id`,`tenantId`,`type`,`orderNo`,`name`,`width`,`height`,`groupName`,`storageFileName`,`linkUrl`,`deleteFlag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_vpos_ad_picture + + `id`,`tenantId` + ,`type` + ,`orderNo` + ,`name` + ,`width` + ,`height` + ,`groupName` + ,`storageFileName` + ,`linkUrl` + ,`deleteFlag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{type} + ,#{orderNo} + ,#{name} + ,#{width} + ,#{height} + ,#{groupName} + ,#{storageFileName} + ,#{linkUrl} + ,#{deleteFlag} + ,#{createDate} + ,#{createUser} + + + + + update cy_vpos_ad_picture + + `tenantId` = #{tenantId} + ,`type` = #{type} + ,`orderNo` = #{orderNo} + ,`name` = #{name} + ,`width` = #{width} + ,`height` = #{height} + ,`groupName` = #{groupName} + ,`storageFileName` = #{storageFileName} + ,`linkUrl` = #{linkUrl} + ,`deleteFlag` = #{deleteFlag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_vpos_ad_picture + where `id` = #{id} + + + + delete from cy_vpos_ad_picture + ${condition} + + + + delete from cy_vpos_ad_picture + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/VposCcbfzAccountMapper.xml b/food-pdm-tools/src/generate/food/mybatis/VposCcbfzAccountMapper.xml new file mode 100644 index 0000000..eb5f61e --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/VposCcbfzAccountMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`seriesId`,`receiveNoType`,`receiveNo`,`acountType`,`feeName`,`refundSign`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_vpos_ccbfz_account + + `id`,`tenantId` + ,`seriesId` + ,`receiveNoType` + ,`receiveNo` + ,`acountType` + ,`feeName` + ,`refundSign` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{seriesId} + ,#{receiveNoType} + ,#{receiveNo} + ,#{acountType} + ,#{feeName} + ,#{refundSign} + ,#{createUser} + ,#{createDate} + + + + + update cy_vpos_ccbfz_account + + `tenantId` = #{tenantId} + ,`seriesId` = #{seriesId} + ,`receiveNoType` = #{receiveNoType} + ,`receiveNo` = #{receiveNo} + ,`acountType` = #{acountType} + ,`feeName` = #{feeName} + ,`refundSign` = #{refundSign} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_vpos_ccbfz_account + where `id` = #{id} + + + + delete from cy_vpos_ccbfz_account + ${condition} + + + + delete from cy_vpos_ccbfz_account + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/VposProductEvaluateImageMapper.xml b/food-pdm-tools/src/generate/food/mybatis/VposProductEvaluateImageMapper.xml new file mode 100644 index 0000000..4af6a97 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/VposProductEvaluateImageMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`evaluateId`,`width`,`height`,`groupName`,`storageFileName`,`orderNo`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_vpos_product_evaluate_image + + `id`,`tenantId` + ,`evaluateId` + ,`width` + ,`height` + ,`groupName` + ,`storageFileName` + ,`orderNo` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{evaluateId} + ,#{width} + ,#{height} + ,#{groupName} + ,#{storageFileName} + ,#{orderNo} + ,#{createUser} + ,#{createDate} + + + + + update cy_vpos_product_evaluate_image + + `tenantId` = #{tenantId} + ,`evaluateId` = #{evaluateId} + ,`width` = #{width} + ,`height` = #{height} + ,`groupName` = #{groupName} + ,`storageFileName` = #{storageFileName} + ,`orderNo` = #{orderNo} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_vpos_product_evaluate_image + where `id` = #{id} + + + + delete from cy_vpos_product_evaluate_image + ${condition} + + + + delete from cy_vpos_product_evaluate_image + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/VposProductEvaluateMapper.xml b/food-pdm-tools/src/generate/food/mybatis/VposProductEvaluateMapper.xml new file mode 100644 index 0000000..9bcb4bc --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/VposProductEvaluateMapper.xml @@ -0,0 +1,167 @@ + + + + + + `id`,`tenantId`,`memberId`,`openId`,`mobile`,`storeId`,`storeNo`,`storeName`,`seriesId`,`seriesName`,`typePath`,`typeId`,`typeName`,`productId`,`productNo`,`productName`,`touxiang`,`memberName`,`memo`,`type`,`level`,`tickingTime`,`status`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_vpos_product_evaluate + + `id`,`tenantId` + ,`memberId` + ,`openId` + ,`mobile` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`seriesId` + ,`seriesName` + ,`typePath` + ,`typeId` + ,`typeName` + ,`productId` + ,`productNo` + ,`productName` + ,`touxiang` + ,`memberName` + ,`memo` + ,`type` + ,`level` + ,`tickingTime` + ,`status` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{memberId} + ,#{openId} + ,#{mobile} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{seriesId} + ,#{seriesName} + ,#{typePath} + ,#{typeId} + ,#{typeName} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{touxiang} + ,#{memberName} + ,#{memo} + ,#{type} + ,#{level} + ,#{tickingTime} + ,#{status} + ,#{createUser} + ,#{createDate} + + + + + update cy_vpos_product_evaluate + + `tenantId` = #{tenantId} + ,`memberId` = #{memberId} + ,`openId` = #{openId} + ,`mobile` = #{mobile} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`seriesId` = #{seriesId} + ,`seriesName` = #{seriesName} + ,`typePath` = #{typePath} + ,`typeId` = #{typeId} + ,`typeName` = #{typeName} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`touxiang` = #{touxiang} + ,`memberName` = #{memberName} + ,`memo` = #{memo} + ,`type` = #{type} + ,`level` = #{level} + ,`tickingTime` = #{tickingTime} + ,`status` = #{status} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_vpos_product_evaluate + where `id` = #{id} + + + + delete from cy_vpos_product_evaluate + ${condition} + + + + delete from cy_vpos_product_evaluate + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/VposStoreBusinessTicketInfoMapper.xml b/food-pdm-tools/src/generate/food/mybatis/VposStoreBusinessTicketInfoMapper.xml new file mode 100644 index 0000000..0f668ba --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/VposStoreBusinessTicketInfoMapper.xml @@ -0,0 +1,140 @@ + + + + + + `id`,`clientId`,`tenantId`,`storeId`,`ticketId`,`busNo`,`type`,`info`,`discountMoney`,`isInvalid`,`saleDate`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_vpos_store_business_ticket_info + + `id`,`tenantId` + ,`clientId` + ,`storeId` + ,`ticketId` + ,`busNo` + ,`type` + ,`info` + ,`discountMoney` + ,`isInvalid` + ,`saleDate` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{storeId} + ,#{ticketId} + ,#{busNo} + ,#{type} + ,#{info} + ,#{discountMoney} + ,#{isInvalid} + ,#{saleDate} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_vpos_store_business_ticket_info + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`storeId` = #{storeId} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`type` = #{type} + ,`info` = #{info} + ,`discountMoney` = #{discountMoney} + ,`isInvalid` = #{isInvalid} + ,`saleDate` = #{saleDate} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_vpos_store_business_ticket_info + where `id` = #{id} + + + + delete from cy_vpos_store_business_ticket_info + ${condition} + + + + delete from cy_vpos_store_business_ticket_info + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/VposStoreBusinessTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/VposStoreBusinessTicketMapper.xml new file mode 100644 index 0000000..c55f456 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/VposStoreBusinessTicketMapper.xml @@ -0,0 +1,242 @@ + + + + + + `id`,`clientId`,`tenantId`,`memberId`,`openId`,`mobile`,`no`,`storeId`,`storeNo`,`storeName`,`status`,`workNo`,`saleDate`,`tableNo`,`people`,`busMode`,`shiftNo`,`shiftName`,`amount`,`discount`,`discountTotal`,`receivable`,`maling`,`paid`,`noOrg`,`backCause`,`isMember`,`memberNo`,`memberJifen`,`deviceName`,`deviceMac`,`deviceIp`,`posNo`,`isInvalid`,`seqNo`,`weather`,`weeker`,`isStockDeal`,`estimatedCost`,`estimatedProfitAmount`,`estimatedProfitMargin`,`totalCost`,`profitAmount`,`profitMargin`,`tableName`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_vpos_store_business_ticket + + `id`,`tenantId` + ,`clientId` + ,`memberId` + ,`openId` + ,`mobile` + ,`no` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`status` + ,`workNo` + ,`saleDate` + ,`tableNo` + ,`people` + ,`busMode` + ,`shiftNo` + ,`shiftName` + ,`amount` + ,`discount` + ,`discountTotal` + ,`receivable` + ,`maling` + ,`paid` + ,`noOrg` + ,`backCause` + ,`isMember` + ,`memberNo` + ,`memberJifen` + ,`deviceName` + ,`deviceMac` + ,`deviceIp` + ,`posNo` + ,`isInvalid` + ,`seqNo` + ,`weather` + ,`weeker` + ,`isStockDeal` + ,`estimatedCost` + ,`estimatedProfitAmount` + ,`estimatedProfitMargin` + ,`totalCost` + ,`profitAmount` + ,`profitMargin` + ,`tableName` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{memberId} + ,#{openId} + ,#{mobile} + ,#{no} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{status} + ,#{workNo} + ,#{saleDate} + ,#{tableNo} + ,#{people} + ,#{busMode} + ,#{shiftNo} + ,#{shiftName} + ,#{amount} + ,#{discount} + ,#{discountTotal} + ,#{receivable} + ,#{maling} + ,#{paid} + ,#{noOrg} + ,#{backCause} + ,#{isMember} + ,#{memberNo} + ,#{memberJifen} + ,#{deviceName} + ,#{deviceMac} + ,#{deviceIp} + ,#{posNo} + ,#{isInvalid} + ,#{seqNo} + ,#{weather} + ,#{weeker} + ,#{isStockDeal} + ,#{estimatedCost} + ,#{estimatedProfitAmount} + ,#{estimatedProfitMargin} + ,#{totalCost} + ,#{profitAmount} + ,#{profitMargin} + ,#{tableName} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_vpos_store_business_ticket + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`memberId` = #{memberId} + ,`openId` = #{openId} + ,`mobile` = #{mobile} + ,`no` = #{no} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`status` = #{status} + ,`workNo` = #{workNo} + ,`saleDate` = #{saleDate} + ,`tableNo` = #{tableNo} + ,`people` = #{people} + ,`busMode` = #{busMode} + ,`shiftNo` = #{shiftNo} + ,`shiftName` = #{shiftName} + ,`amount` = #{amount} + ,`discount` = #{discount} + ,`discountTotal` = #{discountTotal} + ,`receivable` = #{receivable} + ,`maling` = #{maling} + ,`paid` = #{paid} + ,`noOrg` = #{noOrg} + ,`backCause` = #{backCause} + ,`isMember` = #{isMember} + ,`memberNo` = #{memberNo} + ,`memberJifen` = #{memberJifen} + ,`deviceName` = #{deviceName} + ,`deviceMac` = #{deviceMac} + ,`deviceIp` = #{deviceIp} + ,`posNo` = #{posNo} + ,`isInvalid` = #{isInvalid} + ,`seqNo` = #{seqNo} + ,`weather` = #{weather} + ,`weeker` = #{weeker} + ,`isStockDeal` = #{isStockDeal} + ,`estimatedCost` = #{estimatedCost} + ,`estimatedProfitAmount` = #{estimatedProfitAmount} + ,`estimatedProfitMargin` = #{estimatedProfitMargin} + ,`totalCost` = #{totalCost} + ,`profitAmount` = #{profitAmount} + ,`profitMargin` = #{profitMargin} + ,`tableName` = #{tableName} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_vpos_store_business_ticket + where `id` = #{id} + + + + delete from cy_vpos_store_business_ticket + ${condition} + + + + delete from cy_vpos_store_business_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/VposStoreOrderProductInfoMapper.xml b/food-pdm-tools/src/generate/food/mybatis/VposStoreOrderProductInfoMapper.xml new file mode 100644 index 0000000..08e67fb --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/VposStoreOrderProductInfoMapper.xml @@ -0,0 +1,149 @@ + + + + + + `id`,`clientId`,`orderItemId`,`tenantId`,`storeId`,`ticketId`,`busNo`,`type`,`info`,`discountMoney`,`isInvalid`,`saleDate`,`tableNo`,`tableName`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_vpos_store_order_product_info + + `id`,`tenantId` + ,`clientId` + ,`orderItemId` + ,`storeId` + ,`ticketId` + ,`busNo` + ,`type` + ,`info` + ,`discountMoney` + ,`isInvalid` + ,`saleDate` + ,`tableNo` + ,`tableName` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{orderItemId} + ,#{storeId} + ,#{ticketId} + ,#{busNo} + ,#{type} + ,#{info} + ,#{discountMoney} + ,#{isInvalid} + ,#{saleDate} + ,#{tableNo} + ,#{tableName} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_vpos_store_order_product_info + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`orderItemId` = #{orderItemId} + ,`storeId` = #{storeId} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`type` = #{type} + ,`info` = #{info} + ,`discountMoney` = #{discountMoney} + ,`isInvalid` = #{isInvalid} + ,`saleDate` = #{saleDate} + ,`tableNo` = #{tableNo} + ,`tableName` = #{tableName} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_vpos_store_order_product_info + where `id` = #{id} + + + + delete from cy_vpos_store_order_product_info + ${condition} + + + + delete from cy_vpos_store_order_product_info + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/VposStoreOrderProductMakeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/VposStoreOrderProductMakeMapper.xml new file mode 100644 index 0000000..4fb64f7 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/VposStoreOrderProductMakeMapper.xml @@ -0,0 +1,179 @@ + + + + + + `id`,`clientId`,`tenantId`,`orderItemId`,`storeId`,`storeNo`,`storeName`,`ticketId`,`busNo`,`makeId`,`makeName`,`addPrice`,`discountPrice`,`count`,`rcount`,`addTotal`,`discountAddTotal`,`discount`,`qtyFlag`,`hand`,`isInvalid`,`saleDate`,`tableNo`,`tableName`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_vpos_store_order_product_make + + `id`,`tenantId` + ,`clientId` + ,`orderItemId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`ticketId` + ,`busNo` + ,`makeId` + ,`makeName` + ,`addPrice` + ,`discountPrice` + ,`count` + ,`rcount` + ,`addTotal` + ,`discountAddTotal` + ,`discount` + ,`qtyFlag` + ,`hand` + ,`isInvalid` + ,`saleDate` + ,`tableNo` + ,`tableName` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{orderItemId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{ticketId} + ,#{busNo} + ,#{makeId} + ,#{makeName} + ,#{addPrice} + ,#{discountPrice} + ,#{count} + ,#{rcount} + ,#{addTotal} + ,#{discountAddTotal} + ,#{discount} + ,#{qtyFlag} + ,#{hand} + ,#{isInvalid} + ,#{saleDate} + ,#{tableNo} + ,#{tableName} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_vpos_store_order_product_make + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`orderItemId` = #{orderItemId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`makeId` = #{makeId} + ,`makeName` = #{makeName} + ,`addPrice` = #{addPrice} + ,`discountPrice` = #{discountPrice} + ,`count` = #{count} + ,`rcount` = #{rcount} + ,`addTotal` = #{addTotal} + ,`discountAddTotal` = #{discountAddTotal} + ,`discount` = #{discount} + ,`qtyFlag` = #{qtyFlag} + ,`hand` = #{hand} + ,`isInvalid` = #{isInvalid} + ,`saleDate` = #{saleDate} + ,`tableNo` = #{tableNo} + ,`tableName` = #{tableName} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_vpos_store_order_product_make + where `id` = #{id} + + + + delete from cy_vpos_store_order_product_make + ${condition} + + + + delete from cy_vpos_store_order_product_make + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/VposStoreOrderProductMapper.xml b/food-pdm-tools/src/generate/food/mybatis/VposStoreOrderProductMapper.xml new file mode 100644 index 0000000..4033d55 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/VposStoreOrderProductMapper.xml @@ -0,0 +1,290 @@ + + + + + + `id`,`clientId`,`parentId`,`tenantId`,`storeId`,`storeNo`,`storeName`,`ticketId`,`busNo`,`busMode`,`tableNo`,`productId`,`productNo`,`productName`,`productUnitId`,`productUnitName`,`productImageUrl`,`seriesId`,`seriesName`,`typePath`,`typeId`,`typeName`,`specId`,`specName`,`count`,`rcount`,`price`,`priceOrg`,`discountPrice`,`isSuit`,`suitId`,`workerNo`,`saleDate`,`deviceName`,`deviceMac`,`deviceIp`,`posNo`,`amount`,`discount`,`discountTotal`,`receivable`,`addPriceTotal`,`discountAddTotal`,`amountAddTotal`,`amountTotal`,`receivableTotal`,`isMember`,`memberNo`,`isInvalid`,`lineNo`,`seqNo`,`weather`,`weeker`,`isStockDeal`,`estimatedCost`,`estimatedProfitAmount`,`estimatedProfitMargin`,`totalCost`,`profitAmount`,`profitMargin`,`tableName`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_vpos_store_order_product + + `id`,`tenantId` + ,`clientId` + ,`parentId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`ticketId` + ,`busNo` + ,`busMode` + ,`tableNo` + ,`productId` + ,`productNo` + ,`productName` + ,`productUnitId` + ,`productUnitName` + ,`productImageUrl` + ,`seriesId` + ,`seriesName` + ,`typePath` + ,`typeId` + ,`typeName` + ,`specId` + ,`specName` + ,`count` + ,`rcount` + ,`price` + ,`priceOrg` + ,`discountPrice` + ,`isSuit` + ,`suitId` + ,`workerNo` + ,`saleDate` + ,`deviceName` + ,`deviceMac` + ,`deviceIp` + ,`posNo` + ,`amount` + ,`discount` + ,`discountTotal` + ,`receivable` + ,`addPriceTotal` + ,`discountAddTotal` + ,`amountAddTotal` + ,`amountTotal` + ,`receivableTotal` + ,`isMember` + ,`memberNo` + ,`isInvalid` + ,`lineNo` + ,`seqNo` + ,`weather` + ,`weeker` + ,`isStockDeal` + ,`estimatedCost` + ,`estimatedProfitAmount` + ,`estimatedProfitMargin` + ,`totalCost` + ,`profitAmount` + ,`profitMargin` + ,`tableName` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{parentId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{ticketId} + ,#{busNo} + ,#{busMode} + ,#{tableNo} + ,#{productId} + ,#{productNo} + ,#{productName} + ,#{productUnitId} + ,#{productUnitName} + ,#{productImageUrl} + ,#{seriesId} + ,#{seriesName} + ,#{typePath} + ,#{typeId} + ,#{typeName} + ,#{specId} + ,#{specName} + ,#{count} + ,#{rcount} + ,#{price} + ,#{priceOrg} + ,#{discountPrice} + ,#{isSuit} + ,#{suitId} + ,#{workerNo} + ,#{saleDate} + ,#{deviceName} + ,#{deviceMac} + ,#{deviceIp} + ,#{posNo} + ,#{amount} + ,#{discount} + ,#{discountTotal} + ,#{receivable} + ,#{addPriceTotal} + ,#{discountAddTotal} + ,#{amountAddTotal} + ,#{amountTotal} + ,#{receivableTotal} + ,#{isMember} + ,#{memberNo} + ,#{isInvalid} + ,#{lineNo} + ,#{seqNo} + ,#{weather} + ,#{weeker} + ,#{isStockDeal} + ,#{estimatedCost} + ,#{estimatedProfitAmount} + ,#{estimatedProfitMargin} + ,#{totalCost} + ,#{profitAmount} + ,#{profitMargin} + ,#{tableName} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_vpos_store_order_product + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`parentId` = #{parentId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`busMode` = #{busMode} + ,`tableNo` = #{tableNo} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`productName` = #{productName} + ,`productUnitId` = #{productUnitId} + ,`productUnitName` = #{productUnitName} + ,`productImageUrl` = #{productImageUrl} + ,`seriesId` = #{seriesId} + ,`seriesName` = #{seriesName} + ,`typePath` = #{typePath} + ,`typeId` = #{typeId} + ,`typeName` = #{typeName} + ,`specId` = #{specId} + ,`specName` = #{specName} + ,`count` = #{count} + ,`rcount` = #{rcount} + ,`price` = #{price} + ,`priceOrg` = #{priceOrg} + ,`discountPrice` = #{discountPrice} + ,`isSuit` = #{isSuit} + ,`suitId` = #{suitId} + ,`workerNo` = #{workerNo} + ,`saleDate` = #{saleDate} + ,`deviceName` = #{deviceName} + ,`deviceMac` = #{deviceMac} + ,`deviceIp` = #{deviceIp} + ,`posNo` = #{posNo} + ,`amount` = #{amount} + ,`discount` = #{discount} + ,`discountTotal` = #{discountTotal} + ,`receivable` = #{receivable} + ,`addPriceTotal` = #{addPriceTotal} + ,`discountAddTotal` = #{discountAddTotal} + ,`amountAddTotal` = #{amountAddTotal} + ,`amountTotal` = #{amountTotal} + ,`receivableTotal` = #{receivableTotal} + ,`isMember` = #{isMember} + ,`memberNo` = #{memberNo} + ,`isInvalid` = #{isInvalid} + ,`lineNo` = #{lineNo} + ,`seqNo` = #{seqNo} + ,`weather` = #{weather} + ,`weeker` = #{weeker} + ,`isStockDeal` = #{isStockDeal} + ,`estimatedCost` = #{estimatedCost} + ,`estimatedProfitAmount` = #{estimatedProfitAmount} + ,`estimatedProfitMargin` = #{estimatedProfitMargin} + ,`totalCost` = #{totalCost} + ,`profitAmount` = #{profitAmount} + ,`profitMargin` = #{profitMargin} + ,`tableName` = #{tableName} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_vpos_store_order_product + where `id` = #{id} + + + + delete from cy_vpos_store_order_product + ${condition} + + + + delete from cy_vpos_store_order_product + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/VposStorePayMapper.xml b/food-pdm-tools/src/generate/food/mybatis/VposStorePayMapper.xml new file mode 100644 index 0000000..90b8cb6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/VposStorePayMapper.xml @@ -0,0 +1,212 @@ + + + + + + `id`,`clientId`,`tenantId`,`storeId`,`storeNo`,`storeName`,`payNo`,`ticketId`,`busNo`,`busMode`,`tableNo`,`payTypeNo`,`payType`,`paid`,`rchange`,`money`,`overAmount`,`workNo`,`deviceName`,`deviceMac`,`deviceIp`,`posNo`,`voucherNo`,`payDate`,`cardno`,`cardYe`,`cardJf`,`incomeFlag`,`otherRateType`,`otherRateValue`,`otherRate`,`payChannel`,`memo`,`isInvalid`,`tableName`,`ext1`,`ext2`,`ext3`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_vpos_store_pay + + `id`,`tenantId` + ,`clientId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`payNo` + ,`ticketId` + ,`busNo` + ,`busMode` + ,`tableNo` + ,`payTypeNo` + ,`payType` + ,`paid` + ,`rchange` + ,`money` + ,`overAmount` + ,`workNo` + ,`deviceName` + ,`deviceMac` + ,`deviceIp` + ,`posNo` + ,`voucherNo` + ,`payDate` + ,`cardno` + ,`cardYe` + ,`cardJf` + ,`incomeFlag` + ,`otherRateType` + ,`otherRateValue` + ,`otherRate` + ,`payChannel` + ,`memo` + ,`isInvalid` + ,`tableName` + ,`ext1` + ,`ext2` + ,`ext3` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{clientId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{payNo} + ,#{ticketId} + ,#{busNo} + ,#{busMode} + ,#{tableNo} + ,#{payTypeNo} + ,#{payType} + ,#{paid} + ,#{rchange} + ,#{money} + ,#{overAmount} + ,#{workNo} + ,#{deviceName} + ,#{deviceMac} + ,#{deviceIp} + ,#{posNo} + ,#{voucherNo} + ,#{payDate} + ,#{cardno} + ,#{cardYe} + ,#{cardJf} + ,#{incomeFlag} + ,#{otherRateType} + ,#{otherRateValue} + ,#{otherRate} + ,#{payChannel} + ,#{memo} + ,#{isInvalid} + ,#{tableName} + ,#{ext1} + ,#{ext2} + ,#{ext3} + ,#{createDate} + ,#{createUser} + + + + + update cy_vpos_store_pay + + `tenantId` = #{tenantId} + ,`clientId` = #{clientId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`payNo` = #{payNo} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`busMode` = #{busMode} + ,`tableNo` = #{tableNo} + ,`payTypeNo` = #{payTypeNo} + ,`payType` = #{payType} + ,`paid` = #{paid} + ,`rchange` = #{rchange} + ,`money` = #{money} + ,`overAmount` = #{overAmount} + ,`workNo` = #{workNo} + ,`deviceName` = #{deviceName} + ,`deviceMac` = #{deviceMac} + ,`deviceIp` = #{deviceIp} + ,`posNo` = #{posNo} + ,`voucherNo` = #{voucherNo} + ,`payDate` = #{payDate} + ,`cardno` = #{cardno} + ,`cardYe` = #{cardYe} + ,`cardJf` = #{cardJf} + ,`incomeFlag` = #{incomeFlag} + ,`otherRateType` = #{otherRateType} + ,`otherRateValue` = #{otherRateValue} + ,`otherRate` = #{otherRate} + ,`payChannel` = #{payChannel} + ,`memo` = #{memo} + ,`isInvalid` = #{isInvalid} + ,`tableName` = #{tableName} + ,`ext1` = #{ext1} + ,`ext2` = #{ext2} + ,`ext3` = #{ext3} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_vpos_store_pay + where `id` = #{id} + + + + delete from cy_vpos_store_pay + ${condition} + + + + delete from cy_vpos_store_pay + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/VposUserMapper.xml b/food-pdm-tools/src/generate/food/mybatis/VposUserMapper.xml new file mode 100644 index 0000000..3a55da1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/VposUserMapper.xml @@ -0,0 +1,134 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`sex`,`birthday`,`email`,`mobile`,`isLogin`,`passwd`,`enable`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_vpos_user + + `id`,`tenantId` + ,`no` + ,`name` + ,`sex` + ,`birthday` + ,`email` + ,`mobile` + ,`isLogin` + ,`passwd` + ,`enable` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{sex} + ,#{birthday} + ,#{email} + ,#{mobile} + ,#{isLogin} + ,#{passwd} + ,#{enable} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_vpos_user + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`sex` = #{sex} + ,`birthday` = #{birthday} + ,`email` = #{email} + ,`mobile` = #{mobile} + ,`isLogin` = #{isLogin} + ,`passwd` = #{passwd} + ,`enable` = #{enable} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_vpos_user + where `id` = #{id} + + + + delete from cy_vpos_user + ${condition} + + + + delete from cy_vpos_user + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/VposUserSeriesMapper.xml b/food-pdm-tools/src/generate/food/mybatis/VposUserSeriesMapper.xml new file mode 100644 index 0000000..6b39bcc --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/VposUserSeriesMapper.xml @@ -0,0 +1,116 @@ + + + + + + `id`,`tenantId`,`userId`,`seriesId`,`seriesNo`,`seriesName`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_vpos_user_series + + `id`,`tenantId` + ,`userId` + ,`seriesId` + ,`seriesNo` + ,`seriesName` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{userId} + ,#{seriesId} + ,#{seriesNo} + ,#{seriesName} + ,#{createUser} + ,#{createDate} + + + + + update cy_vpos_user_series + + `tenantId` = #{tenantId} + ,`userId` = #{userId} + ,`seriesId` = #{seriesId} + ,`seriesNo` = #{seriesNo} + ,`seriesName` = #{seriesName} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_vpos_user_series + where `id` = #{id} + + + + delete from cy_vpos_user_series + ${condition} + + + + delete from cy_vpos_user_series + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WorkerStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WorkerStoreMapper.xml new file mode 100644 index 0000000..4442c90 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WorkerStoreMapper.xml @@ -0,0 +1,104 @@ + + + + + + `tenantId`,`workerId`,`storeId` + + + + + + + + + + + + + + + + + + + + insert into cy_worker_store + + `id`,`tenantId` + ,`workerId` + ,`storeId` + + + #{id},#{tenantId} + ,#{workerId} + ,#{storeId} + + + + + update cy_worker_store + + `tenantId` = #{tenantId} + ,`workerId` = #{workerId} + ,`storeId` = #{storeId} + + where `id` = #{id} + + + + delete from cy_worker_store + where `id` = #{id} + + + + delete from cy_worker_store + ${condition} + + + + delete from cy_worker_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxAdPictureMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxAdPictureMapper.xml new file mode 100644 index 0000000..ff4ce27 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxAdPictureMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`orderNo`,`name`,`width`,`height`,`groupName`,`storageFileName`,`linkUrl`,`deleteFlag`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_ad_picture + + `id`,`tenantId` + ,`orderNo` + ,`name` + ,`width` + ,`height` + ,`groupName` + ,`storageFileName` + ,`linkUrl` + ,`deleteFlag` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{orderNo} + ,#{name} + ,#{width} + ,#{height} + ,#{groupName} + ,#{storageFileName} + ,#{linkUrl} + ,#{deleteFlag} + ,#{createDate} + ,#{createUser} + + + + + update cy_wx_ad_picture + + `tenantId` = #{tenantId} + ,`orderNo` = #{orderNo} + ,`name` = #{name} + ,`width` = #{width} + ,`height` = #{height} + ,`groupName` = #{groupName} + ,`storageFileName` = #{storageFileName} + ,`linkUrl` = #{linkUrl} + ,`deleteFlag` = #{deleteFlag} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_wx_ad_picture + where `id` = #{id} + + + + delete from cy_wx_ad_picture + ${condition} + + + + delete from cy_wx_ad_picture + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxAdjustPriceGoodsMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxAdjustPriceGoodsMapper.xml new file mode 100644 index 0000000..c159eb1 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxAdjustPriceGoodsMapper.xml @@ -0,0 +1,125 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`goodsId`,`productId`,`specId`,`price`,`memberPrice`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_adjust_price_goods + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`goodsId` + ,`productId` + ,`specId` + ,`price` + ,`memberPrice` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{goodsId} + ,#{productId} + ,#{specId} + ,#{price} + ,#{memberPrice} + ,#{createUser} + ,#{createDate} + + + + + update cy_wx_adjust_price_goods + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`goodsId` = #{goodsId} + ,`productId` = #{productId} + ,`specId` = #{specId} + ,`price` = #{price} + ,`memberPrice` = #{memberPrice} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_wx_adjust_price_goods + where `id` = #{id} + + + + delete from cy_wx_adjust_price_goods + ${condition} + + + + delete from cy_wx_adjust_price_goods + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxAdjustPriceStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxAdjustPriceStoreMapper.xml new file mode 100644 index 0000000..fbfcec8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxAdjustPriceStoreMapper.xml @@ -0,0 +1,113 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`storeId`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_adjust_price_store + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`storeId` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{storeId} + ,#{createUser} + ,#{createDate} + + + + + update cy_wx_adjust_price_store + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`storeId` = #{storeId} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_wx_adjust_price_store + where `id` = #{id} + + + + delete from cy_wx_adjust_price_store + ${condition} + + + + delete from cy_wx_adjust_price_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxAdjustPriceTicketMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxAdjustPriceTicketMapper.xml new file mode 100644 index 0000000..bcb9d92 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxAdjustPriceTicketMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`no`,`effectDate`,`description`,`status`,`checkPeople`,`checkDate`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_adjust_price_ticket + + `id`,`tenantId` + ,`no` + ,`effectDate` + ,`description` + ,`status` + ,`checkPeople` + ,`checkDate` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{effectDate} + ,#{description} + ,#{status} + ,#{checkPeople} + ,#{checkDate} + ,#{createUser} + ,#{createDate} + + + + + update cy_wx_adjust_price_ticket + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`effectDate` = #{effectDate} + ,`description` = #{description} + ,`status` = #{status} + ,`checkPeople` = #{checkPeople} + ,`checkDate` = #{checkDate} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_wx_adjust_price_ticket + where `id` = #{id} + + + + delete from cy_wx_adjust_price_ticket + ${condition} + + + + delete from cy_wx_adjust_price_ticket + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxGoodsCategoryMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxGoodsCategoryMapper.xml new file mode 100644 index 0000000..a0ee52f --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxGoodsCategoryMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`name`,`description`,`orderNo`,`path`,`deleteFlag`,`nameEn`,`typeId`,`typePath`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_goods_category + + `id`,`tenantId` + ,`name` + ,`description` + ,`orderNo` + ,`path` + ,`deleteFlag` + ,`nameEn` + ,`typeId` + ,`typePath` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{name} + ,#{description} + ,#{orderNo} + ,#{path} + ,#{deleteFlag} + ,#{nameEn} + ,#{typeId} + ,#{typePath} + ,#{createUser} + ,#{createDate} + + + + + update cy_wx_goods_category + + `tenantId` = #{tenantId} + ,`name` = #{name} + ,`description` = #{description} + ,`orderNo` = #{orderNo} + ,`path` = #{path} + ,`deleteFlag` = #{deleteFlag} + ,`nameEn` = #{nameEn} + ,`typeId` = #{typeId} + ,`typePath` = #{typePath} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_wx_goods_category + where `id` = #{id} + + + + delete from cy_wx_goods_category + ${condition} + + + + delete from cy_wx_goods_category + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxGoodsMakeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxGoodsMakeMapper.xml new file mode 100644 index 0000000..94e7656 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxGoodsMakeMapper.xml @@ -0,0 +1,110 @@ + + + + + + `tenantId`,`productId`,`typeId`,`makeId`,`addPrice` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_goods_make + + `id`,`tenantId` + ,`productId` + ,`typeId` + ,`makeId` + ,`addPrice` + + + #{id},#{tenantId} + ,#{productId} + ,#{typeId} + ,#{makeId} + ,#{addPrice} + + + + + update cy_wx_goods_make + + `tenantId` = #{tenantId} + ,`productId` = #{productId} + ,`typeId` = #{typeId} + ,`makeId` = #{makeId} + ,`addPrice` = #{addPrice} + + where `id` = #{id} + + + + delete from cy_wx_goods_make + where `id` = #{id} + + + + delete from cy_wx_goods_make + ${condition} + + + + delete from cy_wx_goods_make + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxGoodsMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxGoodsMapper.xml new file mode 100644 index 0000000..aef9eba --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxGoodsMapper.xml @@ -0,0 +1,158 @@ + + + + + + `id`,`tenantId`,`productId`,`productNo`,`specId`,`name`,`specName`,`description`,`categoryId`,`categoryPath`,`orderNo`,`isNew`,`price`,`memberPrice`,`minCount`,`limitCount`,`suitFlag`,`deleteFlag`,`boxPrice`,`nameEn`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_goods + + `id`,`tenantId` + ,`productId` + ,`productNo` + ,`specId` + ,`name` + ,`specName` + ,`description` + ,`categoryId` + ,`categoryPath` + ,`orderNo` + ,`isNew` + ,`price` + ,`memberPrice` + ,`minCount` + ,`limitCount` + ,`suitFlag` + ,`deleteFlag` + ,`boxPrice` + ,`nameEn` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{productId} + ,#{productNo} + ,#{specId} + ,#{name} + ,#{specName} + ,#{description} + ,#{categoryId} + ,#{categoryPath} + ,#{orderNo} + ,#{isNew} + ,#{price} + ,#{memberPrice} + ,#{minCount} + ,#{limitCount} + ,#{suitFlag} + ,#{deleteFlag} + ,#{boxPrice} + ,#{nameEn} + ,#{createUser} + ,#{createDate} + + + + + update cy_wx_goods + + `tenantId` = #{tenantId} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`specId` = #{specId} + ,`name` = #{name} + ,`specName` = #{specName} + ,`description` = #{description} + ,`categoryId` = #{categoryId} + ,`categoryPath` = #{categoryPath} + ,`orderNo` = #{orderNo} + ,`isNew` = #{isNew} + ,`price` = #{price} + ,`memberPrice` = #{memberPrice} + ,`minCount` = #{minCount} + ,`limitCount` = #{limitCount} + ,`suitFlag` = #{suitFlag} + ,`deleteFlag` = #{deleteFlag} + ,`boxPrice` = #{boxPrice} + ,`nameEn` = #{nameEn} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_wx_goods + where `id` = #{id} + + + + delete from cy_wx_goods + ${condition} + + + + delete from cy_wx_goods + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxGoodsTemplateDetailMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxGoodsTemplateDetailMapper.xml new file mode 100644 index 0000000..5fceb6a --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxGoodsTemplateDetailMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`templateId`,`goodsId`,`productId`,`specId`,`price`,`memberPrice`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_goods_template_detail + + `id`,`tenantId` + ,`templateId` + ,`goodsId` + ,`productId` + ,`specId` + ,`price` + ,`memberPrice` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{templateId} + ,#{goodsId} + ,#{productId} + ,#{specId} + ,#{price} + ,#{memberPrice} + ,#{createUser} + ,#{createDate} + + + + + update cy_wx_goods_template_detail + + `tenantId` = #{tenantId} + ,`templateId` = #{templateId} + ,`goodsId` = #{goodsId} + ,`productId` = #{productId} + ,`specId` = #{specId} + ,`price` = #{price} + ,`memberPrice` = #{memberPrice} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_wx_goods_template_detail + where `id` = #{id} + + + + delete from cy_wx_goods_template_detail + ${condition} + + + + delete from cy_wx_goods_template_detail + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxGoodsTemplateMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxGoodsTemplateMapper.xml new file mode 100644 index 0000000..b0e3d4d --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxGoodsTemplateMapper.xml @@ -0,0 +1,113 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_goods_template + + `id`,`tenantId` + ,`no` + ,`name` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update cy_wx_goods_template + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_wx_goods_template + where `id` = #{id} + + + + delete from cy_wx_goods_template + ${condition} + + + + delete from cy_wx_goods_template + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxGoodsTemplateStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxGoodsTemplateStoreMapper.xml new file mode 100644 index 0000000..c883d69 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxGoodsTemplateStoreMapper.xml @@ -0,0 +1,110 @@ + + + + + + `id`,`tenantId`,`templateId`,`storeId`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_goods_template_store + + `id`,`tenantId` + ,`templateId` + ,`storeId` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{templateId} + ,#{storeId} + ,#{createUser} + ,#{createDate} + + + + + update cy_wx_goods_template_store + + `tenantId` = #{tenantId} + ,`templateId` = #{templateId} + ,`storeId` = #{storeId} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_wx_goods_template_store + where `id` = #{id} + + + + delete from cy_wx_goods_template_store + ${condition} + + + + delete from cy_wx_goods_template_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxPaymentParameterMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxPaymentParameterMapper.xml new file mode 100644 index 0000000..0764776 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxPaymentParameterMapper.xml @@ -0,0 +1,122 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`sign`,`pbody`,`enabled`,`certText`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_payment_parameter + + `id`,`tenantId` + ,`no` + ,`name` + ,`sign` + ,`pbody` + ,`enabled` + ,`certText` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{sign} + ,#{pbody} + ,#{enabled} + ,#{certText} + ,#{createUser} + ,#{createDate} + + + + + update cy_wx_payment_parameter + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`sign` = #{sign} + ,`pbody` = #{pbody} + ,`enabled` = #{enabled} + ,`certText` = #{certText} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from cy_wx_payment_parameter + where `id` = #{id} + + + + delete from cy_wx_payment_parameter + ${condition} + + + + delete from cy_wx_payment_parameter + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxPaymentParameterStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxPaymentParameterStoreMapper.xml new file mode 100644 index 0000000..a3742f5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxPaymentParameterStoreMapper.xml @@ -0,0 +1,107 @@ + + + + + + `tenantId`,`storeId`,`wxStoreId`,`parameterId` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_payment_parameter_store + + `id`,`tenantId` + ,`storeId` + ,`wxStoreId` + ,`parameterId` + + + #{id},#{tenantId} + ,#{storeId} + ,#{wxStoreId} + ,#{parameterId} + + + + + update cy_wx_payment_parameter_store + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`wxStoreId` = #{wxStoreId} + ,`parameterId` = #{parameterId} + + where `id` = #{id} + + + + delete from cy_wx_payment_parameter_store + where `id` = #{id} + + + + delete from cy_wx_payment_parameter_store + ${condition} + + + + delete from cy_wx_payment_parameter_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxQrcodeSettingMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxQrcodeSettingMapper.xml new file mode 100644 index 0000000..ce7dbe5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxQrcodeSettingMapper.xml @@ -0,0 +1,131 @@ + + + + + + `id`,`tenantId`,`width`,`height`,`linkAddress`,`logoName`,`logoWidth`,`logoHeight`,`groupName`,`storageFileName`,`imgLink`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_qrcode_setting + + `id`,`tenantId` + ,`width` + ,`height` + ,`linkAddress` + ,`logoName` + ,`logoWidth` + ,`logoHeight` + ,`groupName` + ,`storageFileName` + ,`imgLink` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{width} + ,#{height} + ,#{linkAddress} + ,#{logoName} + ,#{logoWidth} + ,#{logoHeight} + ,#{groupName} + ,#{storageFileName} + ,#{imgLink} + ,#{createDate} + ,#{createUser} + + + + + update cy_wx_qrcode_setting + + `tenantId` = #{tenantId} + ,`width` = #{width} + ,`height` = #{height} + ,`linkAddress` = #{linkAddress} + ,`logoName` = #{logoName} + ,`logoWidth` = #{logoWidth} + ,`logoHeight` = #{logoHeight} + ,`groupName` = #{groupName} + ,`storageFileName` = #{storageFileName} + ,`imgLink` = #{imgLink} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_wx_qrcode_setting + where `id` = #{id} + + + + delete from cy_wx_qrcode_setting + ${condition} + + + + delete from cy_wx_qrcode_setting + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxSalesDiscountInfoMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxSalesDiscountInfoMapper.xml new file mode 100644 index 0000000..ccc9e97 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxSalesDiscountInfoMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`storeId`,`ticketId`,`busNo`,`memberId`,`type`,`info`,`discountMoney`,`saleDate`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_sales_discount_info + + `id`,`tenantId` + ,`storeId` + ,`ticketId` + ,`busNo` + ,`memberId` + ,`type` + ,`info` + ,`discountMoney` + ,`saleDate` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{storeId} + ,#{ticketId} + ,#{busNo} + ,#{memberId} + ,#{type} + ,#{info} + ,#{discountMoney} + ,#{saleDate} + ,#{createDate} + ,#{createUser} + + + + + update cy_wx_sales_discount_info + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`memberId` = #{memberId} + ,`type` = #{type} + ,`info` = #{info} + ,`discountMoney` = #{discountMoney} + ,`saleDate` = #{saleDate} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_wx_sales_discount_info + where `id` = #{id} + + + + delete from cy_wx_sales_discount_info + ${condition} + + + + delete from cy_wx_sales_discount_info + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxSalesOrderItemMakeMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxSalesOrderItemMakeMapper.xml new file mode 100644 index 0000000..cd1ebc2 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxSalesOrderItemMakeMapper.xml @@ -0,0 +1,158 @@ + + + + + + `id`,`tenantId`,`storeId`,`storeNo`,`storeName`,`ticketId`,`busNo`,`memberId`,`orderItemId`,`makeId`,`makeName`,`addPrice`,`discountPrice`,`count`,`rcount`,`addTotal`,`discountAddTotal`,`discount`,`qtyFlag`,`saleDate`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_sales_order_item_make + + `id`,`tenantId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`ticketId` + ,`busNo` + ,`memberId` + ,`orderItemId` + ,`makeId` + ,`makeName` + ,`addPrice` + ,`discountPrice` + ,`count` + ,`rcount` + ,`addTotal` + ,`discountAddTotal` + ,`discount` + ,`qtyFlag` + ,`saleDate` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{ticketId} + ,#{busNo} + ,#{memberId} + ,#{orderItemId} + ,#{makeId} + ,#{makeName} + ,#{addPrice} + ,#{discountPrice} + ,#{count} + ,#{rcount} + ,#{addTotal} + ,#{discountAddTotal} + ,#{discount} + ,#{qtyFlag} + ,#{saleDate} + ,#{createDate} + ,#{createUser} + + + + + update cy_wx_sales_order_item_make + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`memberId` = #{memberId} + ,`orderItemId` = #{orderItemId} + ,`makeId` = #{makeId} + ,`makeName` = #{makeName} + ,`addPrice` = #{addPrice} + ,`discountPrice` = #{discountPrice} + ,`count` = #{count} + ,`rcount` = #{rcount} + ,`addTotal` = #{addTotal} + ,`discountAddTotal` = #{discountAddTotal} + ,`discount` = #{discount} + ,`qtyFlag` = #{qtyFlag} + ,`saleDate` = #{saleDate} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_wx_sales_order_item_make + where `id` = #{id} + + + + delete from cy_wx_sales_order_item_make + ${condition} + + + + delete from cy_wx_sales_order_item_make + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxSalesOrderItemMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxSalesOrderItemMapper.xml new file mode 100644 index 0000000..11d76d5 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxSalesOrderItemMapper.xml @@ -0,0 +1,227 @@ + + + + + + `id`,`tenantId`,`storeId`,`storeNo`,`storeName`,`ticketId`,`busNo`,`memberId`,`tableNo`,`tableName`,`lineNo`,`goodsId`,`goodsName`,`specName`,`categoryId`,`categoryPath`,`categoryName`,`productId`,`productNo`,`specId`,`productUnitId`,`productUnitName`,`count`,`rcount`,`price`,`priceOrg`,`discountPrice`,`saleDate`,`amount`,`discount`,`discountTotal`,`receivable`,`addPriceTotal`,`discountAddTotal`,`amountAddTotal`,`amountTotal`,`receivableTotal`,`isMember`,`isSuit`,`suitId`,`parentId`,`boxNum`,`boxPrice`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_sales_order_item + + `id`,`tenantId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`ticketId` + ,`busNo` + ,`memberId` + ,`tableNo` + ,`tableName` + ,`lineNo` + ,`goodsId` + ,`goodsName` + ,`specName` + ,`categoryId` + ,`categoryPath` + ,`categoryName` + ,`productId` + ,`productNo` + ,`specId` + ,`productUnitId` + ,`productUnitName` + ,`count` + ,`rcount` + ,`price` + ,`priceOrg` + ,`discountPrice` + ,`saleDate` + ,`amount` + ,`discount` + ,`discountTotal` + ,`receivable` + ,`addPriceTotal` + ,`discountAddTotal` + ,`amountAddTotal` + ,`amountTotal` + ,`receivableTotal` + ,`isMember` + ,`isSuit` + ,`suitId` + ,`parentId` + ,`boxNum` + ,`boxPrice` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{ticketId} + ,#{busNo} + ,#{memberId} + ,#{tableNo} + ,#{tableName} + ,#{lineNo} + ,#{goodsId} + ,#{goodsName} + ,#{specName} + ,#{categoryId} + ,#{categoryPath} + ,#{categoryName} + ,#{productId} + ,#{productNo} + ,#{specId} + ,#{productUnitId} + ,#{productUnitName} + ,#{count} + ,#{rcount} + ,#{price} + ,#{priceOrg} + ,#{discountPrice} + ,#{saleDate} + ,#{amount} + ,#{discount} + ,#{discountTotal} + ,#{receivable} + ,#{addPriceTotal} + ,#{discountAddTotal} + ,#{amountAddTotal} + ,#{amountTotal} + ,#{receivableTotal} + ,#{isMember} + ,#{isSuit} + ,#{suitId} + ,#{parentId} + ,#{boxNum} + ,#{boxPrice} + ,#{createDate} + ,#{createUser} + + + + + update cy_wx_sales_order_item + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`memberId` = #{memberId} + ,`tableNo` = #{tableNo} + ,`tableName` = #{tableName} + ,`lineNo` = #{lineNo} + ,`goodsId` = #{goodsId} + ,`goodsName` = #{goodsName} + ,`specName` = #{specName} + ,`categoryId` = #{categoryId} + ,`categoryPath` = #{categoryPath} + ,`categoryName` = #{categoryName} + ,`productId` = #{productId} + ,`productNo` = #{productNo} + ,`specId` = #{specId} + ,`productUnitId` = #{productUnitId} + ,`productUnitName` = #{productUnitName} + ,`count` = #{count} + ,`rcount` = #{rcount} + ,`price` = #{price} + ,`priceOrg` = #{priceOrg} + ,`discountPrice` = #{discountPrice} + ,`saleDate` = #{saleDate} + ,`amount` = #{amount} + ,`discount` = #{discount} + ,`discountTotal` = #{discountTotal} + ,`receivable` = #{receivable} + ,`addPriceTotal` = #{addPriceTotal} + ,`discountAddTotal` = #{discountAddTotal} + ,`amountAddTotal` = #{amountAddTotal} + ,`amountTotal` = #{amountTotal} + ,`receivableTotal` = #{receivableTotal} + ,`isMember` = #{isMember} + ,`isSuit` = #{isSuit} + ,`suitId` = #{suitId} + ,`parentId` = #{parentId} + ,`boxNum` = #{boxNum} + ,`boxPrice` = #{boxPrice} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_wx_sales_order_item + where `id` = #{id} + + + + delete from cy_wx_sales_order_item + ${condition} + + + + delete from cy_wx_sales_order_item + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxSalesOrderItemPromoMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxSalesOrderItemPromoMapper.xml new file mode 100644 index 0000000..1674c4f --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxSalesOrderItemPromoMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`storeId`,`ticketId`,`busNo`,`orderItemId`,`type`,`info`,`discountMoney`,`saleDate`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_sales_order_item_promo + + `id`,`tenantId` + ,`storeId` + ,`ticketId` + ,`busNo` + ,`orderItemId` + ,`type` + ,`info` + ,`discountMoney` + ,`saleDate` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{storeId} + ,#{ticketId} + ,#{busNo} + ,#{orderItemId} + ,#{type} + ,#{info} + ,#{discountMoney} + ,#{saleDate} + ,#{createDate} + ,#{createUser} + + + + + update cy_wx_sales_order_item_promo + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`orderItemId` = #{orderItemId} + ,`type` = #{type} + ,`info` = #{info} + ,`discountMoney` = #{discountMoney} + ,`saleDate` = #{saleDate} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_wx_sales_order_item_promo + where `id` = #{id} + + + + delete from cy_wx_sales_order_item_promo + ${condition} + + + + delete from cy_wx_sales_order_item_promo + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxSalesOrderLogMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxSalesOrderLogMapper.xml new file mode 100644 index 0000000..5166de8 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxSalesOrderLogMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`ticketId`,`ticketNo`,`type`,`status`,`description`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_sales_order_log + + `id`,`tenantId` + ,`ticketId` + ,`ticketNo` + ,`type` + ,`status` + ,`description` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{ticketId} + ,#{ticketNo} + ,#{type} + ,#{status} + ,#{description} + ,#{createDate} + ,#{createUser} + + + + + update cy_wx_sales_order_log + + `tenantId` = #{tenantId} + ,`ticketId` = #{ticketId} + ,`ticketNo` = #{ticketNo} + ,`type` = #{type} + ,`status` = #{status} + ,`description` = #{description} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_wx_sales_order_log + where `id` = #{id} + + + + delete from cy_wx_sales_order_log + ${condition} + + + + delete from cy_wx_sales_order_log + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxSalesOrderMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxSalesOrderMapper.xml new file mode 100644 index 0000000..2643f62 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxSalesOrderMapper.xml @@ -0,0 +1,221 @@ + + + + + + `id`,`tenantId`,`no`,`wid`,`memberId`,`phone`,`storeId`,`storeNo`,`storeName`,`daySeq`,`takeNo`,`status`,`refundStatus`,`channel`,`saleDate`,`tableNo`,`tableName`,`people`,`busMode`,`amount`,`discount`,`discountTotal`,`receivable`,`maling`,`paid`,`noOrg`,`backCause`,`isMember`,`isInvalid`,`description`,`payType`,`payMode`,`payDate`,`cancelDate`,`cancelReason`,`storeReason`,`receiveName`,`receiveMobile`,`receiveAddress`,`boxFee`,`distributionFee`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_sales_order + + `id`,`tenantId` + ,`no` + ,`wid` + ,`memberId` + ,`phone` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`daySeq` + ,`takeNo` + ,`status` + ,`refundStatus` + ,`channel` + ,`saleDate` + ,`tableNo` + ,`tableName` + ,`people` + ,`busMode` + ,`amount` + ,`discount` + ,`discountTotal` + ,`receivable` + ,`maling` + ,`paid` + ,`noOrg` + ,`backCause` + ,`isMember` + ,`isInvalid` + ,`description` + ,`payType` + ,`payMode` + ,`payDate` + ,`cancelDate` + ,`cancelReason` + ,`storeReason` + ,`receiveName` + ,`receiveMobile` + ,`receiveAddress` + ,`boxFee` + ,`distributionFee` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{wid} + ,#{memberId} + ,#{phone} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{daySeq} + ,#{takeNo} + ,#{status} + ,#{refundStatus} + ,#{channel} + ,#{saleDate} + ,#{tableNo} + ,#{tableName} + ,#{people} + ,#{busMode} + ,#{amount} + ,#{discount} + ,#{discountTotal} + ,#{receivable} + ,#{maling} + ,#{paid} + ,#{noOrg} + ,#{backCause} + ,#{isMember} + ,#{isInvalid} + ,#{description} + ,#{payType} + ,#{payMode} + ,#{payDate} + ,#{cancelDate} + ,#{cancelReason} + ,#{storeReason} + ,#{receiveName} + ,#{receiveMobile} + ,#{receiveAddress} + ,#{boxFee} + ,#{distributionFee} + ,#{createDate} + ,#{createUser} + + + + + update cy_wx_sales_order + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`wid` = #{wid} + ,`memberId` = #{memberId} + ,`phone` = #{phone} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`daySeq` = #{daySeq} + ,`takeNo` = #{takeNo} + ,`status` = #{status} + ,`refundStatus` = #{refundStatus} + ,`channel` = #{channel} + ,`saleDate` = #{saleDate} + ,`tableNo` = #{tableNo} + ,`tableName` = #{tableName} + ,`people` = #{people} + ,`busMode` = #{busMode} + ,`amount` = #{amount} + ,`discount` = #{discount} + ,`discountTotal` = #{discountTotal} + ,`receivable` = #{receivable} + ,`maling` = #{maling} + ,`paid` = #{paid} + ,`noOrg` = #{noOrg} + ,`backCause` = #{backCause} + ,`isMember` = #{isMember} + ,`isInvalid` = #{isInvalid} + ,`description` = #{description} + ,`payType` = #{payType} + ,`payMode` = #{payMode} + ,`payDate` = #{payDate} + ,`cancelDate` = #{cancelDate} + ,`cancelReason` = #{cancelReason} + ,`storeReason` = #{storeReason} + ,`receiveName` = #{receiveName} + ,`receiveMobile` = #{receiveMobile} + ,`receiveAddress` = #{receiveAddress} + ,`boxFee` = #{boxFee} + ,`distributionFee` = #{distributionFee} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_wx_sales_order + where `id` = #{id} + + + + delete from cy_wx_sales_order + ${condition} + + + + delete from cy_wx_sales_order + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxSalesPaymentMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxSalesPaymentMapper.xml new file mode 100644 index 0000000..71d10d6 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxSalesPaymentMapper.xml @@ -0,0 +1,149 @@ + + + + + + `id`,`tenantId`,`storeId`,`ticketId`,`busNo`,`memberId`,`payNo`,`payType`,`payMode`,`status`,`paid`,`rchange`,`money`,`voucherNo`,`payDate`,`payAccount`,`memo`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_sales_payment + + `id`,`tenantId` + ,`storeId` + ,`ticketId` + ,`busNo` + ,`memberId` + ,`payNo` + ,`payType` + ,`payMode` + ,`status` + ,`paid` + ,`rchange` + ,`money` + ,`voucherNo` + ,`payDate` + ,`payAccount` + ,`memo` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{storeId} + ,#{ticketId} + ,#{busNo} + ,#{memberId} + ,#{payNo} + ,#{payType} + ,#{payMode} + ,#{status} + ,#{paid} + ,#{rchange} + ,#{money} + ,#{voucherNo} + ,#{payDate} + ,#{payAccount} + ,#{memo} + ,#{createDate} + ,#{createUser} + + + + + update cy_wx_sales_payment + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`ticketId` = #{ticketId} + ,`busNo` = #{busNo} + ,`memberId` = #{memberId} + ,`payNo` = #{payNo} + ,`payType` = #{payType} + ,`payMode` = #{payMode} + ,`status` = #{status} + ,`paid` = #{paid} + ,`rchange` = #{rchange} + ,`money` = #{money} + ,`voucherNo` = #{voucherNo} + ,`payDate` = #{payDate} + ,`payAccount` = #{payAccount} + ,`memo` = #{memo} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_wx_sales_payment + where `id` = #{id} + + + + delete from cy_wx_sales_payment + ${condition} + + + + delete from cy_wx_sales_payment + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxStoreGoodsMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxStoreGoodsMapper.xml new file mode 100644 index 0000000..5987e17 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxStoreGoodsMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`storeId`,`goodsId`,`productId`,`specId`,`price`,`memberPrice`,`inventoryQuantity`,`saleStatus`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_store_goods + + `id`,`tenantId` + ,`storeId` + ,`goodsId` + ,`productId` + ,`specId` + ,`price` + ,`memberPrice` + ,`inventoryQuantity` + ,`saleStatus` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{storeId} + ,#{goodsId} + ,#{productId} + ,#{specId} + ,#{price} + ,#{memberPrice} + ,#{inventoryQuantity} + ,#{saleStatus} + ,#{createDate} + ,#{createUser} + + + + + update cy_wx_store_goods + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`goodsId` = #{goodsId} + ,`productId` = #{productId} + ,`specId` = #{specId} + ,`price` = #{price} + ,`memberPrice` = #{memberPrice} + ,`inventoryQuantity` = #{inventoryQuantity} + ,`saleStatus` = #{saleStatus} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_wx_store_goods + where `id` = #{id} + + + + delete from cy_wx_store_goods + ${condition} + + + + delete from cy_wx_store_goods + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxStoreMapper.xml new file mode 100644 index 0000000..0f4ea5b --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxStoreMapper.xml @@ -0,0 +1,164 @@ + + + + + + `id`,`tenantId`,`no`,`name`,`orderTel`,`address`,`enabled`,`deleteFlag`,`storeId`,`latitude`,`longitude`,`noticeInfo`,`isOpen`,`openTimeType`,`openTime`,`deliverFee`,`deliverFeeDiscountType`,`deliverFeeDiscountRule`,`wid`,`litAppAccountId`,`posNo`,`busModes`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_wx_store + + `id`,`tenantId` + ,`no` + ,`name` + ,`orderTel` + ,`address` + ,`enabled` + ,`deleteFlag` + ,`storeId` + ,`latitude` + ,`longitude` + ,`noticeInfo` + ,`isOpen` + ,`openTimeType` + ,`openTime` + ,`deliverFee` + ,`deliverFeeDiscountType` + ,`deliverFeeDiscountRule` + ,`wid` + ,`litAppAccountId` + ,`posNo` + ,`busModes` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{no} + ,#{name} + ,#{orderTel} + ,#{address} + ,#{enabled} + ,#{deleteFlag} + ,#{storeId} + ,#{latitude} + ,#{longitude} + ,#{noticeInfo} + ,#{isOpen} + ,#{openTimeType} + ,#{openTime} + ,#{deliverFee} + ,#{deliverFeeDiscountType} + ,#{deliverFeeDiscountRule} + ,#{wid} + ,#{litAppAccountId} + ,#{posNo} + ,#{busModes} + ,#{createDate} + ,#{createUser} + + + + + update cy_wx_store + + `tenantId` = #{tenantId} + ,`no` = #{no} + ,`name` = #{name} + ,`orderTel` = #{orderTel} + ,`address` = #{address} + ,`enabled` = #{enabled} + ,`deleteFlag` = #{deleteFlag} + ,`storeId` = #{storeId} + ,`latitude` = #{latitude} + ,`longitude` = #{longitude} + ,`noticeInfo` = #{noticeInfo} + ,`isOpen` = #{isOpen} + ,`openTimeType` = #{openTimeType} + ,`openTime` = #{openTime} + ,`deliverFee` = #{deliverFee} + ,`deliverFeeDiscountType` = #{deliverFeeDiscountType} + ,`deliverFeeDiscountRule` = #{deliverFeeDiscountRule} + ,`wid` = #{wid} + ,`litAppAccountId` = #{litAppAccountId} + ,`posNo` = #{posNo} + ,`busModes` = #{busModes} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_wx_store + where `id` = #{id} + + + + delete from cy_wx_store + ${condition} + + + + delete from cy_wx_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxdcDistributionAddressMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxdcDistributionAddressMapper.xml new file mode 100644 index 0000000..be3f763 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxdcDistributionAddressMapper.xml @@ -0,0 +1,128 @@ + + + + + + `id`,`tenantId`,`wid`,`openId`,`name`,`mobile`,`receiveMobile`,`receiveAddress`,`isDefaullt`,`addressLabel`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into mc_wxdc_distribution_address + + `id`,`tenantId` + ,`wid` + ,`openId` + ,`name` + ,`mobile` + ,`receiveMobile` + ,`receiveAddress` + ,`isDefaullt` + ,`addressLabel` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{wid} + ,#{openId} + ,#{name} + ,#{mobile} + ,#{receiveMobile} + ,#{receiveAddress} + ,#{isDefaullt} + ,#{addressLabel} + ,#{createUser} + ,#{createDate} + + + + + update mc_wxdc_distribution_address + + `tenantId` = #{tenantId} + ,`wid` = #{wid} + ,`openId` = #{openId} + ,`name` = #{name} + ,`mobile` = #{mobile} + ,`receiveMobile` = #{receiveMobile} + ,`receiveAddress` = #{receiveAddress} + ,`isDefaullt` = #{isDefaullt} + ,`addressLabel` = #{addressLabel} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from mc_wxdc_distribution_address + where `id` = #{id} + + + + delete from mc_wxdc_distribution_address + ${condition} + + + + delete from mc_wxdc_distribution_address + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/WxdcRechargeOrderMapper.xml b/food-pdm-tools/src/generate/food/mybatis/WxdcRechargeOrderMapper.xml new file mode 100644 index 0000000..073e3e9 --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/WxdcRechargeOrderMapper.xml @@ -0,0 +1,170 @@ + + + + + + `id`,`tenantId`,`storeId`,`storeNo`,`storeName`,`posNo`,`workerNo`,`tradeNo`,`payVoucherNo`,`cardNo`,`mobile`,`schemeId`,`schemeNo`,`amount`,`giftAmount`,`giftPoint`,`preAmount`,`aftAmount`,`prePoint`,`aftPoint`,`giftDetail`,`status`,`result`,`description`,`createUser`,`createDate`,`modifyUser`,`modifyDate` + + + + + + + + + + + + + + + + + + + + insert into wx_wxdc_recharge_order + + `id`,`tenantId` + ,`storeId` + ,`storeNo` + ,`storeName` + ,`posNo` + ,`workerNo` + ,`tradeNo` + ,`payVoucherNo` + ,`cardNo` + ,`mobile` + ,`schemeId` + ,`schemeNo` + ,`amount` + ,`giftAmount` + ,`giftPoint` + ,`preAmount` + ,`aftAmount` + ,`prePoint` + ,`aftPoint` + ,`giftDetail` + ,`status` + ,`result` + ,`description` + ,`createUser` + ,`createDate` + + + #{id},#{tenantId} + ,#{storeId} + ,#{storeNo} + ,#{storeName} + ,#{posNo} + ,#{workerNo} + ,#{tradeNo} + ,#{payVoucherNo} + ,#{cardNo} + ,#{mobile} + ,#{schemeId} + ,#{schemeNo} + ,#{amount} + ,#{giftAmount} + ,#{giftPoint} + ,#{preAmount} + ,#{aftAmount} + ,#{prePoint} + ,#{aftPoint} + ,#{giftDetail} + ,#{status} + ,#{result} + ,#{description} + ,#{createUser} + ,#{createDate} + + + + + update wx_wxdc_recharge_order + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`storeNo` = #{storeNo} + ,`storeName` = #{storeName} + ,`posNo` = #{posNo} + ,`workerNo` = #{workerNo} + ,`tradeNo` = #{tradeNo} + ,`payVoucherNo` = #{payVoucherNo} + ,`cardNo` = #{cardNo} + ,`mobile` = #{mobile} + ,`schemeId` = #{schemeId} + ,`schemeNo` = #{schemeNo} + ,`amount` = #{amount} + ,`giftAmount` = #{giftAmount} + ,`giftPoint` = #{giftPoint} + ,`preAmount` = #{preAmount} + ,`aftAmount` = #{aftAmount} + ,`prePoint` = #{prePoint} + ,`aftPoint` = #{aftPoint} + ,`giftDetail` = #{giftDetail} + ,`status` = #{status} + ,`result` = #{result} + ,`description` = #{description} + ,`modifyUser` = #{modifyUser} + ,`modifyDate` = #{modifyDate} + + where `id` = #{id} + + + + delete from wx_wxdc_recharge_order + where `id` = #{id} + + + + delete from wx_wxdc_recharge_order + ${condition} + + + + delete from wx_wxdc_recharge_order + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/YunposSetMapper.xml b/food-pdm-tools/src/generate/food/mybatis/YunposSetMapper.xml new file mode 100644 index 0000000..54292dc --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/YunposSetMapper.xml @@ -0,0 +1,119 @@ + + + + + + `id`,`tenantId`,`name`,`terminalType`,`description`,`enable`,`pbody`,`createDate`,`createUser`,`modifyDate`,`modifyUser` + + + + + + + + + + + + + + + + + + + + insert into cy_yunpos_set + + `id`,`tenantId` + ,`name` + ,`terminalType` + ,`description` + ,`enable` + ,`pbody` + ,`createDate` + ,`createUser` + + + #{id},#{tenantId} + ,#{name} + ,#{terminalType} + ,#{description} + ,#{enable} + ,#{pbody} + ,#{createDate} + ,#{createUser} + + + + + update cy_yunpos_set + + `tenantId` = #{tenantId} + ,`name` = #{name} + ,`terminalType` = #{terminalType} + ,`description` = #{description} + ,`enable` = #{enable} + ,`pbody` = #{pbody} + ,`modifyDate` = #{modifyDate} + ,`modifyUser` = #{modifyUser} + + where `id` = #{id} + + + + delete from cy_yunpos_set + where `id` = #{id} + + + + delete from cy_yunpos_set + ${condition} + + + + delete from cy_yunpos_set + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/food/mybatis/YunposSetStoreMapper.xml b/food-pdm-tools/src/generate/food/mybatis/YunposSetStoreMapper.xml new file mode 100644 index 0000000..f79625c --- /dev/null +++ b/food-pdm-tools/src/generate/food/mybatis/YunposSetStoreMapper.xml @@ -0,0 +1,104 @@ + + + + + + `id`,`tenantId`,`storeId`,`setId` + + + + + + + + + + + + + + + + + + + + insert into cy_yunpos_set_store + + `id`,`tenantId` + ,`storeId` + ,`setId` + + + #{id},#{tenantId} + ,#{storeId} + ,#{setId} + + + + + update cy_yunpos_set_store + + `tenantId` = #{tenantId} + ,`storeId` = #{storeId} + ,`setId` = #{setId} + + where `id` = #{id} + + + + delete from cy_yunpos_set_store + where `id` = #{id} + + + + delete from cy_yunpos_set_store + ${condition} + + + + delete from cy_yunpos_set_store + where `tenantId` = #{tenantId} and ${property}=#{value} + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/spring/spring-reference.xml b/food-pdm-tools/src/generate/spring/spring-reference.xml new file mode 100644 index 0000000..c7c5bda --- /dev/null +++ b/food-pdm-tools/src/generate/spring/spring-reference.xml @@ -0,0 +1,2145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/food-pdm-tools/src/generate/spring/spring-service.xml b/food-pdm-tools/src/generate/spring/spring-service.xml new file mode 100644 index 0000000..4827f2e --- /dev/null +++ b/food-pdm-tools/src/generate/spring/spring-service.xml @@ -0,0 +1,2145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/food-pdm-tools/src/generate/spring/spring-test.xml b/food-pdm-tools/src/generate/spring/spring-test.xml new file mode 100644 index 0000000..51ef575 --- /dev/null +++ b/food-pdm-tools/src/generate/spring/spring-test.xml @@ -0,0 +1,2145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/Generate.java b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/Generate.java new file mode 100644 index 0000000..fca1cf1 --- /dev/null +++ b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/Generate.java @@ -0,0 +1,201 @@ +package com.jwsaas.powerdesign; + +import java.io.File; +import java.io.FileWriter; +import java.util.List; + +import org.apache.commons.lang3.StringUtils; + +import com.jwsaas.powerdesign.parse.PDMParser; +import com.jwsaas.powerdesign.parse.bean.Category; +import com.jwsaas.powerdesign.parse.bean.Project; +import com.jwsaas.powerdesign.parse.bean.Table; + +import freemarker.template.Configuration; +import freemarker.template.DefaultObjectWrapper; +import freemarker.template.Template; + +public class Generate { + + public static void main(String[] args) throws Exception { + + String currentPath = PDMParser.class.getResource("/").getPath(); + File file = new File(currentPath); + + String pdmFile = file.getParentFile().getParentFile().getParentFile() + File.separator + "food-document" + File.separator + "db" + File.separator + "food_v2.0.pdm"; + + Project project = PDMParser.parse(new File(pdmFile)); + + for (Category category : project.getCategoryList()) { + List tables = category.getTableList(); + for (Table table : tables) { + String comment = category.getComment(); + + if (StringUtils.isNotEmpty(comment) && comment.indexOf("#") > 0 && comment.split("#").length == 3) { + String[] str = comment.split("#"); + table.setSign(str[0]); + table.setBasePackage(str[1]); + table.setSignPackage(str[2]); + } else { + // System.out.println(category.getName() + + // "-->Comment没有定义或者格式错误"); + } + } + + } + + // 生成Entity、Dao、Service + generate(project.getTableList()); + + generateSpring(project); + + } + + protected static void generate(List
tables) { + Configuration cfg = new Configuration(Configuration.VERSION_2_3_23); + try { + String currentPath = PDMParser.class.getResource("/").getPath(); + File file = new File(currentPath + File.separator + "template"); + + cfg.setDirectoryForTemplateLoading(file); + cfg.setObjectWrapper(new DefaultObjectWrapper(Configuration.VERSION_2_3_21)); + cfg.setOutputEncoding("utf-8"); + // TODO 如何做国际化。 + cfg.setDefaultEncoding("utf-8"); + cfg.setNumberFormat("#"); + + cfg.setCacheStorage(new freemarker.cache.MruCacheStorage(20, 250)); + + for (Table table : tables) { + + File out = new File(currentPath).getParentFile().getParentFile(); + + String filePath = out.getPath() + File.separator + "src" + File.separator + "generate" + File.separator + (StringUtils.isNotEmpty(table.getSign()) ? (table.getSign() + File.separator) : ""); + + System.out.println(table.getName() + "," + table.getBasePackage()); + + // 判断entity包名是否存在,不存在新建 + String packageName = table.getBasePackage() + ".entity" + ((StringUtils.isNotEmpty(table.getSign()) && !"shared".equals(table.getSign())) ? ("." + table.getSign()) : ""); + File dir = new File(filePath + packageName); + if (!dir.exists()) { + dir.mkdirs(); + } + + // 生成Entity的类 + Template template = cfg.getTemplate("entity.java.ftl"); + FileWriter writer = new FileWriter(filePath + packageName + File.separator + table.getScode() + ".java"); + template.process(table, writer); + + // 生成Dao的接口 + template = cfg.getTemplate("dao.java.ftl"); + packageName = table.getBasePackage() + ".dao" + ((StringUtils.isNotEmpty(table.getSign()) && !"shared".equals(table.getSign())) ? ("." + table.getSign()) : ""); + dir = new File(filePath + packageName); + if (!dir.exists()) { + dir.mkdirs(); + } + writer = new FileWriter(filePath + packageName + File.separator + table.getScode() + "Dao.java"); + template.process(table, writer); + + // 生成Dao的实现 + template = cfg.getTemplate("dao.impl.java.ftl"); + packageName = table.getBasePackage() + ".dao" + ((StringUtils.isNotEmpty(table.getSign()) && !"shared".equals(table.getSign())) ? ("." + table.getSign()) : "") + ".impl"; + dir = new File(filePath + packageName); + if (!dir.exists()) { + dir.mkdirs(); + } + writer = new FileWriter(filePath + packageName + File.separator + table.getScode() + "DaoImpl.java"); + template.process(table, writer); + + // 生成Service的接口 + template = cfg.getTemplate("service.java.ftl"); + packageName = table.getBasePackage() + ".service" + ((StringUtils.isNotEmpty(table.getSign()) && !"shared".equals(table.getSign())) ? ("." + table.getSign()) : ""); + ; + dir = new File(filePath + packageName); + if (!dir.exists()) { + dir.mkdirs(); + } + writer = new FileWriter(filePath + packageName + File.separator + table.getScode() + "Service.java"); + template.process(table, writer); + + // 生成Service的实现 + template = cfg.getTemplate("service.impl.java.ftl"); + packageName = table.getBasePackage() + ".service" + ((StringUtils.isNotEmpty(table.getSign()) && !"shared".equals(table.getSign())) ? ("." + table.getSign()) : "") + ".impl"; + dir = new File(filePath + packageName); + if (!dir.exists()) { + dir.mkdirs(); + } + writer = new FileWriter(filePath + packageName + File.separator + table.getScode() + "ServiceImpl.java"); + template.process(table, writer); + + // 生成MyBatis的Mapper文件 + template = cfg.getTemplate("mapper.xml.ftl"); + + dir = new File(filePath + "mybatis"); + if (!dir.exists()) { + dir.mkdirs(); + } + writer = new FileWriter(filePath + "mybatis" + File.separator + table.getScode() + "Mapper.xml"); + template.process(table, writer); + + } + } catch (Exception e) { + e.printStackTrace(); + } + } + + protected static void generateSpring(Project project) { + + Configuration cfg = new Configuration(Configuration.VERSION_2_3_21); + try { + + String currentPath = PDMParser.class.getResource("/").getPath(); + File file = new File(currentPath + File.separator + "template"); + + cfg.setDirectoryForTemplateLoading(file); + cfg.setObjectWrapper(new DefaultObjectWrapper(Configuration.VERSION_2_3_21)); + cfg.setOutputEncoding("utf-8"); + // TODO 如何做国际化。 + cfg.setDefaultEncoding("utf-8"); + cfg.setNumberFormat("#"); + + cfg.setCacheStorage(new freemarker.cache.MruCacheStorage(20, 250)); + + File out = new File(currentPath).getParentFile().getParentFile(); + + String filePath = out.getPath() + File.separator + "src" + File.separator + "generate" + File.separator; + + // 生成Spring的服务暴露配置文件 + Template template = cfg.getTemplate("spring.service.xml.ftl"); + + File dir = new File(filePath + "spring"); + if (!dir.exists()) { + dir.mkdirs(); + } + FileWriter writer = new FileWriter(filePath + "spring" + File.separator + "spring-service.xml"); + template.process(project, writer); + + // 生成Spring的服务引用配置文件 + template = cfg.getTemplate("spring.reference.xml.ftl"); + + dir = new File(filePath + "spring"); + if (!dir.exists()) { + dir.mkdirs(); + } + writer = new FileWriter(filePath + "spring" + File.separator + "spring-reference.xml"); + template.process(project, writer); + + // 生成Spring的单元测试直连配置文件 + template = cfg.getTemplate("spring.test.xml.ftl"); + + dir = new File(filePath + "spring"); + if (!dir.exists()) { + dir.mkdirs(); + } + writer = new FileWriter(filePath + "spring" + File.separator + "spring-test.xml"); + template.process(project, writer); + + } catch (Exception e) { + e.printStackTrace(); + } + } +} diff --git a/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/CamelCaseUtils.java b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/CamelCaseUtils.java new file mode 100644 index 0000000..0686ab8 --- /dev/null +++ b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/CamelCaseUtils.java @@ -0,0 +1,86 @@ +package com.jwsaas.powerdesign.parse; + +public class CamelCaseUtils { + + private static final char SEPARATOR = '_'; + + public static String toUnderlineName(String s) { + if (s == null) { + return null; + } + + StringBuilder sb = new StringBuilder(); + boolean upperCase = false; + for (int i = 0; i < s.length(); i++) { + char c = s.charAt(i); + + boolean nextUpperCase = true; + + if (i < (s.length() - 1)) { + nextUpperCase = Character.isUpperCase(s.charAt(i + 1)); + } + + if ((i >= 0) && Character.isUpperCase(c)) { + if (!upperCase || !nextUpperCase) { + if (i > 0) + sb.append(SEPARATOR); + } + upperCase = true; + } else { + upperCase = false; + } + + sb.append(Character.toLowerCase(c)); + } + + return sb.toString(); + } + + public static String toCamelCase(String s) { + if (s == null) { + return null; + } + + s = s.toLowerCase(); + + StringBuilder sb = new StringBuilder(s.length()); + boolean upperCase = false; + for (int i = 0; i < s.length(); i++) { + char c = s.charAt(i); + + if (c == SEPARATOR) { + upperCase = true; + } else if (upperCase) { + sb.append(Character.toUpperCase(c)); + upperCase = false; + } else { + sb.append(c); + } + } + + return sb.toString(); + } + + /** + * 首字母小写 + * + * @param s + * @return + */ + public static String toCapitalizeCamelCase(String s) { + if (s == null) { + return null; + } + s = toCamelCase(s); + return s.substring(0, 1).toUpperCase() + s.substring(1); + } + + public static void main(String[] args) { + System.out.println(CamelCaseUtils.toUnderlineName("ISOCertifiedStaff")); + System.out.println(CamelCaseUtils.toUnderlineName("CertifiedStaff")); + System.out.println(CamelCaseUtils.toUnderlineName("UserID")); + System.out.println(CamelCaseUtils.toCamelCase("iso_certified_staff")); + System.out.println(CamelCaseUtils.toCamelCase("certified_staff")); + System.out.println(CamelCaseUtils.toCamelCase("user_id")); + } +} \ No newline at end of file diff --git a/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/PDMParser.java b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/PDMParser.java new file mode 100644 index 0000000..053560a --- /dev/null +++ b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/PDMParser.java @@ -0,0 +1,159 @@ +package com.jwsaas.powerdesign.parse; + +import java.io.BufferedReader; +import java.io.File; +import java.io.FileInputStream; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + +import com.jwsaas.powerdesign.parse.bean.Category; +import com.jwsaas.powerdesign.parse.bean.Column; +import com.jwsaas.powerdesign.parse.bean.Domain; +import com.jwsaas.powerdesign.parse.bean.Project; +import com.jwsaas.powerdesign.parse.bean.Table; + +/** + * PDM文件解析 + */ +public class PDMParser { + private PDMParser() { + } + + /** + * 解析指定的pdm文件 + * + * @param pdmFile + * @return + * @throws IOException + */ + public static Project parse(File pdmFile) throws IOException { + return parse(new FileInputStream(pdmFile)); + } + + public static Project parse(InputStream is) throws IOException { + String pdmContent = readFile(is, "UTF-8"); + return parse(pdmContent); + } + + public static Project parse(String pdmContent) { + Project ret = new Project(); + + ret.setAuthor(getString(pdmContent, "(.*?)", 1, null)); + ret.setVersion(getString(pdmContent, "(.*?)", 1, null)); + ret.setName(getString(pdmContent, "(.*?)", 1, null)); + ret.setCode(getString(pdmContent, "(.*?)", 1, null)); + + Pattern lPattern = Pattern.compile("\\s+(.*?)\\s+(.*?)\\s+([a-zA-Z0-9_]+)(?s)(.*?)", Pattern.CASE_INSENSITIVE); + Matcher lMatcher = lPattern.matcher(pdmContent); + while (lMatcher.find()) { + Domain domain = new Domain(lMatcher.group(1), lMatcher.group(3), lMatcher.group(4)); + domain.setType(getString(lMatcher.group(5), "(.*?)", 1, null)); + domain.setComment(getString(lMatcher.group(5), "(?s)(.*?)", 1, null)); + ret.getDomains().put(domain.getId(), domain); + } + + lPattern = Pattern.compile("<(o:Table) Id=\"(.*?)\">(?s)(.*?)<(a:Name)>(.*?)(?s)(.*?)<(a:Code)>(.*?)(?s)(.*?)<(c:Columns)>(?s)(.*?)(?s)(.*?)", Pattern.CASE_INSENSITIVE); + lMatcher.reset(); + lMatcher = lPattern.matcher(getString(pdmContent, "<(c:Tables)>(?s)(.*?)", 2, "")); + while (lMatcher.find()) { + + Table table = new Table(ret.getCode(), lMatcher.group(2), lMatcher.group(9), lMatcher.group(5)); + Pattern pattern = Pattern.compile("<(o:Column) Id=\"(.*?)\">(?s)(.*?)<(a:Name)>(.*?)(?s)(.*?)<(a:Code)>(.*?)(?s)(.*?)<(a:DataType)>(.*?)(?s)(.*?)", Pattern.CASE_INSENSITIVE); + Matcher matcher = pattern.matcher(lMatcher.group(13)); + while (matcher.find()) { + int length = Integer.valueOf(getString(matcher.group(15), "([\\d]+)", 1, "0")); + int precision = Integer.valueOf(getString(matcher.group(15), "([\\d]+)", 1, "0")); + Column column = new Column(matcher.group(2), matcher.group(9), matcher.group(5), matcher.group(13), length, precision); + String nul = getString(matcher.group(15), "<(a:Mandatory)>(.*?)(.*?)", 2, "0"); + if (nul != null && (nul.equalsIgnoreCase("1") || nul.trim().equalsIgnoreCase("yes"))) + column.setNullFlag(true); + column.setDomainId(getString(matcher.group(15), "<(c:Domain)>\\s*\\s*", 2, null)); + column.setComment(getString(matcher.group(11), "(?s)(.*?)", 1, null)); + if (column.getDomainId() != null) + column.setDomain(ret.getDomains().get(column.getDomainId())); + + table.getColumns().add(column); + } + + // FIXME 这里实际上是有问题的,应该先查c:PrimaryKey的值,然后再向上找才准确。 + pattern = Pattern.compile("<(c:Keys)>(?s)(.*?)(?s)(.*?)(.*?)(?s)(.*?)(?s)(.*?)(?s)(.*?)", Pattern.CASE_INSENSITIVE); + matcher = pattern.matcher(lMatcher.group(15)); + if (matcher.find()) + table.setPK(matcher.group(5)); + ret.getTableList().add(table); + } + lPattern = Pattern.compile("<(o:Reference)(.*?)>(?s)(.*?)[0,1]\\.\\.\\*(?s)(.*?)(?s)(.*?)(?s)(.*?)(?s)(.*?)(?s)(.*?)(\\1)", Pattern.CASE_INSENSITIVE); + lMatcher.reset(); + lMatcher = lPattern.matcher(pdmContent); + while (lMatcher.find()) + ret.setFK(lMatcher.group(7), lMatcher.group(5), lMatcher.group(11), lMatcher.group(9)); + + lPattern = Pattern.compile("(?s)(.*?)", Pattern.CASE_INSENSITIVE); + lMatcher.reset(); + lMatcher = lPattern.matcher(pdmContent); + while (lMatcher.find()) { + String name = getString(lMatcher.group(2), "(.*?)", 1, null); + String code = getString(lMatcher.group(2), "(.*?)", 1, null); + String author = getString(lMatcher.group(2), "(.*?)", 1, null); + String comment = getString(lMatcher.group(2), "(.*?)", 1, null); + + Category category = new Category(name, code, author, comment); + category.setId(lMatcher.group(1)); + + Pattern p1 = Pattern.compile("", Pattern.CASE_INSENSITIVE); + Matcher m1 = p1.matcher(lMatcher.group(2)); + while (m1.find()) { + category.getTableList().add(ret.getTable(m1.group(1))); + } + ret.getCategoryList().add(category); + } + scode(ret); + return ret; + } + + private static void scode(Project proj) { + for (Category cate : proj.getCategoryList()) { + for (Table table : cate.getTableList()) { + String prefix = (table.getCode().indexOf('_') > 0 ? table.getCode().substring(0, table.getCode().indexOf('_')) : table.getCode()); + + if (table.getCode().startsWith(prefix)) { + table.setScode(CamelCaseUtils.toCapitalizeCamelCase(table.getCode().substring(prefix.length() + 1))); + } else { + table.setScode(CamelCaseUtils.toCapitalizeCamelCase(table.getCode())); + } + for (Column col : table.getColumns()) { + if (col.getCode().indexOf('_') > 0) { + col.setScode(CamelCaseUtils.toCamelCase(col.getCode())); + } else { + col.setScode(col.getCode()); + } + } + } + } + } + + private static String getString(String str, String reg, int group, String def) { + Pattern p = Pattern.compile(reg, Pattern.CASE_INSENSITIVE); + Matcher m = p.matcher(str); + if (m.find() && m.groupCount() >= group) + return m.group(group); + return def; + } + + private static String readFile(InputStream fis, String charset) throws IOException { + StringBuffer ret = new StringBuffer(); + BufferedReader bufferedreader = new BufferedReader(new InputStreamReader(fis, charset)); + char[] buf = new char[512]; + int size = bufferedreader.read(buf); + while (size != -1) { + ret.append(buf, 0, size); + size = bufferedreader.read(buf); + } + bufferedreader.close(); + return ret.toString(); + } + +} diff --git a/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/bean/Category.java b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/bean/Category.java new file mode 100644 index 0000000..c7e086e --- /dev/null +++ b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/bean/Category.java @@ -0,0 +1,75 @@ +package com.jwsaas.powerdesign.parse.bean; + +import java.util.ArrayList; +import java.util.List; + +/** + * 表分类信息 + * + * @author 张莹 + */ +public class Category { + private String id; + private String name; // PDM名称 + private String code; // PDM代码 + private String author; // 作者 + private String comment; // 注释 + + private List
tableList = new ArrayList
(); + + public Category(String name, String code, String author, String comment) { + super(); + this.name = name; + this.code = code; + this.author = author; + this.comment = comment; + } + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code; + } + + public String getAuthor() { + return author; + } + + public void setAuthor(String author) { + this.author = author; + } + + public String getComment() { + return comment; + } + + public void setComment(String comment) { + this.comment = comment; + } + + public List
getTableList() { + return tableList; + } + + public void setTableList(List
tableList) { + this.tableList = tableList; + } +} diff --git a/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/bean/Column.java b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/bean/Column.java new file mode 100644 index 0000000..73bfd62 --- /dev/null +++ b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/bean/Column.java @@ -0,0 +1,227 @@ +package com.jwsaas.powerdesign.parse.bean; + +/** + * 表字段信息 + * + * @author 张莹 + */ +public class Column { + private String id; + private String code; // 字段代码 + private String scode; // 简化后的表代码, 主要是去调前缀,比如BASE_USER-->USER + private String name; // 字段含义 + private String type; // 原始类型及长度 + private int length; + private int precision; + private String domainId; // 定义的数据域ID + private boolean pkFlag; // 是否为主键 + private boolean nullFlag; // 是否可以为空 + private boolean uniqueFlag; // 是否唯一 + private Table ref;// 关联表 + private String refId; // 关联表字段ID + private String comment; // 注释 + + private Domain domain; + + private static final String[] STRING = { "varchar", "text", "tinytext", "longtext", "bigint" }; + private static final String[] DATE = { "date", "datetime", "time", "timestamp" }; + private static final String[] INT = { "int" }; + private static final String[] LONG = { "decimal" }; + private static final String[] DOUBLE = { "decimal" }; + + public Column() { + } + + public Column(String id, String code, String name, String type, int length, int precision) { + this.id = id; + this.code = code; + this.name = name; + this.type = type; + this.length = length; + this.precision = precision; + } + + @Override + public String toString() { + StringBuffer sb = new StringBuffer().append(id); + sb.append("\t").append(name).append("(").append(code).append("--").append(scode).append(")"); + sb.append("\t").append(type); + if (nullFlag) + sb.append("\tNot Null"); + if (pkFlag) + sb.append("\tPrimary Key"); + if (uniqueFlag) + sb.append("\tUnique"); + if (ref != null) { + sb.append("\t-->").append(ref.getId()).append("(").append(ref.getCode()).append(").").append(refId).append("(").append(ref.getColumnInfo(refId).getCode()).append(")"); + } + if (domain != null) + sb.append("\tdomainId:").append(domainId); + if (comment != null) + sb.append("\t//").append(comment); + return sb.append("\r\n").toString(); + } + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public String getDomainId() { + return domainId; + } + + public void setDomainId(String domainId) { + this.domainId = domainId; + } + + public boolean isPkFlag() { + return pkFlag; + } + + public void setPkFlag(boolean pkFlag) { + this.pkFlag = pkFlag; + } + + public boolean isNullFlag() { + return nullFlag; + } + + public void setNullFlag(boolean nullFlag) { + this.nullFlag = nullFlag; + } + + public boolean isUniqueFlag() { + return uniqueFlag; + } + + public void setUniqueFlag(boolean uniqueFlag) { + this.uniqueFlag = uniqueFlag; + } + + public String getRefId() { + return refId; + } + + public void setRefId(String refId) { + this.refId = refId; + } + + public Table getRef() { + return ref; + } + + public void setRef(Table ref) { + this.ref = ref; + } + + public String getComment() { + return comment; + } + + public void setComment(String comment) { + this.comment = comment; + } + + public Domain getDomain() { + return domain; + } + + public void setDomain(Domain domain) { + this.domain = domain; + } + + public int getLength() { + return length; + } + + public void setLength(int length) { + this.length = length; + } + + public int getPrecision() { + return precision; + } + + public void setPrecision(int precision) { + this.precision = precision; + } + + public String getScode() { + return scode; + } + + public void setScode(String scode) { + this.scode = scode; + } + + public String getJavaType() { + + String dataType = this.type; + int pos = this.type.indexOf("("); + if (pos != -1) { + dataType = this.type.substring(0, pos); + } + + if ("char".equalsIgnoreCase(dataType) && length == 1) + return "Boolean"; + for (String type : STRING) { + if (type.equalsIgnoreCase(dataType)) + return "String"; + } + for (String type : DATE) { + if (type.equalsIgnoreCase(dataType)) + return "Date"; + } + + for (String type : INT) { + if (type.equalsIgnoreCase(dataType)) + return "Integer"; + } + for (String type : LONG) { + if (type.equalsIgnoreCase(dataType)) { + if (precision != 0) { + return "Double"; + } else + return "Long"; + } + + } + + for (String type : DOUBLE) { + dataType = dataType.toLowerCase(); + if (dataType.startsWith(type)) { + return "Double"; + } + } + System.out.println("未知的数据类型:" + dataType); + return "Serializable"; + } +} diff --git a/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/bean/Domain.java b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/bean/Domain.java new file mode 100644 index 0000000..1551528 --- /dev/null +++ b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/bean/Domain.java @@ -0,0 +1,70 @@ +package com.jwsaas.powerdesign.parse.bean; + +/** + * 数据类型域类 + * + * @author 张莹 + */ +public class Domain { + private String id; + private String name; // 名称 + private String code; // 代码 + private String type; // 数据类型 + private String comment; // 注释 + + public Domain(String id, String name, String code) { + this.id = id; + this.name = name; + this.code = code; + } + + @Override + public String toString() { + StringBuffer sb = new StringBuffer().append(id); + sb.append("\t").append(name).append("(").append(code).append(")"); + sb.append("\t").append(type); + if (comment != null) + sb.append("\t//").append(comment); + return sb.append("\r\n").toString(); + } + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public String getComment() { + return comment; + } + + public void setComment(String comment) { + this.comment = comment; + } +} \ No newline at end of file diff --git a/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/bean/Messages.java b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/bean/Messages.java new file mode 100644 index 0000000..17d7f9c --- /dev/null +++ b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/bean/Messages.java @@ -0,0 +1,51 @@ +package com.jwsaas.powerdesign.parse.bean; + +import java.text.MessageFormat; +import java.util.MissingResourceException; +import java.util.ResourceBundle; + +public class Messages { + private static final String BUNDLE_NAME = "com.baoyuan.bean.messages"; //$NON-NLS-1$ + + private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle + .getBundle(BUNDLE_NAME); + + private Messages() { + } + + public static String getString(String key) { + try { + return RESOURCE_BUNDLE.getString(key); + } catch (MissingResourceException e) { + return '!' + key + '!'; + } + } + + public static String getString(String key, String parm1) { + try { + return MessageFormat.format(RESOURCE_BUNDLE.getString(key), + new Object[] { parm1 }); + } catch (MissingResourceException e) { + return '!' + key + '!'; + } + } + + public static String getString(String key, String parm1, String parm2) { + try { + return MessageFormat.format(RESOURCE_BUNDLE.getString(key), + new Object[] { parm1, parm2 }); + } catch (MissingResourceException e) { + return '!' + key + '!'; + } + } + + public static String getString(String key, String parm1, String parm2, + String parm3) { + try { + return MessageFormat.format(RESOURCE_BUNDLE.getString(key), + new Object[] { parm1, parm2, parm3 }); + } catch (MissingResourceException e) { + return '!' + key + '!'; + } + } +} diff --git a/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/bean/Project.java b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/bean/Project.java new file mode 100644 index 0000000..91de098 --- /dev/null +++ b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/bean/Project.java @@ -0,0 +1,164 @@ +package com.jwsaas.powerdesign.parse.bean; + +import java.util.ArrayList; +import java.util.Date; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Map.Entry; + +/** + * PDM项目信息 + */ +public class Project { + private String code; // 项目代码 + private String name; // 项目名称 + private String author; // 作者 + private String version; // 版本 + private Date cdate; // 创建日期 + + private Map domains = new HashMap(); + private List categoryList = new ArrayList(); + private List
tableList = new ArrayList
(); // 表列表 + + /** + * 获取指定ID的表定义信息 + * + * @param oid + * @return + */ + public Table getTable(String oid) { + for (int i = 0; i < tableList.size(); i++) + if (((Table) tableList.get(i)).getId().equals(oid)) + return ((Table) tableList.get(i)); + return null; + } + + /** + * 设置表关联 + * + * @param soid + * @param toid + * @param sfoid + * @param tfoid + */ + public void setFK(String soid, String toid, String sfoid, String tfoid) { + Table t1 = getTable(soid); + Table t2 = getTable(toid); + if (t1 == null || t2 == null) + return; + + Column col1 = t1.getColumnInfo(sfoid); + Column col2 = t2.getColumnInfo(tfoid); + if (col1 == null || col2 == null) + return; + + col1.setRef(t2); + col1.setRefId(tfoid); + } + + /** + * 获取指定的PDM分类 + * + * @param cateId + * @return + */ + public Category getCategory(String cateId) { + for (Category cate : categoryList) { + if (cateId.equals(cate.getId())) + return cate; + } + return null; + } + + @Override + public String toString() { + StringBuffer sb = new StringBuffer().append(name); + sb.append("(").append(code).append(")\tAuthor:").append(author); + sb.append(" Version:").append(version); + sb.append(" Create time:").append(cdate); + sb.append(" ").append(domains.size()).append(" domains"); + sb.append(" ").append(categoryList.size()).append(" pdms"); + sb.append(" ").append(tableList.size()).append(" tables"); + sb.append("\r\n"); + + if (domains.size() > 0) { + sb.append("Domain List:\r\n"); + for (Entry entry : domains.entrySet()) { + sb.append("\t").append(entry.getValue()); + } + } + + if (tableList.size() > 0) { + sb.append("Table List:\r\n"); + for (Table table : tableList) { + sb.append("\t").append(table); + } + } + return sb.append("\r\n").toString(); + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getAuthor() { + return author; + } + + public void setAuthor(String author) { + this.author = author; + } + + public String getVersion() { + return version; + } + + public void setVersion(String version) { + this.version = version; + } + + public Date getCdate() { + return cdate; + } + + public void setCdate(Date cdate) { + this.cdate = cdate; + } + + public List getCategoryList() { + return categoryList; + } + + public void setCategoryList(List categoryList) { + this.categoryList = categoryList; + } + + public List
getTableList() { + return tableList; + } + + public void setTableList(List
tableList) { + this.tableList = tableList; + } + + public Map getDomains() { + return domains; + } + + public void setDomains(Map domains) { + this.domains = domains; + } +} diff --git a/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/bean/Table.java b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/bean/Table.java new file mode 100644 index 0000000..ef3fd46 --- /dev/null +++ b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/bean/Table.java @@ -0,0 +1,151 @@ +package com.jwsaas.powerdesign.parse.bean; + +import java.util.ArrayList; +import java.util.List; + +import org.apache.commons.lang3.RandomStringUtils; + +/** + * 表信息 + * + * @author 张莹 + */ +public class Table { + private String id; + private String prjId; // 项目ID + private String code; // 表代码 + private String name; // 表含义 + private String scode; // 简化后的表代码, 主要是去调前缀,比如BASE_USER-->USER + + private String basePackage;// 包名 + private String sign;// 项目标识,影响包的命名规范(dao层规范:basePackage.sign.dao.impl,service层:basePackage.sign.service.impl) + private String signPackage;// 区别服务标识,类似Shared.SIGN + + private List columns = new ArrayList(); // 列信息 + + public Table() { + } + + public Table(String prjId, String id, String code, String name) { + this.prjId = prjId; + this.id = id; + this.code = code; + this.name = name; + } + + /** + * 取得指定id的字段信息 + * + * @param oid + * @return + */ + public Column getColumnInfo(String oid) { + Column col = null; + for (int i = 0; i < columns.size(); i++) { + col = (Column) columns.get(i); + if (col.getId().equalsIgnoreCase(oid)) + break; + } + return col; + } + + /** + * 设置主键 + * + * @param oid + */ + public void setPK(String oid) { + Column col = getColumnInfo(oid); + if (col != null) + col.setPkFlag(true); + } + + @Override + public String toString() { + StringBuffer sb = new StringBuffer().append(id); + sb.append("\t").append(name).append("(").append(code).append("--").append(scode).append(")\r\n"); + + if (columns.size() > 0) { + for (Column column : columns) { + sb.append("\t\t").append(column); + } + } + return sb.append("\r\n").toString(); + } + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public String getPrjId() { + return prjId; + } + + public void setPrjId(String prjId) { + this.prjId = prjId; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public List getColumns() { + return columns; + } + + public void setColumns(List columns) { + this.columns = columns; + } + + public String getScode() { + return scode; + } + + public void setScode(String scode) { + this.scode = scode; + } + + public String getBasePackage() { + return basePackage; + } + + public void setBasePackage(String basePackage) { + this.basePackage = basePackage; + } + + public String getSignPackage() { + return signPackage; + } + + public void setSignPackage(String signPackage) { + this.signPackage = signPackage; + } + + public String getSign() { + return sign; + } + + public void setSign(String sign) { + this.sign = sign; + } + + public String getSerialVersionUID() { + return "1" + RandomStringUtils.randomNumeric(18); + } +} \ No newline at end of file diff --git a/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/bean/TableSchema.java b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/bean/TableSchema.java new file mode 100644 index 0000000..cc02639 --- /dev/null +++ b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/bean/TableSchema.java @@ -0,0 +1,49 @@ +package com.jwsaas.powerdesign.parse.bean; + +import java.io.Serializable; + +public class TableSchema implements Serializable { + + private static final long serialVersionUID = -1258282486852764827L; + + private String columnName; + + private String isNullable; + + private String dataType; + + private String columnComment; + + public String getColumnName() { + return columnName; + } + + public void setColumnName(String columnName) { + this.columnName = columnName; + } + + public String getIsNullable() { + return isNullable; + } + + public void setIsNullable(String isNullable) { + this.isNullable = isNullable; + } + + public String getDataType() { + return dataType; + } + + public void setDataType(String dataType) { + this.dataType = dataType; + } + + public String getColumnComment() { + return columnComment; + } + + public void setColumnComment(String columnComment) { + this.columnComment = columnComment; + } + +} diff --git a/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/exceptions/DataSourceDescriptorException.java b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/exceptions/DataSourceDescriptorException.java new file mode 100644 index 0000000..26f27d4 --- /dev/null +++ b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/exceptions/DataSourceDescriptorException.java @@ -0,0 +1,22 @@ +package com.jwsaas.powerdesign.parse.exceptions; + +public class DataSourceDescriptorException extends RuntimeException{ + + private static final long serialVersionUID = 5082299003855826096L; + + public DataSourceDescriptorException() { + super(); + } + + public DataSourceDescriptorException(Throwable e) { + super(e); + } + + public DataSourceDescriptorException(String message) { + super(message); + } + + public DataSourceDescriptorException(String message,Throwable e) { + super(message, e); + } +} diff --git a/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/exceptions/ErrorContext.java b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/exceptions/ErrorContext.java new file mode 100644 index 0000000..3fe3456 --- /dev/null +++ b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/exceptions/ErrorContext.java @@ -0,0 +1,60 @@ +package com.jwsaas.powerdesign.parse.exceptions; + +public class ErrorContext { + + private static final String LINE_SEPARATOR = System.getProperty("line.separator", "\n"); + private static final ThreadLocal LOCAL = new ThreadLocal(); + + private String message; + + private Throwable cause; + + private ErrorContext() { + } + + public static ErrorContext instance() { + ErrorContext context = LOCAL.get(); + if (context == null) { + context = new ErrorContext(); + LOCAL.set(context); + } + return context; + } + + public ErrorContext message(String message) { + this.message = message; + return this; + } + + public ErrorContext cause(Throwable cause) { + this.cause = cause; + return this; + } + + public ErrorContext reset() { + message = null; + cause = null; + LOCAL.remove(); + return this; + } + + public String toString() { + StringBuffer description = new StringBuffer(); + + // message + if (this.message != null) { + description.append(LINE_SEPARATOR); + description.append("### "); + description.append(this.message); + } + + // cause + if (cause != null) { + description.append(LINE_SEPARATOR); + description.append("### Cause: "); + description.append(cause.toString()); + } + + return description.toString(); + } +} diff --git a/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/exceptions/ExceptionFactory.java b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/exceptions/ExceptionFactory.java new file mode 100644 index 0000000..0f89597 --- /dev/null +++ b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/exceptions/ExceptionFactory.java @@ -0,0 +1,60 @@ +package com.jwsaas.powerdesign.parse.exceptions; + +import java.util.Map; + +/** + * + * @author Administrator + * + */ +public class ExceptionFactory { + + /** + * ServiceException + * + * @param message + * @param e + * @return + */ + public static RuntimeException wrapServiceException(String message, Exception e) { + return new ServiceException(ErrorContext.instance().message(message).cause(e).toString(), e); + } + + /** + * ValidationException + * + * @param message + * @param e + * @return + */ + public static RuntimeException wrapValidationException(String message, Throwable e, Map result) { + return new ValidationException(ErrorContext.instance().message(message).cause(e).toString(), e, result); + } + + /** + * DataSourceDescriptorException + * + * @param message + * @param e + * @return + */ + public static RuntimeException wrapDataSourceDescriptorException(String message, Exception e) { + return new DataSourceDescriptorException(ErrorContext.instance().message(message).cause(e).toString(), e); + } + + /** + * DataSourceDescriptorException + * + * @param message + * @param e + * @return + */ + public static RuntimeException wrapDataSourceDescriptorException(String message) { + return new DataSourceDescriptorException(ErrorContext.instance().message(message).toString()); + } + + public static RuntimeException wrapForeignKeyException(String message, Exception e) { + return new ForeignKeyException(ErrorContext.instance().message(message).cause(e).toString(), e); + } + +} diff --git a/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/exceptions/ForeignKeyException.java b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/exceptions/ForeignKeyException.java new file mode 100644 index 0000000..a767d25 --- /dev/null +++ b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/exceptions/ForeignKeyException.java @@ -0,0 +1,22 @@ +package com.jwsaas.powerdesign.parse.exceptions; + +public class ForeignKeyException extends RuntimeException{ + + private static final long serialVersionUID = 3053852074986193714L; + + public ForeignKeyException() { + super(); + } + + public ForeignKeyException(Throwable e) { + super(e); + } + + public ForeignKeyException(String message) { + super(message); + } + + public ForeignKeyException(String message,Throwable e) { + super(message, e); + } +} diff --git a/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/exceptions/ServiceException.java b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/exceptions/ServiceException.java new file mode 100644 index 0000000..416d810 --- /dev/null +++ b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/exceptions/ServiceException.java @@ -0,0 +1,23 @@ +package com.jwsaas.powerdesign.parse.exceptions; + +public class ServiceException extends RuntimeException { + + private static final long serialVersionUID = -1095971671427544722L; + + public ServiceException() { + super(); + } + + public ServiceException(Throwable e) { + super(e); + } + + public ServiceException(String message) { + super(message); + } + + public ServiceException(String message,Throwable e) { + super(message, e); + } + +} \ No newline at end of file diff --git a/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/exceptions/ValidationException.java b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/exceptions/ValidationException.java new file mode 100644 index 0000000..98b1414 --- /dev/null +++ b/food-pdm-tools/src/main/java/com/jwsaas/powerdesign/parse/exceptions/ValidationException.java @@ -0,0 +1,23 @@ +package com.jwsaas.powerdesign.parse.exceptions; + +import java.util.Map; + +public class ValidationException extends RuntimeException{ + + private static final long serialVersionUID = -4820402020206751860L; + + private Map result; + + public ValidationException() { + super(); + } + + public ValidationException(String message,Throwable e,Map result) { + super(message, e); + this.result = result; + } + + public Map getResult() { + return result; + } +} diff --git a/food-pdm-tools/src/main/resources/template/dao.impl.java.ftl b/food-pdm-tools/src/main/resources/template/dao.impl.java.ftl new file mode 100644 index 0000000..3191982 --- /dev/null +++ b/food-pdm-tools/src/main/resources/template/dao.impl.java.ftl @@ -0,0 +1,14 @@ +package ${basePackage}.dao<#if sign != "shared">.${sign}.impl; + +import ${basePackage}.dao<#if sign != "shared">.${sign}.${scode}Dao; +import ${basePackage}.entity<#if sign != "shared">.${sign}.${scode}; +<#if sign != "shared">import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * ${name}数据接口实现 + */ +@Repository(${signPackage} + "${scode}DaoImpl") +public class ${scode}DaoImpl extends BaseDaoImpl<${scode}, String> implements ${scode}Dao { + +} diff --git a/food-pdm-tools/src/main/resources/template/dao.java.ftl b/food-pdm-tools/src/main/resources/template/dao.java.ftl new file mode 100644 index 0000000..22f5dbd --- /dev/null +++ b/food-pdm-tools/src/main/resources/template/dao.java.ftl @@ -0,0 +1,8 @@ +package ${basePackage}.dao<#if sign != "shared">.${sign}; + +import ${basePackage}.entity<#if sign != "shared">.${sign}.${scode}; +<#if sign != "shared">import com.jwsaas.dao.BaseDao; + +public interface ${scode}Dao extends BaseDao<${scode}, String> { + +} diff --git a/food-pdm-tools/src/main/resources/template/entity.java.ftl b/food-pdm-tools/src/main/resources/template/entity.java.ftl new file mode 100644 index 0000000..494d78d --- /dev/null +++ b/food-pdm-tools/src/main/resources/template/entity.java.ftl @@ -0,0 +1,51 @@ +package ${basePackage}.entity<#if sign != "shared">.${sign}; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +<#if sign != "shared">import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:${name} + * 表代码:${code} + */ +@Alias(${signPackage}+"${scode}") +public class ${scode} extends BaseEntity { + + private static final long serialVersionUID = ${serialVersionUID}L; + + <#assign ignore = ["id", "tenantId", "createUser", "createDate", "modifyUser", "modifyDate"]> + <#list columns as column> + <#if ignore?seq_contains(column.scode)==false> + /** + *${column.name} + */ + private ${column.javaType} ${column.scode}; + + + + + <#list columns as column> + <#if ignore?seq_contains(column.scode)==false> + /** + * 字段名称 :${column.name} + * 数据类型 :${column.type} + * 是否必填 :${column.nullFlag?string('true','false')} + */ + public ${column.javaType} get${column.scode?cap_first}() { + return this.${column.scode}; + } + + /** + * 字段名称 :${column.name} + * 数据类型 :${column.type} + * 是否必填 :${column.nullFlag?string('true','false')} + */ + public void set${column.scode?cap_first}(${column.javaType} ${column.scode}) { + this.${column.scode} = ${column.scode}; + } + + + +} \ No newline at end of file diff --git a/food-pdm-tools/src/main/resources/template/mapper.xml.ftl b/food-pdm-tools/src/main/resources/template/mapper.xml.ftl new file mode 100644 index 0000000..d621041 --- /dev/null +++ b/food-pdm-tools/src/main/resources/template/mapper.xml.ftl @@ -0,0 +1,118 @@ +<#macro mapperEl value>${r"#{"}${value}} +<#macro jspEl value>${r"${"}${value}} + + +.${sign}.${scode}Mapper"> + + + <#list columns as column>`${column.scode}`<#if column_has_next>, + + + + + + + + + + + + + + + + + + + + insert into ${code} + + `id`,`tenantId` + <#assign ignore = ["id", "tenantId", "modifyUser", "modifyDate"]> + <#list columns as column> + <#if ignore?seq_contains(column.scode)==false> + ,`${column.scode}` + + + + + <@mapperEl 'id'/>,<@mapperEl 'tenantId'/> + <#assign ignore = ["id", "tenantId", "modifyUser", "modifyDate"]> + <#list columns as column> + <#if ignore?seq_contains(column.scode)==false> + ,<@mapperEl '${column.scode}'/> + + + + + + + update ${code} + + `tenantId` = <@mapperEl 'tenantId'/> + <#assign ignore = ["id", "tenantId", "createUser", "createDate"]> + <#list columns as column> + <#if ignore?seq_contains(column.scode)==false> + ,`${column.scode}` = <@mapperEl '${column.scode}'/> + + + + where `id` = <@mapperEl 'id'/> + + + + delete from ${code} + where `id` = <@mapperEl 'id'/> + + + + delete from ${code} + <@jspEl 'condition'/> + + + + delete from ${code} + where `tenantId` = <@mapperEl 'tenantId'/> and <@jspEl 'property'/>=<@mapperEl 'value'/> + + + \ No newline at end of file diff --git a/food-pdm-tools/src/main/resources/template/service.impl.java.ftl b/food-pdm-tools/src/main/resources/template/service.impl.java.ftl new file mode 100644 index 0000000..6a42b7f --- /dev/null +++ b/food-pdm-tools/src/main/resources/template/service.impl.java.ftl @@ -0,0 +1,26 @@ +package ${basePackage}.service<#if sign != "shared">.${sign}.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import ${basePackage}.dao.BaseDao; +import ${basePackage}.dao<#if sign != "shared">.${sign}.${scode}Dao; +import ${basePackage}.entity<#if sign != "shared">.${sign}.${scode}; +import ${basePackage}.service<#if sign != "shared">.${sign}.${scode}Service; +<#if sign != "shared">import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(${signPackage}+"${scode}ServiceImpl") +public class ${scode}ServiceImpl extends BaseServiceImpl<${scode}, String> implements ${scode}Service{ + + @Resource(name=${signPackage}+"${scode}DaoImpl") + private ${scode}Dao ${scode?uncap_first}Dao; + + @Override + public BaseDao<${scode}, String> getBaseDao() { + return this.${scode?uncap_first}Dao; + } + +} + diff --git a/food-pdm-tools/src/main/resources/template/service.java.ftl b/food-pdm-tools/src/main/resources/template/service.java.ftl new file mode 100644 index 0000000..bf99cb0 --- /dev/null +++ b/food-pdm-tools/src/main/resources/template/service.java.ftl @@ -0,0 +1,11 @@ +package ${basePackage}.service<#if sign != "shared">.${sign}; + +import ${basePackage}.entity<#if sign != "shared">.${sign}.${scode}; +<#if sign != "shared">import com.jwsaas.service.BaseService; + +/** + * ${name}数据接口 + */ +public interface ${scode}Service extends BaseService<${scode}, String> { + +} diff --git a/food-pdm-tools/src/main/resources/template/spring.reference.xml.ftl b/food-pdm-tools/src/main/resources/template/spring.reference.xml.ftl new file mode 100644 index 0000000..f68d5bf --- /dev/null +++ b/food-pdm-tools/src/main/resources/template/spring.reference.xml.ftl @@ -0,0 +1,13 @@ +<#macro mapperEl value>${r"#{"}${value}} +<#macro jspEl value>${r"${"}${value}} + +<#list tableList as table> + +.${table.sign}.${table.scode}Service" + version="<@jspEl 'reference.version'/>" + group="<@jspEl 'reference.group'/>" timeout="<@jspEl 'reference.timeout'/>" + retries="<@jspEl 'reference.retries'/>" /> + + + + \ No newline at end of file diff --git a/food-pdm-tools/src/main/resources/template/spring.service.xml.ftl b/food-pdm-tools/src/main/resources/template/spring.service.xml.ftl new file mode 100644 index 0000000..34c3893 --- /dev/null +++ b/food-pdm-tools/src/main/resources/template/spring.service.xml.ftl @@ -0,0 +1,13 @@ +<#macro mapperEl value>${r"#{"}${value}} +<#macro jspEl value>${r"${"}${value}} + +<#list tableList as table> + +.${table.sign}.${table.scode}Service" + ref="${table.sign}${table.scode}ServiceImpl" version="<@jspEl 'service.version'/>" + group="<@jspEl 'service.group'/>" timeout="<@jspEl 'service.timeout'/>" + retries="<@jspEl 'service.retries'/>" /> + + + + diff --git a/food-pdm-tools/src/main/resources/template/spring.test.xml.ftl b/food-pdm-tools/src/main/resources/template/spring.test.xml.ftl new file mode 100644 index 0000000..5a62f6a --- /dev/null +++ b/food-pdm-tools/src/main/resources/template/spring.test.xml.ftl @@ -0,0 +1,13 @@ +<#macro mapperEl value>${r"#{"}${value}} +<#macro jspEl value>${r"${"}${value}} + +<#list tableList as table> + +.${table.sign}.${table.scode}Service" + version="<@jspEl 'reference.version'/>" + group="<@jspEl 'reference.group'/>" timeout="<@jspEl 'reference.timeout'/>" + retries="<@jspEl 'reference.retries'/>" url="<@jspEl 'reference.url'/>" /> + + + + \ No newline at end of file diff --git a/food-pdm-tools/target/classes/com/jwsaas/powerdesign/Generate.class b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/Generate.class new file mode 100644 index 0000000..53bbec2 Binary files /dev/null and b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/Generate.class differ diff --git a/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/CamelCaseUtils.class b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/CamelCaseUtils.class new file mode 100644 index 0000000..53b6596 Binary files /dev/null and b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/CamelCaseUtils.class differ diff --git a/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/PDMParser.class b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/PDMParser.class new file mode 100644 index 0000000..09cd3ca Binary files /dev/null and b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/PDMParser.class differ diff --git a/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/bean/Category.class b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/bean/Category.class new file mode 100644 index 0000000..45cd283 Binary files /dev/null and b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/bean/Category.class differ diff --git a/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/bean/Column.class b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/bean/Column.class new file mode 100644 index 0000000..7a8d83e Binary files /dev/null and b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/bean/Column.class differ diff --git a/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/bean/Domain.class b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/bean/Domain.class new file mode 100644 index 0000000..97f4db3 Binary files /dev/null and b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/bean/Domain.class differ diff --git a/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/bean/Messages.class b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/bean/Messages.class new file mode 100644 index 0000000..0377b01 Binary files /dev/null and b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/bean/Messages.class differ diff --git a/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/bean/Project.class b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/bean/Project.class new file mode 100644 index 0000000..8c4e89e Binary files /dev/null and b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/bean/Project.class differ diff --git a/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/bean/Table.class b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/bean/Table.class new file mode 100644 index 0000000..99706ad Binary files /dev/null and b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/bean/Table.class differ diff --git a/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/bean/TableSchema.class b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/bean/TableSchema.class new file mode 100644 index 0000000..28b6222 Binary files /dev/null and b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/bean/TableSchema.class differ diff --git a/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/exceptions/DataSourceDescriptorException.class b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/exceptions/DataSourceDescriptorException.class new file mode 100644 index 0000000..40b2a64 Binary files /dev/null and b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/exceptions/DataSourceDescriptorException.class differ diff --git a/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/exceptions/ErrorContext.class b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/exceptions/ErrorContext.class new file mode 100644 index 0000000..7ff1726 Binary files /dev/null and b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/exceptions/ErrorContext.class differ diff --git a/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/exceptions/ExceptionFactory.class b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/exceptions/ExceptionFactory.class new file mode 100644 index 0000000..18c0e9f Binary files /dev/null and b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/exceptions/ExceptionFactory.class differ diff --git a/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/exceptions/ForeignKeyException.class b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/exceptions/ForeignKeyException.class new file mode 100644 index 0000000..f0b5997 Binary files /dev/null and b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/exceptions/ForeignKeyException.class differ diff --git a/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/exceptions/ServiceException.class b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/exceptions/ServiceException.class new file mode 100644 index 0000000..dfc9d3f Binary files /dev/null and b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/exceptions/ServiceException.class differ diff --git a/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/exceptions/ValidationException.class b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/exceptions/ValidationException.class new file mode 100644 index 0000000..3c879c3 Binary files /dev/null and b/food-pdm-tools/target/classes/com/jwsaas/powerdesign/parse/exceptions/ValidationException.class differ diff --git a/food-pdm-tools/target/classes/template/dao.impl.java.ftl b/food-pdm-tools/target/classes/template/dao.impl.java.ftl new file mode 100644 index 0000000..3191982 --- /dev/null +++ b/food-pdm-tools/target/classes/template/dao.impl.java.ftl @@ -0,0 +1,14 @@ +package ${basePackage}.dao<#if sign != "shared">.${sign}.impl; + +import ${basePackage}.dao<#if sign != "shared">.${sign}.${scode}Dao; +import ${basePackage}.entity<#if sign != "shared">.${sign}.${scode}; +<#if sign != "shared">import com.jwsaas.dao.impl.BaseDaoImpl; +import org.springframework.stereotype.Repository; + +/** + * ${name}数据接口实现 + */ +@Repository(${signPackage} + "${scode}DaoImpl") +public class ${scode}DaoImpl extends BaseDaoImpl<${scode}, String> implements ${scode}Dao { + +} diff --git a/food-pdm-tools/target/classes/template/dao.java.ftl b/food-pdm-tools/target/classes/template/dao.java.ftl new file mode 100644 index 0000000..22f5dbd --- /dev/null +++ b/food-pdm-tools/target/classes/template/dao.java.ftl @@ -0,0 +1,8 @@ +package ${basePackage}.dao<#if sign != "shared">.${sign}; + +import ${basePackage}.entity<#if sign != "shared">.${sign}.${scode}; +<#if sign != "shared">import com.jwsaas.dao.BaseDao; + +public interface ${scode}Dao extends BaseDao<${scode}, String> { + +} diff --git a/food-pdm-tools/target/classes/template/entity.java.ftl b/food-pdm-tools/target/classes/template/entity.java.ftl new file mode 100644 index 0000000..494d78d --- /dev/null +++ b/food-pdm-tools/target/classes/template/entity.java.ftl @@ -0,0 +1,51 @@ +package ${basePackage}.entity<#if sign != "shared">.${sign}; + +import java.util.Date; +import org.apache.ibatis.type.Alias; +<#if sign != "shared">import com.jwsaas.entity.BaseEntity; + +//Generated from PowerDesigner file ,Written by 张莹. + +/** + * 表名称:${name} + * 表代码:${code} + */ +@Alias(${signPackage}+"${scode}") +public class ${scode} extends BaseEntity { + + private static final long serialVersionUID = ${serialVersionUID}L; + + <#assign ignore = ["id", "tenantId", "createUser", "createDate", "modifyUser", "modifyDate"]> + <#list columns as column> + <#if ignore?seq_contains(column.scode)==false> + /** + *${column.name} + */ + private ${column.javaType} ${column.scode}; + + + + + <#list columns as column> + <#if ignore?seq_contains(column.scode)==false> + /** + * 字段名称 :${column.name} + * 数据类型 :${column.type} + * 是否必填 :${column.nullFlag?string('true','false')} + */ + public ${column.javaType} get${column.scode?cap_first}() { + return this.${column.scode}; + } + + /** + * 字段名称 :${column.name} + * 数据类型 :${column.type} + * 是否必填 :${column.nullFlag?string('true','false')} + */ + public void set${column.scode?cap_first}(${column.javaType} ${column.scode}) { + this.${column.scode} = ${column.scode}; + } + + + +} \ No newline at end of file diff --git a/food-pdm-tools/target/classes/template/mapper.xml.ftl b/food-pdm-tools/target/classes/template/mapper.xml.ftl new file mode 100644 index 0000000..d621041 --- /dev/null +++ b/food-pdm-tools/target/classes/template/mapper.xml.ftl @@ -0,0 +1,118 @@ +<#macro mapperEl value>${r"#{"}${value}} +<#macro jspEl value>${r"${"}${value}} + + +.${sign}.${scode}Mapper"> + + + <#list columns as column>`${column.scode}`<#if column_has_next>, + + + + + + + + + + + + + + + + + + + + insert into ${code} + + `id`,`tenantId` + <#assign ignore = ["id", "tenantId", "modifyUser", "modifyDate"]> + <#list columns as column> + <#if ignore?seq_contains(column.scode)==false> + ,`${column.scode}` + + + + + <@mapperEl 'id'/>,<@mapperEl 'tenantId'/> + <#assign ignore = ["id", "tenantId", "modifyUser", "modifyDate"]> + <#list columns as column> + <#if ignore?seq_contains(column.scode)==false> + ,<@mapperEl '${column.scode}'/> + + + + + + + update ${code} + + `tenantId` = <@mapperEl 'tenantId'/> + <#assign ignore = ["id", "tenantId", "createUser", "createDate"]> + <#list columns as column> + <#if ignore?seq_contains(column.scode)==false> + ,`${column.scode}` = <@mapperEl '${column.scode}'/> + + + + where `id` = <@mapperEl 'id'/> + + + + delete from ${code} + where `id` = <@mapperEl 'id'/> + + + + delete from ${code} + <@jspEl 'condition'/> + + + + delete from ${code} + where `tenantId` = <@mapperEl 'tenantId'/> and <@jspEl 'property'/>=<@mapperEl 'value'/> + + + \ No newline at end of file diff --git a/food-pdm-tools/target/classes/template/service.impl.java.ftl b/food-pdm-tools/target/classes/template/service.impl.java.ftl new file mode 100644 index 0000000..6a42b7f --- /dev/null +++ b/food-pdm-tools/target/classes/template/service.impl.java.ftl @@ -0,0 +1,26 @@ +package ${basePackage}.service<#if sign != "shared">.${sign}.impl; + + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import ${basePackage}.dao.BaseDao; +import ${basePackage}.dao<#if sign != "shared">.${sign}.${scode}Dao; +import ${basePackage}.entity<#if sign != "shared">.${sign}.${scode}; +import ${basePackage}.service<#if sign != "shared">.${sign}.${scode}Service; +<#if sign != "shared">import com.jwsaas.service.impl.BaseServiceImpl; + +@Service(${signPackage}+"${scode}ServiceImpl") +public class ${scode}ServiceImpl extends BaseServiceImpl<${scode}, String> implements ${scode}Service{ + + @Resource(name=${signPackage}+"${scode}DaoImpl") + private ${scode}Dao ${scode?uncap_first}Dao; + + @Override + public BaseDao<${scode}, String> getBaseDao() { + return this.${scode?uncap_first}Dao; + } + +} + diff --git a/food-pdm-tools/target/classes/template/service.java.ftl b/food-pdm-tools/target/classes/template/service.java.ftl new file mode 100644 index 0000000..bf99cb0 --- /dev/null +++ b/food-pdm-tools/target/classes/template/service.java.ftl @@ -0,0 +1,11 @@ +package ${basePackage}.service<#if sign != "shared">.${sign}; + +import ${basePackage}.entity<#if sign != "shared">.${sign}.${scode}; +<#if sign != "shared">import com.jwsaas.service.BaseService; + +/** + * ${name}数据接口 + */ +public interface ${scode}Service extends BaseService<${scode}, String> { + +} diff --git a/food-pdm-tools/target/classes/template/spring.reference.xml.ftl b/food-pdm-tools/target/classes/template/spring.reference.xml.ftl new file mode 100644 index 0000000..f68d5bf --- /dev/null +++ b/food-pdm-tools/target/classes/template/spring.reference.xml.ftl @@ -0,0 +1,13 @@ +<#macro mapperEl value>${r"#{"}${value}} +<#macro jspEl value>${r"${"}${value}} + +<#list tableList as table> + +.${table.sign}.${table.scode}Service" + version="<@jspEl 'reference.version'/>" + group="<@jspEl 'reference.group'/>" timeout="<@jspEl 'reference.timeout'/>" + retries="<@jspEl 'reference.retries'/>" /> + + + + \ No newline at end of file diff --git a/food-pdm-tools/target/classes/template/spring.service.xml.ftl b/food-pdm-tools/target/classes/template/spring.service.xml.ftl new file mode 100644 index 0000000..34c3893 --- /dev/null +++ b/food-pdm-tools/target/classes/template/spring.service.xml.ftl @@ -0,0 +1,13 @@ +<#macro mapperEl value>${r"#{"}${value}} +<#macro jspEl value>${r"${"}${value}} + +<#list tableList as table> + +.${table.sign}.${table.scode}Service" + ref="${table.sign}${table.scode}ServiceImpl" version="<@jspEl 'service.version'/>" + group="<@jspEl 'service.group'/>" timeout="<@jspEl 'service.timeout'/>" + retries="<@jspEl 'service.retries'/>" /> + + + + diff --git a/food-pdm-tools/target/classes/template/spring.test.xml.ftl b/food-pdm-tools/target/classes/template/spring.test.xml.ftl new file mode 100644 index 0000000..5a62f6a --- /dev/null +++ b/food-pdm-tools/target/classes/template/spring.test.xml.ftl @@ -0,0 +1,13 @@ +<#macro mapperEl value>${r"#{"}${value}} +<#macro jspEl value>${r"${"}${value}} + +<#list tableList as table> + +.${table.sign}.${table.scode}Service" + version="<@jspEl 'reference.version'/>" + group="<@jspEl 'reference.group'/>" timeout="<@jspEl 'reference.timeout'/>" + retries="<@jspEl 'reference.retries'/>" url="<@jspEl 'reference.url'/>" /> + + + + \ No newline at end of file