Showing preview only (5,600K chars total). Download the full file or copy to clipboard to get everything.
Repository: chengzhx76/Weixin-Dubbo
Branch: master
Commit: d96714704d67
Files: 684
Total size: 5.0 MB
Directory structure:
gitextract_3i1j6qal/
├── .gitignore
├── README.md
├── Redme.md
├── docs/
│ ├── xxbao.vp
│ ├── 电商-数据库详细设计说明书V0.4.doc
│ └── 电商平台框架-后台框架.doc
├── pom.xml
├── sql/
│ └── weixin.sql
├── weixin-common/
│ ├── pom.xml
│ └── src/
│ └── main/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── weixin/
│ │ └── common/
│ │ ├── constant/
│ │ │ ├── Constant.java
│ │ │ └── weixin/
│ │ │ ├── WeixinFinalValue.java
│ │ │ └── WeixinUrl.java
│ │ ├── exception/
│ │ │ ├── BusinessException.java
│ │ │ ├── ErrorEntity.java
│ │ │ ├── MassageException.java
│ │ │ └── WeixinException.java
│ │ ├── model/
│ │ │ └── Page.java
│ │ ├── security/
│ │ │ ├── CodecUtil.java
│ │ │ ├── Digests.java
│ │ │ ├── Encodes.java
│ │ │ └── SecretUtils.java
│ │ └── utils/
│ │ ├── CacheUtils.java
│ │ ├── Captcha.java
│ │ ├── DateUtils.java
│ │ ├── Exceptions.java
│ │ ├── JSONUtils.java
│ │ ├── ServletUtils.java
│ │ ├── SpringContextHolder.java
│ │ ├── StringFormat.java
│ │ ├── StringUtils.java
│ │ └── SystemUtils.java
│ └── resources/
│ └── weixinconfig.properties
├── weixin-common-config/
│ └── pom.xml
├── weixin-common-entity/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── common/
│ └── entity/
│ ├── BaseEntity.java
│ ├── DataEntity.java
│ ├── enums/
│ │ ├── Sex.java
│ │ └── Status.java
│ └── id/
│ ├── IdGen.java
│ ├── IdGenerator.java
│ └── package-info.java
├── weixin-common-service/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── common/
│ └── core/
│ └── dao/
│ └── BaseDaoMapper.java
├── weixin-notify-pay/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── webapp/
│ ├── WEB-INF/
│ │ └── web.xml
│ └── index.jsp
├── weixin-rabbitmq-model/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rabbitmq/
│ ├── enums/
│ │ └── MsgType.java
│ └── model/
│ └── SmsModel.java
├── weixin-rpc-admin/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── admin/
│ ├── entity/
│ │ ├── Admin.java
│ │ ├── AdminRole.java
│ │ ├── Permission.java
│ │ ├── Role.java
│ │ └── RolePermission.java
│ └── service/
│ └── RpcAdminService.java
├── weixin-rpc-cart/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── cart/
│ ├── entity/
│ │ ├── CartInfo.java
│ │ └── ShoppingCart.java
│ ├── model/
│ │ └── ProductModel.java
│ └── service/
│ └── RpcCartService.java
├── weixin-rpc-comment/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── comment/
│ ├── entity/
│ │ └── Comment.java
│ └── service/
│ └── RpcCommentService.java
├── weixin-rpc-httpclient/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── httpclient/
│ └── service/
│ └── RpcHttpClientService.java
├── weixin-rpc-item/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── item/
│ ├── entity/
│ │ ├── Picture.java
│ │ ├── Product.java
│ │ └── ProductType.java
│ └── service/
│ └── RpcProductService.java
├── weixin-rpc-log/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── log/
│ ├── entity/
│ │ └── Log.java
│ ├── enums/
│ │ └── LogType.java
│ ├── model/
│ │ └── RequestModel.java
│ └── service/
│ └── RpcLogService.java
├── weixin-rpc-message/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── message/
│ ├── entity/
│ │ ├── EmailTemplate.java
│ │ ├── SmsHistory.java
│ │ └── SmsTemplate.java
│ └── service/
│ └── RpcSmsService.java
├── weixin-rpc-order/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── order/
│ ├── entity/
│ │ ├── ArayacakAddress.java
│ │ ├── ArayacakDeliveryTime.java
│ │ ├── City.java
│ │ ├── Country.java
│ │ ├── DeliveryTime.java
│ │ ├── DeliveryType.java
│ │ ├── FlowStatus.java
│ │ ├── OrderInfo.java
│ │ ├── OrderProductDetail.java
│ │ ├── OrderReturn.java
│ │ ├── OrderReturnDetail.java
│ │ ├── Pay.java
│ │ ├── Province.java
│ │ ├── RefundType.java
│ │ ├── ReturnReason.java
│ │ ├── ReturnStatus.java
│ │ ├── Town.java
│ │ └── Village.java
│ ├── enumType/
│ │ ├── FlowStatus.java
│ │ ├── OrderStatus.java
│ │ ├── OrderType.java
│ │ ├── PayStatus.java
│ │ └── PayWay.java
│ └── service/
│ └── RpcOrderService.java
├── weixin-rpc-promotion/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── promotion/
│ ├── entity/
│ │ ├── Coupon.java
│ │ ├── CouponCode.java
│ │ └── CouponHistory.java
│ ├── enums/
│ │ └── CouponType.java
│ └── service/
│ └── RpcCouponService.java
├── weixin-rpc-rabbitmq/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── rabbitmq/
│ └── service/
│ ├── RpcRabbitLogService.java
│ └── RpcRabbitSmsService.java
├── weixin-rpc-redis/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── redis/
│ └── service/
│ └── RpcRedisService.java
├── weixin-rpc-system/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── system/
│ ├── entity/
│ │ ├── Ad.java
│ │ ├── AdJoinPosition.java
│ │ ├── AdPosition.java
│ │ ├── Notice.java
│ │ ├── NoticeType.java
│ │ ├── PictureResource.java
│ │ ├── PictureResourceType.java
│ │ └── SystemParam.java
│ └── service/
│ └── RpcSystemService.java
├── weixin-rpc-user/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── user/
│ ├── entity/
│ │ ├── Account.java
│ │ ├── AccountLevel.java
│ │ ├── AccountUpgradeHistory.java
│ │ ├── Behavior.java
│ │ ├── BonusPointRecord.java
│ │ ├── CashRecord.java
│ │ ├── City.java
│ │ ├── Country.java
│ │ ├── CouponRecord.java
│ │ ├── DeliveryAddress.java
│ │ ├── Member.java
│ │ ├── ProductFocus.java
│ │ └── Province.java
│ ├── enumType/
│ │ ├── BehaviorType.java
│ │ ├── Credit.java
│ │ ├── Sex.java
│ │ ├── SourceFrom.java
│ │ └── TXType.java
│ └── service/
│ └── RpcUserService.java
├── weixin-rpc-wxtools/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── wxtools/
│ ├── content/
│ │ └── WeixinContent.java
│ ├── entity/
│ │ ├── WxGroup.java
│ │ └── WxMenu.java
│ ├── enums/
│ │ ├── ActionType.java
│ │ ├── Event.java
│ │ ├── MidiaType.java
│ │ ├── MsgType.java
│ │ └── Status.java
│ ├── request/
│ │ └── model/
│ │ ├── BaseMessage.java
│ │ ├── ImageMessage.java
│ │ ├── MediaMessage.java
│ │ ├── ModelMsgData.java
│ │ ├── MusicMessage.java
│ │ ├── NewsMessage.java
│ │ ├── TemplateMessage.java
│ │ ├── TextMessage.java
│ │ ├── VoiceMessage.java
│ │ ├── WxImage.java
│ │ ├── WxMenu.java
│ │ ├── WxMusic.java
│ │ ├── WxNews.java
│ │ └── WxVoice.java
│ ├── response/
│ │ └── model/
│ │ ├── AccessToken.java
│ │ ├── SendTemplateMassage.java
│ │ ├── WxGroup.java
│ │ └── WxMedia.java
│ └── service/
│ ├── RpcMessageHandleService.java
│ ├── RpcWxGroupService.java
│ └── RpcWxMenuService.java
├── weixin-service-admin/
│ ├── pom.xml
│ ├── shell/
│ │ └── service-admin.sh
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── cheng/
│ │ │ └── weixin/
│ │ │ └── service/
│ │ │ └── admin/
│ │ │ ├── dao/
│ │ │ │ ├── AdminDaoMapper.java
│ │ │ │ ├── AdminRoleDaoMapper.java
│ │ │ │ ├── PermissionDaoMapper.java
│ │ │ │ └── RoleDaoMapper.java
│ │ │ └── service/
│ │ │ └── AdminService.java
│ │ └── resources/
│ │ ├── log4j.properties
│ │ ├── mybatis/
│ │ │ ├── mapper/
│ │ │ │ ├── AdminMapper.xml
│ │ │ │ ├── AdminRoleMapper.xml
│ │ │ │ ├── PermissionMapper.xml
│ │ │ │ └── RoleMapper.xml
│ │ │ └── mybatis-config.xml
│ │ └── spring/
│ │ ├── spring-context.xml
│ │ ├── spring-dubbo-provider.xml
│ │ └── spring-mybatis.xml
│ └── test/
│ └── java/
│ └── com/
│ └── cheng/
│ └── shrio/
│ └── passwd/
│ └── TestPssWd.java
├── weixin-service-cart/
│ ├── pom.xml
│ ├── shell/
│ │ └── service-cart.sh
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── cheng/
│ │ │ └── weixin/
│ │ │ └── service/
│ │ │ └── cart/
│ │ │ └── service/
│ │ │ └── CartService.java
│ │ └── resources/
│ │ ├── log4j.properties
│ │ └── spring/
│ │ ├── spring-context.xml
│ │ ├── spring-dubbo-consumer.xml
│ │ └── spring-dubbo-provider.xml
│ └── test/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── weixin/
│ │ └── cart/
│ │ ├── TestAll.java
│ │ └── TestCart.java
│ └── resources/
│ ├── log4j.properties
│ ├── spring-context.xml
│ └── spring-dubbo-consumer.xml
├── weixin-service-comment/
│ ├── pom.xml
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── cheng/
│ │ │ └── weixin/
│ │ │ └── service/
│ │ │ └── comment/
│ │ │ ├── dao/
│ │ │ │ └── CommentDaoMapper.java
│ │ │ └── service/
│ │ │ └── CommentService.java
│ │ └── resources/
│ │ ├── log4j.properties
│ │ ├── mybatis/
│ │ │ ├── mapper/
│ │ │ │ └── CommentMapper.xml
│ │ │ └── mybatis-config.xml
│ │ └── spring/
│ │ ├── spring-context.xml
│ │ ├── spring-dubbo-provider.xml
│ │ └── spring-mybatis.xml
│ └── test/
│ └── java/
│ └── com/
│ └── cheng/
│ └── comment/
│ └── test/
│ └── TestMain.java
├── weixin-service-httpclient/
│ ├── pom.xml
│ ├── shell/
│ │ └── service-httpclient.sh
│ └── src/
│ └── main/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── weixin/
│ │ └── service/
│ │ └── httpclient/
│ │ ├── service/
│ │ │ └── HttpClientService.java
│ │ └── utils/
│ │ └── ClientEvictExpiredConnections.java
│ └── resources/
│ ├── httpClient.properties
│ ├── log4j.properties
│ └── spring/
│ ├── spring-context.xml
│ ├── spring-dubbo-provider.xml
│ └── spring-httpclient.xml
├── weixin-service-item/
│ ├── pom.xml
│ ├── shell/
│ │ └── service-item.sh
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── cheng/
│ │ │ └── weixin/
│ │ │ └── service/
│ │ │ └── item/
│ │ │ ├── dao/
│ │ │ │ ├── PictureDaoMapper.java
│ │ │ │ ├── ProductDaoMapper.java
│ │ │ │ └── ProductTypeDaoMapper.java
│ │ │ └── service/
│ │ │ └── ProductService.java
│ │ └── resources/
│ │ ├── log4j.properties
│ │ ├── mybatis/
│ │ │ ├── mapper/
│ │ │ │ ├── PictureMapper.xml
│ │ │ │ ├── ProductMapper.xml
│ │ │ │ └── ProductTypeMapper.xml
│ │ │ └── mybatis-config.xml
│ │ └── spring/
│ │ ├── spring-context.xml
│ │ ├── spring-dubbo-provider.xml
│ │ └── spring-mybatis.xml
│ └── test/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── item/
│ │ └── test/
│ │ └── TestAll.java
│ └── resources/
│ ├── log4j.properties
│ ├── spring-context.xml
│ └── spring-mybatis.xml
├── weixin-service-log/
│ ├── pom.xml
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── cheng/
│ │ │ └── weixin/
│ │ │ └── service/
│ │ │ └── log/
│ │ │ ├── dao/
│ │ │ │ └── LogDaoMapper.java
│ │ │ └── service/
│ │ │ ├── LogMQService.java
│ │ │ └── LogService.java
│ │ └── resources/
│ │ ├── log4j.properties
│ │ ├── mybatis/
│ │ │ ├── mapper/
│ │ │ │ └── LogMapper.xml
│ │ │ └── mybatis-config.xml
│ │ └── spring/
│ │ ├── spring-context.xml
│ │ ├── spring-dubbo-provider.xml
│ │ ├── spring-mybatis.xml
│ │ └── spring-rabbitmq-listen.xml
│ └── test/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── log/
│ │ └── test/
│ │ └── TestMain.java
│ └── resources/
│ ├── LogMapper.xml
│ ├── log4j.properties
│ ├── mybatis-config.xml
│ ├── spring-context.xml
│ └── spring-mybatis.xml
├── weixin-service-message/
│ ├── pom.xml
│ ├── shell/
│ │ └── service-message.sh
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── cheng/
│ │ │ └── weixin/
│ │ │ └── service/
│ │ │ └── message/
│ │ │ ├── dao/
│ │ │ │ ├── EmailTemplateDaoMapper.java
│ │ │ │ ├── SmsHistoryDaoMapper.java
│ │ │ │ └── SmsTemplateDaoMapper.java
│ │ │ └── service/
│ │ │ └── SmsService.java
│ │ └── resources/
│ │ ├── log4j.properties
│ │ ├── mybatis/
│ │ │ ├── mapper/
│ │ │ │ ├── EmailTemplateMapper.xml
│ │ │ │ ├── SmsHistoryMapper.xml
│ │ │ │ └── SmsTemplateMapper.xml
│ │ │ └── mybatis-config.xml
│ │ └── spring/
│ │ ├── spring-context.xml
│ │ ├── spring-dubbo-provider.xml
│ │ ├── spring-mybatis.xml
│ │ └── spring-rabbitmq-listen.xml
│ └── test/
│ └── java/
│ └── com/
│ └── cheng/
│ └── test/
│ └── TestMain.java
├── weixin-service-order/
│ ├── pom.xml
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── cheng/
│ │ │ └── weixin/
│ │ │ └── service/
│ │ │ └── order/
│ │ │ ├── dao/
│ │ │ │ ├── ArayacakAddressDaoMapper.java
│ │ │ │ ├── ArayacakDeliveryTimeDaoMapper.java
│ │ │ │ ├── CityDaoMapper.java
│ │ │ │ ├── CountryDaoMapper.java
│ │ │ │ ├── DeliveryTimeDaoMapper.java
│ │ │ │ ├── DeliveryTypeDaoMapper.java
│ │ │ │ ├── FlowStatusDaoMapper.java
│ │ │ │ ├── OrderInfoDaoMapper.java
│ │ │ │ ├── OrderProductDetailDaoMapper.java
│ │ │ │ ├── OrderReturnDaoMapper.java
│ │ │ │ ├── OrderReturnDetailDaoMapper.java
│ │ │ │ ├── PayDaoMapper.java
│ │ │ │ ├── ProvinceDaoMapper.java
│ │ │ │ ├── RefundTypeDaoMapper.java
│ │ │ │ ├── ReturnReasonDaoMapper.java
│ │ │ │ ├── ReturnStatusDaoMapper.java
│ │ │ │ ├── TownDaoMapper.java
│ │ │ │ └── VillageDaoMapper.java
│ │ │ └── service/
│ │ │ └── OrderService.java
│ │ └── resources/
│ │ ├── log4j.properties
│ │ ├── mybatis/
│ │ │ ├── mapper/
│ │ │ │ ├── ArayacakAddressMapper.xml
│ │ │ │ ├── ArayacakDeliveryTimeMapper.xml
│ │ │ │ ├── CityMapper.xml
│ │ │ │ ├── CountryMapper.xml
│ │ │ │ ├── DeliveryTimeMapper.xml
│ │ │ │ ├── DeliveryTypeMapper.xml
│ │ │ │ ├── FlowStatusMapper.xml
│ │ │ │ ├── OrderInfoMapper.xml
│ │ │ │ ├── OrderProductDetailMapper.xml
│ │ │ │ ├── OrderReturnDetailMapper.xml
│ │ │ │ ├── OrderReturnMapper.xml
│ │ │ │ ├── PayMapper.xml
│ │ │ │ ├── ProvinceMapper.xml
│ │ │ │ ├── RefundTypeMapper.xml
│ │ │ │ ├── ReturnReasonMapper.xml
│ │ │ │ ├── ReturnStatusMapper.xml
│ │ │ │ ├── TownMapper.xml
│ │ │ │ └── VillageMapper.xml
│ │ │ └── mybatis-config.xml
│ │ └── spring/
│ │ ├── spring-context.xml
│ │ ├── spring-dubbo-provider.xml
│ │ └── spring-mybatis.xml
│ └── test/
│ └── java/
│ └── com/
│ └── cheng/
│ └── order/
│ └── test/
│ └── TestMain.java
├── weixin-service-promotion/
│ ├── pom.xml
│ └── src/
│ └── main/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── weixin/
│ │ └── service/
│ │ └── promotion/
│ │ ├── dao/
│ │ │ ├── CouponCodeDaoMapper.java
│ │ │ ├── CouponDaoMapper.java
│ │ │ └── CouponHistoryDaoMapper.java
│ │ └── service/
│ │ └── CouponService.java
│ └── resources/
│ ├── log4j.properties
│ ├── mybatis/
│ │ ├── mapper/
│ │ │ ├── CouponCodeMapper.xml
│ │ │ ├── CouponHistoryMapper.xml
│ │ │ └── CouponMapper.xml
│ │ └── mybatis-config.xml
│ └── spring/
│ ├── spring-context.xml
│ ├── spring-dubbo-provider.xml
│ └── spring-mybatis.xml
├── weixin-service-rabbitmq/
│ ├── pom.xml
│ ├── shell/
│ │ └── service-rabbitmq.sh
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── cheng/
│ │ │ └── weixin/
│ │ │ └── service/
│ │ │ └── rabbitmq/
│ │ │ ├── RabbitLogService.java
│ │ │ └── RabbitSmsService.java
│ │ └── resources/
│ │ ├── log4j.properties
│ │ └── spring/
│ │ ├── spring-context.xml
│ │ ├── spring-dubbo-provider.xml
│ │ └── spring-rabbitmq.xml
│ └── test/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── test/
│ │ ├── Foo.java
│ │ ├── SpringMain.java
│ │ ├── TestMain.java
│ │ └── UserModel.java
│ └── resources/
│ ├── context-direct.xml
│ ├── context.xml
│ ├── log4j.properties
│ ├── spring-context.xml
│ └── spring-rabbitmq.xml
├── weixin-service-redis/
│ ├── pom.xml
│ ├── shell/
│ │ └── service-redis.sh
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── cheng/
│ │ │ └── weixin/
│ │ │ └── service/
│ │ │ └── redis/
│ │ │ └── service/
│ │ │ ├── RedisService.java
│ │ │ └── redis/
│ │ │ ├── Function.java
│ │ │ └── RedisService_bak.java
│ │ └── resources/
│ │ ├── Redme.md
│ │ ├── log4j.properties
│ │ └── spring/
│ │ ├── spring-context.xml
│ │ ├── spring-dubbo-provider.xml
│ │ └── spring-redis.xml
│ └── test/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── test/
│ │ ├── TestAll.java
│ │ └── TestMain.java
│ └── resources/
│ ├── log4j.properties
│ ├── spring-context.xml
│ └── spring-redis.xml
├── weixin-service-system/
│ ├── pom.xml
│ ├── shell/
│ │ └── service-system.sh
│ └── src/
│ └── main/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── weixin/
│ │ └── service/
│ │ └── system/
│ │ ├── dao/
│ │ │ ├── AdDaoMapper.java
│ │ │ ├── AdJoinPositionDaoMapper.java
│ │ │ ├── AdPositionDaoMapper.java
│ │ │ ├── NoticeDaoMapper.java
│ │ │ ├── NoticeTypeDaoMapper.java
│ │ │ └── SystemParamDaoMapper.java
│ │ └── service/
│ │ └── SystemService.java
│ └── resources/
│ ├── log4j.properties
│ ├── mybatis/
│ │ ├── mapper/
│ │ │ ├── AdJoinPositionMapper.xml
│ │ │ ├── AdMapper.xml
│ │ │ ├── AdPositionMapper.xml
│ │ │ ├── NoticeMapper.xml
│ │ │ └── SystemParamMapper.xml
│ │ └── mybatis-config.xml
│ └── spring/
│ ├── spring-context.xml
│ ├── spring-dubbo-provider.xml
│ └── spring-mybatis.xml
├── weixin-service-timer/
│ ├── pom.xml
│ ├── shell/
│ │ └── service-redis.sh
│ └── src/
│ └── main/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── weixin/
│ │ └── service/
│ │ └── timer/
│ │ ├── main/
│ │ │ └── TimerMain.java
│ │ └── token/
│ │ └── RefreshAccessTokenTask.java
│ └── resources/
│ ├── config.properties
│ ├── log4j.properties
│ └── spring/
│ ├── spring-context.xml
│ ├── spring-dubbo-consumer.xml
│ └── spring-quartz.xml
├── weixin-service-user/
│ ├── pom.xml
│ ├── shell/
│ │ └── service-user.sh
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── cheng/
│ │ │ └── weixin/
│ │ │ └── service/
│ │ │ └── user/
│ │ │ ├── dao/
│ │ │ │ ├── AccountDaoMapper.java
│ │ │ │ ├── AccountLevelDaoMapper.java
│ │ │ │ ├── AccountUpgradeHistoryDaoMapper.java
│ │ │ │ ├── BehaviorDaoMapper.java
│ │ │ │ ├── BonusPointRecordDaoMapper.java
│ │ │ │ ├── CashRecordDaoMapper.java
│ │ │ │ ├── CityDaoMapper.java
│ │ │ │ ├── CountryDaoMapper.java
│ │ │ │ ├── CouponRecordDaoMapper.java
│ │ │ │ ├── DeliveryAddressDaoMapper.java
│ │ │ │ ├── MemberDaoMapper.java
│ │ │ │ ├── ProductFocusDaoMapper.java
│ │ │ │ └── ProvinceDaoMapper.java
│ │ │ └── service/
│ │ │ └── UserService.java
│ │ └── resources/
│ │ ├── log4j.properties
│ │ ├── mybatis/
│ │ │ ├── mapper/
│ │ │ │ ├── AccountLevelMapper.xml
│ │ │ │ ├── AccountMapper.xml
│ │ │ │ ├── AccountUpgradeHistoryMapper.xml
│ │ │ │ ├── BehaviorMapper.xml
│ │ │ │ ├── BonusPointRecorMapper.xml
│ │ │ │ ├── CashRecordMapper.xml
│ │ │ │ ├── CityMapper.xml
│ │ │ │ ├── CountryMapper.xml
│ │ │ │ ├── CouponRecordMapper.xml
│ │ │ │ ├── DeliveryAddressMapper.xml
│ │ │ │ ├── MemberMapper.xml
│ │ │ │ ├── ProductFocusMapper.xml
│ │ │ │ └── ProvinceMapper.xml
│ │ │ └── mybatis-config.xml
│ │ └── spring/
│ │ ├── spring-context.xml
│ │ ├── spring-dubbo-provider.xml
│ │ └── spring-mybatis.xml
│ └── test/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── test/
│ │ ├── TestAll.java
│ │ └── TestMain.java
│ └── resources/
│ ├── log4j.properties
│ ├── spring-context.xml
│ └── spring-mybatis.xml
├── weixin-service-wxtools/
│ ├── pom.xml
│ └── src/
│ └── main/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── weixin/
│ │ └── service/
│ │ └── wxtools/
│ │ ├── dao/
│ │ │ ├── WxGroupDaoMapper.java
│ │ │ └── WxMenuDaoMapper.java
│ │ ├── httputils/
│ │ │ ├── HttpClientService.java
│ │ │ └── HttpUtils.java
│ │ ├── service/
│ │ │ ├── WxGroupService.java
│ │ │ ├── WxMenuService.java
│ │ │ └── msghandle/
│ │ │ └── MessageHandle.java
│ │ └── utils/
│ │ └── XMLUtils.java
│ └── resources/
│ ├── mybatis/
│ │ ├── mapper/
│ │ │ └── WxGroupMapper.xml
│ │ └── mybatis-config.xml
│ └── spring/
│ ├── spring-context.xml
│ ├── spring-dubbo-consumer.xml
│ ├── spring-dubbo-provider.xml
│ └── spring-mybatis.xml
├── weixin-web-manage/
│ ├── pom.xml
│ └── src/
│ └── main/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── weixin/
│ │ └── web/
│ │ └── manage/
│ │ ├── controllers/
│ │ │ ├── AdminController.java
│ │ │ ├── BaseController.java
│ │ │ ├── IndexController.java
│ │ │ └── LoginController.java
│ │ ├── interceptor/
│ │ │ └── LogInterceptor.java
│ │ ├── security/
│ │ │ ├── SystemAuthorizingRealm.java
│ │ │ ├── WxFormAuthenticationFilter.java
│ │ │ └── WxUsernamePasswordToken.java
│ │ └── utils/
│ │ └── UserUtils.java
│ ├── resources/
│ │ ├── ehcache/
│ │ │ └── ehcache.xml
│ │ ├── globalconf.properties
│ │ ├── log4j.properties
│ │ ├── rebel.xml
│ │ └── spring/
│ │ ├── applicationContext.xml
│ │ ├── spring-dubbo-consumer.xml
│ │ ├── spring-mvc.xml
│ │ └── spring-shrio.xml
│ └── webapp/
│ ├── WEB-INF/
│ │ ├── include/
│ │ │ └── taglibs.jsp
│ │ ├── tags/
│ │ │ └── captcha.tag
│ │ ├── views/
│ │ │ ├── home.jsp
│ │ │ ├── index.jsp
│ │ │ ├── login.jsp
│ │ │ └── test.jsp
│ │ └── web.xml
│ ├── static/
│ │ ├── css/
│ │ │ ├── bootstrap.min14ed.css
│ │ │ ├── font-awesome.min93e3.css
│ │ │ ├── plugins/
│ │ │ │ ├── awesome-bootstrap-checkbox/
│ │ │ │ │ └── awesome-bootstrap-checkbox.css
│ │ │ │ ├── chosen/
│ │ │ │ │ └── chosen.css
│ │ │ │ ├── clockpicker/
│ │ │ │ │ └── clockpicker.css
│ │ │ │ ├── codemirror/
│ │ │ │ │ ├── ambiance.css
│ │ │ │ │ └── codemirror.css
│ │ │ │ ├── dataTables/
│ │ │ │ │ └── dataTables.bootstrap.css
│ │ │ │ ├── datapicker/
│ │ │ │ │ └── datepicker3.css
│ │ │ │ ├── dropzone/
│ │ │ │ │ ├── basic.css
│ │ │ │ │ └── dropzone.css
│ │ │ │ ├── footable/
│ │ │ │ │ └── footable.core.css
│ │ │ │ ├── fullcalendar/
│ │ │ │ │ ├── fullcalendar.css
│ │ │ │ │ └── fullcalendar.print.css
│ │ │ │ ├── iCheck/
│ │ │ │ │ └── custom.css
│ │ │ │ ├── ionRangeSlider/
│ │ │ │ │ ├── ion.rangeSlider.css
│ │ │ │ │ └── ion.rangeSlider.skinFlat.css
│ │ │ │ ├── jqgrid/
│ │ │ │ │ └── ui.jqgridffe4.css
│ │ │ │ ├── nouslider/
│ │ │ │ │ └── jquery.nouislider.css
│ │ │ │ ├── plyr/
│ │ │ │ │ └── plyr.css
│ │ │ │ ├── simditor/
│ │ │ │ │ └── simditor.css
│ │ │ │ ├── steps/
│ │ │ │ │ └── jquery.steps.css
│ │ │ │ ├── summernote/
│ │ │ │ │ ├── summernote-bs3.css
│ │ │ │ │ └── summernote.css
│ │ │ │ ├── sweetalert/
│ │ │ │ │ └── sweetalert.css
│ │ │ │ ├── switchery/
│ │ │ │ │ └── switchery.css
│ │ │ │ ├── treeview/
│ │ │ │ │ └── bootstrap-treeview.css
│ │ │ │ └── webuploader/
│ │ │ │ └── webuploader.css
│ │ │ └── style.min862f.css
│ │ ├── html/
│ │ │ ├── home.html
│ │ │ ├── index.html
│ │ │ ├── login.html
│ │ │ └── w-index.html
│ │ ├── js/
│ │ │ └── plugins/
│ │ │ ├── beautifyhtml/
│ │ │ │ └── beautifyhtml.js
│ │ │ ├── chosen/
│ │ │ │ └── chosen.jquery.js
│ │ │ ├── clockpicker/
│ │ │ │ └── clockpicker.js
│ │ │ ├── codemirror/
│ │ │ │ ├── codemirror.js
│ │ │ │ └── mode/
│ │ │ │ └── javascript/
│ │ │ │ └── javascript.js
│ │ │ ├── dataTables/
│ │ │ │ ├── dataTables.bootstrap.js
│ │ │ │ └── jquery.dataTables.js
│ │ │ ├── datapicker/
│ │ │ │ └── bootstrap-datepicker.js
│ │ │ ├── diff_match_patch/
│ │ │ │ └── diff_match_patch.js
│ │ │ ├── dropzone/
│ │ │ │ └── dropzone.js
│ │ │ ├── easypiechart/
│ │ │ │ └── jquery.easypiechart.js
│ │ │ ├── echarts/
│ │ │ │ └── echarts-all.js
│ │ │ ├── fancybox/
│ │ │ │ ├── jquery.fancybox.css
│ │ │ │ └── jquery.fancybox.js
│ │ │ ├── flot/
│ │ │ │ ├── curvedLines.js
│ │ │ │ ├── jquery.flot.js
│ │ │ │ ├── jquery.flot.pie.js
│ │ │ │ ├── jquery.flot.resize.js
│ │ │ │ ├── jquery.flot.spline.js
│ │ │ │ └── jquery.flot.symbol.js
│ │ │ ├── gritter/
│ │ │ │ └── jquery.gritter.css
│ │ │ ├── jeditable/
│ │ │ │ └── jquery.jeditable.js
│ │ │ ├── jqgrid/
│ │ │ │ ├── i18n/
│ │ │ │ │ └── grid.locale-cnffe4.js
│ │ │ │ └── jquery.jqGrid.minffe4.js
│ │ │ ├── jsKnob/
│ │ │ │ └── jquery.knob.js
│ │ │ ├── jvectormap/
│ │ │ │ └── jquery-jvectormap-world-mill-en.js
│ │ │ ├── layer/
│ │ │ │ ├── extend/
│ │ │ │ │ └── layer.ext.js
│ │ │ │ ├── laydate/
│ │ │ │ │ ├── laydate.js
│ │ │ │ │ ├── need/
│ │ │ │ │ │ └── laydate.css
│ │ │ │ │ └── skins/
│ │ │ │ │ ├── dahong/
│ │ │ │ │ │ └── laydate.css
│ │ │ │ │ ├── default/
│ │ │ │ │ │ └── laydate.css
│ │ │ │ │ └── molv/
│ │ │ │ │ └── laydate.css
│ │ │ │ ├── laydate-v1.1/
│ │ │ │ │ ├── demo.html
│ │ │ │ │ ├── layDate官网.url
│ │ │ │ │ ├── laydate/
│ │ │ │ │ │ ├── laydate.js
│ │ │ │ │ │ ├── need/
│ │ │ │ │ │ │ └── laydate.css
│ │ │ │ │ │ └── skins/
│ │ │ │ │ │ ├── dahong/
│ │ │ │ │ │ │ └── laydate.css
│ │ │ │ │ │ ├── default/
│ │ │ │ │ │ │ └── laydate.css
│ │ │ │ │ │ └── molv/
│ │ │ │ │ │ └── laydate.css
│ │ │ │ │ └── 更新日志.txt
│ │ │ │ ├── layim/
│ │ │ │ │ ├── layim.css
│ │ │ │ │ └── layim.js
│ │ │ │ └── skin/
│ │ │ │ ├── layer.css
│ │ │ │ ├── layer.ext.css
│ │ │ │ └── moon/
│ │ │ │ └── style.css
│ │ │ ├── markdown/
│ │ │ │ ├── bootstrap-markdown.js
│ │ │ │ ├── bootstrap-markdown.zh.js
│ │ │ │ ├── markdown.js
│ │ │ │ └── to-markdown.js
│ │ │ ├── metisMenu/
│ │ │ │ └── jquery.metisMenu.js
│ │ │ ├── morris/
│ │ │ │ └── morris.js
│ │ │ ├── nestable/
│ │ │ │ └── jquery.nestable.js
│ │ │ ├── plyr/
│ │ │ │ └── plyr.js
│ │ │ ├── prettyfile/
│ │ │ │ └── bootstrap-prettyfile.js
│ │ │ ├── rickshaw/
│ │ │ │ └── vendor/
│ │ │ │ └── d3.v3.js
│ │ │ ├── simditor/
│ │ │ │ ├── hotkeys.js
│ │ │ │ ├── module.js
│ │ │ │ ├── simditor.js
│ │ │ │ └── uploader.js
│ │ │ ├── summernote/
│ │ │ │ └── summernote-zh-CN.js
│ │ │ ├── switchery/
│ │ │ │ └── switchery.js
│ │ │ ├── treeview/
│ │ │ │ └── bootstrap-treeview.js
│ │ │ └── webuploader/
│ │ │ └── index.html
│ │ ├── plugins/
│ │ │ └── fullavatareditor/
│ │ │ └── scripts/
│ │ │ ├── fullAvatarEditor.js
│ │ │ ├── jQuery.Cookie.js
│ │ │ ├── swfobject.js
│ │ │ └── test.js
│ │ └── test/
│ │ └── index.html
│ └── test.jsp
└── weixin-web-mobile/
├── pom.xml
└── src/
├── main/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── weixin/
│ │ └── web/
│ │ └── mobile/
│ │ ├── ControllerExceptionHandle.java
│ │ ├── WeixinController.java
│ │ ├── controller/
│ │ │ ├── BaseController.java
│ │ │ ├── CartController.java
│ │ │ ├── CommentController.java
│ │ │ ├── IndexController.java
│ │ │ ├── LoginController.java
│ │ │ ├── MallController.java
│ │ │ ├── OrderController.java
│ │ │ ├── ProductController.java
│ │ │ ├── PromotionController.java
│ │ │ └── UserController.java
│ │ ├── exception/
│ │ │ ├── BaseException.java
│ │ │ ├── BusinessException.java
│ │ │ ├── IllegalParameterException.java
│ │ │ ├── LoginException.java
│ │ │ ├── OrderException.java
│ │ │ ├── ProductException.java
│ │ │ ├── TokenException.java
│ │ │ ├── UserException.java
│ │ │ └── message/
│ │ │ └── StatusCode.java
│ │ ├── i18n/
│ │ │ └── Resources.java
│ │ ├── interceptor/
│ │ │ ├── LogInterceptor.java
│ │ │ └── MaliciousRequestInterceptor.java
│ │ ├── json/
│ │ │ ├── CustomObjectMapper.java
│ │ │ └── JsonpHttpMessageConverter.java
│ │ ├── model/
│ │ │ ├── Book.java
│ │ │ ├── Meta.java
│ │ │ ├── Response.java
│ │ │ └── User.java
│ │ ├── param/
│ │ │ ├── AddressDto.java
│ │ │ ├── LoginDto.java
│ │ │ ├── PageDto.java
│ │ │ ├── PaymentDto.java
│ │ │ ├── ProductCategoryDto.java
│ │ │ ├── ProductDto.java
│ │ │ ├── ProductListDto.java
│ │ │ ├── RegDto.java
│ │ │ └── package-info.java
│ │ ├── properties/
│ │ │ ├── Configuration.java
│ │ │ ├── Global.java
│ │ │ └── Properties.java
│ │ ├── result/
│ │ │ ├── Promotion/
│ │ │ │ └── CouponDto.java
│ │ │ ├── cart/
│ │ │ │ ├── ProductCartInfo.java
│ │ │ │ ├── ProductInfo.java
│ │ │ │ ├── ProductInfoComparator.java
│ │ │ │ └── ShoppingCartInfo.java
│ │ │ ├── comment/
│ │ │ │ └── ProductComment.java
│ │ │ ├── index/
│ │ │ │ ├── Index.java
│ │ │ │ ├── IndexAd.java
│ │ │ │ ├── IndexBuy.java
│ │ │ │ ├── IndexImage.java
│ │ │ │ ├── IndexNotice.java
│ │ │ │ └── IndexProduct.java
│ │ │ ├── mall/
│ │ │ │ ├── Mall.java
│ │ │ │ ├── MallBuy.java
│ │ │ │ ├── ProductCategory.java
│ │ │ │ └── Products.java
│ │ │ ├── order/
│ │ │ │ ├── ArayacakTownAddr.java
│ │ │ │ ├── ArayacakVillageAddr.java
│ │ │ │ ├── BuyInfo.java
│ │ │ │ ├── Detail.java
│ │ │ │ ├── OrderDeliveryTime.java
│ │ │ │ ├── OrderList.java
│ │ │ │ ├── OrderPay.java
│ │ │ │ ├── ProductDetail.java
│ │ │ │ ├── ProductList.java
│ │ │ │ ├── Status.java
│ │ │ │ └── SubmitOrderInfo.java
│ │ │ ├── package-info.java
│ │ │ ├── product/
│ │ │ │ ├── ProductDetail.java
│ │ │ │ └── ProductPic.java
│ │ │ └── user/
│ │ │ ├── DeliveryAddr.java
│ │ │ └── UserDetail.java
│ │ ├── security/
│ │ │ ├── IgnoreSecurity.java
│ │ │ ├── LocalUser.java
│ │ │ ├── SecurityAspect.java
│ │ │ ├── TokenManager.java
│ │ │ ├── User.java
│ │ │ ├── impl/
│ │ │ │ ├── DefaultTokenManager.java
│ │ │ │ └── RedisTokenManager.java
│ │ │ └── package-info.java
│ │ └── service/
│ │ ├── SysCartService.java
│ │ ├── SysCommentService.java
│ │ ├── SysIndexService.java
│ │ ├── SysLoginService.java
│ │ ├── SysOrderService.java
│ │ ├── SysProductService.java
│ │ ├── SysPromotionService.java
│ │ ├── SysUserService.java
│ │ └── sysMallService.java
│ ├── resources/
│ │ ├── globalconf.properties
│ │ ├── i18n/
│ │ │ ├── messages_en.properties
│ │ │ └── messages_zh.properties
│ │ ├── log4j.properties
│ │ ├── rebel.xml
│ │ └── spring/
│ │ ├── applicationContext.xml
│ │ ├── spring-dubbo-consumer.xml
│ │ └── spring-mvc.xml
│ └── webapp/
│ ├── WEB-INF/
│ │ ├── views/
│ │ │ └── index.jsp
│ │ └── web.xml
│ └── index.jsp
└── test/
├── java/
│ └── com/
│ └── cheng/
│ └── dubbo/
│ └── consumer/
│ └── test/
│ ├── ConsumerTest.java
│ ├── ServiceTest.java
│ ├── TestAll.java
│ └── TestDemo.java
└── resources/
├── applicationContext.xml
├── log4j.properties
└── spring-dubbo-consumer.xml
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitignore
================================================
#忽略的文件及文件夹
target
logs
temp
.idea
*.iml
jdbc.properties
rabbitmq.properties
system.properties
redis.properties
#rebel.xml
#不忽略的文件
!.gitignore
================================================
FILE: README.md
================================================
# 环境部署文档(最好下载下来看,格式有点乱[没换行])
---
## 安装JDK环境
###1.先卸载open-jdk
java –version
rpm -qa | grep java
rpm -qa | grep jdk //查看安装了哪些 要逐一卸载
tzdata-java-2013g-1.el6.noarch
java-1.6.0-openjdk-1.6.0.0-11.1.13.4.el6.x86_64
java-1.7.0-openjdk-1.7.0.65-2.5.1.2.el6_5.x86_64
如:
rpm -e --nodeps tzdata-java-2014g-1.el6.noarch
rpm -e --nodeps java-1.7.0-openjdk-1.7.0.65-2.5.1.2.el6_5.x86_64
rpm -e --nodeps java-1.6.0-openjdk-1.6.0.0-11.1.13.4.el6.x86_64
###2.开始安装:
mkdir /usr/local/java // 创建JDK目录
// FTP或SFTP上传jdk tar包
tar -xvf jdk-7u71-linux-i586.tar.gz
yum install glibc.i686
###3.配置环境变量
①vi /etc/profile
②在末尾行添加
#set java environment
JAVA_HOME=/usr/local/java/jdk1.7.0_45
CLASSPATH=.:$JAVA_HOME/lib.tools.jar
PATH=$JAVA_HOME/bin:$PATH
export JAVA_HOME CLASSPATH PATH
或:
export JAVA_HOME=/usr/local/java/jdk1.7.0_45
export JRE_HOME=$JAVA_HOME/jre
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar:$JRE_HOME/lib:$CLASSPATH
export PATH=$JAVA_HOME/bin:$PATH
保存退出
③source /etc/profile 使更改的配置立即生效
④java -version 查看JDK版本信息,如果显示出1.7.0证明成功
---
## 安装MYSQL
###1.卸载掉原有mysql
rpm -qa | grep mysql // 这个命令就会查看该操作系统上是否已经安装了mysql数据库
// 有的话,我们就通过 rpm -e 命令 或者 rpm -e --nodeps 命令来卸载掉
rpm -e mysql // 普通删除模式
rpm -e --nodeps mysql // 强力删除模式,如果使用上面命令删除时,提示有依赖的其它文件,则用该命令可以对其进行强力删除
// 在删除完以后我们可以通过 rpm -qa | grep mysql 命令来查看mysql是否已经卸载成功!!
###2.通过yum来进行mysql的安装
yum list | grep mysql
// 安装mysql mysql-server mysql-devel
yum install -y mysql-server mysql mysql-deve
// 查看刚安装好的mysql-server的版本
rpm -qi mysql-server
###3.mysql数据库的初始化及相关配置
// 启动Mysql服务
service mysqld start
// 查看是否开机启动
chkconfig --list | grep mysqld
// 如果没启动
chkconfig mysqld on
// 为root账号设置密码
mysqladmin -u root password 'new-password'
// 登录MYSQL
mysql -u root -p password
允许root用户在任何地方进行远程登录,并具有所有库任何操作权限,具体操作如下:
在本机先使用root用户登录mysql:
mysql -u root -p"youpassword"
进行授权操作:
mysql>GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'youpassword' WITH GRANT OPTION;
重载授权表:
FLUSH PRIVILEGES;
退出mysql数据库:
exit
乱码解决
CentOS 6以上的版本:
vi /etc/my.cnf
[mysqld] 下增加
character-set-server=utf8
重启
service mysqld restart
---
##安装Redis
###2.安装环境
yum -y install cpp binutils glibc glibc-kernheaders glibc-common glibc-devel gcc make gcc-c++ libstdc++-devel tcl
###2.创建目录
mkdir -p /usr/local/redis
cd /usr/local/redis
###3.FTP或SFTP上传tar包&&安装
tar -xvf redis-2.8.17.tar.gz
cd redis-2.8.17
make
make test #这个就不要执行了,需要很长时间
make install
###4.修改配置文件
vi /etc/redis.conf
// 修改如下,默认为no(后台启动)
daemonize yes
// 添加密码
requirepass passwd
// 注释掉 可以远程访问
bind127.0.0.1
// 修改端口
port 6677
###5.启动
redis-server ../redis.conf
// 测试
redis-cli
redis-cli -p 6767 -a password // 如果修改了端口或者密码
如:
redis-server ../redis.conf
redis-cli -h 127.0.0.1 -p 6767 -a password
127.0.0.1:6767> keys *
(empty list or set)
// 查看状态
ps -ef|grep redis
root 854 1 0 18:56 ? 00:00:00 /usr/local/redis/redis-3.0.7/src/redis-server *:6767
// 结束
./redis-cli -p 6767 -a password shutdown
---
##安装 Zookeeper
解压:tar -zxvf zookeeper-3.4.6.tar.gz
配置:进入conf目录重命名 mv zoo_sample.cfg zoo.cfg
修改zoo.cfg文件 dataDir=/usr/local/zookeeper/zookeeper-3.4.6/data
启动:进入bin目录
./zkServer.sh start
JMX enabled by default
Using config: /usr/local/zookeeper/zookeeper-3.4.6/bin/../conf/zoo.cfg
Starting zookeeper ... STARTED
查看是否启动:进入bin目录 ./zkServer.sh status
[./zkServer.sh status
JMX enabled by default
Using config: /usr/local/zookeeper/zookeeper-3.4.6/bin/../conf/zoo.cfg
Mode: standalone
停止:进入bin目录 ./zkServer.sh stop
查看节点:
./zkCli.sh
ls /
[zookeeper]
1. 启动ZK服务: sh bin/zkServer.sh start
2. 查看ZK服务状态: sh bin/zkServer.sh status
3. 停止ZK服务: sh bin/zkServer.sh stop
4. 重启ZK服务: sh bin/zkServer.sh restart
使用delete命令可以删除指定znode. 当该znode拥有子znode时, 必须先删除其所有子znode, 否则操作将失败.
rmr命令可用于代替delete命令, rmr是一个递归删除命令, 如果发生指定节点拥有子节点时, rmr命令会首先删除子节点.
##安装RabbitMQ
###1.安装Erlang
cd /usr/local/
mkdir rabbitmq
cd rabbitmq
或者:
上传esl-erlang_17.3-1~centos~6_amd64.rpm
执行yum install esl-erlang_17.3-1~centos~6_amd64.rpm
上传:esl-erlang-compat-R14B-1.el6.noarch.rpm
yum install esl-erlang-compat-R14B-1.el6.noarch.rpm
###2.安装RabbitMQ
上传rabbitmq-server-3.4.1-1.noarch.rpm
安装:
rpm -ivh rabbitmq-server-3.4.1-1.noarch.rpm
###3.启动、停止
service rabbitmq-server start
service rabbitmq-server stop
service rabbitmq-server restart
###4.设置开机启动
chkconfig rabbitmq-server on
###5.设置配置文件
cd /etc/rabbitmq
cp /usr/share/doc/rabbitmq-server-3.4.1/rabbitmq.config.example /etc/rabbitmq/
mv rabbitmq.config.example rabbitmq.config
###6.开启用户远程访问
vi /etc/rabbitmq/rabbitmq.config
%%{loopback_users, []},修改为 {loopback_users, []}
###7.开启web界面管理工具
rabbitmq-plugins enable rabbitmq_management
service rabbitmq-server restart
###8.防火墙开放15672端口
/sbin/iptables -I INPUT -p tcp --dport 15672 -j ACCEPT
/sbin/iptables -I INPUT -p tcp --dport 5672 -j ACCEPT
/etc/rc.d/init.d/iptables save
---
##安装Tomcat
###1.创建目录
cd /usr/local/
mkdir web
cd web
### 2.安装
tar -zxvf apache-tomcat-7.0.61.tar.gz // 解压压缩包
### 3.设置环境变量
vim /etc/profile 文件后面加入(千万不要有空格)
export CATALINA_BASE=/usr/local/cheng/web/apache-tomcat-7.0.61
export TOMCAT_HOME=/usr/local/cheng/web/apache-tomcat-7.0.61
保存,退出,然后运行:
source /etc/profile // 使profile生效
### 4.启动
// 进入bin目录启动tomcat
./startup.sh
chmod u+rwx xxxx
================================================
FILE: Redme.md
================================================
### Redis命令
打开客户端
[root@cloud src]# redis-cli -p 6767 -a root#wx
### zookeeper命令
启动:$ ./zkCli.sh <br/>
查看节点:ls /
启动ZK服务: sh bin/zkServer.sh start<br/>
查看ZK服务状态: sh bin/zkServer.sh status<br/>
停止ZK服务: sh bin/zkServer.sh stop<br/>
重启ZK服务: sh bin/zkServer.sh restart<br/>
删除节点:<br/>
使用delete命令可以删除指定znode. 当该znode拥有子znode时, 必须先删除其所有子znode, 否则操作将失败. rmr命令可用于代替delete命令, rmr是一个递归删除命令, 如果发生指定节点拥有子节点时, rmr命令会首先删除子节点.
================================================
FILE: pom.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.cheng</groupId>
<artifactId>Weixin-Dubbo</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<modules>
<module>weixin-common</module>
<module>weixin-common-config</module>
<module>weixin-common-service</module>
<module>weixin-common-entity</module>
<module>weixin-rabbitmq-model</module>
<module>weixin-rpc-admin</module>
<module>weixin-rpc-log</module>
<module>weixin-rpc-wxtools</module>
<module>weixin-rpc-promotion</module>
<module>weixin-rpc-redis</module>
<module>weixin-rpc-httpclient</module>
<module>weixin-rpc-rabbitmq</module>
<module>weixin-rpc-user</module>
<module>weixin-rpc-item</module>
<module>weixin-rpc-order</module>
<module>weixin-rpc-cart</module>
<module>weixin-rpc-comment</module>
<module>weixin-rpc-system</module>
<module>weixin-rpc-message</module>
<module>weixin-service-admin</module>
<module>weixin-service-cart</module>
<module>weixin-service-item</module>
<module>weixin-service-order</module>
<module>weixin-service-user</module>
<module>weixin-service-log</module>
<module>weixin-service-wxtools</module>
<module>weixin-service-redis</module>
<module>weixin-service-httpclient</module>
<module>weixin-service-timer</module>
<module>weixin-service-rabbitmq</module>
<module>weixin-service-comment</module>
<module>weixin-service-promotion</module>
<module>weixin-service-system</module>
<module>weixin-service-message</module>
<module>weixin-notify-pay</module>
<module>weixin-web-manage</module>
<module>weixin-web-mobile</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>4.10</junit.version>
<http.version>4.3.3</http.version>
<mysql.version>5.1.34</mysql.version>
<druid.version>1.0.13</druid.version>
<shrio.version>1.2.3</shrio.version>
<shiro-spring.version>1.2.3</shiro-spring.version>
<aspectj.version>1.8.6</aspectj.version>
<ehcache.version>2.9.0</ehcache.version>
<amqp-client.version>3.4.1</amqp-client.version>
<spring-data-redis.version>1.6.1.RELEASE</spring-data-redis.version>
<jedis.version>2.7.3</jedis.version>
<dubbo.version>2.5.3</dubbo.version>
<zkclient.version>0.4</zkclient.version>
<servlet.version>3.1.0</servlet.version>
<jstl.version>1.2</jstl.version>
<jsp.version>2.2</jsp.version>
<el.version>3.0.0</el.version>
<sitemesh.version>2.4.2</sitemesh.version>
<logging.version>1.1.3</logging.version>
<log4j.version>1.2.17</log4j.version>
<slf4j.version>1.7.7</slf4j.version>
<dom4j.version>1.6.1</dom4j.version>
<xstream.version>1.4.7</xstream.version>
<fastjson.version>1.1.41</fastjson.version>
<jackson.version>2.3.2</jackson.version>
<commons-lang3.version>3.3.2</commons-lang3.version>
<commons-codec.version>1.9</commons-codec.version>
<commons-io.version>2.4</commons-io.version>
<commons-beanutils.version>1.8.3</commons-beanutils.version>
<guava.version>18.0</guava.version>
<pagehelper.version>4.0.1</pagehelper.version>
<joda-time.version>2.7</joda-time.version>
<quartz.version>2.2.1</quartz.version>
<spring.version>4.2.3.RELEASE</spring.version>
<spring-rabbit.version>1.4.0.RELEASE</spring-rabbit.version>
<mybatis.version>3.2.7</mybatis.version>
<mybatis.spring.version>1.2.1</mybatis.spring.version>
<source.version>2.4</source.version>
<compiler.version>3.1</compiler.version>
<dependency.version>2.1</dependency.version>
<jar.version>2.4</jar.version>
<jetty.version>8.1.9.v20130131</jetty.version>
<rebel-maven-plugin.version>1.1.5</rebel-maven-plugin.version>
</properties>
<dependencyManagement>
<dependencies>
<!-- commons -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>weixin-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>weixin-common-config</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>weixin-common-service</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>weixin-common-entity</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>weixin-rabbitmq-model</artifactId>
<version>${project.version}</version>
</dependency>
<!-- RPC -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>weixin-rpc-admin</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>weixin-rpc-log</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>weixin-rpc-wxtools</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>weixin-rpc-redis</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>weixin-rpc-httpclient</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>weixin-rpc-rabbitmq</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>weixin-rpc-cart</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>weixin-rpc-item</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>weixin-rpc-system</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>weixin-rpc-user</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>weixin-rpc-message</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>weixin-rpc-order</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>weixin-rpc-comment</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>weixin-rpc-promotion</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!-- Servlet -->
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>${jsp.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${servlet.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<version>${el.version}</version>
</dependency>
<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>${jstl.version}</version>
</dependency>
<!-- Sitemesh -->
<dependency>
<groupId>opensymphony</groupId>
<artifactId>sitemesh</artifactId>
<version>${sitemesh.version}</version>
</dependency>
<!-- log4J -->
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>${logging.version}</version>
</dependency>
<!-- Json && Xml-->
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>${dom4j.version}</version>
</dependency>
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>${xstream.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${fastjson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>
<!-- Tools -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>${commons-codec.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io.version}</version>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>${commons-beanutils.version}</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>${joda-time.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<!-- Pagehelper -->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>${pagehelper.version}</version>
</dependency>
<!-- HttpClien -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${http.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>${http.version}</version>
</dependency>
<!-- scheduler -->
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
<version>${quartz.version}</version>
</dependency>
<!-- MYSQL -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.version}</version>
</dependency>
<!-- Druid -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>${druid.version}</version>
</dependency>
<!-- shiro -->
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-core</artifactId>
<version>${shrio.version}</version>
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-web</artifactId>
<version>${shrio.version}</version>
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-spring</artifactId>
<version>${shiro-spring.version}</version>
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-ehcache</artifactId>
<version>${shrio.version}</version>
</dependency>
<!-- ehcache -->
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>${ehcache.version}</version>
</dependency>
<!-- AspectJ -->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>${aspectj.version}</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>${aspectj.version}</version>
</dependency>
<!-- Dubbo Start -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo</artifactId>
<version>${dubbo.version}</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.101tec</groupId>
<artifactId>zkclient</artifactId>
<version>${zkclient.version}</version>
</dependency>
<!-- AMQP -->
<dependency>
<groupId>org.springframework.amqp</groupId>
<artifactId>spring-rabbit</artifactId>
<version>${spring-rabbit.version}</version>
</dependency>
<dependency>
<groupId>com.rabbitmq</groupId>
<artifactId>amqp-client</artifactId>
<version>${amqp-client.version}</version>
</dependency>
<!-- Jedis -->
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
<version>${spring-data-redis.version}</version>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>${jedis.version}</version>
</dependency>
<!-- Spring begin -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-oxm</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
<version>${spring.version}</version>
</dependency>
<!-- Spring end -->
<!-- MyBatis begin -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>${mybatis.version}</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>${mybatis.spring.version}</version>
</dependency>
<!-- MyBatis end -->
</dependencies>
</dependencyManagement>
<build>
<resources>
<resource>
<targetPath>${project.build.directory}/classes</targetPath>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>**/*.xml</include>
<include>**/*.properties</include>
</includes>
</resource>
<resource>
<targetPath>${project.build.directory}/classes/META-INF/spring</targetPath>
<!--<directory>src/main/resources/spring</directory>-->
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>spring-context.xml</include>
</includes>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${compiler.version}</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${source.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${jar.version}</version>
<configuration>
<classesDirectory>${project.build.outputDirectory}</classesDirectory>
<outputDirectory>${project.build.directory}</outputDirectory>
<archive>
<!--生成的jar中,不要包含pom.xml和pom.properties这两个文件 -->
<addMavenDescriptor>false</addMavenDescriptor>
<manifest>
<mainClass>com.alibaba.dubbo.container.Main</mainClass>
<!-- 打包时MANIFEST.MF文件不记录时间版本 -->
<useUniqueVersions>false</useUniqueVersions>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
</manifest>
<manifestEntries>
<Class-Path>.</Class-Path>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>${dependency.version}</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<type>jar</type>
<includeTypes>jar</includeTypes>
<!--<useUniqueVersions>false</useUniqueVersions>-->
<outputDirectory>
${project.build.directory}/lib
</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.zeroturnaround</groupId>
<artifactId>jrebel-maven-plugin</artifactId>
<version>${rebel-maven-plugin.version}</version>
<configuration>
<addResourcesDirToRebelXml>true</addResourcesDirToRebelXml>
<alwaysGenerate>true</alwaysGenerate>
<showGenerated>true</showGenerated>
</configuration>
<executions>
<execution>
<id>generate-rebel-xml</id>
<phase>process-resources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>${jetty.version}</version>
<configuration>
<connectors>
<connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
<port>80</port>
<maxIdleTime>60000</maxIdleTime>
</connector>
</connectors>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
================================================
FILE: sql/weixin.sql
================================================
/*
Navicat MySQL Data Transfer
Source Server : 120.27.53.171-wx
Source Server Version : 50173
Source Host : 120.27.53.171:3306
Source Database : weixin
Target Server Type : MYSQL
Target Server Version : 50173
File Encoding : 65001
Date: 2016-11-27 21:33:09
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for account
-- ----------------------------
DROP TABLE IF EXISTS `account`;
CREATE TABLE `account` (
`id` varchar(255) NOT NULL,
`avatar` varchar(255) DEFAULT NULL,
`nickname` varchar(255) DEFAULT NULL,
`account_level_id` varchar(255) DEFAULT NULL,
`credit` varchar(255) DEFAULT NULL,
`username` varchar(255) DEFAULT NULL,
`password` varchar(255) DEFAULT NULL,
`bonus_point_upgrade` int(11) DEFAULT NULL,
`bonus_point_usable` int(11) DEFAULT NULL,
`balance` double DEFAULT NULL,
`is_employee` tinyint(4) DEFAULT NULL,
`ip` varchar(255) DEFAULT NULL,
`source_from` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of account
-- ----------------------------
INSERT INTO `account` VALUES ('1', 'http://wx.aqd123.com/shop/images/avatar.jpg', 'Cheng', '4', 'WELL', '18600536683', '1', '1070', '3430', '451', '0', '1.95.244.24', 'NO', '--', '2016-09-20 10:03:47', '2016-11-27 12:54:18', 'NORMAL');
INSERT INTO `account` VALUES ('9c3e4044b97140a98f8d12c34bf99efa', 'http://wx.aqd123.com/shop/images/avatar.jpg', 'chengzhx76', '1', 'WELL', '18600536689', '1', '200', '0', '0', '0', '1.95.244.24', 'NO', '--', '2016-11-26 17:21:12', '2016-11-26 17:21:12', 'NORMAL');
INSERT INTO `account` VALUES ('b42f14ce73d24541be4152b7d09cf855', 'http://wx.aqd123.com/shop/images/avatar.jpg', null, '1', 'WELL', '18600536687', '123456', '200', '0', '0', '0', '1.95.244.24', 'NO', '--', '2016-11-26 16:57:36', '2016-11-26 20:27:59', 'NORMAL');
-- ----------------------------
-- Table structure for account_level
-- ----------------------------
DROP TABLE IF EXISTS `account_level`;
CREATE TABLE `account_level` (
`id` varchar(255) NOT NULL,
`level` int(11) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`need_ronus_point` int(11) DEFAULT NULL,
`next_level_need_point` int(11) DEFAULT NULL,
`reduct_percent` double(3,2) DEFAULT NULL COMMENT '折扣 如 0.02打98折',
`consume_scale` varchar(12) DEFAULT NULL COMMENT '积分比 如 1:100 一百个积分等于一元',
`free_frequency` int(11) DEFAULT NULL,
`is_enable` tinyint(4) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of account_level
-- ----------------------------
INSERT INTO `account_level` VALUES ('1', '1', '一级', '0', '200', '0.00', '1000:1', '0', '1', '初始化帐户级别;1000个积分可以换1块钱;0折扣;一月0次免运费机会', '2016-07-12 16:36:04', '2016-07-12 16:36:08', 'NORMAL');
INSERT INTO `account_level` VALUES ('2', '2', '二级', '200', '600', '0.00', '1000:1', '1', '1', '二级账户;1000个积分可以换1块钱;0折扣;一月1次免运费机会', '2016-11-19 21:42:16', '2016-11-19 21:42:19', 'NORMAL');
INSERT INTO `account_level` VALUES ('3', '3', '三级', '600', '1200', '0.02', '900:1', '2', '1', '三级账户;900个积分可以换1块钱;98折;一月2次免运费机会', '2016-11-20 02:01:53', '2016-11-20 02:01:56', 'NORMAL');
INSERT INTO `account_level` VALUES ('4', '4', '四级', '1200', '2500', '0.03', '700:1', '3', '1', '四级账户;700个积分可以换1块钱;97折;一月3次免运费机会', '2016-11-21 13:00:21', '2016-11-21 13:00:27', 'NORMAL');
-- ----------------------------
-- Table structure for ad
-- ----------------------------
DROP TABLE IF EXISTS `ad`;
CREATE TABLE `ad` (
`id` varchar(255) NOT NULL,
`name` varchar(255) DEFAULT NULL,
`picture_url` varchar(255) DEFAULT NULL,
`link_url` varchar(255) DEFAULT NULL,
`width` int(11) DEFAULT NULL,
`height` int(11) DEFAULT NULL,
`priority` int(11) DEFAULT NULL,
`is_enable` tinyint(4) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of ad
-- ----------------------------
INSERT INTO `ad` VALUES ('1', '名字1', 'http://wx.aqd123.com/moblie/static/images/ad/swiper-1.jpg', 'http://www.baidu.com', '120', '120', '1', '1', '首页图片1', '2016-06-29 15:24:44', '2016-06-29 15:24:48', 'NORMAL');
INSERT INTO `ad` VALUES ('2', '名字2', 'http://wx.aqd123.com/moblie/static/images/ad/swiper-2.jpg', 'http://www.baidu.com', '120', '120', '2', '1', '首页图片2', '2016-06-29 16:34:26', '2016-06-29 16:34:29', 'NORMAL');
INSERT INTO `ad` VALUES ('3', '名字3', 'http://wx.aqd123.com/moblie/static/images/ad/swiper-3.jpg', 'http://www.baidu.com', '120', '120', '3', '1', '首页图片3', '2016-06-30 18:07:05', '2016-06-30 18:07:08', 'NORMAL');
-- ----------------------------
-- Table structure for ad_join_position
-- ----------------------------
DROP TABLE IF EXISTS `ad_join_position`;
CREATE TABLE `ad_join_position` (
`id` varchar(255) NOT NULL,
`ad_id` int(11) DEFAULT NULL,
`ad_position_id` int(11) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of ad_join_position
-- ----------------------------
INSERT INTO `ad_join_position` VALUES ('1', '1', '1', '2016-06-29 15:25:44', '2016-06-29 15:25:47', 'NORMAL');
INSERT INTO `ad_join_position` VALUES ('2', '2', '1', '2016-06-29 16:36:11', '2016-06-29 16:36:13', 'NORMAL');
INSERT INTO `ad_join_position` VALUES ('3', '3', '1', '2016-06-30 19:41:44', '2016-06-30 19:41:47', 'NORMAL');
-- ----------------------------
-- Table structure for ad_position
-- ----------------------------
DROP TABLE IF EXISTS `ad_position`;
CREATE TABLE `ad_position` (
`id` varchar(255) NOT NULL,
`name` varchar(255) DEFAULT NULL,
`type` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of ad_position
-- ----------------------------
INSERT INTO `ad_position` VALUES ('1', '首页', 'INDEX', '首页展示的图片', '2016-06-29 15:25:27', '2016-06-29 15:25:29', 'NORMAL');
-- ----------------------------
-- Table structure for admin
-- ----------------------------
DROP TABLE IF EXISTS `admin`;
CREATE TABLE `admin` (
`id` varchar(64) NOT NULL,
`username` varchar(128) DEFAULT NULL,
`password` varchar(128) DEFAULT NULL,
`realname` varchar(16) DEFAULT NULL,
`mobile` varchar(16) DEFAULT NULL,
`photo` varchar(64) DEFAULT NULL,
`login_ip` varchar(16) DEFAULT NULL,
`login_date` datetime DEFAULT NULL,
`old_login_ip` varchar(16) DEFAULT NULL,
`old_login_date` datetime DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(64) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of admin
-- ----------------------------
INSERT INTO `admin` VALUES ('1', 'cheng', '5cdefe986d7fa0d363930c4062b776bd30a33a3cec47a34291a8bd27', '程', '18600536683', '/img/logo.jpg', '1.95.97.65', '2016-11-17 23:17:55', '1.95.240.33', '2016-10-30 21:50:09', '备注', '2016-01-28 15:47:10', '2016-11-17 23:17:55', 'NORMAL');
-- ----------------------------
-- Table structure for admin_role
-- ----------------------------
DROP TABLE IF EXISTS `admin_role`;
CREATE TABLE `admin_role` (
`admin_id` varchar(64) CHARACTER SET utf8 NOT NULL COMMENT '用户ID',
`role_id` varchar(64) CHARACTER SET utf8 NOT NULL COMMENT '角色ID',
PRIMARY KEY (`admin_id`,`role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of admin_role
-- ----------------------------
INSERT INTO `admin_role` VALUES ('1', '1');
-- ----------------------------
-- Table structure for arayacak_address
-- ----------------------------
DROP TABLE IF EXISTS `arayacak_address`;
CREATE TABLE `arayacak_address` (
`id` varchar(255) NOT NULL,
`name` varchar(255) DEFAULT NULL,
`province` varchar(255) DEFAULT NULL,
`city` varchar(255) DEFAULT NULL,
`country` varchar(255) DEFAULT NULL,
`town` varchar(255) DEFAULT NULL,
`village` varchar(255) DEFAULT NULL,
`address` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of arayacak_address
-- ----------------------------
INSERT INTO `arayacak_address` VALUES ('1', '好吃馍店', '1', '1', '1', '1', '1', '刘楼村西头', '自提点1', '2016-11-02 16:36:19', '2016-11-02 16:36:21', 'NORMAL');
INSERT INTO `arayacak_address` VALUES ('2', '大众馍店', '1', '1', '1', '1', '2', '黄楼村南头', '自提点2', '2016-11-02 16:37:09', '2016-11-02 16:37:13', 'NORMAL');
INSERT INTO `arayacak_address` VALUES ('3', '城西馍店', '1', '1', '1', '2', '1', '文亭街西头', '城关自提点', '2016-11-03 14:30:00', '2016-11-03 14:30:02', 'NORMAL');
INSERT INTO `arayacak_address` VALUES ('4', '批发街馍店', '1', '1', '1', '2', '1', '批发街中间路北', '批发街自提点', '2016-11-03 14:31:36', '2016-11-03 14:31:39', 'NORMAL');
-- ----------------------------
-- Table structure for arayacak_delivery_time
-- ----------------------------
DROP TABLE IF EXISTS `arayacak_delivery_time`;
CREATE TABLE `arayacak_delivery_time` (
`id` varchar(255) NOT NULL,
`name` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of arayacak_delivery_time
-- ----------------------------
-- ----------------------------
-- Table structure for behavior
-- ----------------------------
DROP TABLE IF EXISTS `behavior`;
CREATE TABLE `behavior` (
`id` varchar(255) NOT NULL,
`behavior_type` varchar(255) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`oid` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of behavior
-- ----------------------------
INSERT INTO `behavior` VALUES ('83f3553b85b14f89af11bfe4a9481a4f', 'CASH', '70548275', null, '--', '2016-10-12 12:07:01', '2016-10-12 12:07:01', 'NORMAL');
INSERT INTO `behavior` VALUES ('15b305bcf7034e8782d2c79aaa0d3db6', 'CASH', '02288732', null, '--', '2016-10-12 13:54:05', '2016-10-12 13:54:05', 'NORMAL');
INSERT INTO `behavior` VALUES ('bd8601ce9452495f91edd75f5795c6a4', 'CASH', '43473491', null, '--', '2016-10-13 10:15:34', '2016-10-13 10:15:34', 'NORMAL');
INSERT INTO `behavior` VALUES ('8155db2240824efcae8f8a66d2e23a17', 'CASH', '28152547', null, '--', '2016-10-13 10:17:38', '2016-10-13 10:17:38', 'NORMAL');
INSERT INTO `behavior` VALUES ('8f274eaf59e1482db64139bcf59de9cb', 'CASH', '00933862', null, '--', '2016-10-13 11:17:34', '2016-10-13 11:17:34', 'NORMAL');
INSERT INTO `behavior` VALUES ('5198886d73a8476ea4035fbd06f29a39', 'CASH', '07753186', null, '--', '2016-10-13 11:20:04', '2016-10-13 11:20:04', 'NORMAL');
INSERT INTO `behavior` VALUES ('dcaed9f53fed4664adfb09566806adc7', 'CASH', '85845262', null, '--', '2016-10-13 11:21:10', '2016-10-13 11:21:10', 'NORMAL');
INSERT INTO `behavior` VALUES ('44058c8dfe8c4c078607c6c6b5f171bc', 'CASH', '04553268', null, '--', '2016-10-13 11:29:58', '2016-10-13 11:29:58', 'NORMAL');
INSERT INTO `behavior` VALUES ('5a35c77e84144b669be34ea554a67158', 'CASH', '29522347', null, '--', '2016-10-13 11:32:08', '2016-10-13 11:32:08', 'NORMAL');
INSERT INTO `behavior` VALUES ('710b8062bdb54844803067de1b78e7bc', 'CASH', '19902742', null, '--', '2016-10-13 11:43:06', '2016-10-13 11:43:06', 'NORMAL');
INSERT INTO `behavior` VALUES ('061998b72cc04322b68b7dc50a6bcd29', 'CASH', '14458117', null, '--', '2016-10-17 15:34:54', '2016-10-17 15:34:54', 'NORMAL');
INSERT INTO `behavior` VALUES ('10685ac96a1e42fb8743d3c9e0dbde85', 'CASH', '80301769', null, '--', '2016-11-06 00:27:07', '2016-11-06 00:27:07', 'NORMAL');
INSERT INTO `behavior` VALUES ('47598bf5df534940ad1490ccb7ab118c', 'CASH', '09133902', null, '--', '2016-11-06 00:31:06', '2016-11-06 00:31:06', 'NORMAL');
INSERT INTO `behavior` VALUES ('6e89eef7b081461da3bd25517acfcbde', 'CASH', '08292455', null, '--', '2016-11-06 00:32:32', '2016-11-06 00:32:32', 'NORMAL');
INSERT INTO `behavior` VALUES ('d3a53a20055344bba72a87d42e8e72a1', 'CASH', '67016531', null, '--', '2016-11-06 00:35:17', '2016-11-06 00:35:17', 'NORMAL');
INSERT INTO `behavior` VALUES ('17f2d6f34f8e448f83311735a0ef3b19', 'CASH', '81893558', null, '--', '2016-11-06 00:36:34', '2016-11-06 00:36:34', 'NORMAL');
INSERT INTO `behavior` VALUES ('d82a8156764a4fafbe76d7a4a3bcf7cb', 'CASH', '29580650', null, '--', '2016-11-06 00:36:53', '2016-11-06 00:36:53', 'NORMAL');
INSERT INTO `behavior` VALUES ('4a82deaac6e545559d36aec7b38c1581', 'CASH', '74041111', null, '--', '2016-11-06 00:39:08', '2016-11-06 00:39:08', 'NORMAL');
INSERT INTO `behavior` VALUES ('3a77a4473d4c4e64a6cf9bda02c3d2fa', 'CASH', '63842497', null, '--', '2016-11-06 00:45:20', '2016-11-06 00:45:20', 'NORMAL');
INSERT INTO `behavior` VALUES ('0dafe568daf94103ad3525219ed15a2d', 'CASH', '下单', '52488484', '--', '2016-11-06 17:47:03', '2016-11-06 17:47:03', 'NORMAL');
INSERT INTO `behavior` VALUES ('e90a746d619844e89c61699bf21947e7', 'CASH', '下单', '05932460', '--', '2016-11-06 17:49:41', '2016-11-06 17:49:41', 'NORMAL');
INSERT INTO `behavior` VALUES ('dd1486b0febf40da8a9e4ddbd8d21394', 'CASH', '下单', '28041969', '--', '2016-11-06 17:51:21', '2016-11-06 17:51:21', 'NORMAL');
INSERT INTO `behavior` VALUES ('4e7dd142907a4e609a3d9c2a617373c2', 'CASH', '下单', '87269926', '--', '2016-11-06 17:56:43', '2016-11-06 17:56:43', 'NORMAL');
INSERT INTO `behavior` VALUES ('b592d3ea560a42ed90825eb62c4ccf9a', 'CASH', '下单', '88001282', '--', '2016-11-06 17:58:11', '2016-11-06 17:58:11', 'NORMAL');
INSERT INTO `behavior` VALUES ('30f2474268fa4e8f8cfc5b1bd07dbc93', 'CASH', '下单', '72176421', '--', '2016-11-06 17:58:37', '2016-11-06 17:58:37', 'NORMAL');
INSERT INTO `behavior` VALUES ('c2a0f45cfd9d4749a72b3b120bbaf4f0', 'CASH', '下单', '66107843', '--', '2016-11-06 18:04:27', '2016-11-06 18:04:27', 'NORMAL');
INSERT INTO `behavior` VALUES ('cf3a8deac4c14ae3ac60f67a227da5ec', 'CASH', '下单', '81584739', '--', '2016-11-06 18:16:30', '2016-11-06 18:16:30', 'NORMAL');
INSERT INTO `behavior` VALUES ('da0cf6eebc414d38964aaadf7eb79d3c', 'CASH', '下单', '67440119', '--', '2016-11-06 18:16:50', '2016-11-06 18:16:50', 'NORMAL');
INSERT INTO `behavior` VALUES ('54f43f6904634caf8503b2a1a8a27612', 'CASH', '下单', '57835249', '--', '2016-11-06 18:24:53', '2016-11-06 18:24:53', 'NORMAL');
INSERT INTO `behavior` VALUES ('40a49efba395463eadf83bc615b6bd8b', 'CASH', '下单', '33475119', '--', '2016-11-06 18:25:11', '2016-11-06 18:25:11', 'NORMAL');
INSERT INTO `behavior` VALUES ('89b7c9ca8fd04a2dac6561a064c6779b', 'CASH', '下单', '37709392', '--', '2016-11-06 18:25:46', '2016-11-06 18:25:46', 'NORMAL');
INSERT INTO `behavior` VALUES ('ae216418a1624583890cd77b9f73f1c5', 'CASH', '下单', '87514247', '--', '2016-11-06 22:01:22', '2016-11-06 22:01:22', 'NORMAL');
INSERT INTO `behavior` VALUES ('1d0e1a9f12f74a799e0f911dce0fb0f8', 'CASH', '下单', '12168331', '--', '2016-11-06 22:01:27', '2016-11-06 22:01:27', 'NORMAL');
-- ----------------------------
-- Table structure for bonus_point_record
-- ----------------------------
DROP TABLE IF EXISTS `bonus_point_record`;
CREATE TABLE `bonus_point_record` (
`id` varchar(255) NOT NULL,
`account_id` varchar(255) DEFAULT NULL,
`before_bonus_points` varchar(255) DEFAULT NULL,
`tx_bonus_points` varchar(255) DEFAULT NULL,
`frozen_bonus_points` varchar(255) DEFAULT NULL,
`after_bonus_points` varchar(255) DEFAULT NULL,
`tx_type` varchar(255) DEFAULT NULL,
`behavior_id` varchar(255) DEFAULT NULL,
`tx_result` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of bonus_point_record
-- ----------------------------
INSERT INTO `bonus_point_record` VALUES ('4b6ca8d3d5e040bdbd9ab0e3f108762f', '1', '1070', '75', '75', '1145', 'EARNING', null, '下单获取75积分', '--', '2016-11-20 22:39:33', '2016-11-20 22:39:33', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('41699d0f2024474a9d44062dae5ab2d0', '1', '1145', '65', '65', '1210', 'EARNING', null, '下单获取65积分', '--', '2016-11-20 22:45:55', '2016-11-20 22:45:55', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('08393c414c5e4877a299b65c39c55bea', '1', '1210', '50', '50', '1260', 'EARNING', null, '下单获取50积分', '--', '2016-11-20 23:07:30', '2016-11-20 23:07:30', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('f67560fb447340c89b96444abc866826', '1', '1260', '10', '10', '1270', 'EARNING', null, '下单获取10积分', '--', '2016-11-20 23:13:28', '2016-11-20 23:13:28', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('5d90c309355644baa140a87270522c46', '1', '1270', '0', '0', '1270', 'EARNING', null, '下单获取0积分', '--', '2016-11-20 23:48:16', '2016-11-20 23:48:16', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('b1eecc5cc29a440394928c1c3678c50f', '1', '1270', '5', '5', '1275', 'EARNING', null, '下单获取5积分', '--', '2016-11-20 23:57:13', '2016-11-20 23:57:13', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('953cd8f89b954e199529cc667d51d788', '1', '1275', '5', '5', '1280', 'EARNING', null, '下单获取5积分', '--', '2016-11-20 23:57:33', '2016-11-20 23:57:33', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('481407ba96bc4a1c99b204913371bc0a', '1', '1280', '15', '15', '1295', 'EARNING', null, '下单获取15积分', '--', '2016-11-21 00:03:38', '2016-11-21 00:03:38', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('f5c5e513b7b042c69b2d34dadd1b4c60', '1', '1295', '10', '10', '1305', 'EARNING', null, '下单获取10积分', '--', '2016-11-21 00:05:10', '2016-11-21 00:05:10', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('793dda954b2b45c7b0ebc1222a4cabb5', '1', '1305', '5', '5', '1310', 'EARNING', null, '下单获取5积分', '--', '2016-11-21 00:06:30', '2016-11-21 00:06:30', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('823ab97dad6141b3ab13f124646092d2', '1', '1310', '35', '35', '1345', 'EARNING', null, '下单获取35积分', '--', '2016-11-21 00:21:36', '2016-11-21 00:21:36', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('fe6df70eaaf34c609f94c8721f8ac079', '1', '1345', '5', '5', '1350', 'EARNING', null, '下单获取5积分', '--', '2016-11-21 00:23:22', '2016-11-21 00:23:22', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('9a6b25623d6f419ba34fe5729f2514f3', '1', '1350', '5', '5', '1355', 'EARNING', null, '下单获取5积分', '--', '2016-11-21 00:23:56', '2016-11-21 00:23:56', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('daeca90cc3e94fb6a7d523bad6ed845b', '1', '1355', '10', '10', '1365', 'EARNING', null, '下单获取10积分', '--', '2016-11-21 00:30:44', '2016-11-21 00:30:44', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('e9742ea50672499eaec4034375f700af', '1', '1365', '10', '10', '1375', 'EARNING', null, '下单获取10积分', '--', '2016-11-21 00:31:51', '2016-11-21 00:31:51', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('286b590b5b9f436584a4e63e87acd998', '1', '1375', '10', '10', '1385', 'EARNING', null, '下单获取10积分', '--', '2016-11-21 00:32:40', '2016-11-21 00:32:40', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('8584adfa783b4b4c8a288ec527b9fe9a', '1', '1385', '15', '15', '1400', 'EARNING', null, '下单获取15积分', '--', '2016-11-21 00:34:32', '2016-11-21 00:34:32', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('a7922246efa84ff3b77dc8cb951a367a', '1', '1400', '0', '0', '1400', 'EARNING', null, '下单获取0积分', '--', '2016-11-21 00:34:48', '2016-11-21 00:34:48', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('d83afacfbec14c4d8ac3b61581e09b99', '1', '1400', '5', '5', '1405', 'EARNING', null, '下单获取5积分', '--', '2016-11-21 00:36:28', '2016-11-21 00:36:28', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('6b5cbd44253b48218b0861e42f772af0', '1', '1405', '0', '0', '1405', 'EARNING', null, '下单获取0积分', '--', '2016-11-21 00:36:37', '2016-11-21 00:36:37', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('42b9c295dffa44aa91848d2365474815', '1', '1405', '0', '0', '1405', 'EARNING', null, '下单获取0积分', '--', '2016-11-21 00:37:23', '2016-11-21 00:37:23', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('af731be2150a4aaf99e22ff2a306b7c2', '1', '1405', '10', '10', '1415', 'EARNING', null, '下单获取10积分', '--', '2016-11-21 00:38:37', '2016-11-21 00:38:37', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('d4a9d559d77b41f7b13248cefcba5808', '1', '1415', '10', '10', '1425', 'EARNING', null, '下单获取10积分', '--', '2016-11-21 00:39:19', '2016-11-21 00:39:19', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('e23f8f7c32a343c2a63f0ade7cffc596', '1', '1425', '10', '10', '1435', 'EARNING', null, '下单获取10积分', '--', '2016-11-21 00:40:14', '2016-11-21 00:40:14', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('ef12bb53a7304ac492264151103b2575', '1', '1435', '10', '10', '1445', 'EARNING', null, '下单获取10积分', '--', '2016-11-21 00:41:10', '2016-11-21 00:41:10', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('36af3dd628cb4fa8a92d6af9a1055391', '1', '1445', '10', '10', '1455', 'EARNING', null, '下单获取10积分', '--', '2016-11-21 00:46:04', '2016-11-21 00:46:04', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('ec7c817248c249b3ba183c1342751820', '1', '1455', '10', '10', '1465', 'EARNING', null, '下单获取10积分', '--', '2016-11-21 00:46:29', '2016-11-21 00:46:29', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('b79cb350fcae402ca8ee3dfd651795ef', '1', '1465', '20', '20', '1485', 'EARNING', null, '下单获取20积分', '--', '2016-11-21 00:49:26', '2016-11-21 00:49:26', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('5b9b2f9f14da47ae8aa07a98ee33a6df', '1', '1485', '20', '20', '1505', 'EARNING', null, '下单获取20积分', '--', '2016-11-21 01:23:14', '2016-11-21 01:23:14', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('06e5197d71f34a53918910907c707908', '1', '1505', '105', '105', '1610', 'EARNING', null, '下单获取105积分', '--', '2016-11-21 01:26:53', '2016-11-21 01:26:53', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('b656306e212041a0ae5b55cca19bd8b6', '1', '1610', '50', '50', '1660', 'EARNING', null, '下单获取50积分', '--', '2016-11-21 01:27:48', '2016-11-21 01:27:48', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('b880135798c3413a82072f07f4662cbe', '1', '1660', '60', '60', '1720', 'EARNING', null, '下单获取60积分', '--', '2016-11-21 01:29:01', '2016-11-21 01:29:01', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('b5218845db644fa9b2e55c6d76089c09', '1', '1720', '45', '45', '1765', 'EARNING', null, '下单获取45积分', '--', '2016-11-21 11:57:31', '2016-11-21 11:57:31', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('41468b0b9a7741599881b10a4d2b56a6', '1', '1765', '15', '15', '1780', 'EARNING', null, '下单获取15积分', '--', '2016-11-21 11:59:19', '2016-11-21 11:59:19', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('c73064e5016343638874a7e53f37c994', '1', '1780', '10', '10', '1790', 'EARNING', null, '下单获取10积分', '--', '2016-11-21 12:02:44', '2016-11-21 12:02:44', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('e139b64d970145ae95bd22136918593f', '1', '1790', '10', '10', '1800', 'EARNING', null, '下单获取10积分', '--', '2016-11-21 12:03:05', '2016-11-21 12:03:05', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('0539dda2a17544cba94fb61f42d7c813', '1', '1800', '15', '15', '1815', 'EARNING', null, '下单获取15积分', '--', '2016-11-21 12:57:36', '2016-11-21 12:57:36', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('ffecb4e5d82249379292cc6c95317ec1', '1', '1815', '70', '70', '1885', 'EARNING', null, '下单获取70积分', '--', '2016-11-21 22:59:45', '2016-11-21 22:59:45', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('293713490c26498f9185ed8e5e720431', '1', '1885', '50', '50', '1935', 'EARNING', null, '下单获取50积分', '--', '2016-11-21 23:17:11', '2016-11-21 23:17:11', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('3251f2a9e76f45899dc50a93cb8d9893', '1', '1935', '50', '50', '1985', 'EARNING', null, '下单获取50积分', '--', '2016-11-21 23:21:47', '2016-11-21 23:21:47', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('e774ade2700f4c0397cda306fab69313', '1', '1985', '45', '45', '2030', 'EARNING', null, '下单获取45积分', '--', '2016-11-21 23:40:00', '2016-11-21 23:40:00', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('e23451f3f20944f7ac197f4d3fb8665a', '1', '2030', '50', '50', '2080', 'EARNING', null, '下单获取50积分', '--', '2016-11-21 23:45:49', '2016-11-21 23:45:49', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('6e7de97a6f1545ee9b0d90f39b9470bf', '1', '2080', '25', '25', '2105', 'EARNING', null, '下单获取25积分', '--', '2016-11-21 23:53:49', '2016-11-21 23:53:49', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('99515e6e25954cff95310f06e7349f9a', '1', '2105', '15', '15', '2120', 'EARNING', null, '下单获取15积分', '--', '2016-11-21 23:57:16', '2016-11-21 23:57:16', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('ff537a5d22684ebf8d1330b98b73c5c7', '1', '2120', '15', '15', '2135', 'EARNING', null, '下单获取15积分', '--', '2016-11-21 23:57:44', '2016-11-21 23:57:44', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('b902a1bda8c9454684e7145b8cc1290f', '1', '2135', '10', '10', '2145', 'EARNING', null, '下单获取10积分', '--', '2016-11-21 23:58:11', '2016-11-21 23:58:11', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('a9f199208c8e4437851b58c4a6ea2c45', '1', '2145', '10', '10', '2155', 'EARNING', null, '下单获取10积分', '--', '2016-11-21 23:59:03', '2016-11-21 23:59:03', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('a533b563f2944e03b34c5360bce00213', '1', '2155', '515', '515', '2670', 'EARNING', null, '下单获取515积分', '--', '2016-11-22 00:34:02', '2016-11-22 00:34:02', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('adb8772779b445ac8d24decdd826cbd3', '1', '2670', '305', '305', '2975', 'EARNING', null, '下单获取305积分', '--', '2016-11-22 00:36:34', '2016-11-22 00:36:34', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('1afabd9c13264d229ef683fe810147b3', '1', '2975', '35', '35', '3010', 'EARNING', null, '下单获取35积分', '--', '2016-11-22 13:13:42', '2016-11-22 13:13:42', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('6b4e5e40fde6441da1c29e6818e8d4c3', '1', '3010', '100', '100', '3110', 'EARNING', null, '下单获取100积分', '--', '2016-11-23 01:39:46', '2016-11-23 01:39:46', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('8e7b51c36cb946b4876bb5bc7016278f', '1', '3110', '30', '30', '3140', 'EARNING', null, '下单获取30积分', '--', '2016-11-23 23:58:33', '2016-11-23 23:58:33', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('c075dd7f938a4beea17ce1ac9b6bd264', '1', '3140', '30', '30', '3170', 'EARNING', null, '下单获取30积分', '--', '2016-11-23 23:58:33', '2016-11-23 23:58:33', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('ab6dce5dbc7d4dddb54861edf39b2f73', '1', '3140', '50', '50', '3190', 'EARNING', null, '下单获取50积分', '--', '2016-11-24 00:00:26', '2016-11-24 00:00:26', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('d240db07b68c41ab843eed3e48aeefdb', '1', '3190', '0', '0', '3190', 'EARNING', null, '下单获取0积分', '--', '2016-11-24 00:01:00', '2016-11-24 00:01:00', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('4d1dc72186fc4521bb958cef45fa7715', '1', '3190', '145', '145', '3335', 'EARNING', null, '下单获取145积分', '--', '2016-11-26 14:19:46', '2016-11-26 14:19:46', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('bb050cfac69144dd96db4a041f055ce2', '1', '3335', '55', '55', '3390', 'EARNING', null, '下单获取55积分', '--', '2016-11-27 00:20:24', '2016-11-27 00:20:24', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('19aa046994f5444281645951919bb55c', '1', '3390', '10', '10', '3400', 'EARNING', null, '下单获取10积分', '--', '2016-11-27 12:54:18', '2016-11-27 12:54:18', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('a0f16ad31bd84777a8e97171ff7bbde6', '1', '0', '30', '30', '30', 'EARNING', null, '下单获取30积分', '--', '2016-11-20 01:55:12', '2016-11-20 01:55:12', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('6dd686c97a414e86a29382a656ca8328', '1', '30', '5', '5', '35', 'EARNING', null, '下单获取5积分', '--', '2016-11-20 01:55:59', '2016-11-20 01:55:59', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('5747c264ec2c49c4b8b323f239d91881', '1', '35', '300', '300', '335', 'EARNING', null, '下单获取300积分', '--', '2016-11-20 01:59:27', '2016-11-20 01:59:27', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('4856378220a742f7b54c595d3d4d5f68', '1', '335', '10', '10', '345', 'EARNING', null, '下单获取10积分', '--', '2016-11-20 02:42:28', '2016-11-20 02:42:28', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('8e0d07ab4d104576a7a7691a8b6f14b9', '1', '345', '270', '270', '615', 'EARNING', null, '下单获取270积分', '--', '2016-11-20 16:10:20', '2016-11-20 16:10:20', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('81dbb04fb0f6495ca6da7281edbf7e89', '1', '615', '415', '415', '1030', 'EARNING', null, '下单获取415积分', '--', '2016-11-20 18:18:00', '2016-11-20 18:18:00', 'NORMAL');
INSERT INTO `bonus_point_record` VALUES ('bc40dd38c0e647b39a51d91e74181835', '1', '1030', '40', '40', '1070', 'EARNING', null, '下单获取40积分', '--', '2016-11-20 20:31:19', '2016-11-20 20:31:19', 'NORMAL');
-- ----------------------------
-- Table structure for cash_record
-- ----------------------------
DROP TABLE IF EXISTS `cash_record`;
CREATE TABLE `cash_record` (
`id` varchar(255) NOT NULL,
`account_id` varchar(255) DEFAULT NULL,
`before_money` varchar(255) DEFAULT NULL,
`tx_money` varchar(255) DEFAULT NULL,
`frozen_money` varchar(255) DEFAULT NULL,
`after_bonus_points` varchar(255) DEFAULT NULL,
`tx_type` varchar(255) DEFAULT NULL,
`behavior_id` varchar(255) DEFAULT NULL,
`tx_result` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cash_record
-- ----------------------------
INSERT INTO `cash_record` VALUES ('1', '1', '0', '111', '111', '20000', 'EXPENSE', '1', '1', '--', '2016-10-13 11:31:24', '2016-10-13 11:31:29', 'NORMAL');
INSERT INTO `cash_record` VALUES ('2766d2c54c0d4cc6bf05a5c34e244437', '1', '14904.5', '994.7', null, '13909.8', 'EXPENSE', null, '结果', '--', '2016-11-09 07:48:40', '2016-11-09 07:48:40', 'NORMAL');
INSERT INTO `cash_record` VALUES ('c3f30f722c0141e2b13ca147962b87ad', '1', '13909.8', '986.2', null, '12923.6', 'EXPENSE', null, '结果', '--', '2016-11-09 07:48:40', '2016-11-09 07:48:40', 'NORMAL');
INSERT INTO `cash_record` VALUES ('c32e7b1be4ae437d8ac0d1d472232db7', '1', '13909.8', '977.2', null, '12932.6', 'EXPENSE', null, '结果', '--', '2016-11-09 22:05:09', '2016-11-09 22:05:09', 'NORMAL');
INSERT INTO `cash_record` VALUES ('bfd56e9858aa4fe18d5226230e7f6c70', '1', '12932.6', '953.2', null, '11979.4', 'EXPENSE', null, '结果', '--', '2016-11-11 00:25:26', '2016-11-11 00:25:26', 'NORMAL');
INSERT INTO `cash_record` VALUES ('9e0d6a4080e64e428be95ee28a997fd9', '1', '11979.4', '920.2', null, '11059.2', 'EXPENSE', null, '结果', '--', '2016-11-11 01:30:22', '2016-11-11 01:30:22', 'NORMAL');
INSERT INTO `cash_record` VALUES ('1528868fb8d5442ebfa640a0eaac3df1', '1', '11059.2', '914.7', null, '10144.5', 'EXPENSE', null, '结果', '--', '2016-11-11 01:31:12', '2016-11-11 01:31:12', 'NORMAL');
INSERT INTO `cash_record` VALUES ('b09d3a7f4e2f41aaa85ea805a0da72f8', '1', '10144.5', '909.7', null, '9234.8', 'EXPENSE', null, '结果', '--', '2016-11-11 01:37:41', '2016-11-11 01:37:41', 'NORMAL');
INSERT INTO `cash_record` VALUES ('3351dadc0a974125a276ab84d9106a4d', '1', '9234.8', '903.2', null, '8331.6', 'EXPENSE', null, '结果', '--', '2016-11-11 10:57:27', '2016-11-11 10:57:27', 'NORMAL');
INSERT INTO `cash_record` VALUES ('6595bada9879424db6d898da7673462a', '1', '8331.6', '899.2', null, '7432.4', 'EXPENSE', null, '结果', '--', '2016-11-11 13:11:27', '2016-11-11 13:11:27', 'NORMAL');
INSERT INTO `cash_record` VALUES ('5807d4c61f804ee6aee777459f30cbd4', '1', '20000', '1034.7', null, '18965.3', 'EXPENSE', null, '结果', '--', '2016-11-06 18:16:31', '2016-11-06 18:16:31', 'NORMAL');
INSERT INTO `cash_record` VALUES ('db2ab49acf9c47d1b45130934b0ae84a', '1', '18965.3', '1027.2', null, '17938.1', 'EXPENSE', null, '结果', '--', '2016-11-06 18:16:51', '2016-11-06 18:16:51', 'NORMAL');
INSERT INTO `cash_record` VALUES ('c5a23033c9b9426abea46844e336f8e1', '1', '17938.1', '1019.2', null, '16918.9', 'EXPENSE', null, '结果', '--', '2016-11-06 18:24:53', '2016-11-06 18:24:53', 'NORMAL');
INSERT INTO `cash_record` VALUES ('122b22e0b2944bc59474a2d622bd67f9', '1', '16918.9', '1011.2', null, '15907.7', 'EXPENSE', null, '结果', '--', '2016-11-06 18:25:11', '2016-11-06 18:25:11', 'NORMAL');
INSERT INTO `cash_record` VALUES ('490124417b994882b34c7dc8585d442c', '1', '15907.7', '1003.2', null, '14904.5', 'EXPENSE', null, '结果', '--', '2016-11-06 18:25:46', '2016-11-06 18:25:46', 'NORMAL');
INSERT INTO `cash_record` VALUES ('0d126e8b69e244eb928eaec3f8e2ec78', '1', '7432.4', '896.2', null, '6536.2', 'EXPENSE', null, '结果', '--', '2016-11-11 13:50:54', '2016-11-11 13:50:54', 'NORMAL');
INSERT INTO `cash_record` VALUES ('2d87b35236774dbab24a88af9f3c2e10', '1', '6536.2', '891.2', null, '5645.0', 'EXPENSE', null, '结果', '--', '2016-11-12 14:28:40', '2016-11-12 14:28:40', 'NORMAL');
INSERT INTO `cash_record` VALUES ('6830a64eacc440bb891c6abe57bfdcfe', '1', '5645.0', '884.5', null, '4760.5', 'EXPENSE', null, '结果', '--', '2016-11-12 21:53:07', '2016-11-12 21:53:07', 'NORMAL');
INSERT INTO `cash_record` VALUES ('3815ed39162d4feea1b99bea300c993c', '1', '4760.5', '881.3', null, '3879.2', 'EXPENSE', null, '结果', '--', '2016-11-12 21:56:57', '2016-11-12 21:56:57', 'NORMAL');
INSERT INTO `cash_record` VALUES ('f9887dbe9ea14a2c87d09b91a8a1cc88', '1', '3879.2', '878.1', null, '3001.1', 'EXPENSE', null, '结果', '--', '2016-11-12 22:13:34', '2016-11-12 22:13:34', 'NORMAL');
INSERT INTO `cash_record` VALUES ('af9a5e56f54b4091a8b9014c5111e68e', '1', '3001.1', '870.6', null, '2130.5', 'EXPENSE', null, '结果', '--', '2016-11-12 22:24:11', '2016-11-12 22:24:11', 'NORMAL');
INSERT INTO `cash_record` VALUES ('0a64434113c84f83a60e09c03f55f9cf', '1', '2130.5', '865.6', null, '1264.9', 'EXPENSE', null, '结果', '--', '2016-11-12 22:26:24', '2016-11-12 22:26:24', 'NORMAL');
INSERT INTO `cash_record` VALUES ('057b9576f9864a659967c333dcfd1458', '1', '1264.9', '861.6', null, '403.3', 'EXPENSE', null, '结果', '--', '2016-11-12 23:40:15', '2016-11-12 23:40:15', 'NORMAL');
INSERT INTO `cash_record` VALUES ('71a7294200e445ed91e943940d437868', '1', '403.3', '5.0', null, '398.3', 'EXPENSE', null, '结果', '--', '2016-11-13 21:24:15', '2016-11-13 21:24:15', 'NORMAL');
INSERT INTO `cash_record` VALUES ('c8e9a5461296438d977052f076386196', '1', '398.3', '5.5', null, '392.8', 'EXPENSE', null, '结果', '--', '2016-11-14 17:24:49', '2016-11-14 17:24:49', 'NORMAL');
INSERT INTO `cash_record` VALUES ('cd6d80f3301946f0bf784206923dbe7b', '1', '392.8', '4.0', null, '388.8', 'EXPENSE', null, '结果', '--', '2016-11-16 17:51:50', '2016-11-16 17:51:50', 'NORMAL');
INSERT INTO `cash_record` VALUES ('a009df4469fc49e2bae5a66c5cd6eb0f', '1', '388.8', '4.0', null, '384.8', 'EXPENSE', null, '结果', '--', '2016-11-17 14:52:14', '2016-11-17 14:52:14', 'NORMAL');
INSERT INTO `cash_record` VALUES ('9b3536e6ca0f46029c602d2a5e1e8124', '1', '384.8', '4.0', null, '380.8', 'EXPENSE', null, '结果', '--', '2016-11-17 16:09:14', '2016-11-17 16:09:14', 'NORMAL');
INSERT INTO `cash_record` VALUES ('4c62b3a221034da3bf4c6110eae225bb', '1', '380.8', '3.5', null, '377.3', 'EXPENSE', null, '结果', '--', '2016-11-17 16:09:55', '2016-11-17 16:09:55', 'NORMAL');
INSERT INTO `cash_record` VALUES ('cabfd473107f41f9b60970474395c8b4', '1', '377.3', '3.0', null, '374.3', 'EXPENSE', null, '结果', '--', '2016-11-17 16:23:51', '2016-11-17 16:23:51', 'NORMAL');
INSERT INTO `cash_record` VALUES ('27f73a82ca2d40efb06b5c51f8a201bb', '1', '374.3', '4.5', null, '369.8', 'EXPENSE', null, '结果', '--', '2016-11-17 16:45:00', '2016-11-17 16:45:00', 'NORMAL');
INSERT INTO `cash_record` VALUES ('1092410df27343118c456af9bb0f3865', '1', '369.8', '8.5', null, '361.3', 'EXPENSE', null, '结果', '--', '2016-11-17 23:32:29', '2016-11-17 23:32:29', 'NORMAL');
INSERT INTO `cash_record` VALUES ('dcceb4f4db734715aeaa07450b422097', '1', '361.3', '3.5', null, '357.8', 'EXPENSE', null, '结果', '--', '2016-11-18 20:48:20', '2016-11-18 20:48:20', 'NORMAL');
INSERT INTO `cash_record` VALUES ('e85bd1de5b3741e5bdbbf3c3e4f2b581', '1', '357.8', '3.5', null, '354.3', 'EXPENSE', null, '结果', '--', '2016-11-18 20:59:17', '2016-11-18 20:59:17', 'NORMAL');
INSERT INTO `cash_record` VALUES ('e5a82c5c5ad84eaf866f3cddd8410b1e', '1', '354.3', '5.0', null, '349.3', 'EXPENSE', null, '结果', '--', '2016-11-18 22:40:56', '2016-11-18 22:40:56', 'NORMAL');
INSERT INTO `cash_record` VALUES ('8b7da8a7a707497792e5e4a1a9aaf748', '1', '349.3', '5.0', null, '344.3', 'EXPENSE', null, '结果', '--', '2016-11-18 22:43:46', '2016-11-18 22:43:46', 'NORMAL');
INSERT INTO `cash_record` VALUES ('e60f80f4ef394f4cb10f199254af8209', '1', '344.3', '41.0', null, '303.3', 'EXPENSE', null, '结果', '--', '2016-11-18 22:46:41', '2016-11-18 22:46:41', 'NORMAL');
INSERT INTO `cash_record` VALUES ('6dd0ee70f42542ab9c5f189be07e28f8', '1', '303.3', '3.0', null, '300.3', 'EXPENSE', null, '结果', '--', '2016-11-18 23:56:39', '2016-11-18 23:56:39', 'NORMAL');
INSERT INTO `cash_record` VALUES ('cc3eb6209c8f4f168c1ae602222aa945', '1', '300.3', '3.5', null, '296.8', 'EXPENSE', null, '结果', '--', '2016-11-19 00:02:08', '2016-11-19 00:02:08', 'NORMAL');
INSERT INTO `cash_record` VALUES ('1c3fc888c16a4f06a5c7ac4c33387e11', '1', '296.8', '2.5', null, '294.3', 'EXPENSE', null, '结果', '--', '2016-11-19 00:13:20', '2016-11-19 00:13:20', 'NORMAL');
INSERT INTO `cash_record` VALUES ('e640d2bcbfdf4ec79eceaaece92d8207', '1', '294.3', '2.5', null, '291.8', 'EXPENSE', null, '结果', '--', '2016-11-19 00:14:19', '2016-11-19 00:14:19', 'NORMAL');
INSERT INTO `cash_record` VALUES ('0707791360674b72bc55cec506d94fc8', '1', '291.8', '3.0', null, '288.8', 'EXPENSE', null, '结果', '--', '2016-11-19 00:31:25', '2016-11-19 00:31:25', 'NORMAL');
INSERT INTO `cash_record` VALUES ('65f65e26beab4e3780d2fe7d413ff55b', '1', '288.8', '4.0', null, '284.8', 'EXPENSE', null, '结果', '--', '2016-11-19 00:52:45', '2016-11-19 00:52:45', 'NORMAL');
INSERT INTO `cash_record` VALUES ('fb52abef72d44a61bbbd056ef10890e8', '1', '284.8', '3.0', null, '281.8', 'EXPENSE', null, '结果', '--', '2016-11-19 02:36:35', '2016-11-19 02:36:35', 'NORMAL');
INSERT INTO `cash_record` VALUES ('c3c69e10e1f3467fae839432e302c703', '1', '281.8', '4.0', null, '277.8', 'EXPENSE', null, '结果', '--', '2016-11-19 03:27:17', '2016-11-19 03:27:17', 'NORMAL');
INSERT INTO `cash_record` VALUES ('d9baf4686ad54af497b14ea9cd8e7de4', '1', '277.8', '4.0', null, '273.8', 'EXPENSE', null, '结果', '--', '2016-11-19 10:26:47', '2016-11-19 10:26:47', 'NORMAL');
INSERT INTO `cash_record` VALUES ('7757fe24018643efb90afb0e54724568', '1', '273.8', '5.5', null, '268.3', 'EXPENSE', null, '结果', '--', '2016-11-19 16:10:51', '2016-11-19 16:10:51', 'NORMAL');
INSERT INTO `cash_record` VALUES ('0b85d7d18e9c4a3ca9eebc18fb965b1c', '1', '268.3', '2', null, '266.3', 'EXPENSE', null, '下单花费2元', '--', '2016-11-19 23:29:56', '2016-11-19 23:29:56', 'NORMAL');
INSERT INTO `cash_record` VALUES ('6e7106570b474a1f986f477cb28328bb', '1', '266.3', '3.0', null, '263.3', 'EXPENSE', null, '下单花费3.0元', '--', '2016-11-19 23:33:13', '2016-11-19 23:33:13', 'NORMAL');
INSERT INTO `cash_record` VALUES ('ccdfdf1711404fc3a96caa5294c94b52', '1', '263.3', '3.0', null, '260.3', 'EXPENSE', null, '下单花费3.0元', '--', '2016-11-20 01:40:50', '2016-11-20 01:40:50', 'NORMAL');
INSERT INTO `cash_record` VALUES ('0657bcbde6f048a896d297218933619f', '1', '260.3', '4.0', null, '256.3', 'EXPENSE', null, '下单花费4.0元', '--', '2016-11-20 01:41:35', '2016-11-20 01:41:35', 'NORMAL');
INSERT INTO `cash_record` VALUES ('55c2793fad9145b9be3fc369759d6031', '1', '256.3', '3.0', null, '253.3', 'EXPENSE', null, '下单花费3.0元', '--', '2016-11-20 01:46:12', '2016-11-20 01:46:12', 'NORMAL');
INSERT INTO `cash_record` VALUES ('f8800901b861499d89eae6da96b433d2', '1', '253.3', '6.0', null, '247.3', 'EXPENSE', null, '下单花费6.0元', '--', '2016-11-20 01:50:07', '2016-11-20 01:50:07', 'NORMAL');
INSERT INTO `cash_record` VALUES ('ab7f323ebf114bc099091908db051120', '1', '247.3', '5.0', null, '242.3', 'EXPENSE', null, '下单花费5.0元', '--', '2016-11-20 01:55:12', '2016-11-20 01:55:12', 'NORMAL');
INSERT INTO `cash_record` VALUES ('b35453036d1e41e386a36fd4f50aa734', '1', '242.3', '2.5', null, '239.8', 'EXPENSE', null, '下单花费2.5元', '--', '2016-11-20 01:55:59', '2016-11-20 01:55:59', 'NORMAL');
INSERT INTO `cash_record` VALUES ('d4d382f6d62641468f606a530a94fb17', '1', '239.8', '30.0', null, '209.8', 'EXPENSE', null, '下单花费30.0元', '--', '2016-11-20 01:59:27', '2016-11-20 01:59:27', 'NORMAL');
INSERT INTO `cash_record` VALUES ('4074b0252f884c82a12f50091032ff09', '1', '209.8', '3.0', null, '206.8', 'EXPENSE', null, '下单花费3.0元', '--', '2016-11-20 02:42:28', '2016-11-20 02:42:28', 'NORMAL');
INSERT INTO `cash_record` VALUES ('c96eb8987ae5418ca816f30f332ca8b6', '1', '206.8', '27.5', null, '179.3', 'EXPENSE', null, '下单花费27.5元', '--', '2016-11-20 16:10:20', '2016-11-20 16:10:20', 'NORMAL');
INSERT INTO `cash_record` VALUES ('92bbdc7684ef4aef954b63efcd5b0cab', '1', '179.3', '6.0', null, '173.3', 'EXPENSE', null, '下单花费6.0元', '--', '2016-11-20 20:31:19', '2016-11-20 20:31:19', 'NORMAL');
INSERT INTO `cash_record` VALUES ('1011372eba2c48f0a7af58b9ab5da1de', '1', '173.3', '7.5', null, '165.8', 'EXPENSE', null, '下单花费7.5元', '--', '2016-11-20 22:39:33', '2016-11-20 22:39:33', 'NORMAL');
INSERT INTO `cash_record` VALUES ('1e50056d6c9744439f69b9bd852bb34d', '1', '165.8', '7.0', null, '158.8', 'EXPENSE', null, '下单花费7.0元', '--', '2016-11-20 22:45:55', '2016-11-20 22:45:55', 'NORMAL');
INSERT INTO `cash_record` VALUES ('ac8128ae6a694ccabb2a19f3aa27ddb4', '1', '158.8', '5.0', null, '153.8', 'EXPENSE', null, '下单花费5.0元', '--', '2016-11-20 23:07:30', '2016-11-20 23:07:30', 'NORMAL');
INSERT INTO `cash_record` VALUES ('3d61aa03ac74423ba8164902ccbdde42', '1', '153.8', '3.0', null, '150.8', 'EXPENSE', null, '下单花费3.0元', '--', '2016-11-21 00:39:19', '2016-11-21 00:39:19', 'NORMAL');
INSERT INTO `cash_record` VALUES ('58798e1ca8d24a26a4b1498858176c22', '1', '150.8', '3.0', null, '147.8', 'EXPENSE', null, '下单花费3.0元', '--', '2016-11-21 00:40:14', '2016-11-21 00:40:14', 'NORMAL');
INSERT INTO `cash_record` VALUES ('e48b2819d09d420d8558245cb8b1f6d4', '1', '147.8', '3.5', null, '144.3', 'EXPENSE', null, '下单花费3.5元', '--', '2016-11-21 12:57:36', '2016-11-21 12:57:36', 'NORMAL');
INSERT INTO `cash_record` VALUES ('7804064d91ee43f89829f227ade849c1', '1', '144.3', '3.0', null, '141.3', 'EXPENSE', null, '下单花费3.0元', '--', '2016-11-21 23:58:11', '2016-11-21 23:58:11', 'NORMAL');
INSERT INTO `cash_record` VALUES ('5d85e911d15b4a34941fb826e5628803', '1', '141.3', '3.0', null, '138.3', 'EXPENSE', null, '下单花费3.0元', '--', '2016-11-21 23:59:03', '2016-11-21 23:59:03', 'NORMAL');
INSERT INTO `cash_record` VALUES ('7d2b1864e7d24b248285565349ea19d8', '1', '138.3', '56.5', null, '81.8', 'EXPENSE', null, '下单花费56.5元', '--', '2016-11-22 00:34:02', '2016-11-22 00:34:02', 'NORMAL');
INSERT INTO `cash_record` VALUES ('fc885bf1fa1e4004966c4256784b06c7', '1', '81.8', '30.5', null, '51.3', 'EXPENSE', null, '下单花费30.5元', '--', '2016-11-22 00:36:34', '2016-11-22 00:36:34', 'NORMAL');
INSERT INTO `cash_record` VALUES ('7568b06f9f874c4ead1e592271df932c', '1', '51.3', '5.0', null, '46.3', 'EXPENSE', null, '下单花费5.0元', '--', '2016-11-23 23:58:33', '2016-11-23 23:58:33', 'NORMAL');
INSERT INTO `cash_record` VALUES ('5b4d0cfe2ad64f0396467203a316183a', '1', '51.3', '5.0', null, '46.3', 'EXPENSE', null, '下单花费5.0元', '--', '2016-11-23 23:58:33', '2016-11-23 23:58:33', 'NORMAL');
INSERT INTO `cash_record` VALUES ('68208def8edb43449d3c414384a31bc8', '1', '46.3', '5.0', null, '41.3', 'EXPENSE', null, '下单花费5.0元', '--', '2016-11-24 00:00:26', '2016-11-24 00:00:26', 'NORMAL');
INSERT INTO `cash_record` VALUES ('bc684dc0fe094e5e86516c31543b8c01', '1', '41.3', '2', null, '39.3', 'EXPENSE', null, '下单花费2.0元', '--', '2016-11-24 00:01:00', '2016-11-24 00:01:00', 'NORMAL');
-- ----------------------------
-- Table structure for city
-- ----------------------------
DROP TABLE IF EXISTS `city`;
CREATE TABLE `city` (
`id` varchar(255) DEFAULT NULL,
`city` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of city
-- ----------------------------
-- ----------------------------
-- Table structure for comment
-- ----------------------------
DROP TABLE IF EXISTS `comment`;
CREATE TABLE `comment` (
`id` varchar(64) NOT NULL,
`order_detail_id` varchar(255) DEFAULT NULL,
`product_id` varchar(255) DEFAULT NULL,
`account_id` varchar(255) DEFAULT NULL,
`title` varchar(255) DEFAULT NULL,
`content` varchar(255) DEFAULT NULL,
`useful` varchar(255) DEFAULT NULL,
`useless` varchar(255) DEFAULT NULL,
`parent_id` int(11) DEFAULT NULL,
`product_score` varchar(255) DEFAULT NULL,
`delivery_score` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of comment
-- ----------------------------
INSERT INTO `comment` VALUES ('1', '1', '1', '1', '-', '很好吃!', '1', '0', '0', '99', '96', '备注', '2016-10-10 14:03:23', '2016-10-10 14:03:29', 'NORMAL');
-- ----------------------------
-- Table structure for country
-- ----------------------------
DROP TABLE IF EXISTS `country`;
CREATE TABLE `country` (
`id` varchar(255) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of country
-- ----------------------------
-- ----------------------------
-- Table structure for coupon
-- ----------------------------
DROP TABLE IF EXISTS `coupon`;
CREATE TABLE `coupon` (
`id` varchar(255) NOT NULL,
`name` varchar(255) DEFAULT NULL,
`type` varchar(255) DEFAULT NULL,
`face_value` varchar(255) DEFAULT NULL,
`delay_day` varchar(255) DEFAULT NULL,
`is_free` tinyint(4) DEFAULT NULL,
`is_reuse` tinyint(4) DEFAULT NULL,
`enough_money` varchar(255) DEFAULT NULL,
`discount` varchar(255) DEFAULT NULL,
`include_group` varchar(255) DEFAULT NULL,
`exclude_group` varchar(255) DEFAULT NULL,
`begin_time` datetime DEFAULT NULL,
`end_time` datetime DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of coupon
-- ----------------------------
INSERT INTO `coupon` VALUES ('1', '馍店代金券', 'LUCKYMONEY', '0.5', '0', '0', '0', '5', '0', '', '', '2016-11-08 13:50:28', '2016-11-30 13:50:31', '--', '2016-11-08 13:50:44', '2016-11-08 13:50:46', 'NORMAL');
INSERT INTO `coupon` VALUES ('2', '红包', 'LUCKYMONEY', '5', '0', '0', '0', '50', '0', '', '', '2016-11-08 13:52:43', '2016-11-08 13:52:45', '--', '2016-11-08 13:52:49', '2016-11-08 13:52:52', 'NORMAL');
-- ----------------------------
-- Table structure for coupon_code
-- ----------------------------
DROP TABLE IF EXISTS `coupon_code`;
CREATE TABLE `coupon_code` (
`id` varchar(255) NOT NULL,
`coupon_id` varchar(255) DEFAULT NULL,
`code` varchar(255) DEFAULT NULL,
`account_id` varchar(255) DEFAULT NULL,
`is_used` tinyint(4) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of coupon_code
-- ----------------------------
INSERT INTO `coupon_code` VALUES ('1', '1', '123456789', '1', '1', '--', '2016-11-08 13:47:52', '2016-11-27 00:20:24', 'NORMAL');
INSERT INTO `coupon_code` VALUES ('2', '2', 'wwwwwqwdqdwq', '1', '1', '--', '2016-11-08 13:53:32', '2016-11-22 00:34:02', 'NORMAL');
-- ----------------------------
-- Table structure for coupon_history
-- ----------------------------
DROP TABLE IF EXISTS `coupon_history`;
CREATE TABLE `coupon_history` (
`id` varchar(255) NOT NULL,
`code` varchar(255) DEFAULT NULL,
`tx_behavior` varchar(255) DEFAULT NULL,
`account_id` varchar(255) DEFAULT NULL,
`is_send_used` tinyint(4) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of coupon_history
-- ----------------------------
-- ----------------------------
-- Table structure for coupon_record
-- ----------------------------
DROP TABLE IF EXISTS `coupon_record`;
CREATE TABLE `coupon_record` (
`id` varchar(255) NOT NULL,
`account_id` varchar(255) DEFAULT NULL,
`coupon_code_id` varchar(255) DEFAULT NULL,
`tx_type` varchar(255) DEFAULT NULL,
`behavior_id` varchar(255) DEFAULT NULL,
`tx_result` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of coupon_record
-- ----------------------------
INSERT INTO `coupon_record` VALUES ('acec1e84f17040a79a3b20cfb975a598', null, '1', '支出', null, '结果', '--', '2016-10-13 11:30:22', '2016-10-13 11:30:22', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('222d133a3af94da49f0d2634f6931a82', null, '1', '支出', null, '结果', '--', '2016-10-13 11:32:55', '2016-10-13 11:32:55', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('a751b07417bb4444ba6a5387440774d0', null, '1', '支出', null, '结果', '--', '2016-10-13 11:43:15', '2016-10-13 11:43:15', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('a64e829ad3a44430a1e6e4b2975babfd', null, '1', '支出', null, '结果', '--', '2016-10-17 15:34:54', '2016-10-17 15:34:54', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('600ce6aa01584900b597cec072036537', null, '1', '支出', null, '结果', '--', '2016-11-06 00:27:08', '2016-11-06 00:27:08', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('4677536171b841fb8f4e3e3c9860206b', null, '1', '支出', null, '结果', '--', '2016-11-06 00:31:06', '2016-11-06 00:31:06', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('1ea0c3dd27ba412b8a629af2bf80d13b', null, '1', '支出', null, '结果', '--', '2016-11-06 00:32:32', '2016-11-06 00:32:32', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('865d61bdef3e4703ba6ae64a4c853b16', null, '1', '支出', null, '结果', '--', '2016-11-06 00:35:18', '2016-11-06 00:35:18', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('ea8f1b3004ff4e3884d1c712d3df036d', null, '1', '支出', null, '结果', '--', '2016-11-06 00:36:34', '2016-11-06 00:36:34', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('d6255031ddf2463db4f141044b021b8b', null, '1', '支出', null, '结果', '--', '2016-11-06 00:36:53', '2016-11-06 00:36:53', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('3b6597dbbc4347798f4b3bb021c85511', null, '1', '支出', null, '结果', '--', '2016-11-06 00:39:09', '2016-11-06 00:39:09', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('ac31ef0fa92f41049101507293dc2549', null, '1', '支出', null, '结果', '--', '2016-11-06 00:45:20', '2016-11-06 00:45:20', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('85fe7a3d8faf4516985aa0c6cc576e1d', null, '1', '支出', null, '结果', '--', '2016-11-06 17:47:03', '2016-11-06 17:47:03', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('e4ed80eec63b4ab4a4c88b4c930fa497', null, '1', '支出', null, '结果', '--', '2016-11-06 17:49:41', '2016-11-06 17:49:41', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('e469f2e5535747a99f7120ad2112a3fc', null, '1', '支出', null, '结果', '--', '2016-11-06 17:51:41', '2016-11-06 17:51:41', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('4f2f3bcc78984344868ad5edf8bdbc62', null, '1', '支出', null, '结果', '--', '2016-11-06 17:57:00', '2016-11-06 17:57:00', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('1cabad6934cf42679c278fad259773e1', null, '1', '支出', null, '结果', '--', '2016-11-06 17:58:26', '2016-11-06 17:58:26', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('cb49bf66ead34bbe856a2c833f9282fe', null, '1', '支出', null, '结果', '--', '2016-11-06 17:58:41', '2016-11-06 17:58:41', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('25f9b518c607460cba2e14567cdbb841', null, '1', '支出', null, '结果', '--', '2016-11-06 18:04:28', '2016-11-06 18:04:28', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('40777784f88049f382c21c1f1e033ecd', null, '1', '支出', null, '结果', '--', '2016-11-06 18:16:30', '2016-11-06 18:16:30', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('28b88481484a4b3c9a29df9e99d80557', null, '1', '支出', null, '结果', '--', '2016-11-06 18:16:51', '2016-11-06 18:16:51', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('2ca369e1c5f642d1a1f533c813456bb7', null, '1', '支出', null, '结果', '--', '2016-11-06 18:24:53', '2016-11-06 18:24:53', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('82396a04dd3345f9b5ac3de11b3a2f5c', null, '1', '支出', null, '结果', '--', '2016-11-06 18:25:11', '2016-11-06 18:25:11', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('f92fdd4727374aeeb1f398b432274f9f', null, '1', '支出', null, '结果', '--', '2016-11-06 18:25:46', '2016-11-06 18:25:46', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('205b1e169ca34261af743e33a0bc75b7', null, '1', '支出', null, '结果', '--', '2016-11-06 22:01:23', '2016-11-06 22:01:23', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('a1a1a2fad1084c7882eafeae77935ae0', null, '1', '支出', null, '结果', '--', '2016-11-06 22:01:27', '2016-11-06 22:01:27', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('507a74db73d842b680e08fb53b7eb52a', '1', '1', '支出', null, '结果', '--', '2016-11-09 22:05:09', '2016-11-09 22:05:09', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('9012077c63474f32beec9b08224327bd', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-10 21:17:53', '2016-11-10 21:17:53', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('6d7a4f8cb11e4172a3b66203506314bf', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-10 21:20:07', '2016-11-10 21:20:07', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('a2d7d26306294fffbfa51d7c15ac2337', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-10 21:21:41', '2016-11-10 21:21:41', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('4f5f46fdb6a44f2d96081448e5190d39', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-10 21:22:29', '2016-11-10 21:22:29', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('38b3a979c49e42c6b0ae8feca8b5b668', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-10 21:22:46', '2016-11-10 21:22:46', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('d229b577b3ac42369d1572a8f84c40c0', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-10 21:23:23', '2016-11-10 21:23:23', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('c369ba2efb3b49ee9e427d73ba6dddae', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-10 21:23:42', '2016-11-10 21:23:42', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('0cf60125c8a042bd81c6015ada0b848f', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-10 21:24:18', '2016-11-10 21:24:18', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('23e0d369e3cc4457a2f3e949970c3764', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-10 21:24:40', '2016-11-10 21:24:40', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('dd52c5719bd74a17b8085524ea031cf7', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-10 21:25:03', '2016-11-10 21:25:03', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('5c460cacc10e41b88194ffb56b5d8934', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-10 22:58:37', '2016-11-10 22:58:37', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('51342392fc0c4cfa88a3f29251cf2a77', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-11 00:25:26', '2016-11-11 00:25:26', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('134341c7e1914748960f035c6b4f7674', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-11 10:57:27', '2016-11-11 10:57:27', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('90660e6b2e434263abf874288b584c8d', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-12 14:28:40', '2016-11-12 14:28:40', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('75a46fc492f24e1ea2919e497717596f', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-12 22:24:11', '2016-11-12 22:24:11', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('3c095de2c80c4718bb6f3e75d3a6126b', '1', '2', '支出', null, '消费一张优惠券金额为5.0', '--', '2016-11-12 22:38:26', '2016-11-12 22:38:26', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('6255e19309bc4195930e269b4d40aca1', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-13 19:00:25', '2016-11-13 19:00:25', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('c945afc5274d4869b275da0cf390bcd0', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-17 23:32:29', '2016-11-17 23:32:29', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('085c2ab2b8604a3082b622c8669f3bea', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-18 22:40:56', '2016-11-18 22:40:56', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('ee451138462040638cba3102c8053672', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-18 22:46:41', '2016-11-18 22:46:41', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('a49c6a9e12124538bc22647156e009a7', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-19 22:36:07', '2016-11-19 22:36:07', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('638104e449014aa8ba66cc6ad3ecc81e', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-19 22:44:56', '2016-11-19 22:44:56', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('75acaf057d634862ad77bc0820ff0494', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-19 22:53:40', '2016-11-19 22:53:40', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('5ea1ed4e78704fe3a449d34a9d11dc79', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-19 22:56:04', '2016-11-19 22:56:04', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('cbd21b3061ad46bcbd358ae7d7119060', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-19 23:01:29', '2016-11-19 23:01:29', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('05c56d8a6a514bf1858dbb9619ed1bc1', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-20 16:10:20', '2016-11-20 16:10:20', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('7caf63430c714e479afda9d1c228fdc1', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-20 22:45:55', '2016-11-20 22:45:55', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('37b1dbd72f4540f480c5e0b9f97f3190', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-21 01:26:53', '2016-11-21 01:26:53', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('b7c71f07f7b2427ca8dc2d7e1f5f4ccf', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-21 01:27:48', '2016-11-21 01:27:48', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('45f2ae1e64d4468787291871faca1756', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-21 01:29:01', '2016-11-21 01:29:01', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('e1be988d5e6a43ddb5bc5c0adc1799d3', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-21 22:59:45', '2016-11-21 22:59:45', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('77f8e4e2e1f84807bdb9d146fde65fcb', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-21 23:17:11', '2016-11-21 23:17:11', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('491bdc9564404771bf3ee646eaf73059', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-21 23:21:47', '2016-11-21 23:21:47', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('84e6f37251ae4992afb3f7da6cc1ca97', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-21 23:40:00', '2016-11-21 23:40:00', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('ef4ae910626f439491a122607ff2218b', '1', '2', '支出', null, '消费一张优惠券金额为5.0', '--', '2016-11-22 00:34:02', '2016-11-22 00:34:02', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('530f051a5815491c93206ef13b0120cc', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-23 01:39:46', '2016-11-23 01:39:46', 'NORMAL');
INSERT INTO `coupon_record` VALUES ('93abf1a13bf8455a905151853ce16610', '1', '1', '支出', null, '消费一张优惠券金额为0.5', '--', '2016-11-27 00:20:24', '2016-11-27 00:20:24', 'NORMAL');
-- ----------------------------
-- Table structure for delivery_address
-- ----------------------------
DROP TABLE IF EXISTS `delivery_address`;
CREATE TABLE `delivery_address` (
`id` varchar(255) NOT NULL,
`account_id` varchar(255) DEFAULT NULL,
`region_province_id` varchar(255) DEFAULT NULL,
`region_country_id` varchar(255) DEFAULT NULL,
`region_city_id` varchar(255) DEFAULT NULL,
`consignee` varchar(255) DEFAULT NULL,
`address` varchar(255) DEFAULT NULL,
`mobile` varchar(255) DEFAULT NULL,
`sex` varchar(6) DEFAULT NULL,
`tag` varchar(8) DEFAULT NULL,
`telephone` varchar(255) DEFAULT NULL,
`email` varchar(255) DEFAULT NULL,
`post_code` varchar(255) DEFAULT NULL,
`is_default` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of delivery_address
-- ----------------------------
INSERT INTO `delivery_address` VALUES ('1', '1', '1', '1', '1', '收货人1', '孙寺', '1860000001', 'MAN', '家', '05308911051', null, '274200', '1', '--', '2016-10-11 11:39:18', '2016-10-11 11:39:20', 'NORMAL');
INSERT INTO `delivery_address` VALUES ('2', '1', '1', '1', '6', '收货人2', '单县', '13900000001', 'WOMAN', '公司', '05308600000', null, '274200', '0', '--', '2016-10-11 11:40:30', '2016-10-11 11:40:33', 'NORMAL');
-- ----------------------------
-- Table structure for delivery_time
-- ----------------------------
DROP TABLE IF EXISTS `delivery_time`;
CREATE TABLE `delivery_time` (
`id` varchar(255) NOT NULL,
`name` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of delivery_time
-- ----------------------------
INSERT INTO `delivery_time` VALUES ('1', '明天10:00-18:00', '--', '2016-10-10 14:07:01', '2016-10-10 14:06:59', 'NORMAL');
INSERT INTO `delivery_time` VALUES ('2', '今天10:00-18:00', '--', '2016-10-10 14:10:14', '2016-10-10 14:10:16', 'NORMAL');
-- ----------------------------
-- Table structure for delivery_type
-- ----------------------------
DROP TABLE IF EXISTS `delivery_type`;
CREATE TABLE `delivery_type` (
`id` varchar(255) NOT NULL,
`name` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of delivery_type
-- ----------------------------
-- ----------------------------
-- Table structure for email_template
-- ----------------------------
DROP TABLE IF EXISTS `email_template`;
CREATE TABLE `email_template` (
`id` int(11) DEFAULT NULL,
`type` varchar(255) DEFAULT NULL,
`content` varchar(255) DEFAULT NULL,
`is_enable` tinyint(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of email_template
-- ----------------------------
-- ----------------------------
-- Table structure for flow_status
-- ----------------------------
DROP TABLE IF EXISTS `flow_status`;
CREATE TABLE `flow_status` (
`id` varchar(255) NOT NULL,
`name` varchar(255) DEFAULT NULL,
`pre_status_id` varchar(255) DEFAULT NULL,
`next_status_id` varchar(255) DEFAULT NULL,
`pay_way` varchar(255) DEFAULT NULL,
`order_by` int(11) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of flow_status
-- ----------------------------
INSERT INTO `flow_status` VALUES ('1', '未付款', '', '2', 'ONLINE', '1', '正常流程', '2016-11-15 23:14:02', '2016-11-15 23:14:04', 'NORMAL');
INSERT INTO `flow_status` VALUES ('2', '已付款', '1', '3', 'ONLINE', '2', '正常流程', '2016-11-15 23:14:51', '2016-11-15 23:14:54', 'NORMAL');
INSERT INTO `flow_status` VALUES ('3', '拣货中', '2', '4', 'ONLINE', '3', '正常流程', '2016-11-15 23:15:41', '2016-11-15 23:15:44', 'NORMAL');
INSERT INTO `flow_status` VALUES ('4', '配送中', '3', '5', 'ONLINE', '4', '正常流程', '2016-11-15 23:16:41', '2016-11-15 23:16:44', 'NORMAL');
INSERT INTO `flow_status` VALUES ('5', '派件中', '4', '6', 'ONLINE', '5', '正常流程', '2016-11-15 23:17:14', '2016-11-15 23:17:20', 'NORMAL');
INSERT INTO `flow_status` VALUES ('6', '已送达', '5', '', 'ONLINE', '6', '正常流程', '2016-11-15 23:17:16', '2016-11-15 23:17:23', 'NORMAL');
INSERT INTO `flow_status` VALUES ('7', '货到付款', '', '8', 'OFFLINE', '1', '正常流程', '2016-11-15 23:15:41', '2016-11-15 23:15:44', 'NORMAL');
INSERT INTO `flow_status` VALUES ('8', '拣货中', '7', '9', 'OFFLINE', '2', '正常流程', '2016-11-16 22:27:47', '2016-11-16 22:27:50', 'NORMAL');
INSERT INTO `flow_status` VALUES ('9', '配送中', '8', '10', 'OFFLINE', '3', '正常流程', '2016-11-15 23:16:41', '2016-11-15 23:16:44', 'NORMAL');
INSERT INTO `flow_status` VALUES ('10', '派件中', '9', '11', 'OFFLINE', '4', '正常流程', '2016-11-15 23:17:14', '2016-11-15 23:17:20', 'NORMAL');
INSERT INTO `flow_status` VALUES ('11', '已送达', '10', '', 'OFFLINE', '5', '正常流程', '2016-11-15 23:17:16', '2016-11-15 23:17:23', 'NORMAL');
INSERT INTO `flow_status` VALUES ('12', '已失效', null, null, null, '1', '失败的流程', '2016-11-17 16:49:30', '2016-11-17 16:49:32', 'NORMAL');
INSERT INTO `flow_status` VALUES ('13', '已退款', null, null, null, '2', '失败的流程', '2016-11-17 16:50:07', '2016-11-17 16:50:11', 'NORMAL');
INSERT INTO `flow_status` VALUES ('14', '未送达', null, null, null, '3', '失败的流程', '2016-11-17 16:55:33', '2016-11-17 16:55:36', 'NORMAL');
-- ----------------------------
-- Table structure for log
-- ----------------------------
DROP TABLE IF EXISTS `log`;
CREATE TABLE `log` (
`id` varchar(64) NOT NULL,
`type` varchar(20) DEFAULT NULL,
`title` varchar(128) DEFAULT NULL,
`remote_addr` varchar(64) DEFAULT NULL,
`request_uri` varchar(128) DEFAULT NULL,
`method` varchar(16) DEFAULT NULL,
`params` varchar(128) DEFAULT NULL,
`user_agent` varchar(128) DEFAULT NULL,
`exception` varchar(256) DEFAULT NULL,
`username` varchar(64) DEFAULT NULL,
`begin_date` datetime DEFAULT NULL,
`end_date` datetime DEFAULT NULL,
`status` varchar(16) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of log
-- ----------------------------
INSERT INTO `log` VALUES ('c3b65476d02a4ea2b73d963760e6f4d9', 'ACCESS', null, '0:0:0:0:0:0:0:1', null, 'GET', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0', '', 'cheng', null, null, 'NORMAL');
INSERT INTO `log` VALUES ('39a1ed65627448d0a9c61291bc560da7', 'ACCESS', null, '0:0:0:0:0:0:0:1', null, 'GET', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0', '', 'cheng', null, null, 'NORMAL');
INSERT INTO `log` VALUES ('c7f665813b0f4ccb9288495218167d22', 'ACCESS', null, '0:0:0:0:0:0:0:1', null, 'GET', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0', '', 'cheng', null, null, 'NORMAL');
INSERT INTO `log` VALUES ('ec0b5ef6ce1f44579aaee60532bbfc23', 'ACCESS', null, '0:0:0:0:0:0:0:1', '/web/', 'GET', '', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0', '', 'cheng', null, null, 'NORMAL');
-- ----------------------------
-- Table structure for member
-- ----------------------------
DROP TABLE IF EXISTS `member`;
CREATE TABLE `member` (
`id` varchar(255) NOT NULL,
`account_id` varchar(255) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`employer` tinyint(4) DEFAULT NULL,
`mobile` varchar(255) DEFAULT NULL,
`address` varchar(255) DEFAULT NULL,
`email` varchar(255) DEFAULT NULL,
`idcard` varchar(255) DEFAULT NULL,
`sex` varchar(255) DEFAULT NULL,
`birthday` varchar(255) DEFAULT NULL,
`region_province_id` int(11) DEFAULT NULL,
`region_city_id` int(11) DEFAULT NULL,
`region_country_id` int(11) DEFAULT NULL,
`telephone` varchar(255) DEFAULT NULL,
`post_code` varchar(255) DEFAULT NULL,
`income_month` varchar(255) DEFAULT NULL,
`job` varchar(255) DEFAULT NULL,
`hobby` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of member
-- ----------------------------
INSERT INTO `member` VALUES ('1', '1', '1', null, '18600536683', null, null, null, 'MAN', null, null, null, null, null, null, null, null, null, null, null, null, 'NORMAL');
INSERT INTO `member` VALUES ('02a42a8619f3462ca9d87f871e4c7bf2', 'b42f14ce73d24541be4152b7d09cf855', null, null, '18600536687', null, null, null, 'UNKNOW', null, '0', '0', '0', null, null, null, null, null, '2016-11-26 16:57:36', '2016-11-26 16:57:36', '--', 'NORMAL');
-- ----------------------------
-- Table structure for notice
-- ----------------------------
DROP TABLE IF EXISTS `notice`;
CREATE TABLE `notice` (
`id` varchar(255) NOT NULL,
`title` varchar(255) DEFAULT NULL,
`content` varchar(255) DEFAULT NULL,
`link_url` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of notice
-- ----------------------------
INSERT INTO `notice` VALUES ('1', '通告1', '微信端上线了,敬请使用 ~ ~', 'http://www.zhihu.com', '备注', '2016-06-29 16:03:56', '2016-06-29 16:03:58', 'NORMAL');
INSERT INTO `notice` VALUES ('2', '通告2', '兑换【饿了么】畅享美食红包 消耗20金币', 'http://www.baidu.com', '备注', '2016-06-29 16:32:02', '2016-06-29 16:32:08', 'NORMAL');
-- ----------------------------
-- Table structure for order_info
-- ----------------------------
DROP TABLE IF EXISTS `order_info`;
CREATE TABLE `order_info` (
`id` varchar(255) NOT NULL,
`account_id` varchar(255) DEFAULT NULL,
`oid` varchar(255) DEFAULT NULL,
`relate_oid` varchar(11) DEFAULT NULL,
`balance_offset` double DEFAULT NULL,
`amount_payable` double DEFAULT NULL,
`amount_paid` double DEFAULT NULL,
`consignee` varchar(255) DEFAULT NULL,
`mobile` varchar(255) DEFAULT NULL,
`address` varchar(255) DEFAULT NULL,
`delivery_time` varchar(255) DEFAULT NULL,
`pay` varchar(11) DEFAULT NULL,
`delivery_type_id` varchar(11) DEFAULT NULL,
`arayacak_address` varchar(255) DEFAULT NULL,
`arayacak_delivery_time` varchar(11) DEFAULT NULL,
`province` varchar(255) DEFAULT NULL,
`city` varchar(255) DEFAULT NULL,
`country` varchar(255) DEFAULT NULL,
`order_type` varchar(255) DEFAULT NULL,
`freight_reduce` varchar(255) DEFAULT NULL,
`freight_payable` varchar(255) DEFAULT NULL,
`product_total_price` decimal(10,0) DEFAULT NULL,
`discount` varchar(255) DEFAULT NULL,
`remark_customer` varchar(255) DEFAULT NULL,
`post_code` varchar(255) DEFAULT NULL,
`telephone` varchar(255) DEFAULT NULL,
`email` varchar(255) DEFAULT NULL,
`pay_time` datetime DEFAULT NULL,
`exchange_oid` int(11) DEFAULT NULL,
`custom_pice` varchar(255) DEFAULT NULL,
`coupon_code` varchar(255) DEFAULT NULL,
`coupon_reduce_price` decimal(10,0) DEFAULT NULL,
`flow_status` varchar(255) DEFAULT NULL,
`bonus_point_reduce_price` decimal(10,0) DEFAULT NULL,
`is_free_account_level` varchar(255) DEFAULT NULL,
`comment_id` varchar(255) DEFAULT NULL,
`since` tinyint(4) DEFAULT NULL,
`order_status` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
`pay_way` varchar(16) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of order_info
-- ----------------------------
INSERT INTO `order_info` VALUES ('be5d8827c2354419bcf221d42fdf6553', '1', '33231469', null, null, '4.5', '0', null, '1860000001', '孙寺', '明天10:00-18:00', '货到付款', null, null, null, null, null, null, 'NORMAL', '2', '2', '5', '0', '', '274200', '05308911051', null, '2016-11-21 23:40:00', null, null, '123456789', '1', '7', '0', '0', null, '0', 'ONGOING', '--', '2016-11-21 23:40:00', '2016-11-21 23:40:00', 'NORMAL', 'OFFLINE');
INSERT INTO `order_info` VALUES ('85d95e8ad5fd4d06908b2a86e4869635', '1', '21412883', null, '8.5', '6', '-2.5', null, '18600536683', '黄楼村南头', '今天10:00-18:00', '货到付款', null, null, null, null, null, null, 'NORMAL', '2', '0', '9', '0', '', null, null, null, '2016-11-17 23:32:29', null, null, '123456789', '1', '7', '0', '0', null, '1', 'ONGOING', '--', '2016-11-17 23:32:29', '2016-11-17 23:32:29', 'NORMAL', 'OFFLINE');
INSERT INTO `order_info` VALUES ('e33fd89cec9c4a478061905c72a77c2a', '1', '64782083', null, '3.5', '3.5', '0', null, '1860000001', '孙寺', '明天10:00-18:00', '微信', null, null, null, null, null, null, 'NORMAL', '0', '2', '2', '0', '', '274200', '05308911051', null, '2016-11-18 20:48:20', null, null, null, '0', '1', '0', '0', null, '0', 'WAIT_PAY', '--', '2016-11-18 20:48:20', '2016-11-18 20:48:20', 'NORMAL', 'ONLINE');
INSERT INTO `order_info` VALUES ('482cdf60d033421887776d53a3951c8a', '1', '25258853', null, '3.5', '3.5', '0', null, '1860000001', '孙寺', '今天10:00-18:00', '微信', null, null, null, null, null, null, 'NORMAL', '0', '2', '2', '0', '', '274200', '05308911051', null, '2016-11-18 20:59:17', null, null, null, '0', '1', '0', '0', null, '0', 'WAIT_PAY', '--', '2016-11-18 20:59:17', '2016-11-18 20:59:17', 'NORMAL', 'ONLINE');
INSERT INTO `order_info` VALUES ('45a02081f5d9402f9d4ad3a6f09c3284', '1', '80995325', null, '5', '2.5', '-2.5', null, '1860000001', '孙寺', '明天10:00-18:00', '货到付款', null, null, null, null, null, null, 'NORMAL', '2', '0', '5', '0', '', '274200', '05308911051', null, '2016-11-18 22:40:56', null, null, '123456789', '1', '7', '0', '0', null, '0', 'ONGOING', '--', '2016-11-18 22:40:56', '2016-11-18 22:40:56', 'NORMAL', 'OFFLINE');
INSERT INTO `order_info` VALUES ('4c99fe3abd04494f8c954e47699dc1c1', '1', '17337896', null, '3.5', '3.5', '0', null, '1860000001', '孙寺', '明天10:00-18:00', '货到付款', null, null, null, null, null, null, 'NORMAL', '0', '2', '2', '0', '啦啦啦啦', '274200', '05308911051', null, '2016-11-17 16:09:55', null, null, null, '0', '7-8-9-10-14', '0', '0', null, '0', 'CANCELED', '--', '2016-11-17 16:09:55', '2016-11-17 16:09:55', 'NORMAL', 'OFFLINE');
INSERT INTO `order_info` VALUES ('7d46579c57d0416883f5d6110a379d71', '1', '16750448', null, '3', '3', '0', null, '1860000001', '孙寺', '明天10:00-18:00', '微信', null, null, null, null, null, null, 'NORMAL', '0', '2', '1', '0', '', '274200', '05308911051', null, '2016-11-17 16:22:31', null, null, null, '0', '1-2-3-4-5-6', '0', '0', null, '0', 'ONGOING', '--', '2016-11-17 16:22:35', '2016-11-17 16:22:35', 'NORMAL', 'ONLINE');
INSERT INTO `order_info` VALUES ('871bda6c48ca4b5f88ee59338960fcf5', '1', '47402059', null, null, '5', '0', null, '1860000001', '孙寺', '明天10:00-18:00', '微信', null, null, null, null, null, null, 'NORMAL', '2', '2', '5', '0', '', '274200', '05308911051', null, '2016-11-21 23:45:49', null, null, null, '0', '1', '0', '0', null, '0', 'WAIT_PAY', '--', '2016-11-21 23:45:49', '2016-11-21 23:45:49', 'NORMAL', 'ONLINE');
INSERT INTO `order_info` VALUES ('5a9e114f3aa64a8da090d7d224247cff', '1', '35815122', null, null, '4.5', '0', null, '1860000001', '孙寺', '明天10:00-18:00', '微信', null, null, null, null, null, null, 'NORMAL', '0', '2', '3', '0', '', '274200', '05308911051', null, '2016-11-21 23:53:49', null, null, null, '0', '1', '0', '0', null, '0', 'WAIT_PAY', '--', '2016-11-21 23:53:49', '2016-11-21 23:53:49', 'NORMAL', 'ONLINE');
INSERT INTO `order_info` VALUES ('f3878d7c5bf145ad8082f7f95d09a6a5', '1', '06448107', null, null, '3.5', '0', null, '1860000001', '孙寺', '今天10:00-18:00', '微信', null, null, null, null, null, null, 'NORMAL', '0', '2', '2', '0', '', '274200', '05308911051', null, '2016-11-21 23:57:16', null, null, null, '0', '1', '0', '0', null, '0', 'WAIT_PAY', '--', '2016-11-21 23:57:16', '2016-11-21 23:57:16', 'NORMAL', 'ONLINE');
INSERT INTO `order_info` VALUES ('d8f3ada21fd64333beb15ef7c7bf6f4c', '1', '41189458', null, null, '3.5', '0', null, '1860000001', '孙寺', '明天10:00-18:00', '货到付款', null, null, null, null, null, null, 'NORMAL', '0', '2', '2', '0', '', '274200', '05308911051', null, '2016-11-21 23:57:44', null, null, null, '0', '7', '0', '0', null, '0', 'ONGOING', '--', '2016-11-21 23:57:44', '2016-11-21 23:57:44', 'NORMAL', 'OFFLINE');
INSERT INTO `order_info` VALUES ('dd730ec7772d4c8aba2525c31e08dced', '1', '50751194', null, '3', '3', '3', null, '1860000001', '孙寺', '明天10:00-18:00', '微信', null, null, null, null, null, null, 'NORMAL', '0', '2', '1', '0', '', '274200', '05308911051', null, '2016-11-21 23:58:11', null, null, null, '0', '1-2', '0', '0', null, '0', 'ONGOING', '--', '2016-11-21 23:58:11', '2016-11-21 23:58:11', 'NORMAL', 'ONLINE');
INSERT INTO `order_info` VALUES ('a70c715169c14eac92d645de4709c516', '1', '55941406', null, '3', '3', '3', null, '1860000001', '孙寺', '明天10:00-18:00', '货到付款', null, null, null, null, null, null, 'NORMAL', '0', '2', '1', '0', '', '274200', '05308911051', null, '2016-11-21 23:59:03', null, null, null, '0', '7', '0', '0', null, '0', 'ONGOING', '--', '2016-11-21 23:59:03', '2016-11-21 23:59:03', 'NORMAL', 'OFFLINE');
INSERT INTO `order_info` VALUES ('82f4f04dabc74037b95be0aedbe8997a', '1', '46299589', null, '56.5', '51.5', '56.5', null, '1860000001', '孙寺', '明天10:00-18:00', '支付宝', null, null, null, null, null, null, 'NORMAL', '2', '2', '57', '0', '', '274200', '05308911051', null, '2016-11-22 00:34:02', null, null, 'wwwwwqwdqdwq', '5', '1-2', '0', '0', null, '0', 'ONGOING', '--', '2016-11-22 00:34:02', '2016-11-22 00:34:02', 'NORMAL', 'ONLINE');
INSERT INTO `order_info` VALUES ('98a735bb8a13422394551fa944b0a7c0', '1', '14528930', null, '30.5', '30.5', '30.5', null, '1860000001', '孙寺', '明天10:00-18:00', '微信', null, null, null, null, null, null, 'NORMAL', '2', '2', '31', '0', '', '274200', '05308911051', null, '2016-11-22 00:36:34', null, null, null, '0', '1-2', '0', '0', null, '0', 'ONGOING', '--', '2016-11-22 00:36:34', '2016-11-22 00:36:34', 'NORMAL', 'ONLINE');
INSERT INTO `order_info` VALUES ('f77599f0d01c409fb9bd69c98c17df0d', '1', '05654801', null, null, '5.5', '0', null, '1860000001', '孙寺', '今天10:00-18:00', '货到付款', null, null, null, null, null, null, 'NORMAL', '0', '2', '4', '0', '', '274200', '05308911051', null, '2016-11-22 13:13:42', null, null, null, '0', '7', '0', '0', null, '0', 'ONGOING', '--', '2016-11-22 13:13:42', '2016-11-22 13:13:42', 'NORMAL', 'OFFLINE');
INSERT INTO `order_info` VALUES ('02b7a9e577254f709fc6afb16e6ae00e', '1', '58927163', null, null, '10', '0', null, '1860000001', '孙寺', '明天10:00-18:00', '货到付款', null, null, null, null, null, null, 'NORMAL', '2', '2', '11', '0', '', '274200', '05308911051', null, '2016-11-23 01:39:46', null, null, '123456789', '1', '7', '0', '0', null, '0', 'ONGOING', '--', '2016-11-23 01:39:46', '2016-11-23 01:39:46', 'NORMAL', 'OFFLINE');
INSERT INTO `order_info` VALUES ('03807d9304a945bfa8d82db7c0d59d86', '1', '63718652', null, '5', '5', '5', null, '13900000001', '单县', '明天10:00-18:00', '货到付款', null, null, null, null, null, null, 'NORMAL', '0', '2', '3', '0', '', '274200', '05308600000', null, '2016-11-23 23:58:33', null, null, null, '0', '7', '0', '0', null, '0', 'ONGOING', '--', '2016-11-23 23:58:33', '2016-11-23 23:58:33', 'NORMAL', 'OFFLINE');
INSERT INTO `order_info` VALUES ('971d9d6a4258402299cffcfecdffed3c', '1', '33226048', null, '5', '5', '5', null, '13900000001', '单县', '明天10:00-18:00', '货到付款', null, null, null, null, null, null, 'NORMAL', '0', '2', '3', '0', '', '274200', '05308600000', null, '2016-11-23 23:58:33', null, null, null, '0', '7', '0', '0', null, '0', 'ONGOING', '--', '2016-11-23 23:58:33', '2016-11-23 23:58:33', 'NORMAL', 'OFFLINE');
INSERT INTO `order_info` VALUES ('907cea6ce49443fabeafd0e366cbbb77', '1', '72580291', null, '5', '5', '5', null, '1860000001', '孙寺', '明天10:00-18:00', 'cheng', null, null, null, null, null, null, 'NORMAL', '2', '2', '5', '0', '', '274200', '05308911051', null, '2016-11-24 00:00:26', null, null, null, '0', '7', '0', '0', null, '0', 'ONGOING', '--', '2016-11-24 00:00:26', '2016-11-24 00:00:26', 'NORMAL', 'OFFLINE');
INSERT INTO `order_info` VALUES ('cf4c9b11baf0450795e16eba88b6f9b0', '1', '87240530', null, '2', '2', '2', null, '1860000001', '孙寺', '明天10:00-18:00', '微信', null, null, null, null, null, null, 'NORMAL', '0', '2', '0', '0', '', '274200', '05308911051', null, '2016-11-24 00:01:00', null, null, null, '0', '1-2', '0', '0', null, '0', 'ONGOING', '--', '2016-11-24 00:01:00', '2016-11-24 00:01:00', 'NORMAL', 'ONLINE');
INSERT INTO `order_info` VALUES ('fddab9948f4743149d8f6caaeb4aeace', '1', '08574631', null, null, '14.5', '0', null, '1860000001', '孙寺', '明天10:00-18:00', '微信', null, null, null, null, null, null, 'NORMAL', '2', '2', '15', '0', '', '274200', '05308911051', null, '2016-11-26 14:19:46', null, null, null, '0', '1', '0', '0', null, '0', 'WAIT_PAY', '--', '2016-11-26 14:19:46', '2016-11-26 14:19:46', 'NORMAL', 'ONLINE');
INSERT INTO `order_info` VALUES ('82d13c36d06747888d55602e9ccb6890', '1', '50031248', null, null, '5.5', '0', null, '13900000001', '单县', '明天10:00-18:00', '货到付款', null, null, null, null, null, null, 'NORMAL', '2', '2', '6', '0', '', '274200', '05308600000', null, '2016-11-27 00:20:24', null, null, '123456789', '1', '7', '0', '0', null, '0', 'ONGOING', '--', '2016-11-27 00:20:24', '2016-11-27 00:20:24', 'NORMAL', 'OFFLINE');
INSERT INTO `order_info` VALUES ('b228ef205bc24c7aac56fc242a60d044', '1', '39345731', null, null, '3', '0', null, '13900000001', '单县', '明天10:00-18:00', '支付宝', null, null, null, null, null, null, 'NORMAL', '0', '2', '1', '0', '', '274200', '05308600000', null, '2016-11-27 12:54:18', null, null, null, '0', '1', '0', '0', null, '0', 'WAIT_PAY', '--', '2016-11-27 12:54:18', '2016-11-27 12:54:18', 'NORMAL', 'ONLINE');
INSERT INTO `order_info` VALUES ('84d0bf11cde446e183608a598566e281', '1', '59798007', null, null, '5', '0', null, '1860000001', '孙寺', '明天10:00-18:00', '货到付款', null, null, null, null, null, null, 'NORMAL', '2', '0', '8', '0', '', '274200', '05308911051', null, '2016-11-21 22:59:45', null, null, '123456789', '1', '7', '0', '0', null, '0', 'ONGOING', '--', '2016-11-21 22:59:45', '2016-11-21 22:59:45', 'NORMAL', 'OFFLINE');
INSERT INTO `order_info` VALUES ('d37f2fc07f4c49099404eb91e481cb31', '1', '90994901', null, null, '3', '0', null, '13900000001', '单县', '明天10:00-18:00', '货到付款', null, null, null, null, null, null, 'NORMAL', '2', '0', '6', '0', '', '274200', '05308600000', null, '2016-11-21 23:17:11', null, null, '123456789', '1', '7', '0', '0', null, '0', 'ONGOING', '--', '2016-11-21 23:17:11', '2016-11-21 23:17:11', 'NORMAL', 'OFFLINE');
INSERT INTO `order_info` VALUES ('db49769d66de47de80f174d39f535ce5', '1', '75238422', null, null, '3', '0', null, '1860000001', '孙寺', '明天10:00-18:00', '微信', null, null, null, null, null, null, 'NORMAL', '2', '0', '6', '0', '', '274200', '05308911051', null, '2016-11-21 23:21:47', null, null, '123456789', '1', '1', '0', '0', null, '0', 'WAIT_PAY', '--', '2016-11-21 23:21:47', '2016-11-21 23:21:47', 'NORMAL', 'ONLINE');
-- ----------------------------
-- Table structure for order_product_detail
-- ----------------------------
DROP TABLE IF EXISTS `order_product_detail`;
CREATE TABLE `order_product_detail` (
`id` varchar(255) NOT NULL,
`order_info_id` varchar(255) DEFAULT NULL,
`oid` varchar(255) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`quantity` int(11) DEFAULT NULL,
`subtotal` decimal(10,0) DEFAULT NULL,
`market_price` decimal(10,0) DEFAULT NULL,
`sale_price` decimal(10,0) DEFAULT NULL,
`deal_price` decimal(10,0) DEFAULT NULL,
`discount_rate` double DEFAULT NULL,
`is_comment` tinyint(4) DEFAULT NULL,
`is_gift` tinyint(4) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of order_product_detail
-- ----------------------------
INSERT INTO `order_product_detail` VALUES ('00a6e640f54e4013afab643e76dd4857', null, '69405561', '花卷', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-17 16:08:14', '2016-11-17 16:08:14', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('297e78a567834625b3dc4f9dbaaa247e', null, '69405561', '大馍', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-17 16:08:14', '2016-11-17 16:08:14', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('3891a53d59824e8885b991053667ee5a', null, '09371692', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-17 16:09:14', '2016-11-17 16:09:14', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('4c142936ad71476cafd27c35b2628e90', null, '09371692', '花卷', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-17 16:09:14', '2016-11-17 16:09:14', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('278c64990a604dfd889809de9aa9f4e0', null, '17337896', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-17 16:09:55', '2016-11-17 16:09:55', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('beaea4be2f3d4e6e997bf63011bea660', null, '17337896', '花卷', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-17 16:09:55', '2016-11-17 16:09:55', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('32479169be9340a9a61e92f654033375', null, '16750448', '大馍', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-17 16:23:50', '2016-11-17 16:23:50', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('5fbc2b26ddb343f1bd841ec65a08e545', '3f5f34dd86934d3bb54526fd54797623', '49127573', '大馍', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-17 16:45:00', '2016-11-17 16:45:00', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('b92eefafcb2041b398112f5a1a044e3e', '3f5f34dd86934d3bb54526fd54797623', '49127573', '花卷', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-17 16:45:00', '2016-11-17 16:45:00', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('da9363611080419f97e6d35ff2ed17e4', '85d95e8ad5fd4d06908b2a86e4869635', '21412883', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-17 23:32:29', '2016-11-17 23:32:29', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('fe6c44109bca4d31ab89469737022c5a', '85d95e8ad5fd4d06908b2a86e4869635', '21412883', '花卷', '16', '8', '1', '1', '1', '1', '0', '0', '--', '2016-11-17 23:32:29', '2016-11-17 23:32:29', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('13478b8cab2a40d286312abb63926cd0', 'e33fd89cec9c4a478061905c72a77c2a', '64782083', '大馍', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-18 20:48:20', '2016-11-18 20:48:20', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('00861e411ac64cbd8da55baf54bac6e7', '482cdf60d033421887776d53a3951c8a', '25258853', '花卷', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-18 20:59:17', '2016-11-18 20:59:17', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('430d51765d01492881f619abac1a3c7f', '45a02081f5d9402f9d4ad3a6f09c3284', '80995325', '大馍', '10', '5', '1', '1', '1', '1', '0', '0', '--', '2016-11-18 22:40:56', '2016-11-18 22:40:56', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('5fa2ac5903b54719b45d3856741a6e8c', 'a551579396324483a59779a5695cbf0e', '26534794', '花卷', '4', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-18 22:43:46', '2016-11-18 22:43:46', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('66e75e75d2c240d1a624a3ffe5cee345', 'a551579396324483a59779a5695cbf0e', '26534794', '大馍', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-18 22:43:46', '2016-11-18 22:43:46', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('726022ffa9574654ae5521fc5ab89282', '12d8cbc264f84030bcd87caeae629de2', '58853726', '吃的', '41', '41', '1', '1', '1', '1', '0', '0', '--', '2016-11-18 22:46:41', '2016-11-18 22:46:41', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('cd27eed67fe34402930dcba45c73c759', 'e41f285deea045fa97fc103c6a5dd891', '62168951', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-18 23:56:39', '2016-11-18 23:56:39', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('a44b0516997c497784c37b3b0058f302', 'e41f285deea045fa97fc103c6a5dd891', '62168951', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-18 23:56:39', '2016-11-18 23:56:39', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('3de2d367feb647dd8eaf065608bac489', '3eded5cf32ef420e8c52b21b11512451', '48781431', '花卷', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 00:02:08', '2016-11-19 00:02:08', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('01bb9701e25249eab6b6eb4789ce6634', '3eded5cf32ef420e8c52b21b11512451', '48781431', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 00:02:08', '2016-11-19 00:02:08', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('1dbdc19588224b14a75dfa1df76d4f79', '232209c6626a4e7099356fafc0670f89', '40130898', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 00:06:18', '2016-11-19 00:06:18', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('aec9615495a848e8a3dc624ae42a2707', 'bd9c718f941d4f0198f2d1cfa47bfe4f', '01185033', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 00:13:20', '2016-11-19 00:13:20', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('f6b6070550a74769832836398e451557', '815fa2a70eb140b78c8dadc66a9be164', '82293845', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 00:14:19', '2016-11-19 00:14:19', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('192a86c5748a4e7993947420e167eef3', '61d0b45564ab4c148d5a66f63639e02c', '97628461', '花卷', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 00:23:25', '2016-11-19 00:23:25', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('5328626f5a634b0fabd09117d4d5b05e', '3073752bb03d4355b4e8476268b8b514', '36820844', '花卷', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 00:30:46', '2016-11-19 00:30:46', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('289ca303edf3477883981126559f28f6', '68371cc47ff54986a39f7ae7f06370f2', '46867928', '大馍', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 00:31:25', '2016-11-19 00:31:25', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('3a61e8136d6245eb9ccce345fb73f931', '84debacf2a1645c49f15387f20e5741b', '81688512', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 00:50:26', '2016-11-19 00:50:26', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('6c47a533530a40c5a472a73a85578ed2', '84debacf2a1645c49f15387f20e5741b', '81688512', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 00:50:26', '2016-11-19 00:50:26', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('c38846bd1fbb4b81a2c6b636bba09b08', '9c92748255d443958be2362e2f3c2870', '20315397', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 00:52:45', '2016-11-19 00:52:45', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('54bd4cfa00224bac8936650d49183c1d', '9c92748255d443958be2362e2f3c2870', '20315397', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 00:52:45', '2016-11-19 00:52:45', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('ef2f4f42dbf442669d0aa7edb4b22b70', '9c92748255d443958be2362e2f3c2870', '20315397', '吃的', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 00:52:45', '2016-11-19 00:52:45', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('6954bde2912444ae89a00edddf9f01e0', 'd98a386254174cda916b1bb1a3d1482a', '83842084', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 02:36:35', '2016-11-19 02:36:35', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('1cf0b5af792f4eacbb5ba5500c227a10', 'd98a386254174cda916b1bb1a3d1482a', '83842084', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 02:36:35', '2016-11-19 02:36:35', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('d2c5e05b908b4463994d3ef96d250921', 'b9b80453330d47de9e46d6d4b214bb8c', '11138972', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 03:27:17', '2016-11-19 03:27:17', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('7bdc5e1eda444aa893a9921d7aeb7cf1', 'b9b80453330d47de9e46d6d4b214bb8c', '11138972', '花卷', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 03:27:17', '2016-11-19 03:27:17', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('8031cfed0619416ea98d567fb75600b3', 'd4425781b0ca4c6e9346dafc393680b2', '85170198', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 10:26:47', '2016-11-19 10:26:47', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('09188439b0c045aeac8e5aa6b164f496', 'd4425781b0ca4c6e9346dafc393680b2', '85170198', '大馍', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 10:26:47', '2016-11-19 10:26:47', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('940842765e5d46fa86f0efe57b084ca3', 'a206e56d221e48f9ac2dfa3962bc205c', '12160075', '大馍', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 16:10:50', '2016-11-19 16:10:50', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('b5af110aad6c46159aa3d9fba234dafa', 'a206e56d221e48f9ac2dfa3962bc205c', '12160075', '花卷', '4', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 16:10:50', '2016-11-19 16:10:50', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('e20ea1ae05d142818d738c00cf1ebd86', '1291b2839a6a497e94712898096735aa', '64069245', '花卷', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 22:44:56', '2016-11-19 22:44:56', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('e185012372cf4dbdb0a7a99a8cd7767f', '1291b2839a6a497e94712898096735aa', '64069245', '吃的', '8', '8', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 22:44:56', '2016-11-19 22:44:56', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('e030c7aef71a4ecfb32b78c790d5330a', '1291b2839a6a497e94712898096735aa', '64069245', '大馍', '6', '3', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 22:44:56', '2016-11-19 22:44:56', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('e0cda93d8e404ebe90c6d48af452c7e1', 'c6a9c149ec44451db9f996fcc9e4a94b', '61227246', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 23:27:59', '2016-11-19 23:27:59', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('8e5e30c904144e59a014ef86123a31f9', 'c6a9c149ec44451db9f996fcc9e4a94b', '61227246', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 23:27:59', '2016-11-19 23:27:59', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('bb132b8b30404788a2f84560339bafbe', 'd094a069c7ac4e49abb6c4c73a5bc930', '23566398', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 23:32:00', '2016-11-19 23:32:00', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('eb25002a85e14cb39ba9db21428882d8', 'd094a069c7ac4e49abb6c4c73a5bc930', '23566398', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 23:32:00', '2016-11-19 23:32:00', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('b735930d79914dbab0332a82003c6557', '3bec7ca539424dfc8caf9657836b8986', '64618776', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 23:33:13', '2016-11-19 23:33:13', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('846e863986794202a0087be4da5211fa', '3bec7ca539424dfc8caf9657836b8986', '64618776', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-19 23:33:13', '2016-11-19 23:33:13', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('0141b89437a447ff9166f763bbda2d6f', '623aaba6a86b4c7bbd86aa85b913652f', '19080203', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 01:25:39', '2016-11-20 01:25:39', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('8b05ce84cfe04e0ebb710d5fed160a3b', '623aaba6a86b4c7bbd86aa85b913652f', '19080203', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 01:25:39', '2016-11-20 01:25:39', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('808c7f74fc9e4546b31d9febc405399b', '178e6c112ecd496cacbe32026caaa55c', '34822068', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 01:40:49', '2016-11-20 01:40:49', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('3fe7ae003502484e8680de7f678a762c', '178e6c112ecd496cacbe32026caaa55c', '34822068', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 01:40:49', '2016-11-20 01:40:49', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('7a36faded4454050a3f37d09c52ed51d', 'a8174dcb61294624b3acfdfbaca92c87', '01202488', '大馍', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 01:41:35', '2016-11-20 01:41:35', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('c46fb9558fc04afba262ca6f3bef6840', 'a8174dcb61294624b3acfdfbaca92c87', '01202488', '花卷', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 01:41:35', '2016-11-20 01:41:35', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('f583ba584ffd4cf8b2ce99ca92048ab0', 'a1db15212e904057b6e6de3aeddefd62', '03597319', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 01:46:12', '2016-11-20 01:46:12', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('00e2940bf0bb4da69c40ea95bcf42d8d', 'a1db15212e904057b6e6de3aeddefd62', '03597319', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 01:46:12', '2016-11-20 01:46:12', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('8ef382d336304bb8ac55ee869a07858c', 'e8171363dfa64af4b4ad55c7da387da3', '26838468', '吃的', '4', '4', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 01:50:07', '2016-11-20 01:50:07', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('9d87e7014bd64e11abb8b504a37b2d30', 'e8171363dfa64af4b4ad55c7da387da3', '26838468', '大馍', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 01:50:07', '2016-11-20 01:50:07', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('cc5108e4ad2842c2a7c3fa4ab17652b4', 'e8171363dfa64af4b4ad55c7da387da3', '26838468', '花卷', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 01:50:07', '2016-11-20 01:50:07', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('28b557135983463f8602c15544e14373', '01e3573a1b304e91a758482a7561eea7', '57824378', '大馍', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 01:55:12', '2016-11-20 01:55:12', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('307fc1aa44fb4302aecb3bcc1c034a7c', '01e3573a1b304e91a758482a7561eea7', '57824378', '花卷', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 01:55:12', '2016-11-20 01:55:12', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('586065dd8d1e4019ae1ecb1320ff3b2d', 'a7db5d010d68444d84847d12f561062a', '21789281', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 01:55:59', '2016-11-20 01:55:59', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('3d034299bbfc47a79cd06f37df0884fa', '755365a52d2144c2964bfe3c495e3df9', '53964179', '吃的', '30', '30', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 01:59:27', '2016-11-20 01:59:27', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('849e8f711bea42c1806ff5ae56b089d8', '4e4189785d134b3fb8aa91cac4fc3eee', '22441979', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 02:42:28', '2016-11-20 02:42:28', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('b807adb89caf47b29bf585fdee3d4462', '4e4189785d134b3fb8aa91cac4fc3eee', '22441979', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 02:42:28', '2016-11-20 02:42:28', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('0dc4de6d8a7c4243a04038e359a22cb7', 'cc13ced9cf6145ba9824661b9a4783fa', '67011262', '大馍', '21', '11', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 16:10:20', '2016-11-20 16:10:20', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('130c18520deb4a668fd9cdf220795201', 'cc13ced9cf6145ba9824661b9a4783fa', '67011262', '花卷', '26', '13', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 16:10:20', '2016-11-20 16:10:20', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('878eb33a47894a25b9550d50cc7ae670', 'cc13ced9cf6145ba9824661b9a4783fa', '67011262', '吃的', '4', '4', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 16:10:20', '2016-11-20 16:10:20', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('c557615281c449ecaa595aa345e1f219', 'fc1f95d4f07042d38970f6fb2a7c18d5', '09787843', '花卷', '48', '24', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 18:18:00', '2016-11-20 18:18:00', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('189c0617c90348fbb9df5fdf49704106', 'fc1f95d4f07042d38970f6fb2a7c18d5', '09787843', '大馍', '35', '18', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 18:18:00', '2016-11-20 18:18:00', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('1544bd3fc15a4ccda3cf5852341df75f', '0e9b36493a0a48fea9346a029ed04db0', '94781590', '花卷', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 20:31:19', '2016-11-20 20:31:19', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('961dc13efa944b0ba0f9df3de48a4777', '0e9b36493a0a48fea9346a029ed04db0', '94781590', '大馍', '5', '3', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 20:31:19', '2016-11-20 20:31:19', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('c68a066b383c4588ac0c2b5265ec4fb0', 'a026563c7e36458eb338992f7674d994', '92080001', '大馍', '7', '4', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 22:39:33', '2016-11-20 22:39:33', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('9853073f1dda462284e3fa891ed38c72', 'a026563c7e36458eb338992f7674d994', '92080001', '花卷', '8', '4', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 22:39:33', '2016-11-20 22:39:33', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('e1d0d55e3a16440a8bcd695661d9e528', '11be5c34c7fd42cca7de78b7ca1d10fd', '13155766', '吃的', '7', '7', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 22:45:55', '2016-11-20 22:45:55', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('3a598977d3a24889bb50a98eddbfbc6d', '63764307f9374ca28e8521c66a4babbb', '39049775', '花卷', '7', '4', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 23:07:30', '2016-11-20 23:07:30', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('0b219c61e5514ebaa38be6034fdc4b9a', '63764307f9374ca28e8521c66a4babbb', '39049775', '大馍', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 23:07:30', '2016-11-20 23:07:30', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('e12f8cfcba3c4b00ab184e778a542884', '0b3593550c8144ed8d808b5248ea593c', '94396186', '花卷', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 23:13:28', '2016-11-20 23:13:28', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('f137ec8b1c0740de8ead7824eb5963be', 'e94e307300e64ab395187f9d1a09a4de', '75600846', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 23:57:12', '2016-11-20 23:57:12', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('6f93a649bc2446e48994c25c3796d967', 'ca97327f3d1e4a4abcc00446dbd80bcc', '62475690', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-20 23:57:33', '2016-11-20 23:57:33', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('776b8b5aaa4645ea91b7d379d51c21b6', '34b71341fad64ce99f98099ae47b7917', '71564772', '大馍', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:03:38', '2016-11-21 00:03:38', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('f013b7adface4d958f5060d938b0e0d6', '34b71341fad64ce99f98099ae47b7917', '71564772', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:03:38', '2016-11-21 00:03:38', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('ef9502d2a8f245c5a005673d0ee953fa', '5797a2a3c0b842fb9b020f49b367599e', '02151998', '花卷', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:05:10', '2016-11-21 00:05:10', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('f041aa3f51f94186b077328a0fdee1bd', 'f296dd04534141ef9b8b72f9d9c53183', '54443832', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:06:30', '2016-11-21 00:06:30', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('166568b7e24b4bfebdd48e6f26029775', '5c650f17afe74e67a2d0b60a9019c6b3', '19348049', '花卷', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:21:36', '2016-11-21 00:21:36', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('0e68ffe0a6a246dbb06b9e3a7a704712', '5c650f17afe74e67a2d0b60a9019c6b3', '19348049', '大馍', '4', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:21:36', '2016-11-21 00:21:36', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('8f9f4cbd55dc48b4bb3be22eba267cbf', '9a086c7e627b4d1196d1886eefc30c4c', '94337238', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:23:22', '2016-11-21 00:23:22', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('0e72841dc64742f9aee1afa8fbc49fa2', '91ab3c68925f40f4803a9ac339ab28cf', '35089701', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:23:56', '2016-11-21 00:23:56', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('90d62ccd457147c3a0c16c033b7ad3b7', 'b415fbd58bf94b619b4649cfe0d9280d', '44445520', '花卷', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:30:44', '2016-11-21 00:30:44', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('63fdcee463404498a0aaba41be388848', '21956076370b452eba596416d250b2b1', '56549090', '花卷', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:31:51', '2016-11-21 00:31:51', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('47ab061775f140b29baa2338b9f1e1f8', '506a978553de417fb1a26d3655125135', '63331256', '大馍', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:32:40', '2016-11-21 00:32:40', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('94247c8dfd1b465e9c70f3a66073c4b8', '4ce1ecaaafc44e618ecb42e7d63ad8cf', '32076413', '花卷', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:34:32', '2016-11-21 00:34:32', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('239698b09a5c4303a4b97a6f9a811444', 'a32836907004405492067fed2df10d74', '24496896', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:36:28', '2016-11-21 00:36:28', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('84c6142929a947a19170d978d20212ec', 'd1df871ce8114d5ba8709d50d1cd3386', '46954093', '花卷', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:38:37', '2016-11-21 00:38:37', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('f505fd8c4bdb4cbb9ec2d28eef5b5433', 'f79065a88f0546d4bdef87d25a366d00', '43966855', '花卷', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:39:19', '2016-11-21 00:39:19', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('03067a135f124244bf47fbe690cc52c4', '0c65a0377bea4b579f9f50661cb62944', '77521665', '花卷', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:40:14', '2016-11-21 00:40:14', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('9fc02f9c9e9c4f09b2a0a4913676ae24', 'baa8692c79d34fb680ae8c6e02d80556', '05551276', '花卷', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:41:10', '2016-11-21 00:41:10', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('c0b47382b0614678adc9399244c38045', '0b1b1d58b85641fd8a6cbb15e5aeb284', '89763655', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:46:04', '2016-11-21 00:46:04', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('6cdb8f25c1a747018e75d1e337f98dfe', '0b1b1d58b85641fd8a6cbb15e5aeb284', '89763655', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:46:04', '2016-11-21 00:46:04', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('7c7893e444eb496a8c1652e948ac5c8a', '988c110df3734a88bad8e0d1f8432eeb', '60787235', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:46:29', '2016-11-21 00:46:29', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('4a8c228192554616acdceec40409a0dd', '988c110df3734a88bad8e0d1f8432eeb', '60787235', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:46:29', '2016-11-21 00:46:29', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('3d39079b4e974e9a9eb2ee6a974eb875', 'ad59864810c643b5a30d77fb65326ccd', '00615828', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:49:26', '2016-11-21 00:49:26', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('5de0b3cf584c4fe7808af384e081ed43', 'ad59864810c643b5a30d77fb65326ccd', '00615828', '大馍', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 00:49:26', '2016-11-21 00:49:26', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('6c6d9976a55743499aa6f506ba1d3372', 'c46860db83ff485abe8883cded2d4648', '37664380', '大馍', '4', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 01:23:14', '2016-11-21 01:23:14', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('71ccf4cb81a74d1bb3a6f3839b943183', '238f7c9f9e78489f8e9d01355378b748', '78075424', '吃的', '4', '4', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 01:26:53', '2016-11-21 01:26:53', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('1db59a4aedea427ca7d44b4ae80b0c61', '238f7c9f9e78489f8e9d01355378b748', '78075424', '花卷', '11', '6', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 01:26:53', '2016-11-21 01:26:53', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('09743603c91b4e2685dfd2bc352faff0', '238f7c9f9e78489f8e9d01355378b748', '78075424', '大馍', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 01:26:53', '2016-11-21 01:26:53', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('8a568b79f083477596d36e3db239e462', 'bf2b708bf2cc4ea390d93c109bc40ad9', '78603807', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 01:27:48', '2016-11-21 01:27:48', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('5928e266984d455f8818c7b7fb1e716a', 'bf2b708bf2cc4ea390d93c109bc40ad9', '78603807', '吃的', '3', '3', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 01:27:48', '2016-11-21 01:27:48', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('d0daa93f642e426b9fb46f3586b18178', 'bf2b708bf2cc4ea390d93c109bc40ad9', '78603807', '花卷', '4', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 01:27:48', '2016-11-21 01:27:48', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('8c48997fce254f7c8c555ee7aa1abe78', '8046fdd6a46f419eb3e56a5520658f5e', '75207954', '吃的', '6', '6', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 01:29:01', '2016-11-21 01:29:01', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('08265dcbbb9b43b6beb343de70fc5c34', '8046fdd6a46f419eb3e56a5520658f5e', '75207954', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 01:29:01', '2016-11-21 01:29:01', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('e9053cfbcd8242d3a4935cb67d6b79a3', '5ef282e949f9451486ef488c6b22e4b6', '89305950', '大馍', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 11:57:31', '2016-11-21 11:57:31', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('9218eada09b54cc2ac6b1c8cb96eb6ec', '5ef282e949f9451486ef488c6b22e4b6', '89305950', '花卷', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 11:57:31', '2016-11-21 11:57:31', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('bd1c96bb8ab247cca4cad76f3776e92d', '5ef282e949f9451486ef488c6b22e4b6', '89305950', '吃的', '2', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 11:57:31', '2016-11-21 11:57:31', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('db7740554fb14c1784055c2e44314d0c', 'b584e5fdc62349a3afb13c090b0b34cc', '24359081', '花卷', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 11:59:19', '2016-11-21 11:59:19', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('fdeb365a7a4942fa80ed40931f268b7a', 'b584e5fdc62349a3afb13c090b0b34cc', '24359081', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 11:59:19', '2016-11-21 11:59:19', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('28764b72d6814536a74998ae3c7b746c', '5ba0edd31e9e47f98feb6080813dd0bf', '81741166', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 12:02:44', '2016-11-21 12:02:44', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('f3757539b7fe4bbaa555d77d559a1316', '5ba0edd31e9e47f98feb6080813dd0bf', '81741166', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 12:02:44', '2016-11-21 12:02:44', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('be42cf4297b347508cb8b0a3f102fbf8', 'f6f72630fa814498b4a7a263eccf0c7b', '81158995', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 12:03:05', '2016-11-21 12:03:05', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('6d9e8ce58dd34eb29b59c1306de021c4', 'f6f72630fa814498b4a7a263eccf0c7b', '81158995', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 12:03:05', '2016-11-21 12:03:05', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('0555d55459ea4c33a410ef6f2fea9021', 'ad8f5ef00d034c14939eccf56b46d899', '22990924', '大馍', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 12:57:36', '2016-11-21 12:57:36', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('55c323c1658d47f2ad94f2f662fda239', 'ad8f5ef00d034c14939eccf56b46d899', '22990924', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 12:57:36', '2016-11-21 12:57:36', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('a9a21493727a45918914d6e212c157ae', '84d0bf11cde446e183608a598566e281', '59798007', '大馍', '5', '3', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 22:59:45', '2016-11-21 22:59:45', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('106c93bc94a84d8393102ab414985acb', '84d0bf11cde446e183608a598566e281', '59798007', '花卷', '10', '5', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 22:59:45', '2016-11-21 22:59:45', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('f0fed99fa894497592c99d684c88db1f', 'd37f2fc07f4c49099404eb91e481cb31', '90994901', '大馍', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 23:17:11', '2016-11-21 23:17:11', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('818ef47417ec4106bc16f09099c6f5d2', 'd37f2fc07f4c49099404eb91e481cb31', '90994901', '花卷', '9', '5', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 23:17:11', '2016-11-21 23:17:11', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('493ef9abf2334c61ac32f45e7bff6a4d', 'db49769d66de47de80f174d39f535ce5', '75238422', '花卷', '4', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 23:21:47', '2016-11-21 23:21:47', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('cc3bdab7b56e4fedaf70fe9dddf27590', 'db49769d66de47de80f174d39f535ce5', '75238422', '大馍', '7', '4', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 23:21:47', '2016-11-21 23:21:47', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('878a790ab4b44fcf8b1903b2ff8e607c', 'be5d8827c2354419bcf221d42fdf6553', '33231469', '花卷', '5', '3', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 23:40:00', '2016-11-21 23:40:00', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('1c828f42d4234463bd3b5c6c9794e7ff', 'be5d8827c2354419bcf221d42fdf6553', '33231469', '大馍', '5', '3', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 23:40:00', '2016-11-21 23:40:00', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('3d8dc340ad50469897677c41587b5469', '871bda6c48ca4b5f88ee59338960fcf5', '47402059', '大馍', '4', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 23:45:49', '2016-11-21 23:45:49', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('adad6e3279144c3bb0008cedd299a503', '871bda6c48ca4b5f88ee59338960fcf5', '47402059', '花卷', '6', '3', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 23:45:49', '2016-11-21 23:45:49', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('75cc504985c44ee4a49e23f7a4067838', '5a9e114f3aa64a8da090d7d224247cff', '35815122', '花卷', '4', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 23:53:49', '2016-11-21 23:53:49', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('80822db96c344ccfb08de6de62b777a7', '5a9e114f3aa64a8da090d7d224247cff', '35815122', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 23:53:49', '2016-11-21 23:53:49', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('95c1baca293142cba7ff31f5df960865', 'f3878d7c5bf145ad8082f7f95d09a6a5', '06448107', '大馍', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 23:57:16', '2016-11-21 23:57:16', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('76caff76f1894df7ace633fd0c69aa95', 'd8f3ada21fd64333beb15ef7c7bf6f4c', '41189458', '大馍', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 23:57:44', '2016-11-21 23:57:44', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('077e742cc1a446778de25d7fb042b799', 'dd730ec7772d4c8aba2525c31e08dced', '50751194', '大馍', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 23:58:11', '2016-11-21 23:58:11', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('b36c0922795c4921bbf03a35a07d0a47', 'a70c715169c14eac92d645de4709c516', '55941406', '大馍', '2', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-21 23:59:03', '2016-11-21 23:59:03', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('134bf1b5a56a4f00a99ef417509823df', '82f4f04dabc74037b95be0aedbe8997a', '46299589', '大馍', '101', '51', '1', '1', '1', '1', '0', '0', '--', '2016-11-22 00:34:02', '2016-11-22 00:34:02', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('eb122daf1b0243b6b24907e169b4bc4e', '82f4f04dabc74037b95be0aedbe8997a', '46299589', '花卷', '8', '4', '1', '1', '1', '1', '0', '0', '--', '2016-11-22 00:34:02', '2016-11-22 00:34:02', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('c5a64f78c06941589521304dcad4f015', '82f4f04dabc74037b95be0aedbe8997a', '46299589', '吃的', '2', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-22 00:34:02', '2016-11-22 00:34:02', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('fd5e8c139ec342548cd61b9f991779d7', '98a735bb8a13422394551fa944b0a7c0', '14528930', '花卷', '5', '3', '1', '1', '1', '1', '0', '0', '--', '2016-11-22 00:36:34', '2016-11-22 00:36:34', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('042bb6aa52be4cb6b3c6b7f98d0e3e0a', '98a735bb8a13422394551fa944b0a7c0', '14528930', '大馍', '56', '28', '1', '1', '1', '1', '0', '0', '--', '2016-11-22 00:36:34', '2016-11-22 00:36:34', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('71c481266010476fa0ade5be674d4334', 'f77599f0d01c409fb9bd69c98c17df0d', '05654801', '花卷', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-22 13:13:42', '2016-11-22 13:13:42', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('c255d9c382044fb68fb353817ae4ee3f', 'f77599f0d01c409fb9bd69c98c17df0d', '05654801', '大馍', '4', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-22 13:13:42', '2016-11-22 13:13:42', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('0338c1101443465a9181ca0550a34564', '02b7a9e577254f709fc6afb16e6ae00e', '58927163', '花卷', '12', '6', '1', '1', '1', '1', '0', '0', '--', '2016-11-23 01:39:46', '2016-11-23 01:39:46', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('869778217fc0463194438b74549a2556', '02b7a9e577254f709fc6afb16e6ae00e', '58927163', '大馍', '9', '5', '1', '1', '1', '1', '0', '0', '--', '2016-11-23 01:39:46', '2016-11-23 01:39:46', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('916b76bed8a346db9f10b05970eae185', '03807d9304a945bfa8d82db7c0d59d86', '63718652', '大馍', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-23 23:58:33', '2016-11-23 23:58:33', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('46014141c2df482a92b191bf6472242f', '03807d9304a945bfa8d82db7c0d59d86', '63718652', '花卷', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-23 23:58:33', '2016-11-23 23:58:33', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('183d08d91e15419c9af38e35d7aed207', '971d9d6a4258402299cffcfecdffed3c', '33226048', '花卷', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-23 23:58:33', '2016-11-23 23:58:33', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('4c39ab0ce2a6451088b841f86e334b5a', '971d9d6a4258402299cffcfecdffed3c', '33226048', '大馍', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-23 23:58:33', '2016-11-23 23:58:33', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('764d166496e9410fa1fca805e29fa47a', '907cea6ce49443fabeafd0e366cbbb77', '72580291', '花卷', '9', '5', '1', '1', '1', '1', '0', '0', '--', '2016-11-24 00:00:26', '2016-11-24 00:00:26', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('b3b8393897de49118aa46d6d4c3a86d3', '907cea6ce49443fabeafd0e366cbbb77', '72580291', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-24 00:00:26', '2016-11-24 00:00:26', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('9c8f16b3cd744e43b72a3345d1856642', 'fddab9948f4743149d8f6caaeb4aeace', '08574631', '大馍', '11', '6', '1', '1', '1', '1', '0', '0', '--', '2016-11-26 14:19:46', '2016-11-26 14:19:46', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('6b829c10f36c401493bcf2fe9cc997f7', 'fddab9948f4743149d8f6caaeb4aeace', '08574631', '花卷', '18', '9', '1', '1', '1', '1', '0', '0', '--', '2016-11-26 14:19:46', '2016-11-26 14:19:46', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('ba34172677974898b8ae1c41369e7683', '82d13c36d06747888d55602e9ccb6890', '50031248', '吃的', '4', '4', '1', '1', '1', '1', '0', '0', '--', '2016-11-27 00:20:24', '2016-11-27 00:20:24', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('cd371b970d0947b0875bf9bcfeb747d6', '82d13c36d06747888d55602e9ccb6890', '50031248', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-27 00:20:24', '2016-11-27 00:20:24', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('2ca951626fbc41f6b68ada2be79780b2', '82d13c36d06747888d55602e9ccb6890', '50031248', '花卷', '3', '2', '1', '1', '1', '1', '0', '0', '--', '2016-11-27 00:20:24', '2016-11-27 00:20:24', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('4a57272b31db414f857d6666791a1ffd', 'b228ef205bc24c7aac56fc242a60d044', '39345731', '花卷', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-27 12:54:18', '2016-11-27 12:54:18', 'NORMAL');
INSERT INTO `order_product_detail` VALUES ('25f253619caf4a73b79863f8740ebca9', 'b228ef205bc24c7aac56fc242a60d044', '39345731', '大馍', '1', '1', '1', '1', '1', '1', '0', '0', '--', '2016-11-27 12:54:18', '2016-11-27 12:54:18', 'NORMAL');
-- ----------------------------
-- Table structure for order_return
-- ----------------------------
DROP TABLE IF EXISTS `order_return`;
CREATE TABLE `order_return` (
`id` varchar(255) NOT NULL,
`access_id` int(11) DEFAULT NULL,
`return_id` int(11) DEFAULT NULL,
`order_info_oid` int(11) DEFAULT NULL,
`order_info_id` int(11) DEFAULT NULL,
`refund_payable` varchar(255) DEFAULT NULL,
`refund_paid` int(11) DEFAULT NULL,
`sale_price_tatal` varchar(255) DEFAULT NULL,
`consignee` varchar(255) DEFAULT NULL,
`mobile` varchar(255) DEFAULT NULL,
`address` varchar(255) DEFAULT NULL,
`province` varchar(255) DEFAULT NULL,
`city` varchar(255) DEFAULT NULL,
`country` varchar(255) DEFAULT NULL,
`return_status_id` int(11) DEFAULT NULL,
`freight` varchar(255) DEFAULT NULL,
`product_total_price` decimal(10,0) DEFAULT NULL,
`remark_system` varchar(255) DEFAULT NULL,
`ip` varchar(255) DEFAULT NULL,
`post_code` varchar(255) DEFAULT NULL,
`telephone` varchar(255) DEFAULT NULL,
`email` varchar(255) DEFAULT NULL,
`return_reason_id` int(11) DEFAULT NULL,
`custom_return_reason` varchar(255) DEFAULT NULL,
`refund_type_id` int(11) DEFAULT NULL,
`custom_price` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of order_return
-- ----------------------------
-- ----------------------------
-- Table structure for order_return_detail
-- ----------------------------
DROP TABLE IF EXISTS `order_return_detail`;
CREATE TABLE `order_return_detail` (
`id` varchar(255) NOT NULL,
`return_oid` varchar(255) DEFAULT NULL,
`no` int(11) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`quantity` varchar(255) DEFAULT NULL,
`subtatal` varchar(255) DEFAULT NULL,
`market_price` decimal(10,0) DEFAULT NULL,
`sale_price` decimal(10,0) DEFAULT NULL,
`deal_price` decimal(10,0) DEFAULT NULL,
`discount_rate` varchar(255) DEFAULT NULL,
`is_gift` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of order_return_detail
-- ----------------------------
-- ----------------------------
-- Table structure for pay
-- ----------------------------
DROP TABLE IF EXISTS `pay`;
CREATE TABLE `pay` (
`id` varchar(255) NOT NULL,
`name` varchar(255) DEFAULT NULL,
`pay_way` varchar(255) DEFAULT NULL,
`icon` varchar(255) DEFAULT NULL,
`order_by` int(11) DEFAULT NULL,
`recommend` tinyint(4) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of pay
-- ----------------------------
INSERT INTO `pay` VALUES ('1', '支付宝', 'ONLINE', 'icon-11', '2', '0', '--', '2016-10-10 14:35:24', '2016-10-10 14:35:27', 'NORMAL');
INSERT INTO `pay` VALUES ('2', '微信', 'ONLINE', 'icon-14', '1', '1', '--', '2016-10-10 14:36:05', '2016-10-10 14:36:07', 'NORMAL');
INSERT INTO `pay` VALUES ('3', '货到付款', 'OFFLINE', 'icon-5', '3', '0', '--', '2016-10-10 14:36:35', '2016-10-10 14:36:37', 'NORMAL');
INSERT INTO `pay` VALUES ('c8d230d02ea44c7db9103ab8976262e1', 'cheng', 'OFFLINE', 'icon-5', '4', '0', '--', '2016-10-18 16:16:33', '2016-10-18 16:16:33', 'NORMAL');
-- ----------------------------
-- Table structure for permission
-- ----------------------------
DROP TABLE IF EXISTS `permission`;
CREATE TABLE `permission` (
`id` varchar(64) CHARACTER SET utf8 NOT NULL,
`name` varchar(64) CHARACTER SET utf8 DEFAULT NULL,
`precode` varchar(32) CHARACTER SET utf8 NOT NULL,
`remarks` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(16) CHARACTER SET utf8 NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of permission
-- ----------------------------
INSERT INTO `permission` VALUES ('1', '用户查看', 'sys:user:view', '查看用户列表', '2016-05-19 16:41:40', '2016-05-19 16:41:42', 'NORMAL');
-- ----------------------------
-- Table structure for picture
-- ----------------------------
DROP TABLE IF EXISTS `picture`;
CREATE TABLE `picture` (
`id` varchar(255) NOT NULL,
`product_id` varchar(255) DEFAULT NULL,
`picture_url` varchar(255) DEFAULT NULL,
`width` int(11) DEFAULT NULL,
`height` int(11) DEFAULT NULL,
`is_default` tinyint(4) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of picture
-- ----------------------------
INSERT INTO `picture` VALUES ('', '2', 'http://wx.aqd123.com/moblie/static/images/product/d-1.jpg', '-1', '-1', '0', '商品大图', '2016-10-31 13:34:50', '2016-10-31 13:34:53', 'NORMAL');
INSERT INTO `picture` VALUES ('1', '1', 'http://wx.aqd123.com/moblie/static/images/product/zm.jpg', '120', '120', '1', '首页商品图片', '2016-06-29 10:10:09', '2016-06-29 10:10:12', 'NORMAL');
INSERT INTO `picture` VALUES ('10', '4', 'http://wx.aqd123.com/moblie/static/images/product/d-1.jpg', '-1', '-1', '0', '商品大图', '2016-10-31 13:34:50', '2016-10-31 13:34:53', 'NORMAL');
INSERT INTO `picture` VALUES ('2', '2', 'http://wx.aqd123.com/moblie/static/images/product/hj.jpg', '120', '120', '1', '首页商品图片', '2016-06-29 16:40:31', '2016-06-29 16:40:33', 'NORMAL');
INSERT INTO `picture` VALUES ('3', '3', 'http://wx.aqd123.com/moblie/static/images/product/tb.jpg', '120', '120', '1', '首页商品图片', '2016-06-29 16:46:38', '2016-06-29 16:46:40', 'NORMAL');
INSERT INTO `picture` VALUES ('4', '4', 'http://wx.aqd123.com/moblie/static/images/product/tb.jpg', '120', '120', '1', '精品', '2016-10-30 17:56:46', '2016-10-30 17:56:49', 'NORMAL');
INSERT INTO `picture` VALUES ('5', '1', 'http://wx.aqd123.com/moblie/static/images/product/d-1.jpg', '-1', '-1', '0', '商品大图', '2016-10-31 13:34:50', '2016-10-31 13:34:53', 'NORMAL');
INSERT INTO `picture` VALUES ('6', '1', 'http://wx.aqd123.com/moblie/static/images/product/d-2.jpg', '-1', '-1', '0', '大图', '2016-10-31 13:35:29', '2016-10-31 13:35:33', 'NORMAL');
INSERT INTO `picture` VALUES ('7', '1', 'http://wx.aqd123.com/moblie/static/images/product/d-3.jpg', '-1', '-1', '0', '大图', '2016-10-31 13:35:29', '2016-10-31 13:35:33', 'NORMAL');
INSERT INTO `picture` VALUES ('8', '2', 'http://wx.aqd123.com/moblie/static/images/product/d-1.jpg', '-1', '-1', '0', '商品大图', '2016-10-31 13:34:50', '2016-10-31 13:34:53', 'NORMAL');
-- ----------------------------
-- Table structure for product
-- ----------------------------
DROP TABLE IF EXISTS `product`;
CREATE TABLE `product` (
`id` varchar(255) NOT NULL,
`name` varchar(255) DEFAULT NULL,
`market_price` decimal(10,1) DEFAULT NULL,
`sale_price` decimal(10,1) DEFAULT NULL,
`no` varchar(255) DEFAULT '',
`key_words` varchar(255) DEFAULT NULL,
`type_id` varchar(255) DEFAULT NULL,
`is_alive` tinyint(4) DEFAULT NULL,
`is_index` tinyint(4) DEFAULT NULL,
`modify_admin_id` varchar(255) DEFAULT NULL,
`units_in_stock` int(11) DEFAULT NULL,
`tag` varchar(255) DEFAULT NULL,
`give_away` int(11) DEFAULT NULL,
`unit_desc` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of product
-- ----------------------------
INSERT INTO `product` VALUES ('1', '大馍', '0.5', '0.5', '001', '馍', '1', '1', '1', '1', '99518', '推荐', '5', '0.25g/个', '好吃的', '2016-06-29 10:11:16', '2016-11-13 19:00:25', 'NORMAL');
INSERT INTO `product` VALUES ('2', '花卷', '0.5', '0.5', '002', '卷子', '1', '1', '1', '1', '99596', '推荐', '5', '0.25g/个', '好吃的', '2016-06-29 16:38:03', '2016-11-13 19:00:25', 'NORMAL');
INSERT INTO `product` VALUES ('3', '糖包', '0.6', '0.6', '003', '糖包', '1', '1', '1', '1', '0', '推荐', '5', '0.25g/个', '好吃的', '2016-06-29 16:38:57', '2016-11-13 18:58:39', 'NORMAL');
INSERT INTO `product` VALUES ('4', '吃的', '1.0', '1.0', '004', '好吃的', '2', '1', '0', '1', '-3', '特别', '5', '0.25g/个', '好', '2016-10-30 17:54:17', '2016-11-13 19:00:25', 'NORMAL');
-- ----------------------------
-- Table structure for product_focus
-- ----------------------------
DROP TABLE IF EXISTS `product_focus`;
CREATE TABLE `product_focus` (
`id` varchar(255) DEFAULT NULL,
`account_id` varchar(255) DEFAULT NULL,
`product_id` int(11) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of product_focus
-- ----------------------------
INSERT INTO `product_focus` VALUES ('66f98567291c4e27bb78ee2389e5d8c8', '1', '1', '--', '2016-10-17 16:35:01', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('aaacfb2b0c9e4728b8b91bc6d4e3d16a', '1', '1', '--', '2016-10-17 18:47:48', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('dd80daf896354be1b57f761be5b700ef', '1', '1', '--', '2016-11-01 09:36:20', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('4612cb7a5d9f4789a28ef05bccec0df8', '1', '1', '--', '2016-11-01 09:40:17', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('07a94da9a0dc4a158096b5a027073a11', '1', '1', '--', '2016-11-01 09:40:24', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('9524251991594936ab8a2a5702e92522', '1', '1', '--', '2016-11-01 09:40:41', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('2fe700d1505242abb99c882673edeab8', '1', '1', '--', '2016-11-01 09:43:00', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('532d211672c2404aa658f061f796dde9', '1', '1', '--', '2016-11-01 09:43:54', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('dd2690cbe3c145728c0308fb53617167', '1', '1', '--', '2016-11-01 09:44:21', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('7183dff335ff4e24ab2526c95f2b5fae', '1', '1', '--', '2016-11-01 09:44:25', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('c70c042e18974ce39637a76dee79b59b', '1', '1', '--', '2016-11-01 09:44:26', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('ef2fea1132354711a38f724e7f893e01', '1', '1', '--', '2016-11-01 09:44:28', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('1b7bcb09b3b94bb0b277bf0d9f8f084e', '1', '1', '--', '2016-11-01 09:44:28', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('735d8c987f3e4195aec91797f115c614', '1', '1', '--', '2016-11-01 09:44:29', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('32f0473eb9974a83a69e1c51bd2fbff1', '1', '1', '--', '2016-11-01 09:44:29', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('c013bfcad1aa4d968f0706a5ea40d197', '1', '1', '--', '2016-11-01 09:44:29', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('b725ace4a9744ea1b80ef693bd13495d', '1', '1', '--', '2016-11-01 09:44:30', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('f4a990e68aa54286b5fa5c72d21bc8ca', '1', '1', '--', '2016-11-01 09:44:30', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('da210f27180740ea917a314112584978', '1', '1', '--', '2016-11-01 09:44:31', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('effe9fe176da40c5b4b95fc49dfbfa2d', '1', '1', '--', '2016-11-01 09:44:31', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('d0e601904dae4d76b0dc04710812ee24', '1', '1', '--', '2016-11-01 10:02:12', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('b5de20a5bcf848b29970858d0759ba5a', '1', '1', '--', '2016-11-01 10:18:18', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('a54cf40171bc4e93a864854dc7a671c7', '1', '1', '--', '2016-11-01 10:18:29', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('a33ef6a6de814928a86ea95a4729adba', '1', '1', '--', '2016-11-01 10:19:27', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('1906b7184c9340038c0ae2c5751a4cf1', '1', '1', '--', '2016-11-01 10:22:51', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('b6124bab1e694b16a24812bc71abbf21', '1', '1', '--', '2016-11-01 10:22:53', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('7328c884c82f4b23ad13847bdb4e10b7', '1', '1', '--', '2016-11-01 10:22:56', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('783381a3bb6b40bd9d5ba760449ac043', '1', '1', '--', '2016-11-01 10:22:58', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('64a89c8c9ced4800a9cf219d43741dfa', '1', '1', '--', '2016-11-01 11:08:33', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('e1e790b7fbae489ba1e9c99cb72c05d9', '1', '1', '--', '2016-11-01 11:08:35', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('317a0f81fa014417ab63479e480c8100', '1', '1', '--', '2016-11-01 11:08:37', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('f46f63b8393b4c9084e11f356679b775', '1', '1', '--', '2016-11-01 11:37:51', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('0c10611d098146d5869b5afc9990c6ec', '1', '1', '--', '2016-11-01 19:17:12', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('bd459bf996e748ac8bd474bedda824cc', '1', '1', '--', '2016-11-01 21:27:49', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('783c061f2f9645edab283d03572bc844', '1', '1', '--', '2016-11-01 21:27:51', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('803aa3b0592746c9b443ce9b7d9b5da0', '1', '1', '--', '2016-11-01 21:27:53', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('3c3fc9aea9e641348f35c56b963c7e67', '1', '1', '--', '2016-11-02 16:03:59', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('de5dd489a6384014a3db5c4efb2f0f75', '1', '1', '--', '2016-11-02 16:04:02', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('17d6c0a2343a4432a7aa323dac08f0cf', '1', '1', '--', '2016-11-02 20:40:10', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('972900d9f2a64056837c77491043b425', '1', '1', '--', '2016-11-02 20:40:13', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('9320ce1074484907afd8d240414a7de8', '1', '1', '--', '2016-11-02 20:40:14', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('99f60c4c1c8c4da59fe7f68e99e37a8b', '1', '1', '--', '2016-11-02 20:40:17', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('baab596f5f3b403ba39e3140f8005309', '1', '1', '--', '2016-11-02 20:40:20', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('759388e28b924a9ba0b2b062138c2d81', '1', '1', '--', '2016-11-02 20:40:22', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('5afcd8ea611d437690cc8d972c9030fa', '1', '1', '--', '2016-11-03 22:18:47', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('e9e86261b29840d58914c58914fc7921', '1', '1', '--', '2016-11-05 01:51:50', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('4c73a23ed9104ea68ee59ca6235269ac', '1', '1', '--', '2016-11-05 01:51:53', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('91cdb07b52564723945cc36d34ae59c4', '1', '1', '--', '2016-11-13 18:55:16', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('25277e1ce5da4356906e79b5a6324700', '1', '1', '--', '2016-11-20 03:01:23', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('f351a48ee330473fb8aa7ca604bd44c4', '1', '1', '--', '2016-11-20 15:11:11', '2016-11-26 13:03:06', 'DELETE');
INSERT INTO `product_focus` VALUES ('20f76424ffe24561a880c309cf098a22', '1', '1', '--', '2016-11-26 13:03:08', '2016-11-26 13:03:08', 'NORMAL');
-- ----------------------------
-- Table structure for product_type
-- ----------------------------
DROP TABLE IF EXISTS `product_type`;
CREATE TABLE `product_type` (
`id` varchar(255) NOT NULL,
`name` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of product_type
-- ----------------------------
INSERT INTO `product_type` VALUES ('1', '主营食品', '--', '2016-06-29 10:11:40', '2016-06-29 10:11:42', 'NORMAL');
INSERT INTO `product_type` VALUES ('2', '粮油调味', '--', '2016-10-29 21:31:01', '2016-10-29 21:31:04', 'NORMAL');
INSERT INTO `product_type` VALUES ('3', '日用清洁', '--', '2016-10-29 21:31:27', '2016-10-29 21:31:30', 'NORMAL');
-- ----------------------------
-- Table structure for province
-- ----------------------------
DROP TABLE IF EXISTS `province`;
CREATE TABLE `province` (
`id` varchar(255) NOT NULL,
`name` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of province
-- ----------------------------
-- ----------------------------
-- Table structure for refund_type
-- ----------------------------
DROP TABLE IF EXISTS `refund_type`;
CREATE TABLE `refund_type` (
`id` varchar(255) NOT NULL,
`name` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of refund_type
-- ----------------------------
-- ----------------------------
-- Table structure for return_reason
-- ----------------------------
DROP TABLE IF EXISTS `return_reason`;
CREATE TABLE `return_reason` (
`id` varchar(255) NOT NULL,
`name` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of return_reason
-- ----------------------------
-- ----------------------------
-- Table structure for return_status
-- ----------------------------
DROP TABLE IF EXISTS `return_status`;
CREATE TABLE `return_status` (
`id` varchar(255) NOT NULL,
`name` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of return_status
-- ----------------------------
-- ----------------------------
-- Table structure for role
-- ----------------------------
DROP TABLE IF EXISTS `role`;
CREATE TABLE `role` (
`id` varchar(64) NOT NULL,
`name` varchar(32) DEFAULT NULL,
`enname` varchar(32) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of role
-- ----------------------------
INSERT INTO `role` VALUES ('1', 'Super Administrator', null, '超级管理员:超级管理员拥有系统全部的权限', '2016-05-19 16:37:15', '2016-05-19 16:37:18', 'NORMAL');
-- ----------------------------
-- Table structure for role_permission
-- ----------------------------
DROP TABLE IF EXISTS `role_permission`;
CREATE TABLE `role_permission` (
`role_id` varchar(64) NOT NULL,
`permission_id` varchar(64) NOT NULL,
PRIMARY KEY (`role_id`,`permission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of role_permission
-- ----------------------------
INSERT INTO `role_permission` VALUES ('1', '1');
-- ----------------------------
-- Table structure for sms_history
-- ----------------------------
DROP TABLE IF EXISTS `sms_history`;
CREATE TABLE `sms_history` (
`id` varchar(64) DEFAULT NULL,
`phone` varchar(255) DEFAULT NULL,
`content` varchar(255) DEFAULT NULL,
`timeout` int(11) DEFAULT NULL,
`type` varchar(255) DEFAULT NULL,
`sender` varchar(255) DEFAULT NULL,
`receiver_id` int(11) DEFAULT NULL,
`user_ip` varchar(255) DEFAULT NULL,
`validate` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of sms_history
-- ----------------------------
INSERT INTO `sms_history` VALUES ('54bdd170993e46e5a18ba00a3fcc5fc5', '18600536683', '尊敬的用户,您的验证码为7367,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', '0', '127.0.0.1', '7367', '--', '2016-07-11 19:48:13', '2016-07-11 19:48:13', 'NORMAL');
INSERT INTO `sms_history` VALUES ('adfada563b524959a877dd88d1ffe3f8', '18600536683', '尊敬的用户,您的验证码为5298,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '127.0.0.1', '5298', '--', '2016-07-11 19:49:33', '2016-07-11 19:49:33', 'NORMAL');
INSERT INTO `sms_history` VALUES ('1d3c318b06624686a29a5fa2cc6ed33e', '18600536683', '尊敬的用户,您的验证码为2878,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '127.0.0.1', '2878', '--', '2016-07-11 19:51:21', '2016-07-11 19:51:21', 'NORMAL');
INSERT INTO `sms_history` VALUES ('b28e214a87c94a2d9e3d6caca2ea6d51', '18600536683', '尊敬的用户,您的验证码为2877,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '127.0.0.1', '2877', '--', '2016-07-11 20:30:40', '2016-07-11 20:30:40', 'NORMAL');
INSERT INTO `sms_history` VALUES ('24381a51fb8a491daf61a323468aa8ee', '18600536683', '尊敬的用户,您的验证码为9158,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '127.0.0.1', '9158', '--', '2016-07-12 10:21:08', '2016-07-12 10:21:08', 'NORMAL');
INSERT INTO `sms_history` VALUES ('74763c7ffdcf400eae9424b31aff6dd1', '18600536683', '尊敬的用户,您的验证码为1287,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '127.0.0.1', '1287', '--', '2016-07-12 10:34:10', '2016-07-12 10:34:10', 'NORMAL');
INSERT INTO `sms_history` VALUES ('3140775641c6475882ed1ca9393dfb17', '18600536683', '尊敬的用户,您的验证码为1276,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '127.0.0.1', '1276', '--', '2016-07-12 10:37:48', '2016-07-12 10:37:48', 'NORMAL');
INSERT INTO `sms_history` VALUES ('f034b9585e4e41baabf86c9d57b19606', '18600536683', '尊敬的用户,您的验证码为5384,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '127.0.0.1', '5384', '--', '2016-07-12 11:04:48', '2016-07-12 11:04:48', 'NORMAL');
INSERT INTO `sms_history` VALUES ('e86149af290648108f5d4fdb4d0285c8', '18600536683', '尊敬的用户,您的验证码为5138,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '127.0.0.1', '5138', '--', '2016-07-12 11:11:05', '2016-07-12 11:11:05', 'NORMAL');
INSERT INTO `sms_history` VALUES ('e01665a042584448a0259b718c7d06a6', '18600536683', '????????????9502?????????10?????????', '10', 'VALIDATE', 'system', null, '127.0.0.2', '9502', '--', '2016-09-20 11:05:09', '2016-09-20 11:05:09', 'NORMAL');
INSERT INTO `sms_history` VALUES ('4b1ca7e9443043d18313df99f7a968a3', '18600536683', '尊敬的用户,您的验证码为0393,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '127.0.0.2', '0393', '--', '2016-09-20 11:08:28', '2016-09-20 11:08:28', 'NORMAL');
INSERT INTO `sms_history` VALUES ('0c55a56bd7db433998cb18950839ca3e', '18600536691', '尊敬的用户,您的验证码为0826,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '1.95.89.148', '0826', '--', '2016-11-14 22:38:27', '2016-11-14 22:38:27', 'NORMAL');
INSERT INTO `sms_history` VALUES ('e659e3e0c85740298d301067e365b593', '18600536691', '尊敬的用户,您的验证码为3342,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '1.95.89.148', '3342', '--', '2016-11-14 22:38:27', '2016-11-14 22:38:27', 'NORMAL');
INSERT INTO `sms_history` VALUES ('cb373c4b35c94b10b917b505245ca310', '18600536691', '尊敬的用户,您的验证码为3230,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '1.95.89.148', '3230', '--', '2016-11-14 22:38:27', '2016-11-14 22:38:27', 'NORMAL');
INSERT INTO `sms_history` VALUES ('37d923fc675442469abd5957e1d8e8d9', '18600536691', '尊敬的用户,您的验证码为8449,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '1.95.89.148', '8449', '--', '2016-11-14 22:39:08', '2016-11-14 22:39:08', 'NORMAL');
INSERT INTO `sms_history` VALUES ('b41eab67dda84711ae15de9623651e8b', '18600536684', '尊敬的用户,您的验证码为3851,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '61.148.243.49', '3851', '--', '2016-11-20 20:04:00', '2016-11-20 20:04:00', 'NORMAL');
INSERT INTO `sms_history` VALUES ('83a6af54e79942e8b828d6c761e351d6', '18600536684', '尊敬的用户,您的验证码为4174,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '61.148.243.49', '4174', '--', '2016-11-20 20:04:00', '2016-11-20 20:04:00', 'NORMAL');
INSERT INTO `sms_history` VALUES ('6229a90aea134aef9a54b8accf29bb08', '18600536683', '尊敬的用户,您的验证码为4831,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '1.95.244.184', '4831', '--', '2016-11-20 22:39:33', '2016-11-20 22:39:33', 'NORMAL');
INSERT INTO `sms_history` VALUES ('55f842d5d1cd42589c1a8670aea1f1c5', '18600536683', '您于11月20日10时48分余额消费7.0元,如有疑问请致电18600536683', '0', 'NOTICE_CASH_COMSUME', 'system', null, '1.95.244.184', null, '--', '2016-11-20 22:48:54', '2016-11-20 22:48:54', 'NORMAL');
INSERT INTO `sms_history` VALUES ('f867dfbf295e42399c40fe02fdb1bc09', '18600536683', '您于11月20日11时07分使用余额消费5.0元,如有疑问请致电18600536683', '0', 'NOTICE_CASH_COMSUME', 'system', null, '1.95.244.184', null, '--', '2016-11-20 23:07:30', '2016-11-20 23:07:30', 'NORMAL');
INSERT INTO `sms_history` VALUES ('451e0929d1da43c0bfe9cc878a7050c2', '18600536683', '您于11月21日12时39分使用余额消费3.0元,如有疑问请致电18600536683', '0', 'NOTICE_CASH_COMSUME', 'system', null, '1.95.244.184', null, '--', '2016-11-21 00:39:19', '2016-11-21 00:39:19', 'NORMAL');
INSERT INTO `sms_history` VALUES ('5aac6ffdddca4aa18e11705213b2208a', '18600536683', '您于11月21日12时40分使用余额消费3.0元,如有疑问请致电18600536683', '0', 'NOTICE_CASH_COMSUME', 'system', null, '1.95.244.184', null, '--', '2016-11-21 00:40:14', '2016-11-21 00:40:14', 'NORMAL');
INSERT INTO `sms_history` VALUES ('dd083bb5bc8f4f9188a9a5f9f94fb7a7', '18600536681', '尊敬的用户,您的验证码为0649,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '1.95.244.184', '0649', '--', '2016-11-21 01:24:39', '2016-11-21 01:24:39', 'NORMAL');
INSERT INTO `sms_history` VALUES ('8530b0ab3b5d413ba58a8e6bacf2951a', '18600536683', '您于11月21日12时57分使用余额消费3.5元,如有疑问请致电18600536683', '0', 'NOTICE_CASH_COMSUME', 'system', null, '210.74.5.16', null, '--', '2016-11-21 12:57:36', '2016-11-21 12:57:36', 'NORMAL');
INSERT INTO `sms_history` VALUES ('91086a24d533462a8a6291a11c00e5b9', '18600536683', '您于11月21日11时58分使用余额消费3.0元,如有疑问请致电18600536683', '0', 'NOTICE_CASH_COMSUME', 'system', null, '1.95.244.184', null, '--', '2016-11-21 23:58:11', '2016-11-21 23:58:11', 'NORMAL');
INSERT INTO `sms_history` VALUES ('dc046cfafd7b45e4b3ca4f4903bd7be6', '18600536683', '您于11月21日11时59分使用余额消费3.0元,如有疑问请致电18600536683', '0', 'NOTICE_CASH_COMSUME', 'system', null, '1.95.244.184', null, '--', '2016-11-21 23:59:03', '2016-11-21 23:59:03', 'NORMAL');
INSERT INTO `sms_history` VALUES ('ee44dd19167f48b09eaeadf5c2c71b3f', '18600536681', '尊敬的用户,您的验证码为9455,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '1.95.244.184', '9455', '--', '2016-11-22 00:11:53', '2016-11-22 00:11:53', 'NORMAL');
INSERT INTO `sms_history` VALUES ('7fd2a542135b48d1ba2b4d127c657697', '18600536681', '尊敬的用户,您的验证码为5488,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '1.95.244.184', '5488', '--', '2016-11-22 00:27:16', '2016-11-22 00:27:16', 'NORMAL');
INSERT INTO `sms_history` VALUES ('3b0b568ce04b4b07886d44e98fba26e9', '18600536681', '尊敬的用户,您的验证码为6752,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '1.95.244.183', '6752', '--', '2016-11-22 00:27:16', '2016-11-22 00:27:16', 'NORMAL');
INSERT INTO `sms_history` VALUES ('a0e4b842fe2e4f99968d1f7693ace9e7', '18600536681', '尊敬的用户,您的验证码为5660,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '1.95.244.184', '5660', '--', '2016-11-22 00:27:28', '2016-11-22 00:27:28', 'NORMAL');
INSERT INTO `sms_history` VALUES ('084f9823d47b425c941a932ffcccc8f2', '18600536682', '尊敬的用户,您的验证码为8664,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '1.95.244.184', '8664', '--', '2016-11-22 00:27:53', '2016-11-22 00:27:53', 'NORMAL');
INSERT INTO `sms_history` VALUES ('0d71b4b3bb8b46058d4a3f46c47d1893', '18600536683', '您于11月22日12时34分使用余额消费56.5元,如有疑问请致电18600536683', '0', 'NOTICE_CASH_COMSUME', 'system', null, '1.95.244.184', null, '--', '2016-11-22 00:34:02', '2016-11-22 00:34:02', 'NORMAL');
INSERT INTO `sms_history` VALUES ('cf36b42d8ee044caaf20fa05509e1183', '18600536683', '您于11月22日12时36分使用余额消费30.5元,如有疑问请致电18600536683', '0', 'NOTICE_CASH_COMSUME', 'system', null, '1.95.244.184', null, '--', '2016-11-22 00:36:34', '2016-11-22 00:36:34', 'NORMAL');
INSERT INTO `sms_history` VALUES ('c91ebff39a3f4f04815a82fb14b853ea', '18600536683', '您于11月23日11时58分使用余额消费5.0元,如有疑问请致电18600536683', '0', 'NOTICE_CASH_COMSUME', 'system', null, '1.95.78.51', null, '--', '2016-11-23 23:58:33', '2016-11-23 23:58:33', 'NORMAL');
INSERT INTO `sms_history` VALUES ('f7f066adcc1b46d295ad01b6760a04f0', '18600536683', '您于11月23日11时58分使用余额消费5.0元,如有疑问请致电18600536683', '0', 'NOTICE_CASH_COMSUME', 'system', null, '1.95.78.51', null, '--', '2016-11-23 23:58:33', '2016-11-23 23:58:33', 'NORMAL');
INSERT INTO `sms_history` VALUES ('ff7dbb56b14a4c69a782d63ed7d81bf2', '18600536683', '您于11月24日12时00分使用余额消费5.0元,如有疑问请致电18600536683', '0', 'NOTICE_CASH_COMSUME', 'system', null, '1.95.78.51', null, '--', '2016-11-24 00:00:26', '2016-11-24 00:00:26', 'NORMAL');
INSERT INTO `sms_history` VALUES ('266429719d3c4ffa8498d21390c51f66', '18600536683', '您于11月24日12时01分使用余额消费2.0元,如有疑问请致电18600536683', '0', 'NOTICE_CASH_COMSUME', 'system', null, '1.95.78.51', null, '--', '2016-11-24 00:01:00', '2016-11-24 00:01:00', 'NORMAL');
INSERT INTO `sms_history` VALUES ('8ffb0ca54f724fcca45c3af8be8615b1', '18600536686', '尊敬的用户,您的验证码为9633,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '1.95.244.24', '9633', '--', '2016-11-26 16:52:41', '2016-11-26 16:52:41', 'NORMAL');
INSERT INTO `sms_history` VALUES ('98a47985ecf6414f8070871513f6b2b8', '18600536686', '尊敬的用户,您的验证码为0090,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '1.95.244.24', '0090', '--', '2016-11-26 16:53:16', '2016-11-26 16:53:16', 'NORMAL');
INSERT INTO `sms_history` VALUES ('c9629955308f4b349f6b0e4925063de2', '18600536687', '尊敬的用户,您的验证码为8096,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '1.95.244.24', '8096', '--', '2016-11-26 16:54:41', '2016-11-26 16:54:41', 'NORMAL');
INSERT INTO `sms_history` VALUES ('7af5d90f245747779a2338e22cd413f7', '18600536689', '尊敬的用户,您的验证码为7093,本验证码有效时间10分钟,请勿告知他人', '10', 'VALIDATE', 'system', null, '1.95.244.24', '7093', '--', '2016-11-26 17:17:00', '2016-11-26 17:17:00', 'NORMAL');
-- ----------------------------
-- Table structure for sms_template
-- ----------------------------
DROP TABLE IF EXISTS `sms_template`;
CREATE TABLE `sms_template` (
`id` varchar(64) DEFAULT NULL,
`type` varchar(255) DEFAULT NULL,
`content` varchar(255) DEFAULT NULL,
`timeout` int(11) DEFAULT NULL,
`is_enable` tinyint(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of sms_template
-- ----------------------------
INSERT INTO `sms_template` VALUES ('1', 'VALIDATE', '尊敬的用户,您的验证码为[MSGCODE],本验证码有效时间[TIMEOUT]分钟,请勿告知他人', '10', '1', '验证码短信', '2016-07-11 18:22:28', '2016-07-11 18:22:31', 'NORMAL');
INSERT INTO `sms_template` VALUES ('2', 'NOTICE_CASH_COMSUME', '您于[DATE]使用余额消费[AMOUNT]元,如有疑问请致电18600536683', null, '1', '资金消费', '2016-11-20 21:51:56', '2016-11-20 21:51:59', 'NORMAL');
-- ----------------------------
-- Table structure for system_param
-- ----------------------------
DROP TABLE IF EXISTS `system_param`;
CREATE TABLE `system_param` (
`id` varchar(255) NOT NULL,
`name` varchar(255) DEFAULT NULL,
`title` varchar(255) DEFAULT NULL,
`logo` varchar(255) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
`copyright` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of system_param
-- ----------------------------
-- ----------------------------
-- Table structure for town
-- ----------------------------
DROP TABLE IF EXISTS `town`;
CREATE TABLE `town` (
`id` varchar(255) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of town
-- ----------------------------
INSERT INTO `town` VALUES ('1', '孙寺', '--', '2016-11-03 14:25:47', '2016-11-03 14:25:49', 'NORMAL');
INSERT INTO `town` VALUES ('2', '成武镇', '--', '2016-11-03 14:32:27', '2016-11-03 14:32:29', 'NORMAL');
-- ----------------------------
-- Table structure for village
-- ----------------------------
DROP TABLE IF EXISTS `village`;
CREATE TABLE `village` (
`id` varchar(255) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`update_date` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of village
-- ----------------------------
================================================
FILE: weixin-common/pom.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>Weixin-Dubbo</artifactId>
<groupId>com.cheng</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>weixin-common</artifactId>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
<!-- Spring begin -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>
</dependencies>
</project>
================================================
FILE: weixin-common/src/main/java/com/cheng/weixin/common/constant/Constant.java
================================================
package com.cheng.weixin.common.constant;
/**
* Desc: 常量
* Author: 光灿
* Date: 2016/9/15
*/
public interface Constant {
String CART = "CART_";
String CHOOSE = "TRUE_";
String NO_CHOOSE = "FALSE_";
}
================================================
FILE: weixin-common/src/main/java/com/cheng/weixin/common/constant/weixin/WeixinFinalValue.java
================================================
package com.cheng.weixin.common.constant.weixin;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
@Component
public class WeixinFinalValue {
@Value("${weixin.token}")
public String WX_TOKEN;
@Value("${weixin.appid}")
public String APPID;
@Value("${weixin.appsecret}")
public String APPSECRET;
}
================================================
FILE: weixin-common/src/main/java/com/cheng/weixin/common/constant/weixin/WeixinUrl.java
================================================
package com.cheng.weixin.common.constant.weixin;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
@Component
public class WeixinUrl {
/** 获取Access_Token **/
@Value("${weixin.url.access.token}")
public String ACCESS_TOKEN_URL;
/** 增加自定义菜单 **/
@Value("${weixin.url.menu.add}")
public String ADDMENU_URL;
/** 新增临时素材 **/
@Value("${weixin.url.tempmedia.add}")
public String ADD_TEMPMEDIA_URL;
/** 获取媒体素材 **/
@Value("${weixin.url.media.get}")
public String GET_MEDIA_URL;
/** 发送模板消息 **/
@Value("${weixin.url.templatemsg.sned}")
public String SEND_TEMPLATEMSG_URL;
/** 创建分组 **/
@Value("${weixin.url.group.add}")
public String ADD_GROUP;
/** 查询所有分组**/
@Value("${weixin.url.group.qurey.all}")
public String QUERY_ALL_GROUP;
/** 查询用户所在分组 **/
@Value("${weixin.url.group.query.user}")
public String QUERY_USER_GROUP;
/** 修改分组名 **/
@Value("${weixin.url.group.modify.name}")
public String MODIFY_GROUP_NAME;
/** 移动用户分组 **/
@Value("${weixin.url.group.move.user}")
public String MOVE_USER_GROUP;
/** 批量移动用户分组 **/
@Value("${weixin.url.group.batch.move.user}")
public String BATCH_MOVE_USER_GROUP;
/** 删除分组 **/
@Value("${weixin.url.group.delete}")
public String DELETE_GROUP;
}
================================================
FILE: weixin-common/src/main/java/com/cheng/weixin/common/exception/BusinessException.java
================================================
package com.cheng.weixin.common.exception;
public class BusinessException extends RuntimeException {
private static final long serialVersionUID = -9213841740412778182L;
private int code;
private String errorMsg;
public BusinessException(int code, String errorMsg) {
this.code = code;
this.errorMsg = errorMsg;
}
public int getCode() {
return code;
}
public void setCode(int code) {
this.code = code;
}
public String getErrorMsg() {
return errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
}
================================================
FILE: weixin-common/src/main/java/com/cheng/weixin/common/exception/ErrorEntity.java
================================================
package com.cheng.weixin.common.exception;
/**
* 错误消息 包装类
* @author Cheng
*/
public class ErrorEntity {
private String errcode;
private String errmsg;
public String getErrcode() {
return errcode;
}
public void setErrcode(String errcode) {
this.errcode = errcode;
}
public String getErrmsg() {
return errmsg;
}
public void setErrmsg(String errmsg) {
this.errmsg = errmsg;
}
}
================================================
FILE: weixin-common/src/main/java/com/cheng/weixin/common/exception/MassageException.java
================================================
package com.cheng.weixin.common.exception;
public class MassageException extends RuntimeException {
private static final long serialVersionUID = 1L;
private int code;
private String errorMsg;
public MassageException() {
}
public MassageException(int code, String errorMsg) {
this.code = code;
this.errorMsg = errorMsg;
}
public int getCode() {
return code;
}
public void setCode(int code) {
this.code = code;
}
public String getErrorMsg() {
return errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
}
================================================
FILE: weixin-common/src/main/java/com/cheng/weixin/common/exception/WeixinException.java
================================================
package com.cheng.weixin.common.exception;
public class WeixinException extends RuntimeException {
private static final long serialVersionUID = 1L;
private int code;
private String errorMsg;
public WeixinException() {
}
public WeixinException(int code, String errorMsg) {
this.code = code;
this.errorMsg = errorMsg;
}
public int getCode() {
return code;
}
public void setCode(int code) {
this.code = code;
}
public String getErrorMsg() {
return errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
}
================================================
FILE: weixin-common/src/main/java/com/cheng/weixin/common/model/Page.java
================================================
package com.cheng.weixin.common.model;
import java.util.List;
/**
* Desc: 分页对象
* Author: cheng
* Date: 2016/5/27
*/
public class Page<T> {
//当前页
private int pageNum;
//每页的数量
private int pageSize;
//当前页的数量
private int size;
//总记录数
private long total;
//总页数
private int pages;
//结果集
private List<T> list;
//第一页
private int firstPage;
//前一页
private int prePage;
//下一页
private int nextPage;
//最后一页
private int lastPage;
//是否为第一页
private boolean isFirstPage = false;
//是否为最后一页
private boolean isLastPage = false;
//是否有前一页
private boolean hasPreviousPage = false;
//是否有下一页
private boolean hasNextPage = false;
public int getPrePage() {
return prePage;
}
public void setPrePage(int prePage) {
this.prePage = prePage;
}
public int getPageNum() {
return pageNum;
}
public void setPageNum(int pageNum) {
this.pageNum = pageNum;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
public int getSize() {
return size;
}
public void setSize(int size) {
this.size = size;
}
public long getTotal() {
return total;
}
public void setTotal(long total) {
this.total = total;
}
public int getPages() {
return pages;
}
public void setPages(int pages) {
this.pages = pages;
}
public List<T> getList() {
return list;
}
public void setList(List<T> list) {
this.list = list;
}
public int getFirstPage() {
return firstPage;
}
public void setFirstPage(int firstPage) {
this.firstPage = firstPage;
}
public int getNextPage() {
return nextPage;
}
public void setNextPage(int nextPage) {
this.nextPage = nextPage;
}
public int getLastPage() {
return lastPage;
}
public void setLastPage(int lastPage) {
this.lastPage = lastPage;
}
public boolean isFirstPage() {
return isFirstPage;
}
public void setFirstPage(boolean firstPage) {
isFirstPage = firstPage;
}
public boolean isLastPage() {
return isLastPage;
}
public void setLastPage(boolean lastPage) {
isLastPage = lastPage;
}
public boolean isHasPreviousPage() {
return hasPreviousPage;
}
public void setHasPreviousPage(boolean hasPreviousPage) {
this.
gitextract_3i1j6qal/
├── .gitignore
├── README.md
├── Redme.md
├── docs/
│ ├── xxbao.vp
│ ├── 电商-数据库详细设计说明书V0.4.doc
│ └── 电商平台框架-后台框架.doc
├── pom.xml
├── sql/
│ └── weixin.sql
├── weixin-common/
│ ├── pom.xml
│ └── src/
│ └── main/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── weixin/
│ │ └── common/
│ │ ├── constant/
│ │ │ ├── Constant.java
│ │ │ └── weixin/
│ │ │ ├── WeixinFinalValue.java
│ │ │ └── WeixinUrl.java
│ │ ├── exception/
│ │ │ ├── BusinessException.java
│ │ │ ├── ErrorEntity.java
│ │ │ ├── MassageException.java
│ │ │ └── WeixinException.java
│ │ ├── model/
│ │ │ └── Page.java
│ │ ├── security/
│ │ │ ├── CodecUtil.java
│ │ │ ├── Digests.java
│ │ │ ├── Encodes.java
│ │ │ └── SecretUtils.java
│ │ └── utils/
│ │ ├── CacheUtils.java
│ │ ├── Captcha.java
│ │ ├── DateUtils.java
│ │ ├── Exceptions.java
│ │ ├── JSONUtils.java
│ │ ├── ServletUtils.java
│ │ ├── SpringContextHolder.java
│ │ ├── StringFormat.java
│ │ ├── StringUtils.java
│ │ └── SystemUtils.java
│ └── resources/
│ └── weixinconfig.properties
├── weixin-common-config/
│ └── pom.xml
├── weixin-common-entity/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── common/
│ └── entity/
│ ├── BaseEntity.java
│ ├── DataEntity.java
│ ├── enums/
│ │ ├── Sex.java
│ │ └── Status.java
│ └── id/
│ ├── IdGen.java
│ ├── IdGenerator.java
│ └── package-info.java
├── weixin-common-service/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── common/
│ └── core/
│ └── dao/
│ └── BaseDaoMapper.java
├── weixin-notify-pay/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── webapp/
│ ├── WEB-INF/
│ │ └── web.xml
│ └── index.jsp
├── weixin-rabbitmq-model/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rabbitmq/
│ ├── enums/
│ │ └── MsgType.java
│ └── model/
│ └── SmsModel.java
├── weixin-rpc-admin/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── admin/
│ ├── entity/
│ │ ├── Admin.java
│ │ ├── AdminRole.java
│ │ ├── Permission.java
│ │ ├── Role.java
│ │ └── RolePermission.java
│ └── service/
│ └── RpcAdminService.java
├── weixin-rpc-cart/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── cart/
│ ├── entity/
│ │ ├── CartInfo.java
│ │ └── ShoppingCart.java
│ ├── model/
│ │ └── ProductModel.java
│ └── service/
│ └── RpcCartService.java
├── weixin-rpc-comment/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── comment/
│ ├── entity/
│ │ └── Comment.java
│ └── service/
│ └── RpcCommentService.java
├── weixin-rpc-httpclient/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── httpclient/
│ └── service/
│ └── RpcHttpClientService.java
├── weixin-rpc-item/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── item/
│ ├── entity/
│ │ ├── Picture.java
│ │ ├── Product.java
│ │ └── ProductType.java
│ └── service/
│ └── RpcProductService.java
├── weixin-rpc-log/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── log/
│ ├── entity/
│ │ └── Log.java
│ ├── enums/
│ │ └── LogType.java
│ ├── model/
│ │ └── RequestModel.java
│ └── service/
│ └── RpcLogService.java
├── weixin-rpc-message/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── message/
│ ├── entity/
│ │ ├── EmailTemplate.java
│ │ ├── SmsHistory.java
│ │ └── SmsTemplate.java
│ └── service/
│ └── RpcSmsService.java
├── weixin-rpc-order/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── order/
│ ├── entity/
│ │ ├── ArayacakAddress.java
│ │ ├── ArayacakDeliveryTime.java
│ │ ├── City.java
│ │ ├── Country.java
│ │ ├── DeliveryTime.java
│ │ ├── DeliveryType.java
│ │ ├── FlowStatus.java
│ │ ├── OrderInfo.java
│ │ ├── OrderProductDetail.java
│ │ ├── OrderReturn.java
│ │ ├── OrderReturnDetail.java
│ │ ├── Pay.java
│ │ ├── Province.java
│ │ ├── RefundType.java
│ │ ├── ReturnReason.java
│ │ ├── ReturnStatus.java
│ │ ├── Town.java
│ │ └── Village.java
│ ├── enumType/
│ │ ├── FlowStatus.java
│ │ ├── OrderStatus.java
│ │ ├── OrderType.java
│ │ ├── PayStatus.java
│ │ └── PayWay.java
│ └── service/
│ └── RpcOrderService.java
├── weixin-rpc-promotion/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── promotion/
│ ├── entity/
│ │ ├── Coupon.java
│ │ ├── CouponCode.java
│ │ └── CouponHistory.java
│ ├── enums/
│ │ └── CouponType.java
│ └── service/
│ └── RpcCouponService.java
├── weixin-rpc-rabbitmq/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── rabbitmq/
│ └── service/
│ ├── RpcRabbitLogService.java
│ └── RpcRabbitSmsService.java
├── weixin-rpc-redis/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── redis/
│ └── service/
│ └── RpcRedisService.java
├── weixin-rpc-system/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── system/
│ ├── entity/
│ │ ├── Ad.java
│ │ ├── AdJoinPosition.java
│ │ ├── AdPosition.java
│ │ ├── Notice.java
│ │ ├── NoticeType.java
│ │ ├── PictureResource.java
│ │ ├── PictureResourceType.java
│ │ └── SystemParam.java
│ └── service/
│ └── RpcSystemService.java
├── weixin-rpc-user/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── user/
│ ├── entity/
│ │ ├── Account.java
│ │ ├── AccountLevel.java
│ │ ├── AccountUpgradeHistory.java
│ │ ├── Behavior.java
│ │ ├── BonusPointRecord.java
│ │ ├── CashRecord.java
│ │ ├── City.java
│ │ ├── Country.java
│ │ ├── CouponRecord.java
│ │ ├── DeliveryAddress.java
│ │ ├── Member.java
│ │ ├── ProductFocus.java
│ │ └── Province.java
│ ├── enumType/
│ │ ├── BehaviorType.java
│ │ ├── Credit.java
│ │ ├── Sex.java
│ │ ├── SourceFrom.java
│ │ └── TXType.java
│ └── service/
│ └── RpcUserService.java
├── weixin-rpc-wxtools/
│ ├── pom.xml
│ └── src/
│ └── main/
│ └── java/
│ └── com/
│ └── cheng/
│ └── weixin/
│ └── rpc/
│ └── wxtools/
│ ├── content/
│ │ └── WeixinContent.java
│ ├── entity/
│ │ ├── WxGroup.java
│ │ └── WxMenu.java
│ ├── enums/
│ │ ├── ActionType.java
│ │ ├── Event.java
│ │ ├── MidiaType.java
│ │ ├── MsgType.java
│ │ └── Status.java
│ ├── request/
│ │ └── model/
│ │ ├── BaseMessage.java
│ │ ├── ImageMessage.java
│ │ ├── MediaMessage.java
│ │ ├── ModelMsgData.java
│ │ ├── MusicMessage.java
│ │ ├── NewsMessage.java
│ │ ├── TemplateMessage.java
│ │ ├── TextMessage.java
│ │ ├── VoiceMessage.java
│ │ ├── WxImage.java
│ │ ├── WxMenu.java
│ │ ├── WxMusic.java
│ │ ├── WxNews.java
│ │ └── WxVoice.java
│ ├── response/
│ │ └── model/
│ │ ├── AccessToken.java
│ │ ├── SendTemplateMassage.java
│ │ ├── WxGroup.java
│ │ └── WxMedia.java
│ └── service/
│ ├── RpcMessageHandleService.java
│ ├── RpcWxGroupService.java
│ └── RpcWxMenuService.java
├── weixin-service-admin/
│ ├── pom.xml
│ ├── shell/
│ │ └── service-admin.sh
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── cheng/
│ │ │ └── weixin/
│ │ │ └── service/
│ │ │ └── admin/
│ │ │ ├── dao/
│ │ │ │ ├── AdminDaoMapper.java
│ │ │ │ ├── AdminRoleDaoMapper.java
│ │ │ │ ├── PermissionDaoMapper.java
│ │ │ │ └── RoleDaoMapper.java
│ │ │ └── service/
│ │ │ └── AdminService.java
│ │ └── resources/
│ │ ├── log4j.properties
│ │ ├── mybatis/
│ │ │ ├── mapper/
│ │ │ │ ├── AdminMapper.xml
│ │ │ │ ├── AdminRoleMapper.xml
│ │ │ │ ├── PermissionMapper.xml
│ │ │ │ └── RoleMapper.xml
│ │ │ └── mybatis-config.xml
│ │ └── spring/
│ │ ├── spring-context.xml
│ │ ├── spring-dubbo-provider.xml
│ │ └── spring-mybatis.xml
│ └── test/
│ └── java/
│ └── com/
│ └── cheng/
│ └── shrio/
│ └── passwd/
│ └── TestPssWd.java
├── weixin-service-cart/
│ ├── pom.xml
│ ├── shell/
│ │ └── service-cart.sh
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── cheng/
│ │ │ └── weixin/
│ │ │ └── service/
│ │ │ └── cart/
│ │ │ └── service/
│ │ │ └── CartService.java
│ │ └── resources/
│ │ ├── log4j.properties
│ │ └── spring/
│ │ ├── spring-context.xml
│ │ ├── spring-dubbo-consumer.xml
│ │ └── spring-dubbo-provider.xml
│ └── test/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── weixin/
│ │ └── cart/
│ │ ├── TestAll.java
│ │ └── TestCart.java
│ └── resources/
│ ├── log4j.properties
│ ├── spring-context.xml
│ └── spring-dubbo-consumer.xml
├── weixin-service-comment/
│ ├── pom.xml
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── cheng/
│ │ │ └── weixin/
│ │ │ └── service/
│ │ │ └── comment/
│ │ │ ├── dao/
│ │ │ │ └── CommentDaoMapper.java
│ │ │ └── service/
│ │ │ └── CommentService.java
│ │ └── resources/
│ │ ├── log4j.properties
│ │ ├── mybatis/
│ │ │ ├── mapper/
│ │ │ │ └── CommentMapper.xml
│ │ │ └── mybatis-config.xml
│ │ └── spring/
│ │ ├── spring-context.xml
│ │ ├── spring-dubbo-provider.xml
│ │ └── spring-mybatis.xml
│ └── test/
│ └── java/
│ └── com/
│ └── cheng/
│ └── comment/
│ └── test/
│ └── TestMain.java
├── weixin-service-httpclient/
│ ├── pom.xml
│ ├── shell/
│ │ └── service-httpclient.sh
│ └── src/
│ └── main/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── weixin/
│ │ └── service/
│ │ └── httpclient/
│ │ ├── service/
│ │ │ └── HttpClientService.java
│ │ └── utils/
│ │ └── ClientEvictExpiredConnections.java
│ └── resources/
│ ├── httpClient.properties
│ ├── log4j.properties
│ └── spring/
│ ├── spring-context.xml
│ ├── spring-dubbo-provider.xml
│ └── spring-httpclient.xml
├── weixin-service-item/
│ ├── pom.xml
│ ├── shell/
│ │ └── service-item.sh
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── cheng/
│ │ │ └── weixin/
│ │ │ └── service/
│ │ │ └── item/
│ │ │ ├── dao/
│ │ │ │ ├── PictureDaoMapper.java
│ │ │ │ ├── ProductDaoMapper.java
│ │ │ │ └── ProductTypeDaoMapper.java
│ │ │ └── service/
│ │ │ └── ProductService.java
│ │ └── resources/
│ │ ├── log4j.properties
│ │ ├── mybatis/
│ │ │ ├── mapper/
│ │ │ │ ├── PictureMapper.xml
│ │ │ │ ├── ProductMapper.xml
│ │ │ │ └── ProductTypeMapper.xml
│ │ │ └── mybatis-config.xml
│ │ └── spring/
│ │ ├── spring-context.xml
│ │ ├── spring-dubbo-provider.xml
│ │ └── spring-mybatis.xml
│ └── test/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── item/
│ │ └── test/
│ │ └── TestAll.java
│ └── resources/
│ ├── log4j.properties
│ ├── spring-context.xml
│ └── spring-mybatis.xml
├── weixin-service-log/
│ ├── pom.xml
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── cheng/
│ │ │ └── weixin/
│ │ │ └── service/
│ │ │ └── log/
│ │ │ ├── dao/
│ │ │ │ └── LogDaoMapper.java
│ │ │ └── service/
│ │ │ ├── LogMQService.java
│ │ │ └── LogService.java
│ │ └── resources/
│ │ ├── log4j.properties
│ │ ├── mybatis/
│ │ │ ├── mapper/
│ │ │ │ └── LogMapper.xml
│ │ │ └── mybatis-config.xml
│ │ └── spring/
│ │ ├── spring-context.xml
│ │ ├── spring-dubbo-provider.xml
│ │ ├── spring-mybatis.xml
│ │ └── spring-rabbitmq-listen.xml
│ └── test/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── log/
│ │ └── test/
│ │ └── TestMain.java
│ └── resources/
│ ├── LogMapper.xml
│ ├── log4j.properties
│ ├── mybatis-config.xml
│ ├── spring-context.xml
│ └── spring-mybatis.xml
├── weixin-service-message/
│ ├── pom.xml
│ ├── shell/
│ │ └── service-message.sh
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── cheng/
│ │ │ └── weixin/
│ │ │ └── service/
│ │ │ └── message/
│ │ │ ├── dao/
│ │ │ │ ├── EmailTemplateDaoMapper.java
│ │ │ │ ├── SmsHistoryDaoMapper.java
│ │ │ │ └── SmsTemplateDaoMapper.java
│ │ │ └── service/
│ │ │ └── SmsService.java
│ │ └── resources/
│ │ ├── log4j.properties
│ │ ├── mybatis/
│ │ │ ├── mapper/
│ │ │ │ ├── EmailTemplateMapper.xml
│ │ │ │ ├── SmsHistoryMapper.xml
│ │ │ │ └── SmsTemplateMapper.xml
│ │ │ └── mybatis-config.xml
│ │ └── spring/
│ │ ├── spring-context.xml
│ │ ├── spring-dubbo-provider.xml
│ │ ├── spring-mybatis.xml
│ │ └── spring-rabbitmq-listen.xml
│ └── test/
│ └── java/
│ └── com/
│ └── cheng/
│ └── test/
│ └── TestMain.java
├── weixin-service-order/
│ ├── pom.xml
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── cheng/
│ │ │ └── weixin/
│ │ │ └── service/
│ │ │ └── order/
│ │ │ ├── dao/
│ │ │ │ ├── ArayacakAddressDaoMapper.java
│ │ │ │ ├── ArayacakDeliveryTimeDaoMapper.java
│ │ │ │ ├── CityDaoMapper.java
│ │ │ │ ├── CountryDaoMapper.java
│ │ │ │ ├── DeliveryTimeDaoMapper.java
│ │ │ │ ├── DeliveryTypeDaoMapper.java
│ │ │ │ ├── FlowStatusDaoMapper.java
│ │ │ │ ├── OrderInfoDaoMapper.java
│ │ │ │ ├── OrderProductDetailDaoMapper.java
│ │ │ │ ├── OrderReturnDaoMapper.java
│ │ │ │ ├── OrderReturnDetailDaoMapper.java
│ │ │ │ ├── PayDaoMapper.java
│ │ │ │ ├── ProvinceDaoMapper.java
│ │ │ │ ├── RefundTypeDaoMapper.java
│ │ │ │ ├── ReturnReasonDaoMapper.java
│ │ │ │ ├── ReturnStatusDaoMapper.java
│ │ │ │ ├── TownDaoMapper.java
│ │ │ │ └── VillageDaoMapper.java
│ │ │ └── service/
│ │ │ └── OrderService.java
│ │ └── resources/
│ │ ├── log4j.properties
│ │ ├── mybatis/
│ │ │ ├── mapper/
│ │ │ │ ├── ArayacakAddressMapper.xml
│ │ │ │ ├── ArayacakDeliveryTimeMapper.xml
│ │ │ │ ├── CityMapper.xml
│ │ │ │ ├── CountryMapper.xml
│ │ │ │ ├── DeliveryTimeMapper.xml
│ │ │ │ ├── DeliveryTypeMapper.xml
│ │ │ │ ├── FlowStatusMapper.xml
│ │ │ │ ├── OrderInfoMapper.xml
│ │ │ │ ├── OrderProductDetailMapper.xml
│ │ │ │ ├── OrderReturnDetailMapper.xml
│ │ │ │ ├── OrderReturnMapper.xml
│ │ │ │ ├── PayMapper.xml
│ │ │ │ ├── ProvinceMapper.xml
│ │ │ │ ├── RefundTypeMapper.xml
│ │ │ │ ├── ReturnReasonMapper.xml
│ │ │ │ ├── ReturnStatusMapper.xml
│ │ │ │ ├── TownMapper.xml
│ │ │ │ └── VillageMapper.xml
│ │ │ └── mybatis-config.xml
│ │ └── spring/
│ │ ├── spring-context.xml
│ │ ├── spring-dubbo-provider.xml
│ │ └── spring-mybatis.xml
│ └── test/
│ └── java/
│ └── com/
│ └── cheng/
│ └── order/
│ └── test/
│ └── TestMain.java
├── weixin-service-promotion/
│ ├── pom.xml
│ └── src/
│ └── main/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── weixin/
│ │ └── service/
│ │ └── promotion/
│ │ ├── dao/
│ │ │ ├── CouponCodeDaoMapper.java
│ │ │ ├── CouponDaoMapper.java
│ │ │ └── CouponHistoryDaoMapper.java
│ │ └── service/
│ │ └── CouponService.java
│ └── resources/
│ ├── log4j.properties
│ ├── mybatis/
│ │ ├── mapper/
│ │ │ ├── CouponCodeMapper.xml
│ │ │ ├── CouponHistoryMapper.xml
│ │ │ └── CouponMapper.xml
│ │ └── mybatis-config.xml
│ └── spring/
│ ├── spring-context.xml
│ ├── spring-dubbo-provider.xml
│ └── spring-mybatis.xml
├── weixin-service-rabbitmq/
│ ├── pom.xml
│ ├── shell/
│ │ └── service-rabbitmq.sh
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── cheng/
│ │ │ └── weixin/
│ │ │ └── service/
│ │ │ └── rabbitmq/
│ │ │ ├── RabbitLogService.java
│ │ │ └── RabbitSmsService.java
│ │ └── resources/
│ │ ├── log4j.properties
│ │ └── spring/
│ │ ├── spring-context.xml
│ │ ├── spring-dubbo-provider.xml
│ │ └── spring-rabbitmq.xml
│ └── test/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── test/
│ │ ├── Foo.java
│ │ ├── SpringMain.java
│ │ ├── TestMain.java
│ │ └── UserModel.java
│ └── resources/
│ ├── context-direct.xml
│ ├── context.xml
│ ├── log4j.properties
│ ├── spring-context.xml
│ └── spring-rabbitmq.xml
├── weixin-service-redis/
│ ├── pom.xml
│ ├── shell/
│ │ └── service-redis.sh
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── cheng/
│ │ │ └── weixin/
│ │ │ └── service/
│ │ │ └── redis/
│ │ │ └── service/
│ │ │ ├── RedisService.java
│ │ │ └── redis/
│ │ │ ├── Function.java
│ │ │ └── RedisService_bak.java
│ │ └── resources/
│ │ ├── Redme.md
│ │ ├── log4j.properties
│ │ └── spring/
│ │ ├── spring-context.xml
│ │ ├── spring-dubbo-provider.xml
│ │ └── spring-redis.xml
│ └── test/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── test/
│ │ ├── TestAll.java
│ │ └── TestMain.java
│ └── resources/
│ ├── log4j.properties
│ ├── spring-context.xml
│ └── spring-redis.xml
├── weixin-service-system/
│ ├── pom.xml
│ ├── shell/
│ │ └── service-system.sh
│ └── src/
│ └── main/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── weixin/
│ │ └── service/
│ │ └── system/
│ │ ├── dao/
│ │ │ ├── AdDaoMapper.java
│ │ │ ├── AdJoinPositionDaoMapper.java
│ │ │ ├── AdPositionDaoMapper.java
│ │ │ ├── NoticeDaoMapper.java
│ │ │ ├── NoticeTypeDaoMapper.java
│ │ │ └── SystemParamDaoMapper.java
│ │ └── service/
│ │ └── SystemService.java
│ └── resources/
│ ├── log4j.properties
│ ├── mybatis/
│ │ ├── mapper/
│ │ │ ├── AdJoinPositionMapper.xml
│ │ │ ├── AdMapper.xml
│ │ │ ├── AdPositionMapper.xml
│ │ │ ├── NoticeMapper.xml
│ │ │ └── SystemParamMapper.xml
│ │ └── mybatis-config.xml
│ └── spring/
│ ├── spring-context.xml
│ ├── spring-dubbo-provider.xml
│ └── spring-mybatis.xml
├── weixin-service-timer/
│ ├── pom.xml
│ ├── shell/
│ │ └── service-redis.sh
│ └── src/
│ └── main/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── weixin/
│ │ └── service/
│ │ └── timer/
│ │ ├── main/
│ │ │ └── TimerMain.java
│ │ └── token/
│ │ └── RefreshAccessTokenTask.java
│ └── resources/
│ ├── config.properties
│ ├── log4j.properties
│ └── spring/
│ ├── spring-context.xml
│ ├── spring-dubbo-consumer.xml
│ └── spring-quartz.xml
├── weixin-service-user/
│ ├── pom.xml
│ ├── shell/
│ │ └── service-user.sh
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── cheng/
│ │ │ └── weixin/
│ │ │ └── service/
│ │ │ └── user/
│ │ │ ├── dao/
│ │ │ │ ├── AccountDaoMapper.java
│ │ │ │ ├── AccountLevelDaoMapper.java
│ │ │ │ ├── AccountUpgradeHistoryDaoMapper.java
│ │ │ │ ├── BehaviorDaoMapper.java
│ │ │ │ ├── BonusPointRecordDaoMapper.java
│ │ │ │ ├── CashRecordDaoMapper.java
│ │ │ │ ├── CityDaoMapper.java
│ │ │ │ ├── CountryDaoMapper.java
│ │ │ │ ├── CouponRecordDaoMapper.java
│ │ │ │ ├── DeliveryAddressDaoMapper.java
│ │ │ │ ├── MemberDaoMapper.java
│ │ │ │ ├── ProductFocusDaoMapper.java
│ │ │ │ └── ProvinceDaoMapper.java
│ │ │ └── service/
│ │ │ └── UserService.java
│ │ └── resources/
│ │ ├── log4j.properties
│ │ ├── mybatis/
│ │ │ ├── mapper/
│ │ │ │ ├── AccountLevelMapper.xml
│ │ │ │ ├── AccountMapper.xml
│ │ │ │ ├── AccountUpgradeHistoryMapper.xml
│ │ │ │ ├── BehaviorMapper.xml
│ │ │ │ ├── BonusPointRecorMapper.xml
│ │ │ │ ├── CashRecordMapper.xml
│ │ │ │ ├── CityMapper.xml
│ │ │ │ ├── CountryMapper.xml
│ │ │ │ ├── CouponRecordMapper.xml
│ │ │ │ ├── DeliveryAddressMapper.xml
│ │ │ │ ├── MemberMapper.xml
│ │ │ │ ├── ProductFocusMapper.xml
│ │ │ │ └── ProvinceMapper.xml
│ │ │ └── mybatis-config.xml
│ │ └── spring/
│ │ ├── spring-context.xml
│ │ ├── spring-dubbo-provider.xml
│ │ └── spring-mybatis.xml
│ └── test/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── test/
│ │ ├── TestAll.java
│ │ └── TestMain.java
│ └── resources/
│ ├── log4j.properties
│ ├── spring-context.xml
│ └── spring-mybatis.xml
├── weixin-service-wxtools/
│ ├── pom.xml
│ └── src/
│ └── main/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── weixin/
│ │ └── service/
│ │ └── wxtools/
│ │ ├── dao/
│ │ │ ├── WxGroupDaoMapper.java
│ │ │ └── WxMenuDaoMapper.java
│ │ ├── httputils/
│ │ │ ├── HttpClientService.java
│ │ │ └── HttpUtils.java
│ │ ├── service/
│ │ │ ├── WxGroupService.java
│ │ │ ├── WxMenuService.java
│ │ │ └── msghandle/
│ │ │ └── MessageHandle.java
│ │ └── utils/
│ │ └── XMLUtils.java
│ └── resources/
│ ├── mybatis/
│ │ ├── mapper/
│ │ │ └── WxGroupMapper.xml
│ │ └── mybatis-config.xml
│ └── spring/
│ ├── spring-context.xml
│ ├── spring-dubbo-consumer.xml
│ ├── spring-dubbo-provider.xml
│ └── spring-mybatis.xml
├── weixin-web-manage/
│ ├── pom.xml
│ └── src/
│ └── main/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── weixin/
│ │ └── web/
│ │ └── manage/
│ │ ├── controllers/
│ │ │ ├── AdminController.java
│ │ │ ├── BaseController.java
│ │ │ ├── IndexController.java
│ │ │ └── LoginController.java
│ │ ├── interceptor/
│ │ │ └── LogInterceptor.java
│ │ ├── security/
│ │ │ ├── SystemAuthorizingRealm.java
│ │ │ ├── WxFormAuthenticationFilter.java
│ │ │ └── WxUsernamePasswordToken.java
│ │ └── utils/
│ │ └── UserUtils.java
│ ├── resources/
│ │ ├── ehcache/
│ │ │ └── ehcache.xml
│ │ ├── globalconf.properties
│ │ ├── log4j.properties
│ │ ├── rebel.xml
│ │ └── spring/
│ │ ├── applicationContext.xml
│ │ ├── spring-dubbo-consumer.xml
│ │ ├── spring-mvc.xml
│ │ └── spring-shrio.xml
│ └── webapp/
│ ├── WEB-INF/
│ │ ├── include/
│ │ │ └── taglibs.jsp
│ │ ├── tags/
│ │ │ └── captcha.tag
│ │ ├── views/
│ │ │ ├── home.jsp
│ │ │ ├── index.jsp
│ │ │ ├── login.jsp
│ │ │ └── test.jsp
│ │ └── web.xml
│ ├── static/
│ │ ├── css/
│ │ │ ├── bootstrap.min14ed.css
│ │ │ ├── font-awesome.min93e3.css
│ │ │ ├── plugins/
│ │ │ │ ├── awesome-bootstrap-checkbox/
│ │ │ │ │ └── awesome-bootstrap-checkbox.css
│ │ │ │ ├── chosen/
│ │ │ │ │ └── chosen.css
│ │ │ │ ├── clockpicker/
│ │ │ │ │ └── clockpicker.css
│ │ │ │ ├── codemirror/
│ │ │ │ │ ├── ambiance.css
│ │ │ │ │ └── codemirror.css
│ │ │ │ ├── dataTables/
│ │ │ │ │ └── dataTables.bootstrap.css
│ │ │ │ ├── datapicker/
│ │ │ │ │ └── datepicker3.css
│ │ │ │ ├── dropzone/
│ │ │ │ │ ├── basic.css
│ │ │ │ │ └── dropzone.css
│ │ │ │ ├── footable/
│ │ │ │ │ └── footable.core.css
│ │ │ │ ├── fullcalendar/
│ │ │ │ │ ├── fullcalendar.css
│ │ │ │ │ └── fullcalendar.print.css
│ │ │ │ ├── iCheck/
│ │ │ │ │ └── custom.css
│ │ │ │ ├── ionRangeSlider/
│ │ │ │ │ ├── ion.rangeSlider.css
│ │ │ │ │ └── ion.rangeSlider.skinFlat.css
│ │ │ │ ├── jqgrid/
│ │ │ │ │ └── ui.jqgridffe4.css
│ │ │ │ ├── nouslider/
│ │ │ │ │ └── jquery.nouislider.css
│ │ │ │ ├── plyr/
│ │ │ │ │ └── plyr.css
│ │ │ │ ├── simditor/
│ │ │ │ │ └── simditor.css
│ │ │ │ ├── steps/
│ │ │ │ │ └── jquery.steps.css
│ │ │ │ ├── summernote/
│ │ │ │ │ ├── summernote-bs3.css
│ │ │ │ │ └── summernote.css
│ │ │ │ ├── sweetalert/
│ │ │ │ │ └── sweetalert.css
│ │ │ │ ├── switchery/
│ │ │ │ │ └── switchery.css
│ │ │ │ ├── treeview/
│ │ │ │ │ └── bootstrap-treeview.css
│ │ │ │ └── webuploader/
│ │ │ │ └── webuploader.css
│ │ │ └── style.min862f.css
│ │ ├── html/
│ │ │ ├── home.html
│ │ │ ├── index.html
│ │ │ ├── login.html
│ │ │ └── w-index.html
│ │ ├── js/
│ │ │ └── plugins/
│ │ │ ├── beautifyhtml/
│ │ │ │ └── beautifyhtml.js
│ │ │ ├── chosen/
│ │ │ │ └── chosen.jquery.js
│ │ │ ├── clockpicker/
│ │ │ │ └── clockpicker.js
│ │ │ ├── codemirror/
│ │ │ │ ├── codemirror.js
│ │ │ │ └── mode/
│ │ │ │ └── javascript/
│ │ │ │ └── javascript.js
│ │ │ ├── dataTables/
│ │ │ │ ├── dataTables.bootstrap.js
│ │ │ │ └── jquery.dataTables.js
│ │ │ ├── datapicker/
│ │ │ │ └── bootstrap-datepicker.js
│ │ │ ├── diff_match_patch/
│ │ │ │ └── diff_match_patch.js
│ │ │ ├── dropzone/
│ │ │ │ └── dropzone.js
│ │ │ ├── easypiechart/
│ │ │ │ └── jquery.easypiechart.js
│ │ │ ├── echarts/
│ │ │ │ └── echarts-all.js
│ │ │ ├── fancybox/
│ │ │ │ ├── jquery.fancybox.css
│ │ │ │ └── jquery.fancybox.js
│ │ │ ├── flot/
│ │ │ │ ├── curvedLines.js
│ │ │ │ ├── jquery.flot.js
│ │ │ │ ├── jquery.flot.pie.js
│ │ │ │ ├── jquery.flot.resize.js
│ │ │ │ ├── jquery.flot.spline.js
│ │ │ │ └── jquery.flot.symbol.js
│ │ │ ├── gritter/
│ │ │ │ └── jquery.gritter.css
│ │ │ ├── jeditable/
│ │ │ │ └── jquery.jeditable.js
│ │ │ ├── jqgrid/
│ │ │ │ ├── i18n/
│ │ │ │ │ └── grid.locale-cnffe4.js
│ │ │ │ └── jquery.jqGrid.minffe4.js
│ │ │ ├── jsKnob/
│ │ │ │ └── jquery.knob.js
│ │ │ ├── jvectormap/
│ │ │ │ └── jquery-jvectormap-world-mill-en.js
│ │ │ ├── layer/
│ │ │ │ ├── extend/
│ │ │ │ │ └── layer.ext.js
│ │ │ │ ├── laydate/
│ │ │ │ │ ├── laydate.js
│ │ │ │ │ ├── need/
│ │ │ │ │ │ └── laydate.css
│ │ │ │ │ └── skins/
│ │ │ │ │ ├── dahong/
│ │ │ │ │ │ └── laydate.css
│ │ │ │ │ ├── default/
│ │ │ │ │ │ └── laydate.css
│ │ │ │ │ └── molv/
│ │ │ │ │ └── laydate.css
│ │ │ │ ├── laydate-v1.1/
│ │ │ │ │ ├── demo.html
│ │ │ │ │ ├── layDate官网.url
│ │ │ │ │ ├── laydate/
│ │ │ │ │ │ ├── laydate.js
│ │ │ │ │ │ ├── need/
│ │ │ │ │ │ │ └── laydate.css
│ │ │ │ │ │ └── skins/
│ │ │ │ │ │ ├── dahong/
│ │ │ │ │ │ │ └── laydate.css
│ │ │ │ │ │ ├── default/
│ │ │ │ │ │ │ └── laydate.css
│ │ │ │ │ │ └── molv/
│ │ │ │ │ │ └── laydate.css
│ │ │ │ │ └── 更新日志.txt
│ │ │ │ ├── layim/
│ │ │ │ │ ├── layim.css
│ │ │ │ │ └── layim.js
│ │ │ │ └── skin/
│ │ │ │ ├── layer.css
│ │ │ │ ├── layer.ext.css
│ │ │ │ └── moon/
│ │ │ │ └── style.css
│ │ │ ├── markdown/
│ │ │ │ ├── bootstrap-markdown.js
│ │ │ │ ├── bootstrap-markdown.zh.js
│ │ │ │ ├── markdown.js
│ │ │ │ └── to-markdown.js
│ │ │ ├── metisMenu/
│ │ │ │ └── jquery.metisMenu.js
│ │ │ ├── morris/
│ │ │ │ └── morris.js
│ │ │ ├── nestable/
│ │ │ │ └── jquery.nestable.js
│ │ │ ├── plyr/
│ │ │ │ └── plyr.js
│ │ │ ├── prettyfile/
│ │ │ │ └── bootstrap-prettyfile.js
│ │ │ ├── rickshaw/
│ │ │ │ └── vendor/
│ │ │ │ └── d3.v3.js
│ │ │ ├── simditor/
│ │ │ │ ├── hotkeys.js
│ │ │ │ ├── module.js
│ │ │ │ ├── simditor.js
│ │ │ │ └── uploader.js
│ │ │ ├── summernote/
│ │ │ │ └── summernote-zh-CN.js
│ │ │ ├── switchery/
│ │ │ │ └── switchery.js
│ │ │ ├── treeview/
│ │ │ │ └── bootstrap-treeview.js
│ │ │ └── webuploader/
│ │ │ └── index.html
│ │ ├── plugins/
│ │ │ └── fullavatareditor/
│ │ │ └── scripts/
│ │ │ ├── fullAvatarEditor.js
│ │ │ ├── jQuery.Cookie.js
│ │ │ ├── swfobject.js
│ │ │ └── test.js
│ │ └── test/
│ │ └── index.html
│ └── test.jsp
└── weixin-web-mobile/
├── pom.xml
└── src/
├── main/
│ ├── java/
│ │ └── com/
│ │ └── cheng/
│ │ └── weixin/
│ │ └── web/
│ │ └── mobile/
│ │ ├── ControllerExceptionHandle.java
│ │ ├── WeixinController.java
│ │ ├── controller/
│ │ │ ├── BaseController.java
│ │ │ ├── CartController.java
│ │ │ ├── CommentController.java
│ │ │ ├── IndexController.java
│ │ │ ├── LoginController.java
│ │ │ ├── MallController.java
│ │ │ ├── OrderController.java
│ │ │ ├── ProductController.java
│ │ │ ├── PromotionController.java
│ │ │ └── UserController.java
│ │ ├── exception/
│ │ │ ├── BaseException.java
│ │ │ ├── BusinessException.java
│ │ │ ├── IllegalParameterException.java
│ │ │ ├── LoginException.java
│ │ │ ├── OrderException.java
│ │ │ ├── ProductException.java
│ │ │ ├── TokenException.java
│ │ │ ├── UserException.java
│ │ │ └── message/
│ │ │ └── StatusCode.java
│ │ ├── i18n/
│ │ │ └── Resources.java
│ │ ├── interceptor/
│ │ │ ├── LogInterceptor.java
│ │ │ └── MaliciousRequestInterceptor.java
│ │ ├── json/
│ │ │ ├── CustomObjectMapper.java
│ │ │ └── JsonpHttpMessageConverter.java
│ │ ├── model/
│ │ │ ├── Book.java
│ │ │ ├── Meta.java
│ │ │ ├── Response.java
│ │ │ └── User.java
│ │ ├── param/
│ │ │ ├── AddressDto.java
│ │ │ ├── LoginDto.java
│ │ │ ├── PageDto.java
│ │ │ ├── PaymentDto.java
│ │ │ ├── ProductCategoryDto.java
│ │ │ ├── ProductDto.java
│ │ │ ├── ProductListDto.java
│ │ │ ├── RegDto.java
│ │ │ └── package-info.java
│ │ ├── properties/
│ │ │ ├── Configuration.java
│ │ │ ├── Global.java
│ │ │ └── Properties.java
│ │ ├── result/
│ │ │ ├── Promotion/
│ │ │ │ └── CouponDto.java
│ │ │ ├── cart/
│ │ │ │ ├── ProductCartInfo.java
│ │ │ │ ├── ProductInfo.java
│ │ │ │ ├── ProductInfoComparator.java
│ │ │ │ └── ShoppingCartInfo.java
│ │ │ ├── comment/
│ │ │ │ └── ProductComment.java
│ │ │ ├── index/
│ │ │ │ ├── Index.java
│ │ │ │ ├── IndexAd.java
│ │ │ │ ├── IndexBuy.java
│ │ │ │ ├── IndexImage.java
│ │ │ │ ├── IndexNotice.java
│ │ │ │ └── IndexProduct.java
│ │ │ ├── mall/
│ │ │ │ ├── Mall.java
│ │ │ │ ├── MallBuy.java
│ │ │ │ ├── ProductCategory.java
│ │ │ │ └── Products.java
│ │ │ ├── order/
│ │ │ │ ├── ArayacakTownAddr.java
│ │ │ │ ├── ArayacakVillageAddr.java
│ │ │ │ ├── BuyInfo.java
│ │ │ │ ├── Detail.java
│ │ │ │ ├── OrderDeliveryTime.java
│ │ │ │ ├── OrderList.java
│ │ │ │ ├── OrderPay.java
│ │ │ │ ├── ProductDetail.java
│ │ │ │ ├── ProductList.java
│ │ │ │ ├── Status.java
│ │ │ │ └── SubmitOrderInfo.java
│ │ │ ├── package-info.java
│ │ │ ├── product/
│ │ │ │ ├── ProductDetail.java
│ │ │ │ └── ProductPic.java
│ │ │ └── user/
│ │ │ ├── DeliveryAddr.java
│ │ │ └── UserDetail.java
│ │ ├── security/
│ │ │ ├── IgnoreSecurity.java
│ │ │ ├── LocalUser.java
│ │ │ ├── SecurityAspect.java
│ │ │ ├── TokenManager.java
│ │ │ ├── User.java
│ │ │ ├── impl/
│ │ │ │ ├── DefaultTokenManager.java
│ │ │ │ └── RedisTokenManager.java
│ │ │ └── package-info.java
│ │ └── service/
│ │ ├── SysCartService.java
│ │ ├── SysCommentService.java
│ │ ├── SysIndexService.java
│ │ ├── SysLoginService.java
│ │ ├── SysOrderService.java
│ │ ├── SysProductService.java
│ │ ├── SysPromotionService.java
│ │ ├── SysUserService.java
│ │ └── sysMallService.java
│ ├── resources/
│ │ ├── globalconf.properties
│ │ ├── i18n/
│ │ │ ├── messages_en.properties
│ │ │ └── messages_zh.properties
│ │ ├── log4j.properties
│ │ ├── rebel.xml
│ │ └── spring/
│ │ ├── applicationContext.xml
│ │ ├── spring-dubbo-consumer.xml
│ │ └── spring-mvc.xml
│ └── webapp/
│ ├── WEB-INF/
│ │ ├── views/
│ │ │ └── index.jsp
│ │ └── web.xml
│ └── index.jsp
└── test/
├── java/
│ └── com/
│ └── cheng/
│ └── dubbo/
│ └── consumer/
│ └── test/
│ ├── ConsumerTest.java
│ ├── ServiceTest.java
│ ├── TestAll.java
│ └── TestDemo.java
└── resources/
├── applicationContext.xml
├── log4j.properties
└── spring-dubbo-consumer.xml
Showing preview only (345K chars total). Download the full file or copy to clipboard to get everything.
SYMBOL INDEX (4097 symbols across 376 files)
FILE: sql/weixin.sql
type `account` (line 22) | CREATE TABLE `account` (
type `account_level` (line 54) | CREATE TABLE `account_level` (
type `ad` (line 83) | CREATE TABLE `ad` (
type `ad_join_position` (line 110) | CREATE TABLE `ad_join_position` (
type `ad_position` (line 131) | CREATE TABLE `ad_position` (
type `admin` (line 151) | CREATE TABLE `admin` (
type `admin_role` (line 178) | CREATE TABLE `admin_role` (
type `arayacak_address` (line 193) | CREATE TABLE `arayacak_address` (
type `arayacak_delivery_time` (line 220) | CREATE TABLE `arayacak_delivery_time` (
type `behavior` (line 237) | CREATE TABLE `behavior` (
type `bonus_point_record` (line 289) | CREATE TABLE `bonus_point_record` (
type `cash_record` (line 379) | CREATE TABLE `cash_record` (
type `city` (line 477) | CREATE TABLE `city` (
type `comment` (line 494) | CREATE TABLE `comment` (
type `country` (line 522) | CREATE TABLE `country` (
type `coupon` (line 539) | CREATE TABLE `coupon` (
type `coupon_code` (line 570) | CREATE TABLE `coupon_code` (
type `coupon_history` (line 593) | CREATE TABLE `coupon_history` (
type `coupon_record` (line 614) | CREATE TABLE `coupon_record` (
type `delivery_address` (line 700) | CREATE TABLE `delivery_address` (
type `delivery_time` (line 732) | CREATE TABLE `delivery_time` (
type `delivery_type` (line 751) | CREATE TABLE `delivery_type` (
type `email_template` (line 768) | CREATE TABLE `email_template` (
type `flow_status` (line 787) | CREATE TABLE `flow_status` (
type `log` (line 823) | CREATE TABLE `log` (
type `member` (line 851) | CREATE TABLE `member` (
type `notice` (line 887) | CREATE TABLE `notice` (
type `order_info` (line 909) | CREATE TABLE `order_info` (
type `order_product_detail` (line 990) | CREATE TABLE `order_product_detail` (
type `order_return` (line 1179) | CREATE TABLE `order_return` (
type `order_return_detail` (line 1220) | CREATE TABLE `order_return_detail` (
type `pay` (line 1246) | CREATE TABLE `pay` (
type `permission` (line 1271) | CREATE TABLE `permission` (
type `picture` (line 1291) | CREATE TABLE `picture` (
type `product` (line 1323) | CREATE TABLE `product` (
type `product_focus` (line 1357) | CREATE TABLE `product_focus` (
type `product_type` (line 1426) | CREATE TABLE `product_type` (
type `province` (line 1447) | CREATE TABLE `province` (
type `refund_type` (line 1465) | CREATE TABLE `refund_type` (
type `return_reason` (line 1482) | CREATE TABLE `return_reason` (
type `return_status` (line 1499) | CREATE TABLE `return_status` (
type `role` (line 1516) | CREATE TABLE `role` (
type `role_permission` (line 1536) | CREATE TABLE `role_permission` (
type `sms_history` (line 1551) | CREATE TABLE `sms_history` (
type `sms_template` (line 1616) | CREATE TABLE `sms_template` (
type `system_param` (line 1638) | CREATE TABLE `system_param` (
type `town` (line 1659) | CREATE TABLE `town` (
type `village` (line 1678) | CREATE TABLE `village` (
FILE: weixin-common-entity/src/main/java/com/cheng/common/entity/BaseEntity.java
class BaseEntity (line 16) | public abstract class BaseEntity<T> implements Serializable {
method preInsert (line 34) | public abstract void preInsert();
method preUpdate (line 39) | public abstract void preUpdate();
method getId (line 42) | public String getId() {
method setId (line 46) | public void setId(String id) {
method getIsNewRecord (line 54) | public boolean getIsNewRecord() {
method setIsNewRecord (line 62) | public void setIsNewRecord(boolean isNewRecord) {
method isUpdate (line 69) | public boolean isUpdate() {
method setUpdate (line 73) | public void setUpdate(boolean update) {
method hashCode (line 77) | @Override
method equals (line 81) | @Override
method toString (line 98) | @Override
FILE: weixin-common-entity/src/main/java/com/cheng/common/entity/DataEntity.java
class DataEntity (line 15) | public abstract class DataEntity<T> extends BaseEntity<T> {
method DataEntity (line 26) | public DataEntity() {
method preUpdate (line 34) | @Override
method preInsert (line 44) | @Override
method getRemarks (line 56) | public String getRemarks() {
method setRemarks (line 60) | public void setRemarks(String remarks) {
method getCreateDate (line 64) | public Date getCreateDate() {
method setCreateDate (line 68) | public void setCreateDate(Date createDate) {
method getUpdateDate (line 72) | public Date getUpdateDate() {
method setUpdateDate (line 76) | public void setUpdateDate(Date updateDate) {
method getStatus (line 80) | public Status getStatus() {
method setStatus (line 84) | public void setStatus(Status status) {
FILE: weixin-common-entity/src/main/java/com/cheng/common/entity/enums/Sex.java
type Sex (line 8) | public enum Sex {
method Sex (line 16) | Sex(String name) {
method getName (line 19) | public String getName() {
FILE: weixin-common-entity/src/main/java/com/cheng/common/entity/enums/Status.java
type Status (line 7) | public enum Status {
method Status (line 17) | Status(int code, String name) {
FILE: weixin-common-entity/src/main/java/com/cheng/common/entity/id/IdGen.java
class IdGen (line 10) | public class IdGen {
method uuid (line 18) | public static String uuid() {
FILE: weixin-common-entity/src/main/java/com/cheng/common/entity/id/IdGenerator.java
class IdGenerator (line 8) | public class IdGenerator {
method IdGenerator (line 39) | public IdGenerator(final long workerId) {
method nextId (line 48) | public synchronized long nextId() {
method tilNextMillis (line 81) | private long tilNextMillis(final long lastTimestamp) {
method timeGen (line 90) | private long timeGen() {
method main (line 95) | public static void main(String[] args) {
FILE: weixin-common-service/src/main/java/com/cheng/weixin/common/core/dao/BaseDaoMapper.java
type BaseDaoMapper (line 10) | public interface BaseDaoMapper<T> {
method load (line 16) | T load(T entity);
method loadAll (line 21) | List<T> loadAll();
method loadAll (line 26) | List<T> loadAll(T entity);
method save (line 32) | int save(T entity);
method saves (line 38) | int saves(List<T> entities);
method update (line 44) | int update(T entity);
method delete (line 51) | int delete(T entity);
FILE: weixin-common/src/main/java/com/cheng/weixin/common/constant/Constant.java
type Constant (line 8) | public interface Constant {
FILE: weixin-common/src/main/java/com/cheng/weixin/common/constant/weixin/WeixinFinalValue.java
class WeixinFinalValue (line 6) | @Component
FILE: weixin-common/src/main/java/com/cheng/weixin/common/constant/weixin/WeixinUrl.java
class WeixinUrl (line 6) | @Component
FILE: weixin-common/src/main/java/com/cheng/weixin/common/exception/BusinessException.java
class BusinessException (line 3) | public class BusinessException extends RuntimeException {
method BusinessException (line 10) | public BusinessException(int code, String errorMsg) {
method getCode (line 14) | public int getCode() {
method setCode (line 17) | public void setCode(int code) {
method getErrorMsg (line 20) | public String getErrorMsg() {
method setErrorMsg (line 23) | public void setErrorMsg(String errorMsg) {
FILE: weixin-common/src/main/java/com/cheng/weixin/common/exception/ErrorEntity.java
class ErrorEntity (line 7) | public class ErrorEntity {
method getErrcode (line 12) | public String getErrcode() {
method setErrcode (line 15) | public void setErrcode(String errcode) {
method getErrmsg (line 18) | public String getErrmsg() {
method setErrmsg (line 21) | public void setErrmsg(String errmsg) {
FILE: weixin-common/src/main/java/com/cheng/weixin/common/exception/MassageException.java
class MassageException (line 3) | public class MassageException extends RuntimeException {
method MassageException (line 9) | public MassageException() {
method MassageException (line 11) | public MassageException(int code, String errorMsg) {
method getCode (line 15) | public int getCode() {
method setCode (line 18) | public void setCode(int code) {
method getErrorMsg (line 21) | public String getErrorMsg() {
method setErrorMsg (line 24) | public void setErrorMsg(String errorMsg) {
FILE: weixin-common/src/main/java/com/cheng/weixin/common/exception/WeixinException.java
class WeixinException (line 3) | public class WeixinException extends RuntimeException {
method WeixinException (line 8) | public WeixinException() {
method WeixinException (line 10) | public WeixinException(int code, String errorMsg) {
method getCode (line 14) | public int getCode() {
method setCode (line 17) | public void setCode(int code) {
method getErrorMsg (line 20) | public String getErrorMsg() {
method setErrorMsg (line 23) | public void setErrorMsg(String errorMsg) {
FILE: weixin-common/src/main/java/com/cheng/weixin/common/model/Page.java
class Page (line 10) | public class Page<T> {
method getPrePage (line 42) | public int getPrePage() {
method setPrePage (line 46) | public void setPrePage(int prePage) {
method getPageNum (line 50) | public int getPageNum() {
method setPageNum (line 54) | public void setPageNum(int pageNum) {
method getPageSize (line 58) | public int getPageSize() {
method setPageSize (line 62) | public void setPageSize(int pageSize) {
method getSize (line 66) | public int getSize() {
method setSize (line 70) | public void setSize(int size) {
method getTotal (line 74) | public long getTotal() {
method setTotal (line 78) | public void setTotal(long total) {
method getPages (line 82) | public int getPages() {
method setPages (line 86) | public void setPages(int pages) {
method getList (line 90) | public List<T> getList() {
method setList (line 94) | public void setList(List<T> list) {
method getFirstPage (line 98) | public int getFirstPage() {
method setFirstPage (line 102) | public void setFirstPage(int firstPage) {
method getNextPage (line 106) | public int getNextPage() {
method setNextPage (line 110) | public void setNextPage(int nextPage) {
method getLastPage (line 114) | public int getLastPage() {
method setLastPage (line 118) | public void setLastPage(int lastPage) {
method isFirstPage (line 122) | public boolean isFirstPage() {
method setFirstPage (line 126) | public void setFirstPage(boolean firstPage) {
method isLastPage (line 130) | public boolean isLastPage() {
method setLastPage (line 134) | public void setLastPage(boolean lastPage) {
method isHasPreviousPage (line 138) | public boolean isHasPreviousPage() {
method setHasPreviousPage (line 142) | public void setHasPreviousPage(boolean hasPreviousPage) {
method isHasNextPage (line 146) | public boolean isHasNextPage() {
method setHasNextPage (line 150) | public void setHasNextPage(boolean hasNextPage) {
FILE: weixin-common/src/main/java/com/cheng/weixin/common/security/CodecUtil.java
class CodecUtil (line 14) | public class CodecUtil {
method createRandomNum (line 21) | public static String createRandomNum(int count) {
method createUUID (line 28) | public static String createUUID() {
FILE: weixin-common/src/main/java/com/cheng/weixin/common/security/Digests.java
class Digests (line 20) | public class Digests {
method generateSalt (line 34) | public static byte[] generateSalt(int numBatys) {
method md5 (line 42) | public static String md5(String strSrc) throws UnsupportedEncodingExce...
method md5 (line 45) | public static byte[] md5(byte[] input) {
method md5 (line 48) | public static byte[] md5(byte[] input, int iterations) {
method sha1 (line 57) | public static String sha1(String str) throws UnsupportedEncodingExcept...
method sha1 (line 60) | public static byte[] sha1(byte[] input) {
method sha1 (line 64) | public static byte[] sha1(byte[] input, byte[] salt) {
method sha1 (line 68) | public static byte[] sha1(byte[] input, byte[] salt, int iterations) {
method digest (line 80) | private static byte[] digest(byte[] input, String algorithm, byte[] sa...
method md5 (line 100) | public static byte[] md5(InputStream input) throws IOException {
method sha1 (line 107) | public static byte[] sha1(InputStream input) throws IOException {
method digest (line 111) | private static byte[] digest(InputStream input, String algorithm) thro...
FILE: weixin-common/src/main/java/com/cheng/weixin/common/security/Encodes.java
class Encodes (line 22) | public class Encodes {
method encodeHex (line 30) | public static String encodeHex(byte[] input) {
method decodeHex (line 39) | public static byte[] decodeHex(String input) {
method unescapeHtml (line 52) | public static String unescapeHtml(String htmlEscaped) {
method escapeHtml (line 59) | public static String escapeHtml(String html) {
method encodeURL (line 66) | public static String encodeURL(String str) {
method decodeURL (line 80) | public static String decodeURL(String str) {
method encodeBASE64 (line 94) | public static String encodeBASE64(String str) {
method decodeBASE64 (line 108) | public static String decodeBASE64(String str) {
FILE: weixin-common/src/main/java/com/cheng/weixin/common/security/SecretUtils.java
class SecretUtils (line 8) | public class SecretUtils {
method entryptPassword (line 21) | public static String entryptPassword(String plainPassword) {
method validatePassword (line 33) | public static boolean validatePassword(String planinPassword, String p...
FILE: weixin-common/src/main/java/com/cheng/weixin/common/utils/CacheUtils.java
class CacheUtils (line 12) | public class CacheUtils {
method getSysCache (line 24) | public static Object getSysCache(String key) {
method putSysCache (line 33) | public static void putSysCache(String key, Object value) {
method removeSysCache (line 41) | public static void removeSysCache(String key) {
method get (line 50) | public static Object get(String cacheName, String key) {
method put (line 66) | public static void put(String cacheName, String key, Object value) {
method remove (line 76) | public static void remove(String cacheName, String key) {
method getCache (line 84) | private static Cache getCache(String cacheName) {
FILE: weixin-common/src/main/java/com/cheng/weixin/common/utils/Captcha.java
class Captcha (line 14) | public class Captcha {
method Captcha (line 25) | private Captcha(){
method getInstance (line 30) | public static Captcha getInstance() {
method set (line 35) | public void set(int width,int height,int num,String code) {
method set (line 42) | public void set(int width,int height) {
method getWidth (line 47) | public int getWidth() {
method setWidth (line 50) | public void setWidth(int width) {
method getHeight (line 53) | public int getHeight() {
method setHeight (line 56) | public void setHeight(int height) {
method getNum (line 59) | public int getNum() {
method setNum (line 62) | public void setNum(int num) {
method getCode (line 65) | public String getCode() {
method setCode (line 68) | public void setCode(String code) {
method generateCheckcode (line 72) | public String generateCheckcode() {
method generateCheckImg (line 80) | public BufferedImage generateCheckImg(String checkcode) {
method isValidateCodeLogin (line 119) | public static boolean isValidateCodeLogin(String username, boolean isF...
FILE: weixin-common/src/main/java/com/cheng/weixin/common/utils/DateUtils.java
class DateUtils (line 15) | public class DateUtils {
method formatDateTime (line 35) | public static String formatDateTime(long timeMillis){
method toDate (line 44) | public static Date toDate(String date, String format) throws ParseExce...
method toStr (line 50) | public static String toStr(Date date, String format) {
method toTimestamp (line 55) | public static Timestamp toTimestamp(Date date){
method toTimestamp (line 67) | public static Timestamp toTimestamp(String date,String format) throws ...
method toStr (line 71) | public static String toStr(String date, String original_format,String ...
method toStr (line 81) | public static String toStr(Timestamp timestamp,String format){
method dateToStr (line 86) | public static String dateToStr(Date date,String format){
method getBeginTimeOfDay (line 91) | public static Timestamp getBeginTimeOfDay(Date calBeginDate) throws Pa...
method getEndTimeOfDay (line 97) | public static Timestamp getEndTimeOfDay(Date calBeginDate) throws Pars...
method getFirstDayOfMonth (line 103) | public static Date getFirstDayOfMonth(String date,String format){
method getFirstDayOfMonth (line 114) | public static Date getFirstDayOfMonth(Date date){
method calFirstDayOfMonth (line 118) | private static Date calFirstDayOfMonth(Date date) {
method getLastDayOfMonth (line 130) | public static Date getLastDayOfMonth(String date, String format) {
method getLastDayOfMonth (line 141) | public static Date getLastDayOfMonth(Date date){
method calLastDayOfMonth (line 145) | private static Date calLastDayOfMonth(Date date) {
method getDaysOfMonth (line 159) | public static int getDaysOfMonth(Date date){
method main (line 166) | public static void main(String[] args) throws ParseException{
FILE: weixin-common/src/main/java/com/cheng/weixin/common/utils/Exceptions.java
class Exceptions (line 11) | public class Exceptions {
method unchecked (line 17) | public static RuntimeException unchecked(Exception e) {
method getStackTraceToString (line 30) | public static String getStackTraceToString(Throwable e) {
FILE: weixin-common/src/main/java/com/cheng/weixin/common/utils/JSONUtils.java
class JSONUtils (line 17) | public class JSONUtils {
method JSONUtils (line 21) | private JSONUtils() {
method getInstance (line 29) | public static ObjectMapper getInstance() {
method obj2json (line 36) | public static String obj2json(Object obj) throws Exception {
method json2pojo (line 43) | public static <T> T json2pojo(String jsonStr, Class<T> clazz) throws E...
method json2map (line 50) | public static <T> Map<String, Object> json2map(String jsonStr) throws ...
method json2map (line 57) | public static <T> Map<String, T> json2map(String jsonStr, Class<T> cla...
method json2list (line 69) | public static <T> List<T> json2list(String jsonArrayStr, Class<T> clazz)
method map2pojo (line 82) | public static <T> T map2pojo(Map map, Class<T> clazz) {
FILE: weixin-common/src/main/java/com/cheng/weixin/common/utils/ServletUtils.java
class ServletUtils (line 14) | public class ServletUtils {
method getRequest (line 19) | public static HttpServletRequest getRequest() {
FILE: weixin-common/src/main/java/com/cheng/weixin/common/utils/SpringContextHolder.java
class SpringContextHolder (line 18) | @Service
method getApplicationContext (line 30) | public static ApplicationContext getApplicationContext() {
method getBean (line 37) | public static <T> T getBean(String beanName) {
method getBean (line 44) | public static <T> T getBean(Class<T> requiredType) {
method clearHolder (line 51) | public static void clearHolder() {
method setApplicationContext (line 58) | @Override
method destroy (line 63) | @Override
method assertContextInjected (line 71) | private static void assertContextInjected() {
FILE: weixin-common/src/main/java/com/cheng/weixin/common/utils/StringFormat.java
class StringFormat (line 11) | public class StringFormat {
method format (line 17) | public static String format(BigDecimal value) {
FILE: weixin-common/src/main/java/com/cheng/weixin/common/utils/StringUtils.java
class StringUtils (line 7) | public class StringUtils extends org.apache.commons.lang3.StringUtils {
method hidePhone (line 13) | public static String hidePhone(String phone) {
FILE: weixin-common/src/main/java/com/cheng/weixin/common/utils/SystemUtils.java
class SystemUtils (line 10) | public class SystemUtils {
method getRemoteAddr (line 14) | public static String getRemoteAddr(HttpServletRequest request) {
FILE: weixin-rabbitmq-model/src/main/java/com/cheng/weixin/rabbitmq/enums/MsgType.java
type MsgType (line 8) | public enum MsgType {
method MsgType (line 14) | MsgType(String name) {
method getName (line 18) | public String getName() {
FILE: weixin-rabbitmq-model/src/main/java/com/cheng/weixin/rabbitmq/model/SmsModel.java
class SmsModel (line 13) | public class SmsModel implements Serializable {
method getPhone (line 21) | public String getPhone() {
method setPhone (line 25) | public void setPhone(String phone) {
method getUserIp (line 29) | public String getUserIp() {
method setUserIp (line 33) | public void setUserIp(String userIp) {
method getSerialVersionUID (line 37) | public static long getSerialVersionUID() {
method getType (line 41) | public MsgType getType() {
method setType (line 45) | public void setType(MsgType type) {
method getDate (line 49) | public Date getDate() {
method setDate (line 53) | public void setDate(Date date) {
method getContent (line 57) | public String getContent() {
method setContent (line 61) | public void setContent(String content) {
method toString (line 65) | @Override
FILE: weixin-rpc-admin/src/main/java/com/cheng/weixin/rpc/admin/entity/Admin.java
class Admin (line 13) | public class Admin extends DataEntity<Admin> {
method Admin (line 34) | public Admin() {}
method Admin (line 36) | public Admin(String id, String username) {
method getUsername (line 41) | public String getUsername() {
method setUsername (line 45) | public void setUsername(String username) {
method getPassword (line 49) | public String getPassword() {
method setPassword (line 53) | public void setPassword(String password) {
method getRealname (line 57) | public String getRealname() {
method setRealname (line 61) | public void setRealname(String realname) {
method getMobile (line 65) | public String getMobile() {
method setMobile (line 69) | public void setMobile(String mobile) {
method getPhoto (line 73) | public String getPhoto() {
method setPhoto (line 77) | public void setPhoto(String photo) {
method getLoginIp (line 81) | public String getLoginIp() {
method setLoginIp (line 85) | public void setLoginIp(String loginIp) {
method getLoginDate (line 89) | public Date getLoginDate() {
method setLoginDate (line 93) | public void setLoginDate(Date loginDate) {
method getOldLoginIp (line 97) | public String getOldLoginIp() {
method setOldLoginIp (line 101) | public void setOldLoginIp(String oldLoginIp) {
method getOldLoginDate (line 105) | public Date getOldLoginDate() {
method setOldLoginDate (line 109) | public void setOldLoginDate(Date oldLoginDate) {
method getRoles (line 113) | public List<Role> getRoles() {
method setRoles (line 117) | public Admin setRoles(List<Role> roles) {
method getNewLoginIp (line 122) | public String getNewLoginIp() {
method setNewLoginIp (line 126) | public void setNewLoginIp(String newLoginIp) {
method isSuperAdmin (line 131) | public boolean isSuperAdmin() {
method isSuperAdmin (line 135) | public static boolean isSuperAdmin(String id) {
FILE: weixin-rpc-admin/src/main/java/com/cheng/weixin/rpc/admin/entity/AdminRole.java
class AdminRole (line 10) | public class AdminRole extends DataEntity<AdminRole> {
method AdminRole (line 16) | public AdminRole() {
method AdminRole (line 19) | public AdminRole(String adminId, String roleId) {
method getAdminId (line 24) | public String getAdminId() {
method setAdminId (line 28) | public void setAdminId(String adminId) {
method getRoleId (line 32) | public String getRoleId() {
method setRoleId (line 36) | public void setRoleId(String roleId) {
FILE: weixin-rpc-admin/src/main/java/com/cheng/weixin/rpc/admin/entity/Permission.java
class Permission (line 10) | public class Permission extends DataEntity<Permission> {
method getName (line 14) | public String getName() {
method setName (line 18) | public void setName(String name) {
method getPrecode (line 22) | public String getPrecode() {
method setPrecode (line 26) | public void setPrecode(String precode) {
FILE: weixin-rpc-admin/src/main/java/com/cheng/weixin/rpc/admin/entity/Role.java
class Role (line 9) | public class Role extends DataEntity<Role> {
method Role (line 17) | public Role() {
method Role (line 20) | public Role(String id) {
method getName (line 24) | public String getName() {
method setName (line 28) | public void setName(String name) {
method getEnname (line 32) | public String getEnname() {
method setEnname (line 36) | public Role setEnname(String enname) {
method getAdmin (line 41) | public Admin getAdmin() {
method setAdmin (line 45) | public Role setAdmin(Admin admin) {
FILE: weixin-rpc-admin/src/main/java/com/cheng/weixin/rpc/admin/entity/RolePermission.java
class RolePermission (line 10) | public class RolePermission extends DataEntity<RolePermission> {
method getRoleId (line 16) | public String getRoleId() {
method setRoleId (line 20) | public void setRoleId(String roleId) {
method getPermissionId (line 24) | public String getPermissionId() {
method setPermissionId (line 28) | public void setPermissionId(String permissionId) {
FILE: weixin-rpc-admin/src/main/java/com/cheng/weixin/rpc/admin/service/RpcAdminService.java
type RpcAdminService (line 16) | public interface RpcAdminService {
method add (line 21) | void add(Admin admin);
method getAdminById (line 28) | Admin getAdminById(String id);
method getAdminByUsername (line 34) | Admin getAdminByUsername(String username);
method getAdminAll (line 40) | List<Admin> getAdminAll();
method findAdminAll (line 48) | Page<Admin> findAdminAll(int pageNum, int pageSize);
method updateAdminLoginInfo (line 54) | void updateAdminLoginInfo(Admin admin);
method updateAdminInfo (line 60) | void updateAdminInfo(Admin admin);
method updatePasswdById (line 66) | void updatePasswdById(String id, String newPasswd);
method getAllRoles (line 72) | List<Role> getAllRoles();
method getRolesByAdminId (line 79) | List<Role> getRolesByAdminId(String aid);
method getAllPermissions (line 85) | List<Permission> getAllPermissions();
method getPermissionByAdminId (line 92) | List<Permission> getPermissionByAdminId(String aid);
FILE: weixin-rpc-cart/src/main/java/com/cheng/weixin/rpc/cart/entity/CartInfo.java
class CartInfo (line 10) | public class CartInfo extends DataEntity<CartInfo> {
method CartInfo (line 16) | public CartInfo() {
method CartInfo (line 19) | public CartInfo(String accessId, String productId, int quantity) {
method getAccessId (line 25) | public String getAccessId() {
method setAccessId (line 29) | public CartInfo setAccessId(String accessId) {
method getProductId (line 34) | public String getProductId() {
method setProductId (line 38) | public CartInfo setProductId(String productId) {
method getQuantity (line 43) | public int getQuantity() {
method setQuantity (line 47) | public void setQuantity(int quantity) {
method isChoose (line 51) | public boolean isChoose() {
method setChoose (line 55) | public void setChoose(boolean choose) {
FILE: weixin-rpc-cart/src/main/java/com/cheng/weixin/rpc/cart/entity/ShoppingCart.java
class ShoppingCart (line 12) | public class ShoppingCart extends DataEntity<ShoppingCart> {
method getAccessId (line 18) | public String getAccessId() {
method setAccessId (line 22) | public ShoppingCart setAccessId(String accessId) {
method getTotalQuantity (line 27) | public int getTotalQuantity() {
method setTotalQuantity (line 31) | public void setTotalQuantity(int totalQuantity) {
method getCartInfos (line 35) | public List<CartInfo> getCartInfos() {
method setCartInfos (line 39) | public void setCartInfos(List<CartInfo> cartInfos) {
FILE: weixin-rpc-cart/src/main/java/com/cheng/weixin/rpc/cart/model/ProductModel.java
class ProductModel (line 10) | public class ProductModel implements Serializable {
method getId (line 14) | public String getId() {
method setId (line 18) | public void setId(String id) {
method getCount (line 22) | public int getCount() {
method setCount (line 26) | public void setCount(int count) {
FILE: weixin-rpc-cart/src/main/java/com/cheng/weixin/rpc/cart/service/RpcCartService.java
type RpcCartService (line 14) | public interface RpcCartService {
method addProductCount (line 22) | Long addProductCount(String userId, String productId);
method subProductCount (line 30) | Long subProductCount(String userId, String productId);
method getChooseProductIds (line 37) | Set<String> getChooseProductIds(String userId);
method getAllProductIds (line 44) | Set<String> getAllProductIds(String userId);
method getCounts (line 52) | Long getCounts(String userId, String productId);
method deleteProduct (line 59) | void deleteProduct(String userId, String productId);
method getShoppingCart (line 66) | ShoppingCart getShoppingCart(String accessId);
method addProduct (line 74) | void addProduct(String userId, String productId, Long count);
method changeStatus (line 82) | boolean changeStatus(String userId, String productId);
method getChooseProductInfo (line 89) | List<ProductModel> getChooseProductInfo(String userId);
method deletedChooseProduct (line 95) | void deletedChooseProduct(String userId);
method chooseAllProduct (line 101) | void chooseAllProduct(String userId);
method unchooseAllProduct (line 107) | void unchooseAllProduct(String userId);
method exists (line 115) | boolean exists(String userId, String productId);
method changeChooseStatus (line 122) | void changeChooseStatus(String userId, String productId);
method changeUnchooseStatus (line 128) | void changeUnchooseStatus(String userId, String productId);
FILE: weixin-rpc-comment/src/main/java/com/cheng/weixin/rpc/comment/entity/Comment.java
class Comment (line 12) | public class Comment extends DataEntity<Comment> {
method Comment (line 27) | public Comment() {
method Comment (line 30) | public Comment(String productId) {
method getProductScore (line 34) | public double getProductScore() {
method setProductScore (line 38) | public Comment setProductScore(double productScore) {
method getDeliveryScore (line 43) | public double getDeliveryScore() {
method setDeliveryScore (line 47) | public Comment setDeliveryScore(double deliveryScore) {
method getOrderDetailId (line 52) | public String getOrderDetailId() {
method setOrderDetailId (line 56) | public void setOrderDetailId(String orderDetailId) {
method getProductId (line 60) | public String getProductId() {
method setProductId (line 64) | public void setProductId(String productId) {
method getAccountId (line 68) | public String getAccountId() {
method setAccountId (line 72) | public void setAccountId(String accountId) {
method getTitle (line 76) | public String getTitle() {
method setTitle (line 80) | public void setTitle(String title) {
method getContent (line 84) | public String getContent() {
method setContent (line 88) | public void setContent(String content) {
method getUseful (line 92) | public int getUseful() {
method setUseful (line 96) | public void setUseful(int useful) {
method getUseless (line 100) | public int getUseless() {
method setUseless (line 104) | public void setUseless(int useless) {
method getParentId (line 108) | public String getParentId() {
method setParentId (line 112) | public void setParentId(String parentId) {
method getReviewTime (line 116) | public Date getReviewTime() {
method setReviewTime (line 120) | public void setReviewTime(Date reviewTime) {
method getReviewStatus (line 124) | public int getReviewStatus() {
method setReviewStatus (line 128) | public void setReviewStatus(int reviewStatus) {
method getReviewResult (line 132) | public String getReviewResult() {
method setReviewResult (line 136) | public void setReviewResult(String reviewResult) {
FILE: weixin-rpc-comment/src/main/java/com/cheng/weixin/rpc/comment/service/RpcCommentService.java
type RpcCommentService (line 12) | public interface RpcCommentService {
method getByProductId (line 18) | List<Comment> getByProductId(String productId);
FILE: weixin-rpc-httpclient/src/main/java/com/cheng/weixin/rpc/httpclient/service/RpcHttpClientService.java
type RpcHttpClientService (line 8) | public interface RpcHttpClientService {
method doGet (line 14) | String doGet(String url);
method doPost (line 22) | String doPost(String url, String data);
method postMedia (line 29) | String postMedia(String url, String path);
method getMidie (line 35) | void getMidie(String url, String path);
FILE: weixin-rpc-item/src/main/java/com/cheng/weixin/rpc/item/entity/Picture.java
class Picture (line 10) | public class Picture extends DataEntity<Picture> {
method Picture (line 17) | public Picture() {}
method Picture (line 19) | public Picture(Boolean isDefault) {
method Picture (line 22) | public Picture(String productId, Boolean isDefault) {
method getWidth (line 27) | public int getWidth() {
method setWidth (line 31) | public void setWidth(int width) {
method getHeight (line 35) | public int getHeight() {
method setHeight (line 39) | public void setHeight(int height) {
method getProductId (line 43) | public String getProductId() {
method setProductId (line 47) | public void setProductId(String productId) {
method getPictureUrl (line 51) | public String getPictureUrl() {
method setPictureUrl (line 55) | public void setPictureUrl(String pictureUrl) {
method isDefault (line 59) | public Boolean isDefault() {
method setDefault (line 63) | public void setDefault(Boolean aDefault) {
FILE: weixin-rpc-item/src/main/java/com/cheng/weixin/rpc/item/entity/Product.java
class Product (line 13) | public class Product extends DataEntity<Product> {
method Product (line 33) | public Product() {}
method Product (line 35) | public Product(String id) {
method Product (line 39) | public Product(boolean isIndex) {
method getTag (line 44) | public String getTag() {
method setTag (line 48) | public void setTag(String tag) {
method getUnitDesc (line 52) | public String getUnitDesc() {
method setUnitDesc (line 56) | public void setUnitDesc(String unitDesc) {
method getDefaultPicture (line 60) | public Picture getDefaultPicture() {
method setDefaultPicture (line 64) | public void setDefaultPicture(Picture defaultPicture) {
method getPictures (line 68) | public List<Picture> getPictures() {
method setPictures (line 72) | public void setPictures(List<Picture> pictures) {
method isIndex (line 76) | public boolean isIndex() {
method setIndex (line 80) | public void setIndex(boolean index) {
method getUnitsInStock (line 84) | public int getUnitsInStock() {
method setUnitsInStock (line 88) | public void setUnitsInStock(int unitsInStock) {
method getName (line 92) | public String getName() {
method setName (line 96) | public void setName(String name) {
method getNo (line 100) | public String getNo() {
method setNo (line 104) | public void setNo(String no) {
method getTypeId (line 108) | public String getTypeId() {
method setTypeId (line 112) | public void setTypeId(String typeId) {
method getKeywords (line 116) | public String getKeywords() {
method setKeywords (line 120) | public void setKeywords(String keywords) {
method isAlive (line 124) | public boolean isAlive() {
method setAlive (line 128) | public void setAlive(boolean alive) {
method getModifyAdminId (line 132) | public String getModifyAdminId() {
method setModifyAdminId (line 136) | public void setModifyAdminId(String modifyAdminId) {
method getMarketPrice (line 140) | public BigDecimal getMarketPrice() {
method setMarketPrice (line 144) | public void setMarketPrice(BigDecimal marketPrice) {
method getSalePrice (line 148) | public BigDecimal getSalePrice() {
method setSalePrice (line 152) | public void setSalePrice(BigDecimal salePrice) {
method getGiveAway (line 156) | public int getGiveAway() {
method setGiveAway (line 160) | public void setGiveAway(int giveAway) {
FILE: weixin-rpc-item/src/main/java/com/cheng/weixin/rpc/item/entity/ProductType.java
class ProductType (line 10) | public class ProductType extends DataEntity<ProductType> {
method ProductType (line 13) | public ProductType() {}
method ProductType (line 15) | public ProductType(String id) {
method getName (line 19) | public String getName() {
method setName (line 23) | public void setName(String name) {
FILE: weixin-rpc-item/src/main/java/com/cheng/weixin/rpc/item/service/RpcProductService.java
type RpcProductService (line 14) | public interface RpcProductService {
method getById (line 21) | Product getById(String id);
method updateStockById (line 29) | void updateStockById(String id, int stock, boolean isBack);
method getByTypeId (line 36) | List<Product> getByTypeId(String typeId);
method getDefaultPictureById (line 43) | Product getDefaultPictureById(String id);
method getIndex (line 49) | List<Product> getIndex();
method getProductType (line 55) | List<ProductType> getProductType();
method getAllPicture (line 62) | List<Picture> getAllPicture(String productId);
method getDefaultPictureByProductId (line 69) | Picture getDefaultPictureByProductId(String productId);
method getShowPictureByProductId (line 76) | List<Picture> getShowPictureByProductId(String productId);
FILE: weixin-rpc-log/src/main/java/com/cheng/weixin/rpc/log/entity/Log.java
class Log (line 15) | public class Log extends DataEntity<Log> {
method getType (line 39) | public LogType getType() {
method setType (line 43) | public void setType(LogType type) {
method getTitle (line 47) | public String getTitle() {
method setTitle (line 51) | public void setTitle(String title) {
method getRemoteAddr (line 55) | public String getRemoteAddr() {
method setRemoteAddr (line 59) | public void setRemoteAddr(String remoteAddr) {
method getRequestUri (line 63) | public String getRequestUri() {
method setRequestUri (line 67) | public void setRequestUri(String requestUri) {
method getMethod (line 71) | public String getMethod() {
method setMethod (line 75) | public void setMethod(String method) {
method getParams (line 79) | public String getParams() {
method getUserAgent (line 83) | public String getUserAgent() {
method setUserAgent (line 87) | public void setUserAgent(String userAgent) {
method getException (line 91) | public String getException() {
method setException (line 95) | public void setException(String exception) {
method getUsername (line 99) | public String getUsername() {
method setUsername (line 103) | public void setUsername(String username) {
method getBeginDate (line 107) | public Date getBeginDate() {
method setBeginDate (line 111) | public void setBeginDate(Date beginDate) {
method getEndDate (line 115) | public Date getEndDate() {
method setEndDate (line 119) | public void setEndDate(Date endDate) {
method setParams (line 127) | public void setParams(Map<String, String[]> paramMap) {
FILE: weixin-rpc-log/src/main/java/com/cheng/weixin/rpc/log/enums/LogType.java
type LogType (line 8) | public enum LogType {
FILE: weixin-rpc-log/src/main/java/com/cheng/weixin/rpc/log/model/RequestModel.java
class RequestModel (line 10) | public class RequestModel implements Serializable {
method RequestModel (line 19) | public RequestModel() {}
method RequestModel (line 21) | public RequestModel(String remoteAddr, String userAgent, String reques...
method getRemoteAddr (line 29) | public String getRemoteAddr() {
method setRemoteAddr (line 33) | public void setRemoteAddr(String remoteAddr) {
method getUserAgent (line 37) | public String getUserAgent() {
method setUserAgent (line 41) | public void setUserAgent(String userAgent) {
method getRequestUri (line 45) | public String getRequestUri() {
method setRequestUri (line 49) | public void setRequestUri(String requestUri) {
method getParams (line 53) | public String getParams() {
method setParams (line 57) | public void setParams(String params) {
method getMethod (line 61) | public String getMethod() {
method setMethod (line 65) | public void setMethod(String method) {
FILE: weixin-rpc-log/src/main/java/com/cheng/weixin/rpc/log/service/RpcLogService.java
type RpcLogService (line 10) | public interface RpcLogService {
method saveLog (line 23) | void saveLog(String remoteAddr, String userAgent, String requestUri, M...
FILE: weixin-rpc-message/src/main/java/com/cheng/weixin/rpc/message/entity/EmailTemplate.java
class EmailTemplate (line 11) | public class EmailTemplate extends DataEntity<EmailTemplate> {
method getType (line 16) | public MsgType getType() {
method setType (line 20) | public void setType(MsgType type) {
method getContent (line 24) | public String getContent() {
method setContent (line 28) | public void setContent(String content) {
method isEnable (line 32) | public boolean isEnable() {
method setEnable (line 36) | public void setEnable(boolean enable) {
FILE: weixin-rpc-message/src/main/java/com/cheng/weixin/rpc/message/entity/SmsHistory.java
class SmsHistory (line 13) | public class SmsHistory extends DataEntity<SmsHistory> {
method getStartOfDay (line 26) | public Date getStartOfDay() {
method setStartOfDay (line 30) | public void setStartOfDay(Date startOfDay) {
method getPhone (line 34) | public String getPhone() {
method setPhone (line 38) | public void setPhone(String phone) {
method getContent (line 42) | public String getContent() {
method setContent (line 46) | public void setContent(String content) {
method getTimeout (line 50) | public int getTimeout() {
method setTimeout (line 54) | public void setTimeout(int timeout) {
method getType (line 58) | public MsgType getType() {
method setType (line 62) | public void setType(MsgType type) {
method getSender (line 66) | public String getSender() {
method setSender (line 70) | public void setSender(String sender) {
method getReceiverId (line 74) | public String getReceiverId() {
method setReceiverId (line 78) | public void setReceiverId(String receiverId) {
method getUserIp (line 82) | public String getUserIp() {
method setUserIp (line 86) | public void setUserIp(String userIp) {
method getValidate (line 90) | public String getValidate() {
method setValidate (line 94) | public void setValidate(String validate) {
FILE: weixin-rpc-message/src/main/java/com/cheng/weixin/rpc/message/entity/SmsTemplate.java
class SmsTemplate (line 11) | public class SmsTemplate extends DataEntity<SmsTemplate> {
method SmsTemplate (line 17) | public SmsTemplate() {
method SmsTemplate (line 20) | public SmsTemplate(MsgType type) {
method getTimeout (line 25) | public int getTimeout() {
method setTimeout (line 29) | public void setTimeout(int timeout) {
method getType (line 33) | public MsgType getType() {
method setType (line 37) | public void setType(MsgType type) {
method getContent (line 41) | public String getContent() {
method setContent (line 45) | public void setContent(String content) {
method isEnable (line 49) | public boolean isEnable() {
method setEnable (line 53) | public void setEnable(boolean enable) {
FILE: weixin-rpc-message/src/main/java/com/cheng/weixin/rpc/message/service/RpcSmsService.java
type RpcSmsService (line 13) | public interface RpcSmsService {
method getCountByDay (line 19) | int getCountByDay(String phone);
method getCountByIp (line 26) | int getCountByIp(String ip);
method sendValidate (line 31) | void sendValidate(SmsModel smsModel);
method getInfoByPhoneAndType (line 39) | SmsHistory getInfoByPhoneAndType(String phone, MsgType type);
method sendNotice (line 45) | void sendNotice(SmsModel smsModel);
method sendActivity (line 51) | void sendActivity(String msgData);
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/ArayacakAddress.java
class ArayacakAddress (line 10) | public class ArayacakAddress extends DataEntity<ArayacakAddress> {
method ArayacakAddress (line 19) | public ArayacakAddress() {
method ArayacakAddress (line 21) | public ArayacakAddress(String id) {
method ArayacakAddress (line 24) | public ArayacakAddress(String countryId, String townId) {
method getName (line 29) | public String getName() {
method setName (line 33) | public void setName(String name) {
method getProvince (line 37) | public String getProvince() {
method setProvince (line 41) | public void setProvince(String province) {
method getCity (line 45) | public String getCity() {
method setCity (line 49) | public void setCity(String city) {
method getCountry (line 53) | public String getCountry() {
method setCountry (line 57) | public void setCountry(String country) {
method getVillage (line 61) | public String getVillage() {
method setVillage (line 65) | public void setVillage(String village) {
method getTown (line 69) | public String getTown() {
method setTown (line 73) | public void setTown(String town) {
method getAddress (line 77) | public String getAddress() {
method setAddress (line 81) | public void setAddress(String address) {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/ArayacakDeliveryTime.java
class ArayacakDeliveryTime (line 10) | public class ArayacakDeliveryTime extends DataEntity<ArayacakDeliveryTim...
method getName (line 13) | public String getName() {
method setName (line 17) | public ArayacakDeliveryTime setName(String name) {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/City.java
class City (line 10) | public class City extends DataEntity<City> {
method getName (line 13) | public String getName() {
method setName (line 17) | public void setName(String name) {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/Country.java
class Country (line 10) | public class Country extends DataEntity<Country> {
method getName (line 13) | public String getName() {
method setName (line 17) | public void setName(String name) {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/DeliveryTime.java
class DeliveryTime (line 10) | public class DeliveryTime extends DataEntity<DeliveryTime> {
method DeliveryTime (line 13) | public DeliveryTime() {
method DeliveryTime (line 16) | public DeliveryTime(String id) {
method getName (line 20) | public String getName() {
method setName (line 24) | public void setName(String name) {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/DeliveryType.java
class DeliveryType (line 10) | @Deprecated
method getName (line 14) | public String getName() {
method setName (line 18) | public void setName(String name) {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/FlowStatus.java
class FlowStatus (line 11) | public class FlowStatus extends DataEntity<FlowStatus> {
method getName (line 18) | public String getName() {
method setName (line 22) | public void setName(String name) {
method getPreStatusId (line 26) | public String getPreStatusId() {
method setPreStatusId (line 30) | public void setPreStatusId(String preStatusId) {
method getNextStatusId (line 34) | public String getNextStatusId() {
method setNextStatusId (line 38) | public void setNextStatusId(String nextStatusId) {
method getPayWay (line 42) | public PayWay getPayWay() {
method setPayWay (line 46) | public void setPayWay(PayWay payWay) {
method getOrderBy (line 50) | public int getOrderBy() {
method setOrderBy (line 54) | public void setOrderBy(int orderBy) {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/OrderInfo.java
class OrderInfo (line 17) | public class OrderInfo extends DataEntity<OrderInfo> {
method OrderInfo (line 62) | public OrderInfo() {
method OrderInfo (line 65) | public OrderInfo(String accountId) {
method getVillage (line 69) | public String getVillage() {
method setVillage (line 73) | public void setVillage(String village) {
method getIp (line 77) | public String getIp() {
method setIp (line 81) | public void setIp(String ip) {
method getOid (line 86) | public String getOid() {
method setOid (line 90) | public void setOid(String oid) {
method getCommentId (line 94) | public String getCommentId() {
method setCommentId (line 98) | public void setCommentId(String commentId) {
method getFlowStatus (line 102) | public String getFlowStatus() {
method setFlowStatus (line 106) | public void setFlowStatus(String flowStatus) {
method getAccountId (line 112) | public String getAccountId() {
method setAccountId (line 116) | public void setAccountId(String accountId) {
method getRelateOid (line 120) | public String getRelateOid() {
method setRelateOid (line 124) | public void setRelateOid(String relateOid) {
method getAmountPayable (line 128) | public BigDecimal getAmountPayable() {
method setAmountPayable (line 132) | public void setAmountPayable(BigDecimal amountPayable) {
method getAmountPaid (line 136) | public BigDecimal getAmountPaid() {
method setAmountPaid (line 140) | public void setAmountPaid(BigDecimal amountPaid) {
method getConsignee (line 144) | public String getConsignee() {
method setConsignee (line 148) | public void setConsignee(String consignee) {
method getMobile (line 152) | public String getMobile() {
method setMobile (line 156) | public void setMobile(String mobile) {
method getAddress (line 160) | public String getAddress() {
method setAddress (line 164) | public void setAddress(String address) {
method getDeliveryTime (line 168) | public String getDeliveryTime() {
method setDeliveryTime (line 172) | public void setDeliveryTime(String deliveryTime) {
method getPay (line 176) | public String getPay() {
method setPay (line 180) | public void setPay(String pay) {
method getArayacakAddress (line 184) | public String getArayacakAddress() {
method setArayacakAddress (line 188) | public void setArayacakAddress(String arayacakAddress) {
method getArayacakDeliveryTime (line 192) | public String getArayacakDeliveryTime() {
method setArayacakDeliveryTime (line 196) | public void setArayacakDeliveryTime(String arayacakDeliveryTime) {
method getProvince (line 200) | public String getProvince() {
method setProvince (line 204) | public void setProvince(String province) {
method getCity (line 208) | public String getCity() {
method setCity (line 212) | public void setCity(String city) {
method getCountry (line 216) | public String getCountry() {
method setCountry (line 220) | public void setCountry(String country) {
method getPayWay (line 224) | public PayWay getPayWay() {
method setPayWay (line 228) | public void setPayWay(PayWay payWay) {
method getBalanceOffset (line 232) | public BigDecimal getBalanceOffset() {
method setBalanceOffset (line 236) | public void setBalanceOffset(BigDecimal balanceOffset) {
method getOrderType (line 240) | public OrderType getOrderType() {
method setOrderType (line 244) | public void setOrderType(OrderType orderType) {
method getFreightReduce (line 248) | public BigDecimal getFreightReduce() {
method setFreightReduce (line 252) | public void setFreightReduce(BigDecimal freightReduce) {
method getFreightPayable (line 256) | public BigDecimal getFreightPayable() {
method setFreightPayable (line 260) | public void setFreightPayable(BigDecimal freightPayable) {
method getProductTotalPrice (line 264) | public BigDecimal getProductTotalPrice() {
method setProductTotalPrice (line 268) | public void setProductTotalPrice(BigDecimal productTotalPrice) {
method getDiscount (line 272) | public BigDecimal getDiscount() {
method setDiscount (line 276) | public void setDiscount(BigDecimal discount) {
method getRemarkCustomer (line 280) | public String getRemarkCustomer() {
method setRemarkCustomer (line 284) | public void setRemarkCustomer(String remarkCustomer) {
method getPostCode (line 288) | public String getPostCode() {
method setPostCode (line 292) | public void setPostCode(String postCode) {
method getTelephone (line 296) | public String getTelephone() {
method setTelephone (line 300) | public void setTelephone(String telephone) {
method getEmail (line 304) | public String getEmail() {
method setEmail (line 308) | public void setEmail(String email) {
method getPayTime (line 312) | public Date getPayTime() {
method setPayTime (line 316) | public void setPayTime(Date payTime) {
method getExchangeOid (line 320) | public String getExchangeOid() {
method setExchangeOid (line 324) | public void setExchangeOid(String exchangeOid) {
method getCustomPrice (line 328) | public String getCustomPrice() {
method setCustomPrice (line 332) | public void setCustomPrice(String customPrice) {
method getCouponCode (line 336) | public String getCouponCode() {
method setCouponCode (line 340) | public void setCouponCode(String couponCode) {
method getCouponReducePrice (line 344) | public BigDecimal getCouponReducePrice() {
method setCouponReducePrice (line 348) | public void setCouponReducePrice(BigDecimal couponReducePrice) {
method getBonusPointReducePrice (line 360) | public BigDecimal getBonusPointReducePrice() {
method setBonusPointReducePrice (line 364) | public void setBonusPointReducePrice(BigDecimal bonusPointReducePrice) {
method isFreeAccountLevel (line 368) | public boolean isFreeAccountLevel() {
method setFreeAccountLevel (line 372) | public void setFreeAccountLevel(boolean freeAccountLevel) {
method getOrderDetails (line 376) | public List<OrderProductDetail> getOrderDetails() {
method setOrderDetails (line 380) | public void setOrderDetails(List<OrderProductDetail> orderDetails) {
method getSince (line 384) | public Boolean getSince() {
method setSince (line 388) | public void setSince(Boolean since) {
method getOrderStatus (line 392) | public OrderStatus getOrderStatus() {
method setOrderStatus (line 396) | public void setOrderStatus(OrderStatus orderStatus) {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/OrderProductDetail.java
class OrderProductDetail (line 12) | public class OrderProductDetail extends DataEntity<OrderProductDetail> {
method OrderProductDetail (line 25) | public OrderProductDetail() {
method OrderProductDetail (line 27) | public OrderProductDetail(String orderInfoId) {
method getOrderInfoId (line 30) | public String getOrderInfoId() {
method setOrderInfoId (line 34) | public void setOrderInfoId(String orderInfoId) {
method getOid (line 38) | public String getOid() {
method setOid (line 42) | public void setOid(String oid) {
method getName (line 46) | public String getName() {
method setName (line 50) | public void setName(String name) {
method getQuantity (line 54) | public int getQuantity() {
method setQuantity (line 58) | public void setQuantity(int quantity) {
method getSubtotal (line 62) | public BigDecimal getSubtotal() {
method setSubtotal (line 66) | public void setSubtotal(BigDecimal subtotal) {
method getMarketPrice (line 70) | public BigDecimal getMarketPrice() {
method setMarketPrice (line 74) | public void setMarketPrice(BigDecimal marketPrice) {
method getSalePrice (line 78) | public BigDecimal getSalePrice() {
method setSalePrice (line 82) | public void setSalePrice(BigDecimal salePrice) {
method getDealPrice (line 86) | public BigDecimal getDealPrice() {
method setDealPrice (line 90) | public void setDealPrice(BigDecimal dealPrice) {
method getDiscountRate (line 94) | public double getDiscountRate() {
method setDiscountRate (line 98) | public void setDiscountRate(double discountRate) {
method isComment (line 102) | public boolean isComment() {
method setComment (line 106) | public void setComment(boolean comment) {
method isGift (line 110) | public boolean isGift() {
method setGift (line 114) | public void setGift(boolean gift) {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/OrderReturn.java
class OrderReturn (line 12) | public class OrderReturn extends DataEntity<OrderReturn> {
method getAccessId (line 39) | public String getAccessId() {
method setAccessId (line 43) | public void setAccessId(String accessId) {
method getReturnId (line 47) | public String getReturnId() {
method setReturnId (line 51) | public void setReturnId(String returnId) {
method getOrderInfoOid (line 55) | public String getOrderInfoOid() {
method setOrderInfoOid (line 59) | public void setOrderInfoOid(String orderInfoOid) {
method getOrderInfoId (line 63) | public String getOrderInfoId() {
method setOrderInfoId (line 67) | public void setOrderInfoId(String orderInfoId) {
method getRefundPayable (line 71) | public BigDecimal getRefundPayable() {
method setRefundPayable (line 75) | public void setRefundPayable(BigDecimal refundPayable) {
method getRefundPaid (line 79) | public BigDecimal getRefundPaid() {
method setRefundPaid (line 83) | public void setRefundPaid(BigDecimal refundPaid) {
method getSalePriceTatal (line 87) | public BigDecimal getSalePriceTatal() {
method setSalePriceTatal (line 91) | public void setSalePriceTatal(BigDecimal salePriceTatal) {
method getConsignee (line 95) | public String getConsignee() {
method setConsignee (line 99) | public void setConsignee(String consignee) {
method getMobile (line 103) | public String getMobile() {
method setMobile (line 107) | public void setMobile(String mobile) {
method getAddress (line 111) | public String getAddress() {
method setAddress (line 115) | public void setAddress(String address) {
method getProvince (line 119) | public String getProvince() {
method setProvince (line 123) | public void setProvince(String province) {
method getCity (line 127) | public String getCity() {
method setCity (line 131) | public void setCity(String city) {
method getCountry (line 135) | public String getCountry() {
method setCountry (line 139) | public void setCountry(String country) {
method getReturnStatusId (line 143) | public String getReturnStatusId() {
method setReturnStatusId (line 147) | public void setReturnStatusId(String returnStatusId) {
method getFreight (line 151) | public BigDecimal getFreight() {
method setFreight (line 155) | public void setFreight(BigDecimal freight) {
method getProductTotalPrice (line 159) | public BigDecimal getProductTotalPrice() {
method setProductTotalPrice (line 163) | public void setProductTotalPrice(BigDecimal productTotalPrice) {
method getRemarkSystem (line 167) | public String getRemarkSystem() {
method setRemarkSystem (line 171) | public void setRemarkSystem(String remarkSystem) {
method getIp (line 175) | public String getIp() {
method setIp (line 179) | public void setIp(String ip) {
method getPostCode (line 183) | public String getPostCode() {
method setPostCode (line 187) | public void setPostCode(String postCode) {
method getTelephone (line 191) | public String getTelephone() {
method setTelephone (line 195) | public void setTelephone(String telephone) {
method getEmail (line 199) | public String getEmail() {
method setEmail (line 203) | public void setEmail(String email) {
method getReturnReasonId (line 207) | public String getReturnReasonId() {
method setReturnReasonId (line 211) | public void setReturnReasonId(String returnReasonId) {
method getCustomReturnReason (line 215) | public String getCustomReturnReason() {
method setCustomReturnReason (line 219) | public void setCustomReturnReason(String customReturnReason) {
method getRefundTypeId (line 223) | public String getRefundTypeId() {
method setRefundTypeId (line 227) | public void setRefundTypeId(String refundTypeId) {
method getCustomPrice (line 231) | public BigDecimal getCustomPrice() {
method setCustomPrice (line 235) | public void setCustomPrice(BigDecimal customPrice) {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/OrderReturnDetail.java
class OrderReturnDetail (line 12) | public class OrderReturnDetail extends DataEntity<OrderReturnDetail> {
method getReturnOid (line 24) | public String getReturnOid() {
method setReturnOid (line 28) | public OrderReturnDetail setReturnOid(String returnOid) {
method getNo (line 33) | public String getNo() {
method setNo (line 37) | public OrderReturnDetail setNo(String no) {
method getName (line 42) | public String getName() {
method setName (line 46) | public OrderReturnDetail setName(String name) {
method getQuantity (line 51) | public int getQuantity() {
method setQuantity (line 55) | public OrderReturnDetail setQuantity(int quantity) {
method getSubtatal (line 60) | public BigDecimal getSubtatal() {
method setSubtatal (line 64) | public OrderReturnDetail setSubtatal(BigDecimal subtatal) {
method getMarketPrice (line 69) | public BigDecimal getMarketPrice() {
method setMarketPrice (line 73) | public OrderReturnDetail setMarketPrice(BigDecimal marketPrice) {
method getSalePrice (line 78) | public BigDecimal getSalePrice() {
method setSalePrice (line 82) | public OrderReturnDetail setSalePrice(BigDecimal salePrice) {
method getDealPrice (line 87) | public BigDecimal getDealPrice() {
method setDealPrice (line 91) | public OrderReturnDetail setDealPrice(BigDecimal dealPrice) {
method getDiscountRate (line 96) | public double getDiscountRate() {
method setDiscountRate (line 100) | public OrderReturnDetail setDiscountRate(double discountRate) {
method isGift (line 105) | public boolean isGift() {
method setGift (line 109) | public OrderReturnDetail setGift(boolean gift) {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/Pay.java
class Pay (line 11) | public class Pay extends DataEntity<Pay> {
method Pay (line 18) | public Pay() {
method Pay (line 21) | public Pay(String id) {
method getName (line 25) | public String getName() {
method setName (line 29) | public void setName(String name) {
method getPayWay (line 33) | public PayWay getPayWay() {
method setPayWay (line 37) | public void setPayWay(PayWay payWay) {
method getIcon (line 41) | public String getIcon() {
method setIcon (line 45) | public void setIcon(String icon) {
method getOrderBy (line 49) | public int getOrderBy() {
method setOrderBy (line 53) | public void setOrderBy(int orderBy) {
method getRecommend (line 57) | public Boolean getRecommend() {
method setRecommend (line 61) | public void setRecommend(Boolean recommend) {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/Province.java
class Province (line 10) | public class Province extends DataEntity<Province> {
method getName (line 13) | public String getName() {
method setName (line 17) | public void setName(String name) {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/RefundType.java
class RefundType (line 10) | public class RefundType extends DataEntity<RefundType> {
method getName (line 13) | public String getName() {
method setName (line 17) | public RefundType setName(String name) {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/ReturnReason.java
class ReturnReason (line 10) | public class ReturnReason extends DataEntity<ReturnReason> {
method getName (line 13) | public String getName() {
method setName (line 17) | public void setName(String name) {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/ReturnStatus.java
class ReturnStatus (line 10) | public class ReturnStatus extends DataEntity<ReturnStatus> {
method getName (line 13) | public String getName() {
method setName (line 17) | public void setName(String name) {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/Town.java
class Town (line 10) | public class Town extends DataEntity<Town> {
method Town (line 13) | public Town() {
method Town (line 15) | public Town(String id) {
method getName (line 18) | public String getName() {
method setName (line 22) | public void setName(String name) {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/Village.java
class Village (line 10) | public class Village extends DataEntity<Village> {
method getName (line 13) | public String getName() {
method setName (line 17) | public void setName(String name) {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/enumType/FlowStatus.java
type FlowStatus (line 8) | @Deprecated
method FlowStatus (line 19) | FlowStatus(String name) {
method getName (line 23) | public String getName() {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/enumType/OrderStatus.java
type OrderStatus (line 8) | public enum OrderStatus {
method OrderStatus (line 25) | OrderStatus(String name) {
method getName (line 29) | public String getName() {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/enumType/OrderType.java
type OrderType (line 8) | public enum OrderType {
method OrderType (line 15) | OrderType(String name) {
method getName (line 19) | public String getName() {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/enumType/PayStatus.java
type PayStatus (line 8) | @Deprecated
method PayStatus (line 16) | PayStatus(String name) {
method getName (line 20) | public String getName() {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/enumType/PayWay.java
type PayWay (line 8) | public enum PayWay {
method PayWay (line 14) | PayWay(String name) {
method getName (line 18) | public String getName() {
method setName (line 22) | public void setName(String name) {
FILE: weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/service/RpcOrderService.java
type RpcOrderService (line 15) | public interface RpcOrderService {
method getAllDeliveryTimes (line 20) | List<DeliveryTime> getAllDeliveryTimes();
method getDeliveryTime (line 27) | DeliveryTime getDeliveryTime(String id);
method getAllPay (line 32) | List<Pay> getAllPay();
method getPay (line 37) | Pay getPay(String id);
method getRecommendPay (line 43) | Pay getRecommendPay();
method getOrderInfos (line 50) | PageInfo<OrderInfo> getOrderInfos(String userId, int pageNum, int page...
method getOrderDetail (line 57) | OrderInfo getOrderDetail(String userId);
method addOrder (line 63) | OrderInfo addOrder(OrderInfo orderInfo);
method getArayacakAddr (line 69) | List<ArayacakAddress> getArayacakAddr(String countyId, String townId);
method getTownById (line 76) | Town getTownById(String townId);
method getArayacakAddressById (line 83) | ArayacakAddress getArayacakAddressById(String id);
method getFlowStatusesByPayWay (line 90) | List<FlowStatus> getFlowStatusesByPayWay(PayWay payWay);
method getFlowStatusesById (line 97) | FlowStatus getFlowStatusesById(String id);
method addOrderDetail (line 104) | OrderProductDetail addOrderDetail(OrderProductDetail detail);
FILE: weixin-rpc-promotion/src/main/java/com/cheng/weixin/rpc/promotion/entity/Coupon.java
class Coupon (line 14) | public class Coupon extends DataEntity<Coupon> {
method Coupon (line 28) | public Coupon() {
method Coupon (line 31) | public Coupon(String id) {
method getName (line 35) | public String getName() {
method setName (line 39) | public void setName(String name) {
method getType (line 43) | public CouponType getType() {
method setType (line 47) | public void setType(CouponType type) {
method getFaceValue (line 51) | public BigDecimal getFaceValue() {
method setFaceValue (line 55) | public void setFaceValue(BigDecimal faceValue) {
method getDelayDay (line 59) | public int getDelayDay() {
method setDelayDay (line 63) | public void setDelayDay(int delayDay) {
method isFree (line 67) | public boolean isFree() {
method setFree (line 71) | public void setFree(boolean free) {
method isReuse (line 75) | public boolean isReuse() {
method setReuse (line 79) | public void setReuse(boolean reuse) {
method getEnoughMoney (line 83) | public BigDecimal getEnoughMoney() {
method setEnoughMoney (line 87) | public void setEnoughMoney(BigDecimal enoughMoney) {
method getDiscount (line 91) | public BigDecimal getDiscount() {
method setDiscount (line 95) | public void setDiscount(BigDecimal discount) {
method getIncludeGroup (line 99) | public String getIncludeGroup() {
method setIncludeGroup (line 103) | public void setIncludeGroup(String includeGroup) {
method getExcludeGroup (line 107) | public String getExcludeGroup() {
method setExcludeGroup (line 111) | public void setExcludeGroup(String excludeGroup) {
method getBeginTime (line 115) | public Date getBeginTime() {
method setBeginTime (line 119) | public void setBeginTime(Date beginTime) {
method getEndTime (line 123) | public Date getEndTime() {
method setEndTime (line 127) | public void setEndTime(Date endTime) {
FILE: weixin-rpc-promotion/src/main/java/com/cheng/weixin/rpc/promotion/entity/CouponCode.java
class CouponCode (line 10) | public class CouponCode extends DataEntity<CouponCode> {
method CouponCode (line 18) | public CouponCode() {
method CouponCode (line 21) | public CouponCode(String id, String accountId) {
method getCouponId (line 26) | public String getCouponId() {
method setCouponId (line 30) | public void setCouponId(String couponId) {
method getCode (line 34) | public String getCode() {
method setCode (line 38) | public void setCode(String code) {
method getAccountId (line 42) | public String getAccountId() {
method setAccountId (line 46) | public void setAccountId(String accountId) {
method isUsed (line 50) | public boolean isUsed() {
method setUsed (line 54) | public void setUsed(boolean used) {
method getCoupon (line 58) | public Coupon getCoupon() {
method setCoupon (line 62) | public void setCoupon(Coupon coupon) {
FILE: weixin-rpc-promotion/src/main/java/com/cheng/weixin/rpc/promotion/entity/CouponHistory.java
class CouponHistory (line 12) | public class CouponHistory extends DataEntity<CouponHistory> {
method getCode (line 18) | public String getCode() {
method setCode (line 22) | public void setCode(String code) {
method getTxBehavior (line 26) | public String getTxBehavior() {
method setTxBehavior (line 30) | public void setTxBehavior(String txBehavior) {
method getAccountId (line 34) | public String getAccountId() {
method setAccountId (line 38) | public void setAccountId(String accountId) {
method getIsSendUsed (line 42) | public String getIsSendUsed() {
method setIsSendUsed (line 46) | public void setIsSendUsed(String isSendUsed) {
FILE: weixin-rpc-promotion/src/main/java/com/cheng/weixin/rpc/promotion/enums/CouponType.java
type CouponType (line 9) | public enum CouponType {
method CouponType (line 17) | CouponType(String name) {
method getName (line 21) | public String getName() {
method setName (line 25) | public void setName(String name) {
FILE: weixin-rpc-promotion/src/main/java/com/cheng/weixin/rpc/promotion/service/RpcCouponService.java
type RpcCouponService (line 12) | public interface RpcCouponService {
method getCouponCodeByUser (line 18) | List<CouponCode> getCouponCodeByUser(String userId);
method getCouponById (line 25) | CouponCode getCouponById(String id);
method updateCouponUsedById (line 31) | void updateCouponUsedById(String id);
FILE: weixin-rpc-rabbitmq/src/main/java/com/cheng/weixin/rpc/rabbitmq/service/RpcRabbitLogService.java
type RpcRabbitLogService (line 8) | public interface RpcRabbitLogService {
method saveLogs (line 15) | void saveLogs(Object obj);
FILE: weixin-rpc-rabbitmq/src/main/java/com/cheng/weixin/rpc/rabbitmq/service/RpcRabbitSmsService.java
type RpcRabbitSmsService (line 8) | public interface RpcRabbitSmsService {
method sendValidate (line 18) | void sendValidate(Object msgData);
method sendCashNotify (line 24) | void sendCashNotify(Object msgData);
FILE: weixin-rpc-redis/src/main/java/com/cheng/weixin/rpc/redis/service/RpcRedisService.java
type RpcRedisService (line 12) | public interface RpcRedisService {
method remove (line 19) | void remove(final String... keys);
method removePattern (line 26) | void removePattern(final String pattern);
method remove (line 33) | void remove(final String key);
method exists (line 41) | boolean exists(final String key);
method get (line 49) | Object get(final String key);
method set (line 58) | boolean set(final String key, Object value);
method set (line 67) | boolean set(final String key, Object value, Long expireTime);
method flushExpireTime (line 74) | boolean flushExpireTime(final String key, Long expireTime);
method increase (line 82) | Long increase(String key, String field);
method decrease (line 88) | Long decrease(String key, String field);
method deleteField (line 95) | void deleteField(String key, String field);
method batchDeleteField (line 102) | void batchDeleteField(String key, String... field);
method getFields (line 109) | Set getFields(String key);
method exists (line 117) | boolean exists(String key, String field);
method getValueByKeyANdField (line 125) | Object getValueByKeyANdField(String key, String field);
method getEntries (line 132) | Map<Serializable, Object> getEntries(String key);
method put (line 140) | void put(String key, String field, Long value);
FILE: weixin-rpc-system/src/main/java/com/cheng/weixin/rpc/system/entity/Ad.java
class Ad (line 10) | public class Ad extends DataEntity<Ad> {
method getName (line 19) | public String getName() {
method setName (line 23) | public Ad setName(String name) {
method getPictureUrl (line 28) | public String getPictureUrl() {
method setPictureUrl (line 32) | public Ad setPictureUrl(String pictureUrl) {
method getLinkUrl (line 37) | public String getLinkUrl() {
method setLinkUrl (line 41) | public Ad setLinkUrl(String linkUrl) {
method getWidth (line 46) | public int getWidth() {
method setWidth (line 50) | public Ad setWidth(int width) {
method getHeight (line 55) | public int getHeight() {
method setHeight (line 59) | public Ad setHeight(int height) {
method getPriority (line 64) | public int getPriority() {
method setPriority (line 68) | public Ad setPriority(int priority) {
method isEnable (line 73) | public boolean isEnable() {
method setEnable (line 77) | public Ad setEnable(boolean enable) {
FILE: weixin-rpc-system/src/main/java/com/cheng/weixin/rpc/system/entity/AdJoinPosition.java
class AdJoinPosition (line 10) | public class AdJoinPosition extends DataEntity<AdJoinPosition> {
method getAdId (line 14) | public String getAdId() {
method setAdId (line 18) | public AdJoinPosition setAdId(String adId) {
method getAdPositionId (line 23) | public String getAdPositionId() {
method setAdPositionId (line 27) | public AdJoinPosition setAdPositionId(String adPositionId) {
FILE: weixin-rpc-system/src/main/java/com/cheng/weixin/rpc/system/entity/AdPosition.java
class AdPosition (line 10) | public class AdPosition extends DataEntity<AdPosition> {
method getName (line 14) | public String getName() {
method setName (line 18) | public AdPosition setName(String name) {
method getType (line 23) | public String getType() {
method setType (line 27) | public AdPosition setType(String type) {
FILE: weixin-rpc-system/src/main/java/com/cheng/weixin/rpc/system/entity/Notice.java
class Notice (line 10) | public class Notice extends DataEntity<Notice> {
method getTitle (line 16) | public String getTitle() {
method setTitle (line 20) | public Notice setTitle(String title) {
method getContent (line 25) | public String getContent() {
method setContent (line 29) | public Notice setContent(String content) {
method getLinkUrl (line 34) | public String getLinkUrl() {
method setLinkUrl (line 38) | public void setLinkUrl(String linkUrl) {
FILE: weixin-rpc-system/src/main/java/com/cheng/weixin/rpc/system/entity/NoticeType.java
class NoticeType (line 10) | @Deprecated
FILE: weixin-rpc-system/src/main/java/com/cheng/weixin/rpc/system/entity/PictureResource.java
class PictureResource (line 10) | @Deprecated
method getPictureResourceType (line 18) | public String getPictureResourceType() {
method setPictureResourceType (line 22) | public PictureResource setPictureResourceType(String pictureResourceTy...
method getName (line 27) | public String getName() {
method setName (line 31) | public PictureResource setName(String name) {
method getPicture_url (line 36) | public String getPicture_url() {
method setPicture_url (line 40) | public PictureResource setPicture_url(String picture_url) {
method getHref (line 45) | public String getHref() {
method setHref (line 49) | public PictureResource setHref(String href) {
method getDescription (line 54) | public String getDescription() {
method setDescription (line 58) | public PictureResource setDescription(String description) {
FILE: weixin-rpc-system/src/main/java/com/cheng/weixin/rpc/system/entity/PictureResourceType.java
class PictureResourceType (line 10) | @Deprecated
method getName (line 14) | public String getName() {
method setName (line 18) | public PictureResourceType setName(String name) {
FILE: weixin-rpc-system/src/main/java/com/cheng/weixin/rpc/system/entity/SystemParam.java
class SystemParam (line 10) | public class SystemParam extends DataEntity<SystemParam> {
method getName (line 17) | public String getName() {
method setName (line 21) | public void setName(String name) {
method getTitle (line 25) | public String getTitle() {
method setTitle (line 29) | public void setTitle(String title) {
method getLogo (line 33) | public String getLogo() {
method setLogo (line 37) | public void setLogo(String logo) {
method getDescription (line 41) | public String getDescription() {
method setDescription (line 45) | public void setDescription(String description) {
method getCopyright (line 49) | public String getCopyright() {
method setCopyright (line 53) | public void setCopyright(String copyright) {
FILE: weixin-rpc-system/src/main/java/com/cheng/weixin/rpc/system/service/RpcSystemService.java
type RpcSystemService (line 13) | public interface RpcSystemService {
method getIndexAds (line 18) | List<Ad> getIndexAds();
method getIndexNotices (line 24) | List<Notice> getIndexNotices();
FILE: weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/Account.java
class Account (line 14) | public class Account extends DataEntity<Account> {
method Account (line 28) | public Account() {
method Account (line 31) | public Account(String id, String username) {
method Account (line 36) | public Account(BigDecimal balance) {
method getAvatar (line 40) | public String getAvatar() {
method setAvatar (line 44) | public void setAvatar(String avatar) {
method getNickname (line 48) | public String getNickname() {
method setNickname (line 52) | public void setNickname(String nickname) {
method getUsername (line 56) | public String getUsername() {
method setUsername (line 60) | public void setUsername(String username) {
method getPassword (line 64) | public String getPassword() {
method setPassword (line 68) | public void setPassword(String password) {
method getAccountLevelId (line 72) | public String getAccountLevelId() {
method setAccountLevelId (line 76) | public void setAccountLevelId(String accountLevelId) {
method getCredit (line 80) | public Credit getCredit() {
method setCredit (line 84) | public void setCredit(Credit credit) {
method getBonusPointUsable (line 88) | public int getBonusPointUsable() {
method setBonusPointUsable (line 92) | public void setBonusPointUsable(int bonusPointUsable) {
method getBonusPointUpgrade (line 96) | public int getBonusPointUpgrade() {
method setBonusPointUpgrade (line 100) | public void setBonusPointUpgrade(int bonusPointUpgrade) {
method getBalance (line 104) | public BigDecimal getBalance() {
method setBalance (line 108) | public void setBalance(BigDecimal balance) {
method isEmployee (line 112) | public boolean isEmployee() {
method setEmployee (line 116) | public void setEmployee(boolean employee) {
method getIp (line 120) | public String getIp() {
method setIp (line 124) | public void setIp(String ip) {
method getSourceFrom (line 128) | public SourceFrom getSourceFrom() {
method setSourceFrom (line 132) | public void setSourceFrom(SourceFrom sourceFrom) {
FILE: weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/AccountLevel.java
class AccountLevel (line 11) | public class AccountLevel extends DataEntity<AccountLevel> {
method AccountLevel (line 23) | public AccountLevel() {
method AccountLevel (line 26) | public AccountLevel(boolean isEnable) {
method getLevel (line 30) | public int getLevel() {
method setLevel (line 34) | public void setLevel(int level) {
method getAccountId (line 38) | public int getAccountId() {
method setAccountId (line 42) | public void setAccountId(int accountId) {
method getNeedRonusPoint (line 46) | public int getNeedRonusPoint() {
method setNeedRonusPoint (line 50) | public void setNeedRonusPoint(int needRonusPoint) {
method getName (line 54) | public String getName() {
method setName (line 58) | public void setName(String name) {
method getNextLevelNeedPoint (line 62) | public int getNextLevelNeedPoint() {
method setNextLevelNeedPoint (line 66) | public void setNextLevelNeedPoint(int nextLevelNeedPoint) {
method getFreeFrequency (line 70) | public int getFreeFrequency() {
method setFreeFrequency (line 74) | public void setFreeFrequency(int freeFrequency) {
method getEnable (line 78) | public Boolean getEnable() {
method setEnable (line 82) | public void setEnable(Boolean enable) {
method getConsumeScale (line 86) | public String getConsumeScale() {
method setConsumeScale (line 90) | public void setConsumeScale(String consumeScale) {
method getReductPercent (line 94) | public double getReductPercent() {
method setReductPercent (line 98) | public void setReductPercent(double reductPercent) {
FILE: weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/AccountUpgradeHistory.java
class AccountUpgradeHistory (line 10) | public class AccountUpgradeHistory extends DataEntity<AccountUpgradeHist...
method getAccountId (line 17) | public int getAccountId() {
method setAccountId (line 21) | public void setAccountId(int accountId) {
method getPreviousLevels (line 25) | public int getPreviousLevels() {
method setPreviousLevels (line 29) | public void setPreviousLevels(int previousLevels) {
method getCurrentLevels (line 33) | public int getCurrentLevels() {
method setCurrentLevels (line 37) | public void setCurrentLevels(int currentLevels) {
method getPreviousBonusPoint (line 41) | public int getPreviousBonusPoint() {
method setPreviousBonusPoint (line 45) | public void setPreviousBonusPoint(int previousBonusPoint) {
method getCurrentBonusPoint (line 49) | public int getCurrentBonusPoint() {
method setCurrentBonusPoint (line 53) | public void setCurrentBonusPoint(int currentBonusPoint) {
FILE: weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/Behavior.java
class Behavior (line 12) | @Deprecated
method getName (line 18) | public String getName() {
method setName (line 22) | public void setName(String name) {
method getOid (line 26) | public String getOid() {
method setOid (line 30) | public void setOid(String oid) {
method getBehaviorType (line 34) | public BehaviorType getBehaviorType() {
method setBehaviorType (line 38) | public void setBehaviorType(BehaviorType behaviorType) {
FILE: weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/BonusPointRecord.java
class BonusPointRecord (line 11) | public class BonusPointRecord extends DataEntity<BonusPointRecord> {
method BonusPointRecord (line 21) | public BonusPointRecord() {
method BonusPointRecord (line 24) | public BonusPointRecord(String accountId) {
method getAccountId (line 28) | public String getAccountId() {
method setAccountId (line 32) | public void setAccountId(String accountId) {
method getBeforeBonusPoints (line 36) | public int getBeforeBonusPoints() {
method setBeforeBonusPoints (line 40) | public void setBeforeBonusPoints(int beforeBonusPoints) {
method getTxBonusPoints (line 44) | public int getTxBonusPoints() {
method setTxBonusPoints (line 48) | public void setTxBonusPoints(int txBonusPoints) {
method getFrozenBonusPoints (line 52) | public int getFrozenBonusPoints() {
method setFrozenBonusPoints (line 56) | public void setFrozenBonusPoints(int frozenBonusPoints) {
method getAfterBonusPoints (line 60) | public int getAfterBonusPoints() {
method setAfterBonusPoints (line 64) | public void setAfterBonusPoints(int afterBonusPoints) {
method getTxType (line 68) | public TXType getTxType() {
method setTxType (line 72) | public void setTxType(TXType txType) {
method getBehaviorId (line 76) | public String getBehaviorId() {
method setBehaviorId (line 80) | public void setBehaviorId(String behaviorId) {
method getTxResult (line 84) | public String getTxResult() {
method setTxResult (line 88) | public void setTxResult(String txResult) {
FILE: weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/CashRecord.java
class CashRecord (line 13) | public class CashRecord extends DataEntity<CashRecord> {
method CashRecord (line 23) | public CashRecord() {
method CashRecord (line 26) | public CashRecord(String accountId) {
method getAccountId (line 30) | public String getAccountId() {
method setAccountId (line 34) | public void setAccountId(String accountId) {
method getBeforeMoney (line 38) | public BigDecimal getBeforeMoney() {
method setBeforeMoney (line 42) | public void setBeforeMoney(BigDecimal beforeMoney) {
method getTxMoney (line 46) | public BigDecimal getTxMoney() {
method setTxMoney (line 50) | public void setTxMoney(BigDecimal txMoney) {
method getFrozenMoney (line 54) | public BigDecimal getFrozenMoney() {
method setFrozenMoney (line 58) | public void setFrozenMoney(BigDecimal frozenMoney) {
method getAfterBonusPoints (line 62) | public BigDecimal getAfterBonusPoints() {
method setAfterBonusPoints (line 66) | public void setAfterBonusPoints(BigDecimal afterBonusPoints) {
method getTxType (line 70) | public TXType getTxType() {
method setTxType (line 74) | public void setTxType(TXType txType) {
method getBehaviorId (line 78) | public String getBehaviorId() {
method setBehaviorId (line 82) | public void setBehaviorId(String behaviorId) {
method getTxResult (line 86) | public String getTxResult() {
method setTxResult (line 90) | public void setTxResult(String txResult) {
FILE: weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/City.java
class City (line 10) | public class City extends DataEntity<City> {
method getName (line 13) | public String getName() {
method setName (line 17) | public void setName(String name) {
FILE: weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/Country.java
class Country (line 10) | public class Country extends DataEntity<Country> {
method getName (line 13) | public String getName() {
method setName (line 17) | public void setName(String name) {
FILE: weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/CouponRecord.java
class CouponRecord (line 10) | public class CouponRecord extends DataEntity<CouponRecord> {
method CouponRecord (line 17) | public CouponRecord() {
method CouponRecord (line 20) | public CouponRecord(String accountId) {
method getAccountId (line 24) | public String getAccountId() {
method setAccountId (line 28) | public void setAccountId(String accountId) {
method getCouponCodeId (line 32) | public String getCouponCodeId() {
method setCouponCodeId (line 36) | public void setCouponCodeId(String couponCodeId) {
method getTxType (line 40) | public String getTxType() {
method setTxType (line 44) | public void setTxType(String txType) {
method getBehaviorId (line 48) | public String getBehaviorId() {
method setBehaviorId (line 52) | public void setBehaviorId(String behaviorId) {
method getTxResult (line 56) | public String getTxResult() {
method setTxResult (line 60) | public void setTxResult(String txResult) {
FILE: weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/DeliveryAddress.java
class DeliveryAddress (line 11) | public class DeliveryAddress extends DataEntity<DeliveryAddress> {
method DeliveryAddress (line 27) | public DeliveryAddress() {
method DeliveryAddress (line 30) | public DeliveryAddress(String accountId, Boolean isDefault) {
method getSex (line 35) | public Sex getSex() {
method setSex (line 39) | public void setSex(Sex sex) {
method getTag (line 43) | public String getTag() {
method setTag (line 47) | public void setTag(String tag) {
method getAccountId (line 51) | public String getAccountId() {
method setAccountId (line 55) | public void setAccountId(String accountId) {
method getRegionProvinceId (line 59) | public String getRegionProvinceId() {
method setRegionProvinceId (line 63) | public void setRegionProvinceId(String regionProvinceId) {
method getRegionCityId (line 67) | public String getRegionCityId() {
method setRegionCityId (line 71) | public void setRegionCityId(String regionCityId) {
method getRegionCountryId (line 75) | public String getRegionCountryId() {
method setRegionCountryId (line 79) | public void setRegionCountryId(String regionCountryId) {
method getVillageId (line 83) | public String getVillageId() {
method setVillageId (line 87) | public void setVillageId(String villageId) {
method getConsignee (line 91) | public String getConsignee() {
method setConsignee (line 95) | public void setConsignee(String consignee) {
method getAddress (line 99) | public String getAddress() {
method setAddress (line 103) | public void setAddress(String address) {
method getMobile (line 107) | public String getMobile() {
method setMobile (line 111) | public void setMobile(String mobile) {
method getTelephone (line 115) | public String getTelephone() {
method setTelephone (line 119) | public void setTelephone(String telephone) {
method getEmail (line 123) | public String getEmail() {
method setEmail (line 127) | public void setEmail(String email) {
method getPostCode (line 131) | public String getPostCode() {
method setPostCode (line 135) | public void setPostCode(String postCode) {
method getDefault (line 139) | public Boolean getDefault() {
method setDefault (line 143) | public void setDefault(Boolean aDefault) {
FILE: weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/Member.java
class Member (line 13) | public class Member extends DataEntity<Member> {
method Member (line 32) | public Member() {
method Member (line 34) | public Member(String id) {
method getAccountId (line 37) | public String getAccountId() {
method setAccountId (line 41) | public void setAccountId(String accountId) {
method getName (line 45) | public String getName() {
method setName (line 49) | public void setName(String name) {
method getEmployer (line 53) | public String getEmployer() {
method setEmployer (line 57) | public void setEmployer(String employer) {
method getMobile (line 61) | public String getMobile() {
method setMobile (line 65) | public void setMobile(String mobile) {
method getAddress (line 69) | public String getAddress() {
method setAddress (line 73) | public void setAddress(String address) {
method getEmail (line 77) | public String getEmail() {
method setEmail (line 81) | public void setEmail(String email) {
method getIdcard (line 85) | public String getIdcard() {
method setIdcard (line 89) | public void setIdcard(String idcard) {
method getSex (line 93) | public Sex getSex() {
method setSex (line 97) | public void setSex(Sex sex) {
method getBirthday (line 101) | public Date getBirthday() {
method setBirthday (line 105) | public void setBirthday(Date birthday) {
method getRegionProvinceId (line 109) | public int getRegionProvinceId() {
method setRegionProvinceId (line 113) | public void setRegionProvinceId(int regionProvinceId) {
method getRegionCityId (line 117) | public int getRegionCityId() {
method setRegionCityId (line 121) | public void setRegionCityId(int regionCityId) {
method getRegionCountryId (line 125) | public int getRegionCountryId() {
method setRegionCountryId (line 129) | public void setRegionCountryId(int regionCountryId) {
method getTelephone (line 133) | public String getTelephone() {
method setTelephone (line 137) | public void setTelephone(String telephone) {
method getPostCode (line 141) | public String getPostCode() {
method setPostCode (line 145) | public void setPostCode(String postCode) {
method getIncomeMonth (line 149) | public String getIncomeMonth() {
method setIncomeMonth (line 153) | public void setIncomeMonth(String incomeMonth) {
method getJob (line 157) | public String getJob() {
method setJob (line 161) | public void setJob(String job) {
method getHobby (line 165) | public String getHobby() {
method setHobby (line 169) | public void setHobby(String hobby) {
FILE: weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/ProductFocus.java
class ProductFocus (line 10) | public class ProductFocus extends DataEntity<ProductFocus> {
method ProductFocus (line 14) | public ProductFocus() {
method ProductFocus (line 17) | public ProductFocus(String accountId, String productId) {
method getAccountId (line 28) | public String getAccountId() {
method setAccountId (line 32) | public void setAccountId(String accountId) {
method getProductId (line 36) | public String getProductId() {
method setProductId (line 40) | public void setProductId(String productId) {
FILE: weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/Province.java
class Province (line 10) | public class Province extends DataEntity<Province> {
method getName (line 13) | public String getName() {
method setName (line 17) | public void setName(String name) {
FILE: weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/enumType/BehaviorType.java
type BehaviorType (line 8) | public enum BehaviorType {
FILE: weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/enumType/Credit.java
type Credit (line 8) | public enum Credit {
FILE: weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/enumType/Sex.java
type Sex (line 8) | public enum Sex {
method Sex (line 16) | Sex(String name) {
method getName (line 19) | public String getName() {
FILE: weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/enumType/SourceFrom.java
type SourceFrom (line 8) | public enum SourceFrom {
FILE: weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/enumType/TXType.java
type TXType (line 8) | public enum TXType {
method TXType (line 14) | TXType(String name) {
method getName (line 18) | public String getName() {
FILE: weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/service/RpcUserService.java
type RpcUserService (line 12) | public interface RpcUserService {
method getAccountByLoginName (line 18) | Account getAccountByLoginName(String loginName);
method getAccountById (line 25) | Account getAccountById(String id);
method saveAccess (line 33) | void saveAccess(String phone, String password, String nickname, String...
method validateLogin (line 42) | String validateLogin(String username, String password, String loginIp);
method getDefaultAddress (line 48) | DeliveryAddress getDefaultAddress(String userId);
method getDeliveryAddress (line 55) | DeliveryAddress getDeliveryAddress(String id, String userId);
method getAllDeliveryAddr (line 62) | List<DeliveryAddress> getAllDeliveryAddr(String userId);
method getAccount (line 69) | Account getAccount(String userId);
method getAccountByUsername (line 76) | Account getAccountByUsername(String username);
method updateAccount (line 82) | void updateAccount(Account account);
method addBehavior (line 88) | void addBehavior(Behavior behavior);
method getBonusPointRecord (line 94) | BonusPointRecord getBonusPointRecord(String userId);
method getByUSerIdAndCurrentMonth (line 101) | List<BonusPointRecord> getByUSerIdAndCurrentMonth(String userId);
method addBonusPointRecord (line 107) | void addBonusPointRecord(BonusPointRecord bonusPointRecord);
method getCouponRecordByUser (line 114) | CouponRecord getCouponRecordByUser(String userId);
method addCouponRecord (line 120) | void addCouponRecord(CouponRecord couponRecor);
method getNewCashRecord (line 127) | CashRecord getNewCashRecord(String userId);
method addCashRecord (line 133) | void addCashRecord(CashRecord cashRecord);
method addProductFocus (line 140) | void addProductFocus(String userId, String productId);
method deleteProductFocus (line 146) | void deleteProductFocus(String userId, String productId);
method isProductFocus (line 153) | boolean isProductFocus(String userId, String productId);
method getMemberById (line 160) | Member getMemberById(String userId);
method getMemberByAccountId (line 166) | Member getMemberByAccountId(String userId);
method getAccountLevelById (line 172) | AccountLevel getAccountLevelById(String id);
method getAccountLevelByLevel (line 179) | AccountLevel getAccountLevelByLevel(int level);
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/content/WeixinContent.java
class WeixinContent (line 3) | public class WeixinContent {
method WeixinContent (line 5) | private WeixinContent(){}
class SingletonHolder (line 7) | private static class SingletonHolder {
method getInstance (line 11) | public static WeixinContent getInstance() {
method getAccessToken (line 17) | public String getAccessToken() {
method setAccessToken (line 20) | public void setAccessToken(String accessToken) {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/entity/WxGroup.java
class WxGroup (line 10) | public class WxGroup extends DataEntity<WxGroup> {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/entity/WxMenu.java
class WxMenu (line 10) | public class WxMenu extends DataEntity<WxMenu> {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/enums/ActionType.java
type ActionType (line 6) | public enum ActionType {
method ActionType (line 20) | private ActionType(String name) {
method getName (line 23) | public String getName() {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/enums/Event.java
type Event (line 7) | public enum Event {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/enums/MidiaType.java
type MidiaType (line 7) | public enum MidiaType {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/enums/MsgType.java
type MsgType (line 7) | public enum MsgType {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/enums/Status.java
type Status (line 3) | public enum Status {
method Status (line 13) | private Status() {
method Status (line 15) | private Status(String name) {
method getName (line 18) | public String getName() {
method setName (line 21) | public void setName(String name) {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/BaseMessage.java
class BaseMessage (line 12) | public abstract class BaseMessage implements Serializable {
method getToUserName (line 19) | public String getToUserName() {
method setToUserName (line 22) | public void setToUserName(String toUserName) {
method getFromUserName (line 25) | public String getFromUserName() {
method setFromUserName (line 28) | public void setFromUserName(String fromUserName) {
method getCreateTime (line 31) | public long getCreateTime() {
method setCreateTime (line 34) | public void setCreateTime(long createTime) {
method getMsgType (line 37) | public MsgType getMsgType() {
method setMsgType (line 40) | public void setMsgType(MsgType msgType) {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/ImageMessage.java
class ImageMessage (line 7) | public class ImageMessage extends BaseMessage {
method getImage (line 12) | public WxImage getImage() {
method setImage (line 15) | public void setImage(WxImage image) {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/MediaMessage.java
class MediaMessage (line 7) | public class MediaMessage extends BaseMessage {
method getMedia (line 12) | public com.cheng.weixin.rpc.wxtools.response.model.WxMedia getMedia() {
method setMedia (line 15) | public void setMedia(com.cheng.weixin.rpc.wxtools.response.model.WxMed...
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/ModelMsgData.java
class ModelMsgData (line 5) | public class ModelMsgData implements Serializable {
method ModelMsgData (line 12) | public ModelMsgData(String value, String color) {
method getValue (line 16) | public String getValue() {
method setValue (line 19) | public void setValue(String value) {
method getColor (line 22) | public String getColor() {
method setColor (line 25) | public void setColor(String color) {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/MusicMessage.java
class MusicMessage (line 7) | public class MusicMessage extends BaseMessage {
method getMusic (line 12) | public WxMusic getMusic() {
method setMusic (line 15) | public void setMusic(WxMusic music) {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/NewsMessage.java
class NewsMessage (line 9) | public class NewsMessage extends BaseMessage {
method getArticles (line 14) | public List<WxNews> getArticles() {
method setArticles (line 17) | public void setArticles(List<WxNews> articles) {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/TemplateMessage.java
class TemplateMessage (line 11) | public class TemplateMessage implements Serializable {
method getTouser (line 18) | public String getTouser() {
method setTouser (line 21) | public void setTouser(String touser) {
method getTemplate_id (line 24) | public String getTemplate_id() {
method setTemplate_id (line 27) | public void setTemplate_id(String template_id) {
method getUrl (line 30) | public String getUrl() {
method setUrl (line 33) | public void setUrl(String url) {
method getData (line 36) | public Map<String, Serializable> getData() {
method setData (line 39) | public void setData(Map<String, Serializable> data) {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/TextMessage.java
class TextMessage (line 6) | public class TextMessage extends BaseMessage {
method getContent (line 10) | public String getContent() {
method setContent (line 13) | public void setContent(String content) {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/VoiceMessage.java
class VoiceMessage (line 7) | public class VoiceMessage extends BaseMessage {
method getVoice (line 12) | public WxVoice getVoice() {
method setVoice (line 15) | public void setVoice(WxVoice voice) {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/WxImage.java
class WxImage (line 5) | public class WxImage implements Serializable {
method getMediaId (line 9) | public String getMediaId() {
method setMediaId (line 13) | public void setMediaId(String mediaId) {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/WxMenu.java
class WxMenu (line 15) | @JsonInclude(Include.NON_NULL)
method getUrl (line 25) | public String getUrl() {
method setUrl (line 28) | public void setUrl(String url) {
method getName (line 31) | public String getName() {
method setName (line 34) | public void setName(String name) {
method getType (line 37) | public ActionType getType() {
method setType (line 40) | public void setType(ActionType type) {
method getKey (line 43) | public String getKey() {
method setKey (line 46) | public void setKey(String key) {
method getSub_button (line 49) | public List<WxMenu> getSub_button() {
method setSub_button (line 52) | public void setSub_button(List<WxMenu> sub_button) {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/WxMusic.java
class WxMusic (line 5) | public class WxMusic implements Serializable {
method getMediaId (line 14) | public String getMediaId() {
method setMediaId (line 17) | public void setMediaId(String mediaId) {
method getTitle (line 20) | public String getTitle() {
method setTitle (line 23) | public void setTitle(String title) {
method getDescription (line 26) | public String getDescription() {
method setDescription (line 29) | public void setDescription(String description) {
method getMusicUrl (line 32) | public String getMusicUrl() {
method setMusicUrl (line 35) | public void setMusicUrl(String musicUrl) {
method getHQMusicUrl (line 38) | public String getHQMusicUrl() {
method setHQMusicUrl (line 41) | public void setHQMusicUrl(String hQMusicUrl) {
method getThumbMediaId (line 44) | public String getThumbMediaId() {
method setThumbMediaId (line 47) | public void setThumbMediaId(String thumbMediaId) {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/WxNews.java
class WxNews (line 5) | public class WxNews implements Serializable {
method getTitle (line 12) | public String getTitle() {
method setTitle (line 15) | public void setTitle(String title) {
method getDescription (line 18) | public String getDescription() {
method setDescription (line 21) | public void setDescription(String description) {
method getPicUrl (line 24) | public String getPicUrl() {
method setPicUrl (line 27) | public void setPicUrl(String picUrl) {
method getUrl (line 30) | public String getUrl() {
method setUrl (line 33) | public void setUrl(String url) {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/WxVoice.java
class WxVoice (line 5) | public class WxVoice implements Serializable {
method getMediaId (line 9) | public String getMediaId() {
method setMediaId (line 13) | public void setMediaId(String mediaId) {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/response/model/AccessToken.java
class AccessToken (line 6) | public class AccessToken {
method getAccess_token (line 10) | public String getAccess_token() {
method setAccess_token (line 13) | public void setAccess_token(String access_token) {
method getExpires_in (line 16) | public String getExpires_in() {
method setExpires_in (line 19) | public void setExpires_in(String expires_in) {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/response/model/SendTemplateMassage.java
class SendTemplateMassage (line 10) | public class SendTemplateMassage implements Serializable {
method getErrcode (line 16) | public String getErrcode() {
method setErrcode (line 19) | public void setErrcode(String errcode) {
method getErrmsg (line 22) | public String getErrmsg() {
method setErrmsg (line 25) | public void setErrmsg(String errmsg) {
method getMsgid (line 28) | public long getMsgid() {
method setMsgid (line 31) | public void setMsgid(long msgid) {
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/response/model/WxGroup.java
class WxGroup (line 11) | @JsonInclude(Include.NON_NULL)
method WxGroup (line 17) | public WxGroup() {}
method WxGroup (line 18) | public WxGroup(Integer id) {
method WxGroup (line 22) | public WxGroup(Integer id, String name) {
method getId (line 26) | public Integer getId() {
method setId (line 29) | public void setId(Integer id) {
method getName (line 32) | public String getName() {
method setName (line 35) | public void setName(String name) {
method getCount (line 38) | public Integer getCount() {
method setCount (line 41) | public void setCount(Integer count) {
method toString (line 44) | @Override
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/response/model/WxMedia.java
class WxMedia (line 3) | public class WxMedia {
method getType (line 9) | public String getType() {
method setType (line 12) | public void setType(String type) {
method getMedia_id (line 15) | public String getMedia_id() {
method setMedia_id (line 18) | public void setMedia_id(String media_id) {
method getCreated_at (line 21) | public long getCreated_at() {
method setCreated_at (line 24) | public void setCreated_at(long created_at) {
method toString (line 27) | @Override
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/service/RpcMessageHandleService.java
type RpcMessageHandleService (line 11) | public interface RpcMessageHandleService {
method reqMsg2Map (line 17) | Map<String, String> reqMsg2Map(HttpServletRequest request);
method handleResp (line 23) | String handleResp(Map<String, String> msgMap);
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/service/RpcWxGroupService.java
type RpcWxGroupService (line 13) | public interface RpcWxGroupService {
method addGroup (line 18) | WxGroup addGroup(String name);
method getAllGroup (line 23) | List<WxGroup> getAllGroup();
method getUserGroup (line 29) | Integer getUserGroup(String openid);
method updateGroupName (line 35) | void updateGroupName(int id, String name);
method updateUserGroup (line 41) | void updateUserGroup(String openid, int groupid);
method updateBatchMoveUserGroup (line 47) | void updateBatchMoveUserGroup(List<String> openids, int groupid);
method deleteGroup (line 52) | void deleteGroup(int id);
FILE: weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/service/RpcWxMenuService.java
type RpcWxMenuService (line 9) | public interface RpcWxMenuService {
FILE: weixin-service-admin/src/main/java/com/cheng/weixin/service/admin/dao/AdminDaoMapper.java
type AdminDaoMapper (line 12) | @Repository
FILE: weixin-service-admin/src/main/java/com/cheng/weixin/service/admin/dao/AdminRoleDaoMapper.java
type AdminRoleDaoMapper (line 11) | public interface AdminRoleDaoMapper extends BaseDaoMapper<AdminRole> {
FILE: weixin-service-admin/src/main/java/com/cheng/weixin/service/admin/dao/PermissionDaoMapper.java
type PermissionDaoMapper (line 14) | @Repository
method loadByAdminId (line 21) | List<Permission> loadByAdminId(String adminId);
FILE: weixin-service-admin/src/main/java/com/cheng/weixin/service/admin/dao/RoleDaoMapper.java
type RoleDaoMapper (line 14) | @Repository
method loadByAdminId (line 21) | List<Role> loadByAdminId(String adminId);
FILE: weixin-service-admin/src/main/java/com/cheng/weixin/service/admin/service/AdminService.java
class AdminService (line 29) | @Service("adminService")
method add (line 41) | @Override
method getAdminByUsername (line 55) | @Override
method getAdminAll (line 61) | @Override
method findAdminAll (line 66) | @Override
method getAdminById (line 83) | @Override
method updateAdminLoginInfo (line 88) | @Override
method updateAdminInfo (line 103) | @Override
method updatePasswdById (line 109) | @Override
method getAllRoles (line 118) | @Override
method getRolesByAdminId (line 123) | @Override
method getAllPermissions (line 128) | @Override
method getPermissionByAdminId (line 132) | @Override
FILE: weixin-service-admin/src/test/java/com/cheng/shrio/passwd/TestPssWd.java
class TestPssWd (line 9) | public class TestPssWd {
method main (line 15) | public static void main(String[] args) {
FILE: weixin-service-cart/src/main/java/com/cheng/weixin/service/cart/service/CartService.java
class CartService (line 21) | @Service("cartService")
method addProductCount (line 27) | @Override
method subProductCount (line 33) | @Override
method getAllProductIds (line 40) | @Override
method getChooseProductIds (line 54) | @Override
method getCounts (line 66) | @Override
method deleteProduct (line 72) | @Override
method getShoppingCart (line 77) | @Override
method addProduct (line 100) | @Override
method changeStatus (line 106) | @Override
method getChooseProductInfo (line 122) | @Override
method deletedChooseProduct (line 139) | @Override
method chooseAllProduct (line 150) | @Override
method unchooseAllProduct (line 158) | @Override
method exists (line 166) | @Override
method changeChooseStatus (line 175) | @Override
method changeUnchooseStatus (line 184) | @Override
method getCart (line 198) | private String getCart(String userId) {
method chooseProduct (line 202) | private String chooseProduct(String productId) {
method noChooseProduct (line 205) | private String noChooseProduct(String productId) {
method getProductFlag (line 209) | private String getProductFlag(String userId, String productId) {
FILE: weixin-service-cart/src/test/java/com/cheng/weixin/cart/TestAll.java
class TestAll (line 10) | public class TestAll {
method test01 (line 11) | @Test
FILE: weixin-service-cart/src/test/java/com/cheng/weixin/cart/TestCart.java
class TestCart (line 19) | @RunWith(SpringJUnit4ClassRunner.class)
method testAdd (line 25) | @Test
method testGet (line 31) | @Test
method testGetAll (line 37) | @Test
method testDelete (line 43) | @Test
method testGetChooseProductInfo (line 47) | @Test
method testchangeStatus (line 53) | @Test
method testUnChooseAllProduct (line 61) | @Test
method testChooseAllProduct (line 66) | @Test
FILE: weixin-service-comment/src/main/java/com/cheng/weixin/service/comment/dao/CommentDaoMapper.java
type CommentDaoMapper (line 12) | @Repository
FILE: weixin-service-comment/src/main/java/com/cheng/weixin/service/comment/service/CommentService.java
class CommentService (line 16) | @Service("commentService")
method getByProductId (line 21) | @Override
FILE: weixin-service-comment/src/test/java/com/cheng/comment/test/TestMain.java
class TestMain (line 19) | @RunWith(SpringJUnit4ClassRunner.class)
method test01 (line 25) | @Test
FILE: weixin-service-httpclient/src/main/java/com/cheng/weixin/service/httpclient/service/HttpClientService.java
class HttpClientService (line 31) | @Service("httpClientService")
method doGet (line 44) | public String doGet(String url) {
method doPost (line 69) | public String doPost(String url, String data) {
method postMedia (line 96) | public String postMedia(String url, String path) {
method getMidie (line 122) | public void getMidie(String url, String path) {
method getResponseContent (line 148) | private String getResponseContent(CloseableHttpResponse response, Http...
method closeResponse (line 160) | private void closeResponse(CloseableHttpResponse response) {
method closeInputStream (line 168) | private void closeInputStream(InputStream is) {
FILE: weixin-service-httpclient/src/main/java/com/cheng/weixin/service/httpclient/utils/ClientEvictExpiredConnections.java
class ClientEvictExpiredConnections (line 10) | public class ClientEvictExpiredConnections extends Thread {
method ClientEvictExpiredConnections (line 15) | public ClientEvictExpiredConnections(HttpClientConnectionManager connM...
method run (line 18) | @Override
method shutdown (line 33) | public void shutdown() {
FILE: weixin-service-item/src/main/java/com/cheng/weixin/service/item/dao/PictureDaoMapper.java
type PictureDaoMapper (line 12) | @Repository
FILE: weixin-service-item/src/main/java/com/cheng/weixin/service/item/dao/ProductDaoMapper.java
type ProductDaoMapper (line 12) | @Repository
FILE: weixin-service-item/src/main/java/com/cheng/weixin/service/item/dao/ProductTypeDaoMapper.java
type ProductTypeDaoMapper (line 12) | @Repository
FILE: weixin-service-item/src/main/java/com/cheng/weixin/service/item/service/ProductService.java
class ProductService (line 20) | @Service("productService")
method getById (line 29) | @Override
method updateStockById (line 34) | @Override
method getByTypeId (line 44) | @Override
method getDefaultPictureById (line 51) | @Override
method getIndex (line 59) | @Override
method getProductType (line 69) | @Override
method getAllPicture (line 74) | @Override
method getDefaultPictureByProductId (line 79) | @Override
method getShowPictureByProductId (line 85) | @Override
FILE: weixin-service-item/src/test/java/com/cheng/item/test/TestAll.java
class TestAll (line 10) | public class TestAll {
FILE: weixin-service-log/src/main/java/com/cheng/weixin/service/log/dao/LogDaoMapper.java
type LogDaoMapper (line 12) | @Repository
FILE: weixin-service-log/src/main/java/com/cheng/weixin/service/log/service/LogMQService.java
class LogMQService (line 14) | public class LogMQService {
method saveLogs (line 20) | public void saveLogs() {
FILE: weixin-service-log/src/main/java/com/cheng/weixin/service/log/service/LogService.java
class LogService (line 19) | @Service("logService")
method saveLog (line 25) | @Override
class SaveLogThread (line 41) | public class SaveLogThread implements Runnable {
method SaveLogThread (line 45) | public SaveLogThread(Log log, /*Object handler,*/ Exception ex) {
method run (line 50) | @Override
FILE: weixin-service-log/src/test/java/com/cheng/log/test/TestMain.java
class TestMain (line 15) | @RunWith(SpringJUnit4ClassRunner.class)
method test01 (line 47) | @Test
FILE: weixin-service-message/src/main/java/com/cheng/weixin/service/message/dao/EmailTemplateDaoMapper.java
type EmailTemplateDaoMapper (line 12) | @Repository
FILE: weixin-service-message/src/main/java/com/cheng/weixin/service/message/dao/SmsHistoryDaoMapper.java
type SmsHistoryDaoMapper (line 12) | @Repository
method loadOneDayCount (line 19) | int loadOneDayCount(SmsHistory smsHistory);
method loadCurrentIpCount (line 25) | int loadCurrentIpCount(SmsHistory smsHistory);
method loadNewByPhoneAndType (line 32) | SmsHistory loadNewByPhoneAndType(SmsHistory smsHistory);
FILE: weixin-service-message/src/main/java/com/cheng/weixin/service/message/dao/SmsTemplateDaoMapper.java
type SmsTemplateDaoMapper (line 12) | @Repository
method loadRegTemp (line 18) | SmsTemplate loadRegTemp();
FILE: weixin-service-message/src/main/java/com/cheng/weixin/service/message/service/SmsService.java
class SmsService (line 25) | @Service("smsService")
method getCountByDay (line 34) | @Override
method getCountByIp (line 42) | @Override
method sendValidate (line 50) | @Override
method getInfoByPhoneAndType (line 85) | @Override
method sendNotice (line 93) | @Override
method sendActivity (line 115) | @Override
FILE: weixin-service-message/src/test/java/com/cheng/test/TestMain.java
class TestMain (line 18) | @RunWith(SpringJUnit4ClassRunner.class)
method testSendMsgCode (line 24) | @Test
method testGetCountByDay (line 33) | @Test
method testGetCountByIP (line 38) | @Test
method checkMsgCode (line 43) | @Test
FILE: weixin-service-order/src/main/java/com/cheng/weixin/service/order/dao/ArayacakAddressDaoMapper.java
type ArayacakAddressDaoMapper (line 12) | @Repository
FILE: weixin-service-order/src/main/java/com/cheng/weixin/service/order/dao/ArayacakDeliveryTimeDaoMapper.java
type ArayacakDeliveryTimeDaoMapper (line 11) | public interface ArayacakDeliveryTimeDaoMapper extends BaseDaoMapper<Ara...
FILE: weixin-service-order/src/main/java/com/cheng/weixin/service/order/dao/CityDaoMapper.java
type CityDaoMapper (line 12) | @Repository
FILE: weixin-service-order/src/main/java/com/cheng/weixin/service/order/dao/CountryDaoMapper.java
type CountryDaoMapper (line 12) | @Repository
FILE: weixin-service-order/src/main/java/com/cheng/weixin/service/order/dao/DeliveryTimeDaoMapper.java
type DeliveryTimeDaoMapper (line 12) | @Repository
FILE: weixin-service-order/src/main/java/com/cheng/weixin/service/order/dao/DeliveryTypeDaoMapper.java
type DeliveryTypeDaoMapper (line 11) | @Deprecated
FILE: weixin-service-order/src/main/java/com/cheng/weixin/service/order/dao/FlowStatusDaoMapper.java
type FlowStatusDaoMapper (line 12) | @Repository
FILE: weixin-service-order/src/main/java/com/cheng/weixin/service/order/dao/OrderInfoDaoMapper.java
type OrderInfoDaoMapper (line 14) | @Repository
method loadByUserIdOrderByCreateDate (line 21) | List<OrderInfo> loadByUserIdOrderByCreateDate(OrderInfo orderInfo);
FILE: weixin-service-order/src/main/java/com/cheng/weixin/service/order/dao/OrderProductDetailDaoMapper.java
type OrderProductDetailDaoMapper (line 14) | @Repository
method loadByOrder (line 21) | List<OrderProductDetail> loadByOrder(OrderProductDetail orderDetail);
FILE: weixin-service-order/src/main/java/com/cheng/weixin/service/order/dao/OrderReturnDaoMapper.java
type OrderReturnDaoMapper (line 11) | public interface OrderReturnDaoMapper extends BaseDaoMapper<OrderReturn> {
FILE: weixin-service-order/src/main/java/com/cheng/weixin/service/order/dao/OrderReturnDetailDaoMapper.java
type OrderReturnDetailDaoMapper (line 11) | public interface OrderReturnDetailDaoMapper extends BaseDaoMapper<OrderR...
FILE: weixin-service-order/src/main/java/com/cheng/weixin/service/order/dao/PayDaoMapper.java
type PayDaoMapper (line 12) | @Repository
FILE: weixin-service-order/src/main/java/com/cheng/weixin/service/order/dao/ProvinceDaoMapper.java
type ProvinceDaoMapper (line 12) | @Repository
FILE: weixin-service-order/src/main/java/com/cheng/weixin/service/order/dao/RefundTypeDaoMapper.java
type RefundTypeDaoMapper (line 11) | public interface RefundTypeDaoMapper extends BaseDaoMapper<RefundType> {
FILE: weixin-service-order/src/main/java/com/cheng/weixin/service/order/dao/ReturnReasonDaoMapper.java
type ReturnReasonDaoMapper (line 11) | public interface ReturnReasonDaoMapper extends BaseDaoMapper<ReturnReaso...
FILE: weixin-service-order/src/main/java/com/cheng/weixin/service/order/dao/ReturnStatusDaoMapper.java
type ReturnStatusDaoMapper (line 11) | public interface ReturnStatusDaoMapper extends BaseDaoMapper<ReturnStatu...
FILE: weixin-service-order/src/main/java/com/cheng/weixin/service/order/dao/TownDaoMapper.java
type TownDaoMapper (line 12) | @Repository
FILE: weixin-service-order/src/main/java/com/cheng/weixin/service/order/dao/VillageDaoMapper.java
type VillageDaoMapper (line 12) | @Repository
FILE: weixin-service-order/src/main/java/com/cheng/weixin/service/order/service/OrderService.java
class OrderService (line 19) | @Service("orderService")
method getAllDeliveryTimes (line 37) | @Override
method getDeliveryTime (line 42) | @Override
method getAllPay (line 47) | @Override
method getOrderInfos (line 52) | @Override
method getOrderDetail (line 67) | @Override
method addOrder (line 74) | @Override
method getPay (line 81) | @Override
method getRecommendPay (line 86) | @Override
method getArayacakAddr (line 93) | @Override
method getTownById (line 98) | @Override
method getArayacakAddressById (line 103) | @Override
method getFlowStatusesByPayWay (line 108) | @Override
method getFlowStatusesById (line 115) | @Override
method addOrderDetail (line 122) | @Override
FILE: weixin-service-order/src/test/java/com/cheng/order/test/TestMain.java
class TestMain (line 22) | @RunWith(SpringJUnit4ClassRunner.class)
method test01 (line 28) | @Test
method test02 (line 34) | @Test
method test03 (line 40) | @Test
method test04 (line 46) | @Test
FILE: weixin-service-promotion/src/main/java/com/cheng/weixin/service/promotion/dao/CouponCodeDaoMapper.java
type CouponCodeDaoMapper (line 12) | @Repository
FILE: weixin-service-promotion/src/main/java/com/cheng/weixin/service/promotion/dao/CouponDaoMapper.java
type CouponDaoMapper (line 12) | @Repository
FILE: weixin-service-promotion/src/main/java/com/cheng/weixin/service/promotion/dao/CouponHistoryDaoMapper.java
type CouponHistoryDaoMapper (line 12) | @Repository
FILE: weixin-service-promotion/src/main/java/com/cheng/weixin/service/promotion/service/CouponService.java
class CouponService (line 18) | @Service("couponService")
method getCouponCodeByUser (line 25) | @Override
method getCouponById (line 35) | @Override
method updateCouponUsedById (line 43) | @Override
FILE: weixin-service-rabbitmq/src/main/java/com/cheng/weixin/service/rabbitmq/RabbitLogService.java
class RabbitLogService (line 13) | @Service("rabbitLogService")
method saveLogs (line 18) | @Override
FILE: weixin-service-rabbitmq/src/main/java/com/cheng/weixin/service/rabbitmq/RabbitSmsService.java
class RabbitSmsService (line 13) | @Service("rabbitSmsService")
method sendValidate (line 18) | @Override
method sendCashNotify (line 23) | @Override
FILE: weixin-service-rabbitmq/src/test/java/com/cheng/test/Foo.java
class Foo (line 11) | public class Foo implements MessageListener {
method listen (line 13) | public void listen(Object foo) {
method onMessage (line 17) | @Override
FILE: weixin-service-rabbitmq/src/test/java/com/cheng/test/SpringMain.java
class SpringMain (line 12) | public class SpringMain {
method main (line 14) | public static void main(String args[]) throws Exception {
FILE: weixin-service-rabbitmq/src/test/java/com/cheng/test/TestMain.java
class TestMain (line 17) | @RunWith(SpringJUnit4ClassRunner.class)
method testSendReg (line 25) | @Test
method testSendNotice (line 29) | @Test
method testSendActive (line 33) | @Test
method testSendMsgCode (line 38) | @Test
FILE: weixin-service-rabbitmq/src/test/java/com/cheng/test/UserModel.java
class UserModel (line 8) | public class UserModel {
method getUsername (line 13) | public String getUsername() {
method setUsername (line 17) | public void setUsername(String username) {
method getPassword (line 21) | public String getPassword() {
method setPassword (line 25) | public void setPassword(String password) {
method getSex (line 29) | public String getSex() {
method setSex (line 33) | public void setSex(String sex) {
FILE: weixin-service-redis/src/main/java/com/cheng/weixin/service/redis/service/RedisService.java
class RedisService (line 21) | @Service("redisService")
method remove (line 31) | @Override
method removePattern (line 42) | @Override
method remove (line 54) | @Override
method exists (line 66) | @Override
method get (line 76) | @Override
method set (line 88) | @Override
method set (line 108) | @Override
method flushExpireTime (line 128) | @Override
method increase (line 141) | @Override
method decrease (line 156) | @Override
method deleteField (line 172) | @Override
method batchDeleteField (line 178) | @Override
method getFields (line 184) | @Override
method exists (line 190) | @Override
method getValueByKeyANdField (line 196) | @Override
method getEntries (line 203) | @Override
method put (line 211) | @Override
FILE: weixin-service-redis/src/main/java/com/cheng/weixin/service/redis/service/redis/Function.java
type Function (line 8) | public interface Function<T, E> {
FILE: weixin-service-redis/src/main/java/com/cheng/weixin/service/redis/service/redis/RedisService_bak.java
class RedisService_bak (line 8) | public class RedisService_bak /*implements RpcRedisService*/ {
FILE: weixin-service-redis/src/test/java/com/cheng/test/TestAll.java
class TestAll (line 19) | @RunWith(SpringJUnit4ClassRunner.class)
method test01 (line 25) | @Test
method test02 (line 31) | @Test
method test03 (line 36) | @Test
method test04 (line 41) | @Test
method test05 (line 50) | @Test
FILE: weixin-service-redis/src/test/java/com/cheng/test/TestMain.java
class TestMain (line 14) | public class TestMain {
method main (line 17) | public static void main(String[] args) {
FILE: weixin-service-system/src/main/java/com/cheng/weixin/service/system/dao/AdDaoMapper.java
type AdDaoMapper (line 14) | @Repository
method loadIndexAds (line 20) | List<Ad> loadIndexAds();
FILE: weixin-service-system/src/main/java/com/cheng/weixin/service/system/dao/AdJoinPositionDaoMapper.java
type AdJoinPositionDaoMapper (line 12) | @Repository
FILE: weixin-service-system/src/main/java/com/cheng/weixin/service/system/dao/AdPositionDaoMapper.java
type AdPositionDaoMapper (line 12) | @Repository
FILE: weixin-service-system/src/main/java/com/cheng/weixin/service/system/dao/NoticeDaoMapper.java
type NoticeDaoMapper (line 12) | @Repository
FILE: weixin-service-system/src/main/java/com/cheng/weixin/service/system/dao/NoticeTypeDaoMapper.java
type NoticeTypeDaoMapper (line 13) | @Deprecated
FILE: weixin-service-system/src/main/java/com/cheng/weixin/service/system/dao/SystemParamDaoMapper.java
type SystemParamDaoMapper (line 12) | @Repository
FILE: weixin-service-system/src/main/java/com/cheng/weixin/service/system/service/SystemService.java
class SystemService (line 18) | @Service("systemService")
method getIndexAds (line 29) | @Override
method getIndexNotices (line 39) | @Override
FILE: weixin-service-timer/src/main/java/com/cheng/weixin/service/timer/main/TimerMain.java
class TimerMain (line 13) | public class TimerMain {
method main (line 16) | public static void main(String[] args) {
FILE: weixin-service-timer/src/main/java/com/cheng/weixin/service/timer/token/RefreshAccessTokenTask.java
class RefreshAccessTokenTask (line 18) | @Component
method refreshToken (line 34) | public void refreshToken() {
FILE: weixin-service-user/src/main/java/com/cheng/weixin/service/user/dao/AccountDaoMapper.java
type AccountDaoMapper (line 12) | @Repository
FILE: weixin-service-user/src/main/java/com/cheng/weixin/service/user/dao/AccountLevelDaoMapper.java
type AccountLevelDaoMapper (line 12) | @Repository
FILE: weixin-service-user/src/main/java/com/cheng/weixin/service/user/dao/AccountUpgradeHistoryDaoMapper.java
type AccountUpgradeHistoryDaoMapper (line 12) | @Repository
FILE: weixin-service-user/src/main/java/com/cheng/weixin/service/user/dao/BehaviorDaoMapper.java
type BehaviorDaoMapper (line 12) | @Repository
FILE: weixin-service-user/src/main/java/com/cheng/weixin/service/user/dao/BonusPointRecordDaoMapper.java
type BonusPointRecordDaoMapper (line 14) | @Repository
method loadNewByUSerId (line 22) | BonusPointRecord loadNewByUSerId(BonusPointRecord bonusPointRecord);
method loadByUSerIdAndCurrentMonth (line 28) | List<BonusPointRecord> loadByUSerIdAndCurrentMonth(BonusPointRecord bo...
FILE: weixin-service-user/src/main/java/com/cheng/weixin/service/user/dao/CashRecordDaoMapper.java
type CashRecordDaoMapper (line 12) | @Repository
method loadNewByUser (line 18) | CashRecord loadNewByUser(CashRecord cashRecord);
FILE: weixin-service-user/src/main/java/com/cheng/weixin/service/user/dao/CityDaoMapper.java
type CityDaoMapper (line 12) | @Repository
FILE: weixin-service-user/src/main/java/com/cheng/weixin/service/user/dao/CountryDaoMapper.java
type CountryDaoMapper (line 12) | @Repository
FILE: weixin-service-user/src/main/java/com/cheng/weixin/service/user/dao/CouponRecordDaoMapper.java
type CouponRecordDaoMapper (line 12) | @Repository
method loadByUser (line 19) | CouponRecord loadByUser(CouponRecord couponRecord);
FILE: weixin-service-user/src/main/java/com/cheng/weixin/service/user/dao/DeliveryAddressDaoMapper.java
type DeliveryAddressDaoMapper (line 12) | @Repository
FILE: weixin-service-user/src/main/java/com/cheng/weixin/service/user/dao/MemberDaoMapper.java
type MemberDaoMapper (line 12) | @Repository
FILE: weixin-service-user/src/main/java/com/cheng/weixin/service/user/dao/ProductFocusDaoMapper.java
type ProductFocusDaoMapper (line 12) | @Repository
FILE: weixin-service-user/src/main/java/com/cheng/weixin/service/user/dao/ProvinceDaoMapper.java
type ProvinceDaoMapper (line 12) | @Repository
FILE: weixin-service-user/src/main/java/com/cheng/weixin/service/user/service/UserService.java
class UserService (line 25) | @Service("userService")
method getAccountByLoginName (line 49) | @Override
method getAccountById (line 54) | @Override
method saveAccess (line 59) | @Override
method validateLogin (line 95) | @Override
method getDefaultAddress (line 112) | @Override
method getDeliveryAddress (line 117) | @Override
method getAllDeliveryAddr (line 125) | @Override
method getAccount (line 130) | @Override
method getAccountByUsername (line 137) | @Override
method updateAccount (line 144) | @Override
method addBehavior (line 150) | @Override
method getBonusPointRecord (line 156) | @Override
method getByUSerIdAndCurrentMonth (line 161) | @Override
method addBonusPointRecord (line 170) | @Override
method getCouponRecordByUser (line 176) | @Override
method addCouponRecord (line 181) | @Override
method getNewCashRecord (line 187) | @Override
method addCashRecord (line 192) | @Override
method addProductFocus (line 198) | @Override
method deleteProductFocus (line 205) | @Override
method isProductFocus (line 213) | @Override
method getMemberById (line 219) | @Override
method getMemberByAccountId (line 224) | @Override
method getAccountLevelById (line 231) | @Override
method getAccountLevelByLevel (line 238) | @Override
FILE: weixin-service-user/src/test/java/com/cheng/test/TestAll.java
class TestAll (line 13) | public class TestAll {
method main (line 16) | public static void main(String[] args) {
FILE: weixin-service-user/src/test/java/com/cheng/test/TestMain.java
class TestMain (line 18) | @RunWith(SpringJUnit4ClassRunner.class)
method saveAccess (line 24) | @Test
method getDefaultAddress (line 29) | @Test
method getAllDeliveryAddr (line 35) | @Test
FILE: weixin-service-wxtools/src/main/java/com/cheng/weixin/service/wxtools/dao/WxGroupDaoMapper.java
type WxGroupDaoMapper (line 12) | @Repository
FILE: weixin-service-wxtools/src/main/java/com/cheng/weixin/service/wxtools/dao/WxMenuDaoMapper.java
type WxMenuDaoMapper (line 12) | @Repository
FILE: weixin-service-wxtools/src/main/java/com/cheng/weixin/service/wxtools/httputils/HttpClientService.java
class HttpClientService (line 10) | @Component
FILE: weixin-service-wxtools/src/main/java/com/cheng/weixin/service/wxtools/httputils/HttpUtils.java
class HttpUtils (line 7) | public class HttpUtils {
FILE: weixin-service-wxtools/src/main/java/com/cheng/weixin/service/wxtools/service/WxGroupService.java
class WxGroupService (line 18) | @Service("wxGroupService")
method addGroup (line 26) | @Override
method getAllGroup (line 42) | @Override
method getUserGroup (line 50) | @Override
method updateGroupName (line 62) | @Override
method updateUserGroup (line 71) | @Override
method updateBatchMoveUserGroup (line 81) | @Override
method deleteGroup (line 92) | @Override
FILE: weixin-service-wxtools/src/main/java/com/cheng/weixin/service/wxtools/service/WxMenuService.java
class WxMenuService (line 12) | @Component("wxMenuService")
FILE: weixin-service-wxtools/src/main/java/com/cheng/weixin/service/wxtools/service/msghandle/MessageHandle.java
class MessageHandle (line 32) | @Component("messageHandle")
method reqMsg2Map (line 41) | @SuppressWarnings("unchecked")
method handleResp (line 67) | @Override
method handleUnsubscribe (line 92) | private String handleUnsubscribe(Map<String, String> msgMap) {
method handleMsg (line 102) | private String handleMsg(Map<String, String> msgMap) {
method handleEvent (line 124) | private String handleEvent(Map<String, String> msgMap) {
method textTypeMsgHandle (line 179) | private String textTypeMsgHandle(Map<String, String> msgMap, String co...
method imageTypeMsgHandle (line 194) | private String imageTypeMsgHandle(Map<String, String> msgMap) {
FILE: weixin-service-wxtools/src/main/java/com/cheng/weixin/service/wxtools/utils/XMLUtils.java
class XMLUtils (line 19) | public class XMLUtils {
method msg2XML (line 25) | public static String msg2XML(Serializable msg) {
method createWriter (line 37) | @Override
FILE: weixin-web-manage/src/main/java/com/cheng/weixin/web/manage/controllers/AdminController.java
class AdminController (line 19) | @Controller
method info (line 26) | @RequestMapping(value = "info")
method modifyPwd (line 49) | @RequestMapping(value = "modifyPwd", method = RequestMethod.POST)
method save (line 72) | @RequestMapping(value = "save", method = RequestMethod.POST)
method list (line 89) | @RequestMapping(value = "list", method = RequestMethod.GET)
method checkUserName (line 101) | @ResponseBody
FILE: weixin-web-manage/src/main/java/com/cheng/weixin/web/manage/controllers/BaseController.java
class BaseController (line 14) | public abstract class BaseController {
method addMessage (line 27) | protected void addMessage(Model model, String attribute, String... mes...
FILE: weixin-web-manage/src/main/java/com/cheng/weixin/web/manage/controllers/IndexController.java
class IndexController (line 19) | @Controller
method index (line 22) | @RequestMapping(value = "index", method = RequestMethod.GET)
method home (line 30) | @RequestMapping(value = "home", method = RequestMethod.GET)
method test (line 36) | @RequestMapping(value = "/test", method = RequestMethod.GET)
FILE: weixin-web-manage/src/main/java/com/cheng/weixin/web/manage/controllers/LoginController.java
class LoginController (line 26) | @Controller
method login (line 30) | @RequestMapping(value = "login",method = RequestMethod.GET)
method loginFail (line 40) | @RequestMapping(value = "login", method = RequestMethod.POST)
method unauth (line 59) | @RequestMapping(value = "unauth",method = RequestMethod.GET)
method drawCheckCode (line 67) | @RequestMapping(value = "drawCheckCode",method = RequestMethod.GET)
FILE: weixin-web-manage/src/main/java/com/cheng/weixin/web/manage/interceptor/LogInterceptor.java
class LogInterceptor (line 23) | public class LogInterceptor implements HandlerInterceptor {
method preHandle (line 32) | @Override
method postHandle (line 42) | @Override
method afterCompletion (line 49) | @Override
FILE: weixin-web-manage/src/main/java/com/cheng/weixin/web/manage/security/SystemAuthorizingRealm.java
class SystemAuthorizingRealm (line 31) | public class SystemAuthorizingRealm extends AuthorizingRealm {
method getName (line 38) | @Override
method supports (line 43) | @Override
method doGetAuthenticationInfo (line 48) | @Override
method doGetAuthorizationInfo (line 72) | @Override
class Principal (line 102) | public static class Principal implements Serializable {
method Principal (line 111) | public Principal(Admin admin, boolean mobileLogin) {
method getId (line 117) | public String getId() {
method setId (line 121) | public void setId(String id) {
method getUsername (line 125) | public String getUsername() {
method setUsername (line 129) | public void setUsername(String username) {
method isMobileLogin (line 133) | public boolean isMobileLogin() {
method setMobileLogin (line 137) | public void setMobileLogin(boolean mobileLogin) {
FILE: weixin-web-manage/src/main/java/com/cheng/weixin/web/manage/security/WxFormAuthenticationFilter.java
class WxFormAuthenticationFilter (line 28) | public class WxFormAuthenticationFilter extends FormAuthenticationFilter {
method createToken (line 43) | @Override
method getCaptcha (line 58) | protected String getCaptcha(ServletRequest request) {
method isMobileLogin (line 61) | protected boolean isMobileLogin(ServletRequest request) {
method getMessageParam (line 64) | public String getMessageParam() {
method getMobileLoginParam (line 67) | public String getMobileLoginParam() {
method getCaptchaParam (line 70) | public String getCaptchaParam() {
method onLoginFailure (line 74) | @Override
method onLoginSuccess (line 94) | @Override
FILE: weixin-web-manage/src/main/java/com/cheng/weixin/web/manage/security/WxUsernamePasswordToken.java
class WxUsernamePasswordToken (line 10) | public class WxUsernamePasswordToken extends UsernamePasswordToken {
method WxUsernamePasswordToken (line 16) | public WxUsernamePasswordToken() { super();}
method WxUsernamePasswordToken (line 18) | public WxUsernamePasswordToken(String username, char[] password, boole...
method getCaptcha (line 25) | public String getCaptcha() {
method setCaptcha (line 28) | public void setCaptcha(String captcha) {
method isMobilelogin (line 31) | public boolean isMobilelogin() {
method setMobilelogin (line 34) | public void setMobilelogin(boolean mobilelogin) {
method toString (line 38) | @Override
FILE: weixin-web-manage/src/main/java/com/cheng/weixin/web/manage/utils/UserUtils.java
class UserUtils (line 21) | public class UserUtils {
method get (line 37) | public static Admin get(String id) {
method getAdminByUsername (line 56) | public static Admin getAdminByUsername(String username) {
method clearCache (line 74) | public static void clearCache(Admin admin) {
method clearCache (line 79) | public static void clearCache() {
method getUser (line 89) | public static Admin getUser() {
method getRoles (line 103) | @SuppressWarnings("unchecked")
method getPermissions (line 124) | @SuppressWarnings("unchecked")
method getPrincipal (line 145) | public static SystemAuthorizingRealm.Principal getPrincipal() {
method getSession (line 158) | public static Session getSession() {
method getCache (line 173) | public static Object getCache(String key) {
method getCache (line 183) | public static Object getCache(String key, Object defaultValue) {
method putCache (line 193) | public static void putCache(String key, Object value) {
method removeCache (line 201) | public static void removeCache(String key) {
FILE: weixin-web-manage/src/main/webapp/static/js/plugins/beautifyhtml/beautifyhtml.js
function style_html (line 64) | function style_html(html_source, options, js_beautify, css_beautify) {
FILE: weixin-web-manage/src/main/webapp/static/js/plugins/chosen/chosen.jquery.js
function ctor (line 16) | function ctor() { this.constructor = child; }
function SelectParser (line 19) | function SelectParser() {
function AbstractChosen (line 117) | function AbstractChosen(form_field, options) {
function Chosen (line 546) | function Chosen() {
FILE: weixin-web-manage/src/main/webapp/static/js/plugins/clockpicker/clockpicker.js
function createSvgElement (line 43) | function createSvgElement(name) {
function leadingZero (line 47) | function leadingZero(num) {
function uniqueId (line 53) | function uniqueId(prefix) {
function ClockPicker (line 90) | function ClockPicker(element, options) {
function raiseCallback (line 358) | function raiseCallback(callbackFunction) {
FILE: weixin-web-manage/src/main/webapp/static/js/plugins/codemirror/codemirror.js
function CodeMirror (line 61) | function CodeMirror(place, options) {
function Display (line 121) | function Display(place, doc) {
function loadMode (line 245) | function loadMode(cm) {
function resetModeState (line 250) | function resetModeState(cm) {
function wrappingChanged (line 261) | function wrappingChanged(cm) {
function estimateHeight (line 278) | function estimateHeight(cm) {
function estimateLineHeights (line 296) | function estimateLineHeights(cm) {
function keyMapChanged (line 304) | function keyMapChanged(cm) {
function themeChanged (line 310) | function themeChanged(cm) {
function guttersChanged (line 316) | function guttersChanged(cm) {
function updateGutters (line 324) | function updateGutters(cm) {
function updateGutterSpace (line 339) | function updateGutterSpace(cm) {
function lineLength (line 348) | function lineLength(line) {
function findMaxLine (line 367) | function findMaxLine(cm) {
function setGuttersForLineNumbers (line 383) | function setGuttersForLineNumbers(options) {
function hScrollbarTakesSpace (line 395) | function hScrollbarTakesSpace(cm) {
function measureForScrollbars (line 401) | function measureForScrollbars(cm) {
function updateScrollbars (line 415) | function updateScrollbars(cm, measure) {
function visibleLines (line 472) | function visibleLines(display, doc, viewport) {
function alignHorizontally (line 496) | function alignHorizontally(cm) {
function maybeUpdateLineNumberWidth (line 515) | function maybeUpdateLineNumberWidth(cm) {
function lineNumberFor (line 533) | function lineNumberFor(options, i) {
function compensateForHScroll (line 540) | function compensateForHScroll(display) {
function DisplayUpdate (line 546) | function DisplayUpdate(cm, viewport, force) {
function updateDisplayIfNeeded (line 563) | function updateDisplayIfNeeded(cm, update) {
function postUpdateDisplay (line 631) | function postUpdateDisplay(cm, update) {
function updateDisplaySimple (line 661) | function updateDisplaySimple(cm, viewport) {
function setDocumentHeight (line 673) | function setDocumentHeight(cm, measure) {
function checkForWebkitWidthBug (line 678) | function checkForWebkitWidthBug(cm, measure) {
function updateHeightsInViewport (line 689) | function updateHeightsInViewport(cm) {
function updateWidgetHeight (line 716) | function updateWidgetHeight(line) {
function getDimensions (line 723) | function getDimensions(cm) {
function patchDisplay (line 741) | function patchDisplay(cm, updateNumbersFrom, dims) {
function updateLineForChanges (line 786) | function updateLineForChanges(cm, lineView, lineN, dims) {
function ensureLineWrapped (line 799) | function ensureLineWrapped(lineView) {
function updateLineBackground (line 810) | function updateLineBackground(lineView) {
function getLineContent (line 824) | function getLineContent(cm, lineView) {
function updateLineText (line 837) | function updateLineText(cm, lineView) {
function updateLineClasses (line 852) | function updateLineClasses(lineView) {
function updateLineGutter (line 862) | function updateLineGutter(cm, lineView, lineN, dims) {
function updateLineWidgets (line 889) | function updateLineWidgets(lineView, dims) {
function buildLineElement (line 900) | function buildLineElement(cm, lineView, lineN, dims) {
function insertLineWidgets (line 914) | function insertLineWidgets(lineView, dims) {
function insertLineWidgetsFor (line 920) | function insertLineWidgetsFor(line, lineView, dims, allowAbove) {
function positionLineWidget (line 935) | function positionLineWidget(widget, node, lineView, dims) {
function copyPos (line 965) | function copyPos(x) {return Pos(x.line, x.ch);}
function maxPos (line 966) | function maxPos(a, b) { return cmp(a, b) < 0 ? b : a; }
function minPos (line 967) | function minPos(a, b) { return cmp(a, b) < 0 ? a : b; }
function Selection (line 976) | function Selection(ranges, primIndex) {
function Range (line 1013) | function Range(anchor, head) {
function normalizeSelection (line 1028) | function normalizeSelection(ranges, primIndex) {
function simpleSelection (line 1044) | function simpleSelection(anchor, head) {
function clipLine (line 1050) | function clipLine(doc, n) {return Math.max(doc.first, Math.min(n, doc.fi...
function clipPos (line 1051) | function clipPos(doc, pos) {
function clipToLen (line 1057) | function clipToLen(pos, linelen) {
function isLine (line 1063) | function isLine(doc, l) {return l >= doc.first && l < doc.first + doc.si...
function clipPosArray (line 1064) | function clipPosArray(doc, array) {
function extendRange (line 1079) | function extendRange(doc, range, head, other) {
function extendSelection (line 1098) | function extendSelection(doc, head, other, options) {
function extendSelections (line 1104) | function extendSelections(doc, heads, options) {
function replaceOneSelection (line 1112) | function replaceOneSelection(doc, i, range, options) {
function setSimpleSelection (line 1119) | function setSimpleSelection(doc, anchor, head, options) {
function filterSelectionChange (line 1125) | function filterSelectionChange(doc, sel) {
function setSelectionReplaceHistory (line 1141) | function setSelectionReplaceHistory(doc, sel, options) {
function setSelection (line 1152) | function setSelection(doc, sel, options) {
function setSelectionNoUndo (line 1157) | function setSelectionNoUndo(doc, sel, options) {
function setSelectionInner (line 1169) | function setSelectionInner(doc, sel) {
function reCheckSelection (line 1183) | function reCheckSelection(doc) {
function skipAtomicInSelection (line 1189) | function skipAtomicInSelection(doc, sel, bias, mayClear) {
function skipAtomic (line 1204) | function skipAtomic(doc, pos, bias, mayClear) {
function drawSelection (line 1257) | function drawSelection(cm) {
function showSelection (line 1284) | function showSelection(cm, drawn) {
function updateSelection (line 1293) | function updateSelection(cm) {
function drawSelectionCursor (line 1298) | function drawSelectionCursor(cm, range, output) {
function drawSelectionRange (line 1317) | function drawSelectionRange(cm, range, output) {
function restartBlink (line 1391) | function restartBlink(cm) {
function startWorker (line 1407) | function startWorker(cm, time) {
function highlightWorker (line 1412) | function highlightWorker(cm) {
function findStartLine (line 1454) | function findStartLine(cm, n, precise) {
function getStateBefore (line 1470) | function getStateBefore(cm, n, precise) {
function paddingTop (line 1488) | function paddingTop(display) {return display.lineSpace.offsetTop;}
function paddingVert (line 1489) | function paddingVert(display) {return display.mover.offsetHeight - displ...
function paddingH (line 1490) | function paddingH(display) {
function ensureLineHeights (line 1503) | function ensureLineHeights(cm, lineView, rect) {
function mapFromLineView (line 1524) | function mapFromLineView(lineView, line, lineN) {
function updateExternalMeasurement (line 1537) | function updateExternalMeasurement(cm, line) {
function measureChar (line 1550) | function measureChar(cm, line, ch, bias) {
function findViewForLine (line 1555) | function findViewForLine(cm, lineN) {
function prepareMeasureForLine (line 1568) | function prepareMeasureForLine(cm, line) {
function measureCharPrepared (line 1588) | function measureCharPrepared(cm, prepared, ch, bias, varHeight) {
function measureCharInner (line 1610) | function measureCharInner(cm, prepared, ch, bias) {
function maybeUpdateRectForZooming (line 1702) | function maybeUpdateRectForZooming(measure, rect) {
function clearLineMeasurementCacheFor (line 1712) | function clearLineMeasurementCacheFor(lineView) {
function clearLineMeasurementCache (line 1721) | function clearLineMeasurementCache(cm) {
function clearCaches (line 1728) | function clearCaches(cm) {
function pageScrollX (line 1735) | function pageScrollX() { return window.pageXOffset || (document.document...
function pageScrollY (line 1736) | function pageScrollY() { return window.pageYOffset || (document.document...
function intoCoordSystem (line 1741) | function intoCoordSystem(cm, lineObj, rect, context) {
function fromCoordSystem (line 1763) | function fromCoordSystem(cm, coords, context) {
function charCoords (line 1780) | function charCoords(cm, pos, context, lineObj, bias) {
function cursorCoords (line 1788) | function cursorCoords(cm, pos, context, lineObj, preparedMeasure, varHei...
function estimateCoords (line 1820) | function estimateCoords(cm, pos) {
function PosWithInfo (line 1834) | function PosWithInfo(line, ch, outside, xRel) {
function coordsChar (line 1843) | function coordsChar(cm, x, y) {
function coordsCharInner (line 1864) | function coordsCharInner(cm, lineObj, lineNo, x, y) {
function textHeight (line 1906) | function textHeight(display) {
function charWidth (line 1926) | function charWidth(display) {
function startOperation (line 1948) | function startOperation(cm) {
function fireCallbacksForOps (line 1975) | function fireCallbacksForOps(group) {
function endOperation (line 1992) | function endOperation(cm) {
function endOperations (line 2007) | function endOperations(group) {
function endOperation_R1 (line 2021) | function endOperation_R1(op) {
function endOperation_W1 (line 2033) | function endOperation_W1(op) {
function endOperation_R2 (line 2037) | function endOperation_R2(op) {
function endOperation_W2 (line 2056) | function endOperation_W2(op) {
function endOperation_finish (line 2079) | function endOperation_finish(op) {
function runInOp (line 2135) | function runInOp(cm, f) {
function operation (line 2142) | function operation(cm, f) {
function methodOp (line 2152) | function methodOp(f) {
function docMethodOp (line 2160) | function docMethodOp(f) {
function LineView (line 2175) | function LineView(doc, line, lineN) {
function buildViewArray (line 2187) | function buildViewArray(cm, from, to) {
function regChange (line 2203) | function regChange(cm, from, to, lendiff) {
function regLineChange (line 2268) | function regLineChange(cm, line, type) {
function resetView (line 2282) | function resetView(cm) {
function findViewIndex (line 2290) | function findViewIndex(cm, n) {
function viewCuttingPoint (line 2301) | function viewCuttingPoint(cm, oldN, newN, dir) {
function adjustView (line 2327) | function adjustView(cm, from, to) {
function countDirtyView (line 2348) | function countDirtyView(cm) {
function slowPoll (line 2361) | function slowPoll(cm) {
function fastPoll (line 2372) | function fastPoll(cm) {
function readInput (line 2394) | function readInput(cm) {
function resetInput (line 2486) | function resetInput(cm, typing) {
function focusInput (line 2504) | function focusInput(cm) {
function ensureFocus (line 2509) | function ensureFocus(cm) {
function isReadOnly (line 2513) | function isReadOnly(cm) {
function registerEventHandlers (line 2520) | function registerEventHandlers(cm) {
function onResize (line 2654) | function onResize(cm) {
function eventInWidget (line 2664) | function eventInWidget(display, e) {
function posFromMouse (line 2675) | function posFromMouse(cm, e, liberal, forRect) {
function onMouseDown (line 2699) | function onMouseDown(e) {
function leftButtonDown (line 2737) | function leftButtonDown(cm, e, start) {
function leftButtonStartDrag (line 2761) | function leftButtonStartDrag(cm, e, start, modifier) {
function leftButtonSelect (line 2788) | function leftButtonSelect(cm, e, start, type, addNew) {
function gutterEvent (line 2927) | function gutterEvent(cm, e, type, prevent, signalfn) {
function clickInGutter (line 2950) | function clickInGutter(cm, e) {
function onDrop (line 2958) | function onDrop(e) {
function onDragStart (line 3008) | function onDragStart(cm, e) {
function setScrollTop (line 3034) | function setScrollTop(cm, val) {
function setScrollLeft (line 3045) | function setScrollLeft(cm, val, isScroller) {
function onScrollWheel (line 3075) | function onScrollWheel(cm, e) {
function doHandleBinding (line 3150) | function doHandleBinding(cm, bound, dropShift) {
function allKeyMaps (line 3171) | function allKeyMaps(cm) {
function handleKeyBinding (line 3180) | function handleKeyBinding(cm, e) {
function handleCharBinding (line 3217) | function handleCharBinding(cm, e, ch) {
function onKeyDown (line 3229) | function onKeyDown(e) {
function showCrossHair (line 3250) | function showCrossHair(cm) {
function onKeyUp (line 3265) | function onKeyUp(e) {
function onKeyPress (line 3270) | function onKeyPress(e) {
function onFocus (line 3284) | function onFocus(cm) {
function onBlur (line 3301) | function onBlur(cm) {
function onContextMenu (line 3316) | function onContextMenu(cm, e) {
function contextMenuInGutter (line 3391) | function contextMenuInGutter(cm, e) {
function adjustForChange (line 3408) | function adjustForChange(pos, change) {
function computeSelAfterChange (line 3417) | function computeSelAfterChange(doc, change) {
function offsetPos (line 3427) | function offsetPos(pos, old, nw) {
function computeReplacedSel (line 3436) | function computeReplacedSel(doc, changes, hint) {
function filterChange (line 3456) | function filterChange(doc, change, update) {
function makeChange (line 3480) | function makeChange(doc, change, ignoreReadOnly) {
function makeChangeInner (line 3502) | function makeChangeInner(doc, change) {
function makeChangeFromHistory (line 3520) | function makeChangeFromHistory(doc, type, allowSelectionOnly) {
function shiftDoc (line 3586) | function shiftDoc(doc, distance) {
function makeChangeSingleDoc (line 3602) | function makeChangeSingleDoc(doc, change, selAfter, spans) {
function makeChangeSingleDocInEditor (line 3635) | function makeChangeSingleDocInEditor(cm, change, spans) {
function replaceRange (line 3692) | function replaceRange(doc, code, from, to, origin) {
function maybeScrollWindow (line 3703) | function maybeScrollWindow(cm, coords) {
function scrollPosIntoView (line 3721) | function scrollPosIntoView(cm, pos, end, margin) {
function scrollIntoView (line 3744) | function scrollIntoView(cm, x1, y1, x2, y2) {
function calculateScrollPos (line 3754) | function calculateScrollPos(cm, x1, y1, x2, y2) {
function addToScrollPos (line 3785) | function addToScrollPos(cm, left, top) {
function ensureCursorVisible (line 3795) | function ensureCursorVisible(cm) {
function resolveScrollToPos (line 3809) | function resolveScrollToPos(cm) {
function indentLine (line 3829) | function indentLine(cm, n, how, aggressive) {
function changeLine (line 3890) | function changeLine(doc, handle, changeType, op) {
function deleteNearSelection (line 3901) | function deleteNearSelection(cm, compute) {
function findPosH (line 3933) | function findPosH(doc, pos, dir, unit, visually) {
function findPosV (line 3984) | function findPosV(cm, pos, dir, unit) {
function interpret (line 4409) | function interpret(val) {
function option (line 4465) | function option(name, deflt, handle, notOnInit) {
function getKeyMap (line 4895) | function getKeyMap(val) {
function lookup (line 4905) | function lookup(map) {
function save (line 4965) | function save() {textarea.value = cm.getValue();}
function markText (line 5209) | function markText(doc, from, to, options, type) {
function markTextShared (line 5302) | function markTextShared(doc, from, to, options, type) {
function findSharedMarkers (line 5317) | function findSharedMarkers(doc) {
function copySharedMarkers (line 5322) | function copySharedMarkers(doc, markers) {
function detachSharedMarkers (line 5334) | function detachSharedMarkers(markers) {
function MarkedSpan (line 5350) | function MarkedSpan(marker, from, to) {
function getMarkedSpanFor (line 5356) | function getMarkedSpanFor(spans, marker) {
function removeMarkedSpan (line 5364) | function removeMarkedSpan(spans, span) {
function addMarkedSpan (line 5370) | function addMarkedSpan(line, span) {
function markedSpansBefore (line 5379) | function markedSpansBefore(old, startCh, isInsert) {
function markedSpansAfter (line 5390) | function markedSpansAfter(old, endCh, isInsert) {
function stretchSpansOverChange (line 5409) | function stretchSpansOverChange(doc, change) {
function clearEmptySpans (line 5470) | function clearEmptySpans(spans) {
function mergeOldSpans (line 5484) | function mergeOldSpans(doc, change) {
function removeReadOnlyRanges (line 5507) | function removeReadOnlyRanges(doc, from, to) {
function detachMarkedSpans (line 5536) | function detachMarkedSpans(line) {
function attachMarkedSpans (line 5543) | function attachMarkedSpans(line, spans) {
function extraLeft (line 5552) | function extraLeft(marker) { return marker.inclusiveLeft ? -1 : 0; }
function extraRight (line 5553) | function extraRight(marker) { return marker.inclusiveRight ? 1 : 0; }
function compareCollapsedMarkers (line 5558) | function compareCollapsedMarkers(a, b) {
function collapsedSpanAtSide (line 5571) | function collapsedSpanAtSide(line, start) {
function collapsedSpanAtStart (line 5581) | function collapsedSpanAtStart(line) { return collapsedSpanAtSide(line, t...
function collapsedSpanAtEnd (line 5582) | function collapsedSpanAtEnd(line) { return collapsedSpanAtSide(line, fal...
function conflictingCollapsedRange (line 5587) | function conflictingCollapsedRange(doc, lineNo, from, to, marker) {
function visualLine (line 5607) | function visualLine(line) {
function visualLineContinued (line 5616) | function visualLineContinued(line) {
function visualLineNo (line 5627) | function visualLineNo(doc, lineN) {
function visualLineEndNo (line 5634) | function visualLineEndNo(doc, lineN) {
function lineIsHidden (line 5646) | function lineIsHidden(doc, line) {
function lineIsHiddenInner (line 5657) | function lineIsHiddenInner(doc, line, span) {
function adjustScrollWhenAboveVisible (line 5685) | function adjustScrollWhenAboveVisible(cm, line, diff) {
function widgetHeight (line 5714) | function widgetHeight(widget) {
function addLineWidget (line 5725) | function addLineWidget(cm, handle, node, options) {
function updateLine (line 5759) | function updateLine(line, text, markedSpans, estimateHeight) {
function cleanUpLine (line 5771) | function cleanUpLine(line) {
function extractLineClasses (line 5776) | function extractLineClasses(type, output) {
function callBlankLine (line 5790) | function callBlankLine(mode, state) {
function readToken (line 5797) | function readToken(mode, stream, state) {
function runMode (line 5806) | function runMode(cm, text, mode, state, f, lineClasses, forceToEnd) {
function highlightLine (line 5843) | function highlightLine(cm, line, state, forceToEnd) {
function getLineStyles (line 5881) | function getLineStyles(cm, line) {
function processLine (line 5894) | function processLine(cm, text, state, startAt) {
function interpretTokenStyle (line 5909) | function interpretTokenStyle(style, options) {
function buildLineContent (line 5921) | function buildLineContent(cm, lineView) {
function defaultSpecialCharPlaceholder (line 5969) | function defaultSpecialCharPlaceholder(ch) {
function buildToken (line 5977) | function buildToken(builder, text, style, startStyle, endStyle, title) {
function buildTokenSplitSpaces (line 6027) | function buildTokenSplitSpaces(inner) {
function buildTokenBadBidi (line 6041) | function buildTokenBadBidi(inner, order) {
function buildCollapsedSpan (line 6060) | function buildCollapsedSpan(builder, size, marker, ignoreWidget) {
function insertLineContent (line 6071) | function insertLineContent(line, builder, styles) {
function isWholeLineUpdate (line 6135) | function isWholeLineUpdate(doc, change) {
function updateDoc (line 6141) | function updateDoc(doc, change, markedSpans, estimateHeight) {
function LeafChunk (line 6199) | function LeafChunk(lines) {
function BranchChunk (line 6239) | function BranchChunk(children) {
function linkedDocs (line 6688) | function linkedDocs(doc, f, sharedHistOnly) {
function attachDoc (line 6703) | function attachDoc(cm, doc) {
function getLine (line 6717) | function getLine(doc, n) {
function getBetween (line 6732) | function getBetween(doc, start, end) {
function getLines (line 6744) | function getLines(doc, from, to) {
function updateLineHeight (line 6752) | function updateLineHeight(line, height) {
function lineNo (line 6759) | function lineNo(line) {
function lineAtHeight (line 6773) | function lineAtHeight(chunk, h) {
function heightAtLine (line 6794) | function heightAtLine(lineObj) {
function getOrder (line 6816) | function getOrder(line) {
function History (line 6824) | function History(startGen) {
function historyChangeFromChange (line 6841) | function historyChangeFromChange(doc, change) {
function clearSelectionEvents (line 6850) | function clearSelectionEvents(array) {
function lastChangeEvent (line 6860) | function lastChangeEvent(hist, force) {
function addChangeToHistory (line 6875) | function addChangeToHistory(doc, change, selAfter, opId) {
function selectionEventCanBeMerged (line 6917) | function selectionEventCanBeMerged(doc, origin, prev, sel) {
function addSelectionToHistory (line 6930) | function addSelectionToHistory(doc, sel, opId, options) {
function pushSelectionToHistory (line 6952) | function pushSelectionToHistory(sel, dest) {
function attachLocalSpans (line 6959) | function attachLocalSpans(doc, change, from, to) {
function removeClearedSpans (line 6970) | function removeClearedSpans(spans) {
function getOldSpans (line 6980) | function getOldSpans(doc, change) {
function copyHistoryArray (line 6990) | function copyHistoryArray(events, newGroup, instantiateSel) {
function rebaseHistSelSingle (line 7015) | function rebaseHistSelSingle(pos, from, to, diff) {
function rebaseHistArray (line 7031) | function rebaseHistArray(array, from, to, diff) {
function rebaseHist (line 7059) | function rebaseHist(hist, change) {
function e_defaultPrevented (line 7078) | function e_defaultPrevented(e) {
function e_target (line 7083) | function e_target(e) {return e.target || e.srcElement;}
function e_button (line 7084) | function e_button(e) {
function signalLater (line 7141) | function signalLater(emitter, type /*, values...*/) {
function fireOrphanDelayed (line 7158) | function fireOrphanDelayed() {
function signalDOMEvent (line 7167) | function signalDOMEvent(cm, e, override) {
function signalCursorActivity (line 7172) | function signalCursorActivity(cm) {
function hasHandler (line 7180) | function hasHandler(emitter, type) {
function eventMixin (line 7187) | function eventMixin(ctor) {
function Delayed (line 7204) | function Delayed() {this.id = null;}
function findColumn (line 7229) | function findColumn(string, goal, tabSize) {
function spaceStr (line 7244) | function spaceStr(n) {
function lst (line 7250) | function lst(arr) { return arr[arr.length-1]; }
function indexOf (line 7258) | function indexOf(array, elt) {
function map (line 7264) | function map(array, f) {
function createObj (line 7271) | function createObj(base, props) {
function copyObj (line 7284) | function copyObj(obj, target, overwrite) {
function bind (line 7292) | function bind(f) {
function isWordChar (line 7302) | function isWordChar(ch, helper) {
function isEmpty (line 7308) | function isEmpty(obj) {
function isExtendingChar (line 7319) | function isExtendingChar(ch) { return ch.charCodeAt(0) >= 768 && extendi...
function elt (line 7323) | function elt(tag, content, className, style) {
function removeChildren (line 7348) | function removeChildren(e) {
function removeChildrenAndAdd (line 7354) | function removeChildrenAndAdd(parent, e) {
function contains (line 7358) | function contains(parent, child) {
function activeElt (line 7365) | function activeElt() { return document.activeElement; }
function classTest (line 7373) | function classTest(cls) { return new RegExp("\\b" + cls + "\\b\\s*"); }
function rmClass (line 7374) | function rmClass(node, cls) {
function addClass (line 7378) | function addClass(node, cls) {
function joinClasses (line 7381) | function joinClasses(a, b) {
function forEachCodeMirror (line 7394) | function forEachCodeMirror(f) {
function ensureGlobalHandlers (line 7404) | function ensureGlobalHandlers() {
function registerGlobalHandlers (line 7409) | function registerGlobalHandlers() {
function scrollbarWidth (line 7437) | function scrollbarWidth(measure) {
function zeroWidthElement (line 7447) | function zeroWidthElement(measure) {
function hasBadBidiRects (line 7460) | function hasBadBidiRects(measure) {
function hasBadZoomedRects (line 7507) | function hasBadZoomedRects(measure) {
function iterateBidiSections (line 7536) | function iterateBidiSections(order, from, to, f) {
function bidiLeft (line 7549) | function bidiLeft(part) { return part.level % 2 ? part.to : part.from; }
function bidiRight (line 7550) | function bidiRight(part) { return part.level % 2 ? part.from : part.to; }
function lineLeft (line 7552) | function lineLeft(line) { var order = getOrder(line); return order ? bid...
function lineRight (line 7553) | function lineRight(line) {
function lineStart (line 7559) | function lineStart(cm, lineN) {
function lineEnd (line 7567) | function lineEnd(cm, lineN) {
function lineStartSmart (line 7577) | function lineStartSmart(cm, pos) {
function compareBidiLevel (line 7589) | function compareBidiLevel(order, a, b) {
function getBidiPartAt (line 7596) | function getBidiPartAt(order, pos) {
function moveInLine (line 7616) | function moveInLine(line, pos, dir, byUnit) {
function moveVisually (line 7628) | function moveVisually(line, start, dir, byUnit) {
function moveLogically (line 7651) | function moveLogically(line, start, dir, byUnit) {
function charType (line 7685) | function charType(code) {
function BidiSpan (line 7700) | function BidiSpan(level, from, to) {
FILE: weixin-web-manage/src/main/webapp/static/js/plugins/codemirror/mode/javascript/javascript.js
function kw (line 27) | function kw(type) {return {type: type, style: "keyword"};}
function readRegexp (line 73) | function readRegexp(stream) {
function ret (line 88) | function ret(tp, style, cont) {
function tokenBase (line 92) | function tokenBase(stream, state) {
function tokenString (line 144) | function tokenString(quote) {
function tokenComment (line 160) | function tokenComment(stream, state) {
function tokenQuasi (line 172) | function tokenQuasi(stream, state) {
function findFatArrow (line 192) | function findFatArrow(stream, state) {
function JSLexical (line 222) | function JSLexical(indented, column, type, align, prev, info) {
function inScope (line 231) | function inScope(state, varname) {
function parseJS (line 240) | function parseJS(state, style, type, content, stream) {
function pass (line 264) | function pass() {
function cont (line 267) | function cont() {
function register (line 271) | function register(varname) {
function pushcontext (line 292) | function pushcontext() {
function popcontext (line 296) | function popcontext() {
function pushlex (line 300) | function pushlex(type, info) {
function poplex (line 311) | function poplex() {
function expect (line 321) | function expect(wanted) {
function statement (line 330) | function statement(type, value) {
function expression (line 356) | function expression(type) {
function expressionNoComma (line 359) | function expressionNoComma(type) {
function expressionInner (line 362) | function expressionInner(type, noComma) {
function maybeexpression (line 380) | function maybeexpression(type) {
function maybeexpressionNoComma (line 384) | function maybeexpressionNoComma(type) {
function maybeoperatorComma (line 389) | function maybeoperatorComma(type, value) {
function maybeoperatorNoComma (line 393) | function maybeoperatorNoComma(type, value, noComma) {
function quasi (line 408) | function quasi(type, value) {
function continueQuasi (line 413) | function continueQuasi(type) {
function arrowBody (line 420) | function arrowBody(type) {
function arrowBodyNoComma (line 424) | function arrowBodyNoComma(type) {
function maybelabel (line 428) | function maybelabel(type) {
function property (line 432) | function property(type) {
function objprop (line 435) | function objprop(type, value) {
function getterSetter (line 449) | function getterSetter(type) {
function afterprop (line 454) | function afterprop(type) {
function commasep (line 458) | function commasep(what, end) {
function contCommasep (line 473) | function contCommasep(what, end, info) {
function block (line 478) | function block(type) {
function maybetype (line 482) | function maybetype(type) {
function typedef (line 485) | function typedef(type) {
function vardef (line 488) | function vardef() {
function pattern (line 491) | function pattern(type, value) {
function proppattern (line 496) | function proppattern(type, value) {
function maybeAssign (line 504) | function maybeAssign(_type, value) {
function vardefCont (line 507) | function vardefCont(type) {
function maybeelse (line 510) | function maybeelse(type, value) {
function forspec (line 513) | function forspec(type) {
function forspec1 (line 516) | function forspec1(type) {
function formaybeinof (line 522) | function formaybeinof(_type, value) {
function forspec2 (line 526) | function forspec2(type, value) {
function forspec3 (line 531) | function forspec3(type) {
function functiondef (line 534) | function functiondef(type, value) {
function funarg (line 539) | function funarg(type) {
function className (line 543) | function className(type, value) {
function classNameAfter (line 546) | function classNameAfter(type, value) {
function classBody (line 550) | function classBody(type, value) {
function classGetterSetter (line 563) | function classGetterSetter(type) {
function afterModule (line 568) | function afterModule(type, value) {
function afterExport (line 572) | function afterExport(_type, value) {
function afterImport (line 577) | function afterImport(type) {
function importSpec (line 581) | function importSpec(type, value) {
function maybeFrom (line 586) | function maybeFrom(_type, value) {
function arrayLiteral (line 589) | function arrayLiteral(type) {
function maybeArrayComprehension (line 593) | function maybeArrayComprehension(type) {
function comprehension (line 598) | function comprehension(type) {
function isContinuedStatement (line 603) | function isContinuedStatement(state, textAfter) {
FILE: weixin-web-manage/src/main/webapp/static/js/plugins/dataTables/jquery.dataTables.js
function _fnHungarianMap (line 272) | function _fnHungarianMap ( o )
function _fnCamelToHungarian (line 310) | function _fnCamelToHungarian ( src, user, force )
function _fnLanguageCompat (line 342) | function _fnLanguageCompat( oLanguage )
function _fnCompatOpts (line 384) | function _fnCompatOpts ( init )
function _fnCompatCols (line 405) | function _fnCompatCols ( init )
function _fnBrowserDetect (line 419) | function _fnBrowserDetect( settings )
function _fnAddColumn (line 472) | function _fnAddColumn( oSettings, nTh )
function _fnColumnOptions (line 524) | function _fnColumnOptions( oSettings, iCol, oOptions )
function _fnAdjustColumnSizing (line 622) | function _fnAdjustColumnSizing ( settings )
function _fnVisibleToColumnIndex (line 654) | function _fnVisibleToColumnIndex( oSettings, iMatch )
function _fnColumnIndexToVisible (line 672) | function _fnColumnIndexToVisible( oSettings, iMatch )
function _fnVisbleColumns (line 687) | function _fnVisbleColumns( oSettings )
function _fnGetColumns (line 701) | function _fnGetColumns( oSettings, sParam )
function _fnColumnTypes (line 715) | function _fnColumnTypes ( settings )
function _fnApplyColumnDefs (line 779) | function _fnApplyColumnDefs( oSettings, aoColDefs, aoCols, fn )
function _fnAddData (line 858) | function _fnAddData ( oSettings, aDataIn, nTr, anTds )
function _fnAddTr (line 906) | function _fnAddTr( settings, trs )
function _fnNodeToDataIndex (line 929) | function _fnNodeToDataIndex( oSettings, n )
function _fnNodeToColumnIndex (line 943) | function _fnNodeToColumnIndex( oSettings, iRow, n )
function _fnGetRowData (line 958) | function _fnGetRowData( oSettings, iRow, sSpecific, aiColumns )
function _fnGetCellData (line 978) | function _fnGetCellData( oSettings, iRow, iCol, sSpecific )
function _fnSetCellData (line 1023) | function _fnSetCellData( oSettings, iRow, iCol, val )
function _fnSplitObjNotation (line 1041) | function _fnSplitObjNotation( str )
function _fnGetObjectDataFn (line 1056) | function _fnGetObjectDataFn( mSource )
function _fnSetObjectDataFn (line 1176) | function _fnSetObjectDataFn( mSource )
function _fnGetDataMaster (line 1285) | function _fnGetDataMaster ( settings )
function _fnClearTable (line 1296) | function _fnClearTable( settings )
function _fnDeleteIndex (line 1311) | function _fnDeleteIndex( a, iTarget, splice )
function _fnInvalidateRow (line 1346) | function _fnInvalidateRow( settings, rowIdx, src, column )
function _fnGetRowElements (line 1397) | function _fnGetRowElements( settings, row )
function _fnCreateTr (line 1461) | function _fnCreateTr ( oSettings, iRow, nTrIn, anTds )
function _fnRowAttributes (line 1534) | function _fnRowAttributes( row )
function _fnBuildHead (line 1568) | function _fnBuildHead( oSettings )
function _fnDrawHead (line 1654) | function _fnDrawHead( oSettings, aoSource, bIncludeHidden )
function _fnDraw (line 1751) | function _fnDraw( oSettings )
function _fnReDraw (line 1890) | function _fnReDraw( settings, holdPosition )
function _fnAddOptionsHtml (line 1922) | function _fnAddOptionsHtml ( oSettings )
function _fnDetectHeader (line 2085) | function _fnDetectHeader ( aLayout, nThead )
function _fnGetUniqueThs (line 2160) | function _fnGetUniqueThs ( oSettings, nHeader, aLayout )
function _fnBuildAjax (line 2199) | function _fnBuildAjax( oSettings, data, fn )
function _fnAjaxUpdate (line 2313) | function _fnAjaxUpdate( oSettings )
function _fnAjaxParameters (line 2343) | function _fnAjaxParameters( settings )
function _fnAjaxUpdateDraw (line 2444) | function _fnAjaxUpdateDraw ( settings, json )
function _fnAjaxDataSrc (line 2494) | function _fnAjaxDataSrc ( oSettings, json )
function _fnFeatureHtmlFilter (line 2518) | function _fnFeatureHtmlFilter ( settings )
function _fnFilterComplete (line 2589) | function _fnFilterComplete ( oSettings, oInput, iForce )
function _fnFilterCustom (line 2638) | function _fnFilterCustom( oSettings )
function _fnFilterColumn (line 2676) | function _fnFilterColumn ( settings, searchStr, colIdx, regex, smart, ca...
function _fnFilter (line 2706) | function _fnFilter( settings, input, force, regex, smart, caseInsensitive )
function _fnFilterCreateSearch (line 2758) | function _fnFilterCreateSearch( sSearch, bRegex, bSmart, bCaseInsensitive )
function _fnEscapeRegex (line 2782) | function _fnEscapeRegex ( sVal )
function _fnFilterData (line 2795) | function _fnFilterData ( settings )
function _fnFeatureHtmlInfo (line 2855) | function _fnFeatureHtmlInfo ( settings )
function _fnUpdateInfo (line 2890) | function _fnUpdateInfo ( settings )
function _fnInfoMacros (line 2928) | function _fnInfoMacros ( settings, str )
function _fnInitialise (line 2955) | function _fnInitialise ( settings )
function _fnInitComplete (line 3036) | function _fnInitComplete ( settings, json )
function _fnLengthChange (line 3050) | function _fnLengthChange ( settings, val )
function _fnFeatureHtmlLength (line 3068) | function _fnFeatureHtmlLength ( settings )
function _fnFeatureHtmlPaginate (line 3128) | function _fnFeatureHtmlPaginate ( settings )
function _fnPageChange (line 3189) | function _fnPageChange ( settings, action, redraw )
function _fnFeatureHtmlProcessing (line 3260) | function _fnFeatureHtmlProcessing ( settings )
function _fnProcessingDisplay (line 3277) | function _fnProcessingDisplay ( settings, show )
function _fnFeatureHtmlTable (line 3292) | function _fnFeatureHtmlTable ( settings )
function _fnScrollDraw (line 3440) | function _fnScrollDraw ( settings )
function _fnApplyToChildren (line 3725) | function _fnApplyToChildren( fn, an1, an2 )
function _fnCalculateColumnWidths (line 3764) | function _fnCalculateColumnWidths ( oSettings )
function _fnThrottle (line 3928) | function _fnThrottle( fn ) {
function _fnConvertToWidth (line 3962) | function _fnConvertToWidth ( width, parent )
function _fnScrollingWidthAdjust (line 3986) | function _fnScrollingWidthAdjust ( settings, n )
function _fnGetWidestNode (line 4007) | function _fnGetWidestNode( settings, colIdx )
function _fnGetMaxLenString (line 4028) | function _fnGetMaxLenString( settings, colIdx )
function _fnStringToCss (line 4052) | function _fnStringToCss( s )
function _fnScrollBarWidth (line 4076) | function _fnScrollBarWidth ()
function _fnSortFlatten (line 4119) | function _fnSortFlatten ( settings )
function _fnSort (line 4187) | function _fnSort ( oSettings )
function _fnSortAria (line 4311) | function _fnSortAria ( settings )
function _fnSortListener (line 4362) | function _fnSortListener ( settings, colIdx, append, callback )
function _fnSortAttachListener (line 4428) | function _fnSortAttachListener ( settings, attachTo, colIdx, callback )
function _fnSortingClasses (line 4460) | function _fnSortingClasses( settings )
function _fnSortData (line 4493) | function _fnSortData( settings, idx )
function _fnSaveState (line 4536) | function _fnSaveState ( oSettings )
function _fnLoadState (line 4572) | function _fnLoadState ( oSettings, oInit )
function _fnSettingsFromNode (line 4644) | function _fnSettingsFromNode ( table )
function _fnLog (line 4663) | function _fnLog( settings, level, msg, tn )
function _fnMap (line 4699) | function _fnMap( ret, src, name, mappedName )
function _fnExtend (line 4741) | function _fnExtend( out, extender, breakRefs )
function _fnBindAction (line 4777) | function _fnBindAction( n, oData, fn )
function _fnCallbackReg (line 4804) | function _fnCallbackReg( oSettings, sStore, fn, sName )
function _fnCallbackFire (line 4830) | function _fnCallbackFire( settings, callbackArr, event, args )
function _fnLengthOverflow (line 4848) | function _fnLengthOverflow ( settings )
function _fnRenderer (line 4870) | function _fnRenderer( settings, type )
function _fnDataSource (line 4899) | function _fnDataSource ( settings )
function _fnExternApiFunc (line 5677) | function _fnExternApiFunc (fn)
function _numbers (line 13467) | function _numbers ( page, pages ) {
FILE: weixin-web-manage/src/main/webapp/static/js/plugins/datapicker/bootstrap-datepicker.js
function UTCDate (line 27) | function UTCDate(){
function UTCToday (line 30) | function UTCToday(){
function alias (line 34) | function alias(method){
function opts_from_el (line 1318) | function opts_from_el(el, prefix){
function opts_from_locale (line 1335) | function opts_from_locale(lang){
function match_part (line 1536) | function match_part(){
FILE: weixin-web-manage/src/main/webapp/static/js/plugins/diff_match_patch/diff_match_patch.js
function diff_match_patch (line 1) | function diff_match_patch(){this.Diff_Timeout=1;this.Diff_EditCost=4;thi...
function c (line 10) | function c(a){for(var b="",c=0,f=-1,g=d.length;f<a.length-1;){f=a.indexO...
function c (line 14) | function c(a,b,c){for(var d=a.substring(c,c+Math.floor(a.length/4)),e=-1...
function b (line 18) | function b(a,b){if(!a||!b)return 6;var c=a.charAt(a.length-1),d=b.charAt...
function d (line 30) | function d(a,d){var e=a/b.length,g=Math.abs(c-d);return!f.Match_Distance...
FILE: weixin-web-manage/src/main/webapp/static/js/plugins/dropzone/dropzone.js
function require (line 12) | function require(name) {
function Emitter (line 72) | function Emitter(obj) {
function mixin (line 84) | function mixin(obj) {
function on (line 122) | function on() {
function ctor (line 267) | function ctor() { this.constructor = child; }
function Dropzone (line 543) | function Dropzone(element, options) {
FILE: weixin-web-manage/src/main/webapp/static/js/plugins/echarts/echarts-all.js
function e (line 1) | function e(e,t){if(!t)return e;if(0===e.indexOf(".")){var i=t.split("/")...
function n (line 1) | function n(t){function i(i,r){if("string"==typeof i){var s=n[i];return s...
function a (line 1) | function a(i,n,a){for(var s=[],l=r[a],h=0,m=Math.min(i.length,n.length);...
function o (line 1) | function o(e){var t=r[e];if(!t)throw new Error("No "+e);if(!t.defined){v...
function t (line 1) | function t(){r.Dispatcher.call(this)}
function i (line 1) | function i(e){e.innerHTML="",this._themeConfig={},this.dom=e,this._conne...
function n (line 1) | function n(e,t,i,n,a){for(var o=e._chartList,r=o.length;r--;){var s=o[r]...
function e (line 1) | function e(e){var n=i._optionRestore[e];if(n)if(n instanceof Array)for(v...
function s (line 1) | function s(){if(V._zr){V._zr.clearAnimation();for(var e=0,t=X.length;t>e...
function t (line 1) | function t(e){return e&&1===e.nodeType&&"string"==typeof e.nodeName}
function i (line 1) | function i(e){if("object"==typeof e&&null!==e){var n=e;if(e instanceof A...
function n (line 1) | function n(e,i,n,o){if(i.hasOwnProperty(n)){var r=e[n];"object"!=typeof ...
function a (line 1) | function a(e,t,i){for(var a in t)n(e,t,a,i);return e}
function o (line 1) | function o(){if(!U)if(e("../dep/excanvas"),window.G_vmlCanvasManager){va...
function r (line 1) | function r(e,t){if(e.indexOf)return e.indexOf(t);for(var i=0,n=e.length;...
function s (line 1) | function s(e,t){function i(){}var n=e.prototype;i.prototype=t.prototype,...
function l (line 1) | function l(e,t,i){if(e&&t)if(e.forEach&&e.forEach===p)e.forEach(t,i);els...
function h (line 1) | function h(e,t,i){if(e&&t){if(e.map&&e.map===c)return e.map(t,i);for(var...
function m (line 1) | function m(e,t,i){if(e&&t){if(e.filter&&e.filter===u)return e.filter(t,i...
function V (line 1) | function V(e,t){return function(){e.apply(t,arguments)}}
function t (line 1) | function t(e){return"undefined"!=typeof e.zrenderX&&e.zrenderX||"undefin...
function i (line 1) | function i(e){return"undefined"!=typeof e.zrenderY&&e.zrenderY||"undefin...
function n (line 1) | function n(e){return"undefined"!=typeof e.zrenderDelta&&e.zrenderDelta||...
function e (line 1) | function e(e){var t=this.os={},i=this.browser={},n=e.match(/Web[kK]it[\/...
function t (line 1) | function t(e){return function(){e._needsRefreshNextFrame&&e.refresh()}}
function t (line 3) | function t(e,t,n,a,r){i.call(this,e,t,n,a,r),this._nameConnector,this._v...
function t (line 3) | function t(e,t,n,a,o){i.call(this,e,t,n,a,o),this.dom=o.dom,this._magicT...
function t (line 3) | function t(e,t,n,a,o){i.call(this,e,t,n,a,o),this.refresh(a)}
function t (line 3) | function t(e,t,o,r,s){i.call(this,e,t,o,r,s),this.dom=s.dom;var l=this;l...
function t (line 4) | function t(e,t,n,a,o){if(!this.query(a,"legend.data"))return void consol...
function e (line 5) | function e(e,t,i,n,a,o,r,s){var l;return"undefined"!=typeof n&&(l=null==...
function t (line 5) | function t(e,t){var i=e._echartsData;if(!t)return i;switch(t){case"serie...
function i (line 5) | function i(e,t,i){switch(e._echartsData=e._echartsData||{},t){case"serie...
function n (line 5) | function n(e,t){t._echartsData={_series:e._echartsData._series,_seriesIn...
function t (line 5) | function t(e){D=e}
function i (line 5) | function i(){D=N}
function n (line 5) | function n(e,t){return e=0|e,t=t||D,t[e%t.length]}
function a (line 5) | function a(e){B=e}
function o (line 5) | function o(){H=B}
function r (line 5) | function r(){return B}
function s (line 5) | function s(e,t,i,n,a,o,r){O||(O=P.getContext());for(var s=O.createRadial...
function l (line 5) | function l(e,t,i,n,a){O||(O=P.getContext());for(var o=O.createLinearGrad...
function h (line 5) | function h(e,t,i){e=p(e),t=p(t),e=I(e),t=I(t);for(var n=[],a=(t[0]-e[0])...
function m (line 5) | function m(e,t){var i=[],n=e.length;if(void 0===t&&(t=20),1===n)i=h(e[0]...
function V (line 5) | function V(e,t){if(t=t||"rgb",e&&(3===e.length||4===e.length)){if(e=C(e,...
function U (line 5) | function U(e){e=L(e),e.indexOf("rgba")<0&&(e=p(e));var t=[],i=0;return e...
function d (line 5) | function d(e,t){if(!E(e))return e;var i=I(e),n=i[3];return"undefined"==t...
function p (line 5) | function p(e){return d(e,"rgba")}
function c (line 5) | function c(e){return d(e,"rgb")}
function u (line 5) | function u(e){return d(e,"hex")}
function y (line 5) | function y(e){return d(e,"hsva")}
function g (line 5) | function g(e){return d(e,"hsv")}
function b (line 5) | function b(e){return d(e,"hsba")}
function f (line 5) | function f(e){return d(e,"hsb")}
function k (line 5) | function k(e){return d(e,"hsla")}
function x (line 5) | function x(e){return d(e,"hsl")}
function _ (line 5) | function _(e){for(var t in G)if(u(G[t])===u(e))return t;return null}
function L (line 5) | function L(e){return String(e).replace(/\s+/g,"")}
function W (line 5) | function W(e){if(G[e]&&(e=G[e]),e=L(e),e=e.replace(/hsv/i,"hsb"),/^#[\da...
function X (line 5) | function X(e,t){if(!E(e))return e;var i=t>0?1:-1;"undefined"==typeof t&&...
function v (line 5) | function v(e){if(!E(e))return e;var t=I(p(e));return t=C(t,function(e){r...
function w (line 5) | function w(e,t,i){if(!E(e)||!E(t))return e;"undefined"==typeof i&&(i=.5)...
function K (line 5) | function K(){return"#"+(Math.random().toString(16)+"0000").slice(2,8)}
function I (line 5) | function I(e){e=W(e);var t=e.match(R);if(null===t)throw new Error("The c...
function J (line 5) | function J(e,t){if(!E(e))return e;null===t&&(t=1);var i=I(p(e));return i...
function C (line 5) | function C(e,t){if("function"!=typeof t)throw new TypeError;for(var i=e?...
function S (line 5) | function S(e,t){return e<=t[0]?e=t[0]:e>=t[1]&&(e=t[1]),e}
function E (line 5) | function E(e){return e instanceof Array||"string"==typeof e}
function F (line 5) | function F(e){var t,i,n,a=e[0],o=e[1],r=e[2];if(0===o)t=255*r,i=255*r,n=...
function T (line 5) | function T(e){var t,i,n,a=e[0],o=e[1],r=e[2];if(0===o)t=255*r,i=255*r,n=...
function z (line 5) | function z(e,t,i){return 0>i&&(i+=1),i>1&&(i-=1),1>6*i?e+6*(t-e)*i:1>2*i...
function A (line 5) | function A(e){var t,i,n=e[0]/255,a=e[1]/255,o=e[2]/255,r=Math.min(n,a,o)...
function M (line 5) | function M(e){var t,i,n=e[0]/255,a=e[1]/255,o=e[2]/255,r=Math.min(n,a,o)...
function t (line 5) | function t(e,t,i,a,o){n.call(this,e,t,i,a,o);var r=this;if(r._onclick=fu...
function i (line 5) | function i(e,t){var i=2,n=t.x+i,a=t.y+i+2,r=t.width-i,s=t.height-i,l=t.s...
function e (line 5) | function e(e){return null!=h[e].name?h[e].name:h[e]+""}
function t (line 5) | function t(e){i.call(this,e)}
function t (line 5) | function t(e){i.call(this,e)}
function t (line 5) | function t(e){i.call(this,e)}
function t (line 5) | function t(e){i.call(this,e)}
function t (line 7) | function t(e){i.call(this,e)}
function t (line 7) | function t(e){i.call(this,e)}
function e (line 7) | function e(){return this.context_||(this.context_=new f(this))}
function t (line 7) | function t(e,t){var i=O.call(arguments,2);return function(){return e.app...
function i (line 7) | function i(e){return String(e).replace(/&/g,"&").replace(/"/g,""...
function n (line 7) | function n(e,t,i){e.namespaces[t]||e.namespaces.add(t,i,"#default#VML")}
function a (line 7) | function a(e){if(n(e,"g_vml_","urn:schemas-microsoft-com:vml"),n(e,"g_o_...
function o (line 7) | function o(e){var t=e.srcElement;switch(e.propertyName){case"width":t.ge...
function r (line 7) | function r(e){var t=e.srcElement;t.firstChild&&(t.firstChild.style.width...
function s (line 7) | function s(){return[[1,0,0],[0,1,0],[0,0,1]]}
function l (line 7) | function l(e,t){for(var i=s(),n=0;3>n;n++)for(var a=0;3>a;a++){for(var o...
function h (line 7) | function h(e,t){t.fillStyle=e.fillStyle,t.lineCap=e.lineCap,t.lineJoin=e...
function m (line 7) | function m(e){var t=e.indexOf("(",3),i=e.indexOf(")",t+1),n=e.substring(...
function V (line 7) | function V(e){return parseFloat(e)/100}
function U (line 7) | function U(e,t,i){return Math.min(i,Math.max(t,e))}
function d (line 7) | function d(e){var t,i,n,a,o,r;if(a=parseFloat(e[0])/360%360,0>a&&a++,o=U...
function p (line 7) | function p(e,t,i){return 0>i&&i++,i>1&&i--,1>6*i?e+6*(t-e)*i:1>2*i?t:2>3...
function c (line 7) | function c(e){if(e in R)return R[e];var t,i=1;if(e=String(e),"#"==e.char...
function u (line 7) | function u(e){if(Y[e])return Y[e];var t,i=document.createElement("div"),...
function y (line 7) | function y(e,t){var i={};for(var n in e)i[n]=e[n];var a=parseFloat(t.cur...
function g (line 7) | function g(e){return e.style+" "+e.variant+" "+e.weight+" "+e.size+"px '...
function b (line 7) | function b(e){return Q[e]||"square"}
function f (line 7) | function f(e){this.m_=s(),this.mStack_=[],this.aStack_=[],this.currentPa...
function k (line 7) | function k(e,t,i,n){e.currentPath_.push({type:"bezierCurveTo",cp1x:t.x,c...
function x (line 7) | function x(e,t){var i=c(e.strokeStyle),n=i.color,a=i.alpha*e.globalAlpha...
function _ (line 7) | function _(e,t,i,n){var a=e.fillStyle,o=e.scaleX_,r=e.scaleY_,s=n.x-i.x,...
function L (line 7) | function L(e,t,i){var n=e.m_;return{x:A*(t*n[0][0]+i*n[1][0]+n[2][0])-M,...
function W (line 7) | function W(e){return isFinite(e[0][0])&&isFinite(e[0][1])&&isFinite(e[1]...
function X (line 7) | function X(e,t,i){if(W(t)&&(e.m_=t,e.scaleX_=Math.sqrt(t[0][0]*t[0][0]+t...
function v (line 7) | function v(e){this.type_=e,this.x0_=0,this.y0_=0,this.r0_=0,this.x1_=0,t...
function w (line 7) | function w(e,t){switch(I(e),t){case"repeat":case null:case"":this.repeti...
function K (line 7) | function K(e){throw new J(e)}
function I (line 7) | function I(e){e&&1==e.nodeType&&"IMG"==e.tagName||K("TYPE_MISMATCH_ERR")...
function J (line 7) | function J(e){this.code=this[e],this.message=e+": DOM Exception "+this.c...
function t (line 7) | function t(e,t){return function(i,n){return e.call(t,i,n)}}
function i (line 7) | function i(e,t){return function(i,n,a){return e.call(t,i,n,a)}}
function n (line 7) | function n(e){for(var i=d.length;i--;){var n=d[i];e["_"+n+"Handler"]=t(c...
function a (line 7) | function a(e,t,i){if(this._draggingTarget&&this._draggingTarget.id==e.id...
function t (line 8) | function t(){return!1}
function i (line 8) | function i(){}
function n (line 8) | function n(e){return e?e.isBuildin?!0:"function"!=typeof e.resize||"func...
function t (line 8) | function t(e,t){return e.zlevel==t.zlevel?e.z==t.z?e.__renderidx-t.__ren...
function t (line 8) | function t(e,t){return e[t]}
function i (line 8) | function i(e,t,i){e[t]=i}
function n (line 8) | function n(e,t,i){return(t-e)*i+e}
function a (line 8) | function a(e,t,i,a,o){var r=e.length;if(1==o)for(var s=0;r>s;s++)a[s]=n(...
function o (line 8) | function o(e){switch(typeof e){case"undefined":case"string":return!1}ret...
function r (line 8) | function r(e,t,i,n,a,o,r,l,h){var m=e.length;if(1==h)for(var V=0;m>V;V++...
function s (line 8) | function s(e,t,i,n,a,o,r){var s=.5*(i-e),l=.5*(n-t);return(2*(t-i)+s+l)*...
function l (line 8) | function l(e){if(o(e)){var t=e.length;if(o(e[0])){for(var i=[],n=0;t>n;n...
function h (line 8) | function h(e){return e[0]=Math.floor(e[0]),e[1]=Math.floor(e[1]),e[2]=Ma...
function e (line 8) | function e(){t._running&&(p(e),t._update())}
function t (line 8) | function t(e){this.setOptions(e)}
function t (line 8) | function t(t){e.storage.addHover(t)}
function i (line 8) | function i(){e.refreshHover()}
function t (line 8) | function t(){return!1}
function i (line 8) | function i(e,t,i){var n=document.createElement(t),a=i.getWidth(),o=i.get...
function t (line 9) | function t(e){return e%=C,0>e&&(e+=C),e}
function i (line 9) | function i(e,t,i,o){if(!t||!e)return!1;var r=e.type;L=L||W.getContext();...
function n (line 9) | function n(e,t,i,n){var a=e.type;switch(a){case"bezier-curve":return"und...
function a (line 9) | function a(e,t,i,n,a){return t.beginPath(),e.buildPath(t,i),t.closePath(...
function o (line 9) | function o(e,t,n,a){return!i(e,t,n,a)}
function r (line 9) | function r(e,t,i,n,a,o,r){if(0===a)return!1;var s=Math.max(a,5),l=0,h=e;...
function s (line 9) | function s(e,t,i,n,a,o,r,s,l,h,m){if(0===l)return!1;var V=Math.max(l,5);...
function l (line 9) | function l(e,t,i,n,a,o,r,s,l){if(0===r)return!1;var h=Math.max(r,5);if(l...
function h (line 9) | function h(e,i,n,a,o,r,s,l,h){if(0===s)return!1;var m=Math.max(s,5);l-=e...
function m (line 9) | function m(e,t,i,n){for(var t=Math.max(t,10),a=0,o=e.length-1;o>a;a++){v...
function V (line 9) | function V(e,t,i,n,a,o){var r=(a-e)*(a-e)+(o-t)*(o-t);return n*n>r&&r>i*i}
function U (line 9) | function U(e,t,i,n,a,o){return a>=e&&e+i>=a&&o>=t&&t+n>=o}
function d (line 9) | function d(e,t,i,n,a){return i*i>(n-e)*(n-e)+(a-t)*(a-t)}
function p (line 9) | function p(e,t,i,n,a,o,r,s,l){return h(e,t,(i+n)/2,a,o,r,n-i,s,l)}
function c (line 9) | function c(e,t,i){for(var n=e.length,a=0,o=0,r=n-1;n>o;o++){var s=e[r][0...
function u (line 9) | function u(e,t,i,n,a,o){if(o>t&&o>n||t>o&&n>o)return 0;if(n==t)return 0;...
function y (line 9)
Condensed preview — 684 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (5,708K chars).
[
{
"path": ".gitignore",
"chars": 144,
"preview": "#忽略的文件及文件夹\ntarget\nlogs\ntemp\n.idea\n*.iml\n\njdbc.properties\nrabbitmq.properties\nsystem.properties\nredis.properties\n\n#rebel."
},
{
"path": "README.md",
"chars": 5437,
"preview": "# 环境部署文档(最好下载下来看,格式有点乱[没换行])\n---\n\n## 安装JDK环境 \n\n###1.先卸载open-jdk \n\njava –version \nrpm -qa | grep java \n\nrpm -qa | grep jd"
},
{
"path": "Redme.md",
"chars": 415,
"preview": "### Redis命令\n打开客户端\n[root@cloud src]# redis-cli -p 6767 -a root#wx\n\n### zookeeper命令\n\n启动:$ ./zkCli.sh <br/>\n查看节点:ls /\n\n启动ZK"
},
{
"path": "pom.xml",
"chars": 24012,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "sql/weixin.sql",
"chars": 158742,
"preview": "/*\nNavicat MySQL Data Transfer\n\nSource Server : 120.27.53.171-wx\nSource Server Version : 50173\nSource Host "
},
{
"path": "weixin-common/pom.xml",
"chars": 2528,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/constant/Constant.java",
"chars": 216,
"preview": "package com.cheng.weixin.common.constant;\n\n/**\n * Desc: 常量\n * Author: 光灿\n * Date: 2016/9/15\n */\npublic interface Constan"
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/constant/weixin/WeixinFinalValue.java",
"chars": 365,
"preview": "package com.cheng.weixin.common.constant.weixin;\n\nimport org.springframework.beans.factory.annotation.Value;\nimport org."
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/constant/weixin/WeixinUrl.java",
"chars": 1262,
"preview": "package com.cheng.weixin.common.constant.weixin;\n\nimport org.springframework.beans.factory.annotation.Value;\nimport org."
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/exception/BusinessException.java",
"chars": 555,
"preview": "package com.cheng.weixin.common.exception;\n\npublic class BusinessException extends RuntimeException {\n\n\tprivate static f"
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/exception/ErrorEntity.java",
"chars": 400,
"preview": "package com.cheng.weixin.common.exception;\n\n/**\n * 错误消息 包装类\n * @author Cheng\n */\npublic class ErrorEntity {\n\n\tprivate St"
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/exception/MassageException.java",
"chars": 564,
"preview": "package com.cheng.weixin.common.exception;\n\npublic class MassageException extends RuntimeException {\n\n\tprivate static fi"
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/exception/WeixinException.java",
"chars": 562,
"preview": "package com.cheng.weixin.common.exception;\n\npublic class WeixinException extends RuntimeException {\n\tprivate static fina"
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/model/Page.java",
"chars": 2810,
"preview": "package com.cheng.weixin.common.model;\n\nimport java.util.List;\n\n/**\n * Desc: 分页对象\n * Author: cheng\n * Date: 2016/5/27\n *"
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/security/CodecUtil.java",
"chars": 652,
"preview": "package com.cheng.weixin.common.security;\n\nimport org.apache.commons.lang3.RandomStringUtils;\nimport org.slf4j.Logger;\ni"
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/security/Digests.java",
"chars": 3665,
"preview": "package com.cheng.weixin.common.security;\n\n\nimport com.cheng.weixin.common.utils.Exceptions;\n\nimport java.io.IOException"
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/security/Encodes.java",
"chars": 2868,
"preview": "package com.cheng.weixin.common.security;\n\nimport com.cheng.weixin.common.utils.Exceptions;\nimport org.apache.commons.co"
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/security/SecretUtils.java",
"chars": 1292,
"preview": "package com.cheng.weixin.common.security;\n\n/**\n * Desc: 封装一些加密工具 密码的加密、验证\n * Author: 光灿\n * Date: 2016/7/9\n */\npublic cla"
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/utils/CacheUtils.java",
"chars": 1988,
"preview": "package com.cheng.weixin.common.utils;\n\nimport net.sf.ehcache.Cache;\nimport net.sf.ehcache.CacheManager;\nimport net.sf.e"
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/utils/Captcha.java",
"chars": 3891,
"preview": "package com.cheng.weixin.common.utils;\n\n\nimport java.awt.*;\nimport java.awt.image.BufferedImage;\nimport java.util.HashMa"
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/utils/DateUtils.java",
"chars": 6098,
"preview": "package com.cheng.weixin.common.utils;\n\nimport java.sql.Timestamp;\nimport java.text.DateFormat;\nimport java.text.ParseEx"
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/utils/Exceptions.java",
"chars": 856,
"preview": "package com.cheng.weixin.common.utils;\n\nimport java.io.PrintWriter;\nimport java.io.StringWriter;\n\n/**\n * Desc: 异常工具类\n * "
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/utils/JSONUtils.java",
"chars": 2520,
"preview": "package com.cheng.weixin.common.utils;\n\nimport com.fasterxml.jackson.core.type.TypeReference;\nimport com.fasterxml.jacks"
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/utils/ServletUtils.java",
"chars": 798,
"preview": "package com.cheng.weixin.common.utils;\n\nimport org.springframework.web.context.request.RequestAttributes;\nimport org.spr"
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/utils/SpringContextHolder.java",
"chars": 2268,
"preview": "package com.cheng.weixin.common.utils;\n\nimport org.apache.commons.lang3.Validate;\nimport org.slf4j.Logger;\nimport org.sl"
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/utils/StringFormat.java",
"chars": 490,
"preview": "package com.cheng.weixin.common.utils;\n\nimport java.math.BigDecimal;\nimport java.text.DecimalFormat;\n\n/**\n * Desc: BigDe"
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/utils/StringUtils.java",
"chars": 392,
"preview": "package com.cheng.weixin.common.utils;\n\n/**\n * Author: Cheng\n * Date: 2016/1/27 0027\n */\npublic class StringUtils extend"
},
{
"path": "weixin-common/src/main/java/com/cheng/weixin/common/utils/SystemUtils.java",
"chars": 772,
"preview": "package com.cheng.weixin.common.utils;\n\nimport javax.servlet.http.HttpServletRequest;\n\n/**\n * Desc: 系统工具 获取验证码\n * Author"
},
{
"path": "weixin-common/src/main/resources/weixinconfig.properties",
"chars": 1885,
"preview": "#\\u5FAE\\u4FE1\\u57FA\\u672C\\u914D\\u7F6E\nweixin.token=chengzhx76\nweixin.appid=wxcabea2c14e5861ec\nweixin.appsecret=d4624c36b"
},
{
"path": "weixin-common-config/pom.xml",
"chars": 494,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "weixin-common-entity/pom.xml",
"chars": 653,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "weixin-common-entity/src/main/java/com/cheng/common/entity/BaseEntity.java",
"chars": 2473,
"preview": "package com.cheng.common.entity;\n\n\nimport com.cheng.weixin.common.utils.StringUtils;\nimport org.apache.commons.lang3.bui"
},
{
"path": "weixin-common-entity/src/main/java/com/cheng/common/entity/DataEntity.java",
"chars": 1695,
"preview": "package com.cheng.common.entity;\n\n\nimport com.cheng.common.entity.id.IdGen;\nimport com.cheng.common.entity.enums.Status;"
},
{
"path": "weixin-common-entity/src/main/java/com/cheng/common/entity/enums/Sex.java",
"chars": 303,
"preview": "package com.cheng.common.entity.enums;\n\n/**\n * Desc: 性别\n * Author: hp\n * Date: 2016/11/2\n */\npublic enum Sex {\n\n MAN("
},
{
"path": "weixin-common-entity/src/main/java/com/cheng/common/entity/enums/Status.java",
"chars": 380,
"preview": "package com.cheng.common.entity.enums;\n\n/**\n * Author: Cheng\n * Date: 2016/1/28 0028\n */\npublic enum Status {\n NORMAL"
},
{
"path": "weixin-common-entity/src/main/java/com/cheng/common/entity/id/IdGen.java",
"chars": 381,
"preview": "package com.cheng.common.entity.id;\n\nimport java.util.UUID;\n\n/**\n * Desc: 封装各种生成唯一性ID算法的工具类\n * Author: 光灿\n * Date: 2016/"
},
{
"path": "weixin-common-entity/src/main/java/com/cheng/common/entity/id/IdGenerator.java",
"chars": 2845,
"preview": "package com.cheng.common.entity.id;\n\n/**\n * Desc: http://cloudate.net/?p=575\n * Author: cheng\n * Date: 2016/6/22\n */\npub"
},
{
"path": "weixin-common-entity/src/main/java/com/cheng/common/entity/id/package-info.java",
"chars": 214,
"preview": "/**\n * Desc: id生成器\n * Author: cheng\n * Date: 2016/6/22\n */\npackage com.cheng.common.entity.id;\n/**\n * http://www.cnblogs"
},
{
"path": "weixin-common-service/pom.xml",
"chars": 495,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "weixin-common-service/src/main/java/com/cheng/weixin/common/core/dao/BaseDaoMapper.java",
"chars": 786,
"preview": "package com.cheng.weixin.common.core.dao;\n\nimport java.util.List;\n\n/**\n * Desc: Dao基类\n * Author: Cheng\n * Date: 2016/1/2"
},
{
"path": "weixin-notify-pay/pom.xml",
"chars": 734,
"preview": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n xsi:sc"
},
{
"path": "weixin-notify-pay/src/main/webapp/WEB-INF/web.xml",
"chars": 215,
"preview": "<!DOCTYPE web-app PUBLIC\n \"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN\"\n \"http://java.sun.com/dtd/web-app_2_3"
},
{
"path": "weixin-notify-pay/src/main/webapp/index.jsp",
"chars": 52,
"preview": "<html>\n<body>\n<h2>Hello World!</h2>\n</body>\n</html>\n"
},
{
"path": "weixin-rabbitmq-model/pom.xml",
"chars": 654,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "weixin-rabbitmq-model/src/main/java/com/cheng/weixin/rabbitmq/enums/MsgType.java",
"chars": 335,
"preview": "package com.cheng.weixin.rabbitmq.enums;\n\n/**\n * Desc:\n * Author: 光灿\n * Date: 2016/11/20\n */\npublic enum MsgType {\n V"
},
{
"path": "weixin-rabbitmq-model/src/main/java/com/cheng/weixin/rabbitmq/model/SmsModel.java",
"chars": 1602,
"preview": "package com.cheng.weixin.rabbitmq.model;\n\nimport com.cheng.weixin.rabbitmq.enums.MsgType;\n\nimport java.io.Serializable;\n"
},
{
"path": "weixin-rpc-admin/pom.xml",
"chars": 647,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "weixin-rpc-admin/src/main/java/com/cheng/weixin/rpc/admin/entity/Admin.java",
"chars": 2790,
"preview": "package com.cheng.weixin.rpc.admin.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\nimport java.util.Date;\nimport ja"
},
{
"path": "weixin-rpc-admin/src/main/java/com/cheng/weixin/rpc/admin/entity/AdminRole.java",
"chars": 747,
"preview": "package com.cheng.weixin.rpc.admin.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 用户与角色对应关系\n * Author"
},
{
"path": "weixin-rpc-admin/src/main/java/com/cheng/weixin/rpc/admin/entity/Permission.java",
"chars": 570,
"preview": "package com.cheng.weixin.rpc.admin.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 权限实体类\n * Author: Ch"
},
{
"path": "weixin-rpc-admin/src/main/java/com/cheng/weixin/rpc/admin/entity/Role.java",
"chars": 839,
"preview": "package com.cheng.weixin.rpc.admin.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Author: Cheng\n * Date: 20"
},
{
"path": "weixin-rpc-admin/src/main/java/com/cheng/weixin/rpc/admin/entity/RolePermission.java",
"chars": 637,
"preview": "package com.cheng.weixin.rpc.admin.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 角色和权限对应关系\n * Author"
},
{
"path": "weixin-rpc-admin/src/main/java/com/cheng/weixin/rpc/admin/service/RpcAdminService.java",
"chars": 1615,
"preview": "package com.cheng.weixin.rpc.admin.service;\n\n\nimport com.cheng.weixin.rpc.admin.entity.Admin;\nimport com.cheng.weixin.rp"
},
{
"path": "weixin-rpc-cart/pom.xml",
"chars": 646,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "weixin-rpc-cart/src/main/java/com/cheng/weixin/rpc/cart/entity/CartInfo.java",
"chars": 1182,
"preview": "package com.cheng.weixin.rpc.cart.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 购物车子\n * Author: chen"
},
{
"path": "weixin-rpc-cart/src/main/java/com/cheng/weixin/rpc/cart/entity/ShoppingCart.java",
"chars": 866,
"preview": "package com.cheng.weixin.rpc.cart.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\nimport java.util.List;\n\n/**\n * De"
},
{
"path": "weixin-rpc-cart/src/main/java/com/cheng/weixin/rpc/cart/model/ProductModel.java",
"chars": 470,
"preview": "package com.cheng.weixin.rpc.cart.model;\n\nimport java.io.Serializable;\n\n/**\n * Desc:\n * Author: 光灿\n * Date: 2016/9/15\n *"
},
{
"path": "weixin-rpc-cart/src/main/java/com/cheng/weixin/rpc/cart/service/RpcCartService.java",
"chars": 2541,
"preview": "package com.cheng.weixin.rpc.cart.service;\n\nimport com.cheng.weixin.rpc.cart.entity.ShoppingCart;\nimport com.cheng.weixi"
},
{
"path": "weixin-rpc-comment/pom.xml",
"chars": 649,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "weixin-rpc-comment/src/main/java/com/cheng/weixin/rpc/comment/entity/Comment.java",
"chars": 2862,
"preview": "package com.cheng.weixin.rpc.comment.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\nimport java.util.Date;\n\n/**\n *"
},
{
"path": "weixin-rpc-comment/src/main/java/com/cheng/weixin/rpc/comment/service/RpcCommentService.java",
"chars": 339,
"preview": "package com.cheng.weixin.rpc.comment.service;\n\nimport com.cheng.weixin.rpc.comment.entity.Comment;\n\nimport java.util.Lis"
},
{
"path": "weixin-rpc-httpclient/pom.xml",
"chars": 495,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "weixin-rpc-httpclient/src/main/java/com/cheng/weixin/rpc/httpclient/service/RpcHttpClientService.java",
"chars": 668,
"preview": "package com.cheng.weixin.rpc.httpclient.service;\n\n/**\n * Desc:\n * Author: Cheng\n * Date: 2016/4/21 0021\n */\npublic inter"
},
{
"path": "weixin-rpc-item/pom.xml",
"chars": 646,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "weixin-rpc-item/src/main/java/com/cheng/weixin/rpc/item/entity/Picture.java",
"chars": 1320,
"preview": "package com.cheng.weixin.rpc.item.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 图片\n * Author: cheng\n"
},
{
"path": "weixin-rpc-item/src/main/java/com/cheng/weixin/rpc/item/entity/Product.java",
"chars": 3216,
"preview": "package com.cheng.weixin.rpc.item.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\nimport java.math.BigDecimal;\nimpo"
},
{
"path": "weixin-rpc-item/src/main/java/com/cheng/weixin/rpc/item/entity/ProductType.java",
"chars": 454,
"preview": "package com.cheng.weixin.rpc.item.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 商品类型\n * Author: chen"
},
{
"path": "weixin-rpc-item/src/main/java/com/cheng/weixin/rpc/item/service/RpcProductService.java",
"chars": 1369,
"preview": "package com.cheng.weixin.rpc.item.service;\n\nimport com.cheng.weixin.rpc.item.entity.Picture;\nimport com.cheng.weixin.rpc"
},
{
"path": "weixin-rpc-log/pom.xml",
"chars": 921,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "weixin-rpc-log/src/main/java/com/cheng/weixin/rpc/log/entity/Log.java",
"chars": 3093,
"preview": "package com.cheng.weixin.rpc.log.entity;\n\nimport com.cheng.common.entity.DataEntity;\nimport com.cheng.weixin.common.util"
},
{
"path": "weixin-rpc-log/src/main/java/com/cheng/weixin/rpc/log/enums/LogType.java",
"chars": 189,
"preview": "package com.cheng.weixin.rpc.log.enums;\n\n/**\n * Desc: 日志类型\n * Author: Cheng\n * Date: 2016/3/23 0023\n */\npublic enum LogT"
},
{
"path": "weixin-rpc-log/src/main/java/com/cheng/weixin/rpc/log/model/RequestModel.java",
"chars": 1604,
"preview": "package com.cheng.weixin.rpc.log.model;\n\nimport java.io.Serializable;\n\n/**\n * Desc: 由于Dubbo不能传request,这里主要封装request里的参数 "
},
{
"path": "weixin-rpc-log/src/main/java/com/cheng/weixin/rpc/log/service/RpcLogService.java",
"chars": 696,
"preview": "package com.cheng.weixin.rpc.log.service;\n\nimport java.util.Map;\n\n/**\n * Desc: 日志\n * Author: Cheng\n * Date: 2016/4/7 000"
},
{
"path": "weixin-rpc-message/pom.xml",
"chars": 781,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "weixin-rpc-message/src/main/java/com/cheng/weixin/rpc/message/entity/EmailTemplate.java",
"chars": 764,
"preview": "package com.cheng.weixin.rpc.message.entity;\n\nimport com.cheng.common.entity.DataEntity;\nimport com.cheng.weixin.rabbitm"
},
{
"path": "weixin-rpc-message/src/main/java/com/cheng/weixin/rpc/message/entity/SmsHistory.java",
"chars": 1972,
"preview": "package com.cheng.weixin.rpc.message.entity;\n\nimport com.cheng.common.entity.DataEntity;\nimport com.cheng.weixin.rabbitm"
},
{
"path": "weixin-rpc-message/src/main/java/com/cheng/weixin/rpc/message/entity/SmsTemplate.java",
"chars": 1065,
"preview": "package com.cheng.weixin.rpc.message.entity;\n\nimport com.cheng.common.entity.DataEntity;\nimport com.cheng.weixin.rabbitm"
},
{
"path": "weixin-rpc-message/src/main/java/com/cheng/weixin/rpc/message/service/RpcSmsService.java",
"chars": 918,
"preview": "package com.cheng.weixin.rpc.message.service;\n\n\nimport com.cheng.weixin.rabbitmq.enums.MsgType;\nimport com.cheng.weixin."
},
{
"path": "weixin-rpc-order/pom.xml",
"chars": 771,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/ArayacakAddress.java",
"chars": 1624,
"preview": "package com.cheng.weixin.rpc.order.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc:自提地点\n * Author: 光灿\n "
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/ArayacakDeliveryTime.java",
"chars": 415,
"preview": "package com.cheng.weixin.rpc.order.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc:自提配送时间\n * Author: 光灿"
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/City.java",
"chars": 342,
"preview": "package com.cheng.weixin.rpc.order.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 市\n * Author: hp\n * "
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/Country.java",
"chars": 350,
"preview": "package com.cheng.weixin.rpc.order.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 市区县\n * Author: hp\n "
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/DeliveryTime.java",
"chars": 464,
"preview": "package com.cheng.weixin.rpc.order.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 配送时间\n * Author: che"
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/DeliveryType.java",
"chars": 386,
"preview": "package com.cheng.weixin.rpc.order.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 配送方式:上门自提;第三方运输\n * "
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/FlowStatus.java",
"chars": 1155,
"preview": "package com.cheng.weixin.rpc.order.entity;\n\nimport com.cheng.common.entity.DataEntity;\nimport com.cheng.weixin.rpc.order"
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/OrderInfo.java",
"chars": 8905,
"preview": "package com.cheng.weixin.rpc.order.entity;\n\nimport com.cheng.common.entity.DataEntity;\nimport com.cheng.weixin.rpc.order"
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/OrderProductDetail.java",
"chars": 2436,
"preview": "package com.cheng.weixin.rpc.order.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\nimport java.math.BigDecimal;\n\n/*"
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/OrderReturn.java",
"chars": 5204,
"preview": "package com.cheng.weixin.rpc.order.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\nimport java.math.BigDecimal;\n\n/*"
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/OrderReturnDetail.java",
"chars": 2432,
"preview": "package com.cheng.weixin.rpc.order.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\nimport java.math.BigDecimal;\n\n/*"
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/Pay.java",
"chars": 1180,
"preview": "package com.cheng.weixin.rpc.order.entity;\n\nimport com.cheng.common.entity.DataEntity;\nimport com.cheng.weixin.rpc.order"
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/Province.java",
"chars": 350,
"preview": "package com.cheng.weixin.rpc.order.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 省\n * Author: hp\n * "
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/RefundType.java",
"chars": 391,
"preview": "package com.cheng.weixin.rpc.order.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 退款方式:微信零钱\n * Author"
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/ReturnReason.java",
"chars": 363,
"preview": "package com.cheng.weixin.rpc.order.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 退货原因\n * Author: che"
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/ReturnStatus.java",
"chars": 363,
"preview": "package com.cheng.weixin.rpc.order.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 退单状态\n * Author: che"
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/Town.java",
"chars": 426,
"preview": "package com.cheng.weixin.rpc.order.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 镇\n * Author: hp\n * "
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/entity/Village.java",
"chars": 349,
"preview": "package com.cheng.weixin.rpc.order.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 村庄\n * Author: hp\n *"
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/enumType/FlowStatus.java",
"chars": 428,
"preview": "package com.cheng.weixin.rpc.order.enumType;\n\n/**\n * Desc: 派送状态\n * Author: hp\n * Date: 2016/11/10\n */\n@Deprecated\npublic"
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/enumType/OrderStatus.java",
"chars": 552,
"preview": "package com.cheng.weixin.rpc.order.enumType;\n\n/**\n * Desc:\n * Author: 光灿\n * Date: 2016/11/16\n */\npublic enum OrderStatus"
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/enumType/OrderType.java",
"chars": 350,
"preview": "package com.cheng.weixin.rpc.order.enumType;\n\n/**\n * Desc: 订单类型 正常-退货-返回换货\n * Author: cheng\n * Date: 2016/6/6\n */\npublic"
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/enumType/PayStatus.java",
"chars": 359,
"preview": "package com.cheng.weixin.rpc.order.enumType;\n\n/**\n * Desc: 到付 未付款 已付款\n * Author: cheng\n * Date: 2016/6/6\n */\n@Deprecated"
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/enumType/PayWay.java",
"chars": 382,
"preview": "package com.cheng.weixin.rpc.order.enumType;\n\n/**\n * Desc: 支付类型:在线,到付\n * Author: hp\n * Date: 2016/9/12\n */\npublic enum P"
},
{
"path": "weixin-rpc-order/src/main/java/com/cheng/weixin/rpc/order/service/RpcOrderService.java",
"chars": 1947,
"preview": "package com.cheng.weixin.rpc.order.service;\n\nimport com.cheng.weixin.rpc.order.entity.*;\nimport com.cheng.weixin.rpc.ord"
},
{
"path": "weixin-rpc-promotion/pom.xml",
"chars": 651,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "weixin-rpc-promotion/src/main/java/com/cheng/weixin/rpc/promotion/entity/Coupon.java",
"chars": 2609,
"preview": "package com.cheng.weixin.rpc.promotion.entity;\n\nimport com.cheng.common.entity.DataEntity;\nimport com.cheng.weixin.rpc.p"
},
{
"path": "weixin-rpc-promotion/src/main/java/com/cheng/weixin/rpc/promotion/entity/CouponCode.java",
"chars": 1229,
"preview": "package com.cheng.weixin.rpc.promotion.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 券明细---这个才是到用户手中"
},
{
"path": "weixin-rpc-promotion/src/main/java/com/cheng/weixin/rpc/promotion/entity/CouponHistory.java",
"chars": 978,
"preview": "package com.cheng.weixin.rpc.promotion.entity;\n\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 券记录\n * 含发券和用券两"
},
{
"path": "weixin-rpc-promotion/src/main/java/com/cheng/weixin/rpc/promotion/enums/CouponType.java",
"chars": 503,
"preview": "package com.cheng.weixin.rpc.promotion.enums;\n\n/**\n * Desc: 券类型\n * 红包、现金券、免运费券、折扣券\n * Author: cheng\n * Date: 2016/6/17\n "
},
{
"path": "weixin-rpc-promotion/src/main/java/com/cheng/weixin/rpc/promotion/service/RpcCouponService.java",
"chars": 540,
"preview": "package com.cheng.weixin.rpc.promotion.service;\n\nimport com.cheng.weixin.rpc.promotion.entity.CouponCode;\n\nimport java.u"
},
{
"path": "weixin-rpc-rabbitmq/pom.xml",
"chars": 661,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "weixin-rpc-rabbitmq/src/main/java/com/cheng/weixin/rpc/rabbitmq/service/RpcRabbitLogService.java",
"chars": 271,
"preview": "package com.cheng.weixin.rpc.rabbitmq.service;\n\n/**\n * Desc: Rabbit接口\n * Author: Cheng\n * Date: 2016/4/25 0025\n */\npubli"
},
{
"path": "weixin-rpc-rabbitmq/src/main/java/com/cheng/weixin/rpc/rabbitmq/service/RpcRabbitSmsService.java",
"chars": 452,
"preview": "package com.cheng.weixin.rpc.rabbitmq.service;\n\n/**\n * Desc: Rabbit接口\n * Author: Cheng\n * Date: 2016/4/25 0025\n */\npubli"
},
{
"path": "weixin-rpc-redis/pom.xml",
"chars": 490,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "weixin-rpc-redis/src/main/java/com/cheng/weixin/rpc/redis/service/RpcRedisService.java",
"chars": 2431,
"preview": "package com.cheng.weixin.rpc.redis.service;\n\nimport java.io.Serializable;\nimport java.util.Map;\nimport java.util.Set;\n\n/"
},
{
"path": "weixin-rpc-system/pom.xml",
"chars": 656,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "weixin-rpc-system/src/main/java/com/cheng/weixin/rpc/system/entity/Ad.java",
"chars": 1507,
"preview": "package com.cheng.weixin.rpc.system.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 广告资源\n * Author: 光灿"
},
{
"path": "weixin-rpc-system/src/main/java/com/cheng/weixin/rpc/system/entity/AdJoinPosition.java",
"chars": 642,
"preview": "package com.cheng.weixin.rpc.system.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 广告与位置关联\n * Author:"
},
{
"path": "weixin-rpc-system/src/main/java/com/cheng/weixin/rpc/system/entity/AdPosition.java",
"chars": 567,
"preview": "package com.cheng.weixin.rpc.system.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 广告位置\n * Author: 光灿"
},
{
"path": "weixin-rpc-system/src/main/java/com/cheng/weixin/rpc/system/entity/Notice.java",
"chars": 788,
"preview": "package com.cheng.weixin.rpc.system.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 通知\n * Author: 光灿\n "
},
{
"path": "weixin-rpc-system/src/main/java/com/cheng/weixin/rpc/system/entity/NoticeType.java",
"chars": 266,
"preview": "package com.cheng.weixin.rpc.system.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc:公告资源类型\n * Author: 光"
},
{
"path": "weixin-rpc-system/src/main/java/com/cheng/weixin/rpc/system/entity/PictureResource.java",
"chars": 1362,
"preview": "package com.cheng.weixin.rpc.system.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 图片资源\n * Author: 光灿"
},
{
"path": "weixin-rpc-system/src/main/java/com/cheng/weixin/rpc/system/entity/PictureResourceType.java",
"chars": 435,
"preview": "package com.cheng.weixin.rpc.system.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 图片资源类型:现在就首页的图片\n *"
},
{
"path": "weixin-rpc-system/src/main/java/com/cheng/weixin/rpc/system/entity/SystemParam.java",
"chars": 1070,
"preview": "package com.cheng.weixin.rpc.system.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc:系统参数\n * Author: 光灿\n"
},
{
"path": "weixin-rpc-system/src/main/java/com/cheng/weixin/rpc/system/service/RpcSystemService.java",
"chars": 419,
"preview": "package com.cheng.weixin.rpc.system.service;\n\nimport com.cheng.weixin.rpc.system.entity.Ad;\nimport com.cheng.weixin.rpc."
},
{
"path": "weixin-rpc-user/pom.xml",
"chars": 646,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/Account.java",
"chars": 2855,
"preview": "package com.cheng.weixin.rpc.user.entity;\n\nimport com.cheng.common.entity.DataEntity;\nimport com.cheng.weixin.rpc.user.e"
},
{
"path": "weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/AccountLevel.java",
"chars": 2169,
"preview": "package com.cheng.weixin.rpc.user.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 记录积分等级的规则\n * 积"
},
{
"path": "weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/AccountUpgradeHistory.java",
"chars": 1314,
"preview": "package com.cheng.weixin.rpc.user.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 账户升级历史\n * Author: ch"
},
{
"path": "weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/Behavior.java",
"chars": 882,
"preview": "package com.cheng.weixin.rpc.user.entity;\n\nimport com.cheng.common.entity.DataEntity;\nimport com.cheng.weixin.rpc.user.e"
},
{
"path": "weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/BonusPointRecord.java",
"chars": 2058,
"preview": "package com.cheng.weixin.rpc.user.entity;\n\nimport com.cheng.common.entity.DataEntity;\nimport com.cheng.weixin.rpc.user.e"
},
{
"path": "weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/CashRecord.java",
"chars": 2018,
"preview": "package com.cheng.weixin.rpc.user.entity;\n\nimport com.cheng.common.entity.DataEntity;\nimport com.cheng.weixin.rpc.user.e"
},
{
"path": "weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/City.java",
"chars": 344,
"preview": "package com.cheng.weixin.rpc.user.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 城市\n * Author: cheng\n"
},
{
"path": "weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/Country.java",
"chars": 350,
"preview": "package com.cheng.weixin.rpc.user.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 区县\n * Author: cheng\n"
},
{
"path": "weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/CouponRecord.java",
"chars": 1283,
"preview": "package com.cheng.weixin.rpc.user.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 记录券的收支情况\n * Author: "
},
{
"path": "weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/DeliveryAddress.java",
"chars": 3039,
"preview": "package com.cheng.weixin.rpc.user.entity;\n\nimport com.cheng.common.entity.DataEntity;\nimport com.cheng.common.entity.enu"
},
{
"path": "weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/Member.java",
"chars": 3418,
"preview": "package com.cheng.weixin.rpc.user.entity;\n\nimport com.cheng.common.entity.DataEntity;\nimport com.cheng.weixin.rpc.user.e"
},
{
"path": "weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/ProductFocus.java",
"chars": 960,
"preview": "package com.cheng.weixin.rpc.user.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 关注商品\n * Author: chen"
},
{
"path": "weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/entity/Province.java",
"chars": 352,
"preview": "package com.cheng.weixin.rpc.user.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 省份\n * Author: cheng\n"
},
{
"path": "weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/enumType/BehaviorType.java",
"chars": 177,
"preview": "package com.cheng.weixin.rpc.user.enumType;\n\n/**\n * Desc: 操作类型 积分 现金 券\n * Author: cheng\n * Date: 2016/6/3\n */\npublic enu"
},
{
"path": "weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/enumType/Credit.java",
"chars": 201,
"preview": "package com.cheng.weixin.rpc.user.enumType;\n\n/**\n * Desc: 信用等级 划分为五个等级:良好、较好、一般、较差、差\n * Author: cheng\n * Date: 2016/6/3\n"
},
{
"path": "weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/enumType/Sex.java",
"chars": 308,
"preview": "package com.cheng.weixin.rpc.user.enumType;\n\n/**\n * Desc: 性别\n * Author: hp\n * Date: 2016/11/2\n */\npublic enum Sex {\n\n "
},
{
"path": "weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/enumType/SourceFrom.java",
"chars": 171,
"preview": "package com.cheng.weixin.rpc.user.enumType;\n\n/**\n * Desc: 来源\n * Author: cheng\n * Date: 2016/7/12\n */\npublic enum SourceF"
},
{
"path": "weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/enumType/TXType.java",
"chars": 300,
"preview": "package com.cheng.weixin.rpc.user.enumType;\n\n/**\n * Desc:\n * Author: 光灿\n * Date: 2016/11/19\n */\npublic enum TXType {\n\n "
},
{
"path": "weixin-rpc-user/src/main/java/com/cheng/weixin/rpc/user/service/RpcUserService.java",
"chars": 3322,
"preview": "package com.cheng.weixin.rpc.user.service;\n\nimport com.cheng.weixin.rpc.user.entity.*;\n\nimport java.util.List;\n\n/**\n * D"
},
{
"path": "weixin-rpc-wxtools/pom.xml",
"chars": 940,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/content/WeixinContent.java",
"chars": 642,
"preview": "package com.cheng.weixin.rpc.wxtools.content;\n\npublic class WeixinContent {\n\t\n\tprivate WeixinContent(){}\n\t\n\tprivate stat"
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/entity/WxGroup.java",
"chars": 207,
"preview": "package com.cheng.weixin.rpc.wxtools.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 群组实体类\n * Author: "
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/entity/WxMenu.java",
"chars": 204,
"preview": "package com.cheng.weixin.rpc.wxtools.entity;\n\nimport com.cheng.common.entity.DataEntity;\n\n/**\n * Desc: 菜单实体\n * Author: C"
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/enums/ActionType.java",
"chars": 517,
"preview": "package com.cheng.weixin.rpc.wxtools.enums;\n/**\n * 自定义菜单接口多种活动类型按钮\n * @author Cheng\n */\npublic enum ActionType {\n\tclick("
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/enums/Event.java",
"chars": 334,
"preview": "package com.cheng.weixin.rpc.wxtools.enums;\n/**\n * 事件类型\n * @author Cheng\n *\n */\npublic enum Event {\n\tCLICK,\n\tVIEW,\n\tsubs"
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/enums/MidiaType.java",
"chars": 138,
"preview": "package com.cheng.weixin.rpc.wxtools.enums;\n/**\n * 媒体类型\n * @author Cheng\n *\n */\npublic enum MidiaType {\n\timage,\n\tvoice,\n"
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/enums/MsgType.java",
"chars": 166,
"preview": "package com.cheng.weixin.rpc.wxtools.enums;\n/**\n * 消息类型\n * @author Cheng\n *\n */\npublic enum MsgType {\n\tevent,\n\tvoice,\n\ti"
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/enums/Status.java",
"chars": 413,
"preview": "package com.cheng.weixin.rpc.wxtools.enums;\n\npublic enum Status {\n\t/** 成功 **/\n\tSUCCESS(\"success\"),\n\t/** 用户拒收 **/\n\tUSER_B"
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/BaseMessage.java",
"chars": 966,
"preview": "package com.cheng.weixin.rpc.wxtools.request.model;\n\nimport com.cheng.weixin.rpc.wxtools.enums.MsgType;\n\nimport java.io."
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/ImageMessage.java",
"chars": 328,
"preview": "package com.cheng.weixin.rpc.wxtools.request.model;\n\n/**\n * 图片消息\n * @author Cheng\n */\npublic class ImageMessage extends "
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/MediaMessage.java",
"chars": 460,
"preview": "package com.cheng.weixin.rpc.wxtools.request.model;\n\n/**\n * 语音消息\n * @author Cheng\n */\npublic class MediaMessage extends "
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/ModelMsgData.java",
"chars": 558,
"preview": "package com.cheng.weixin.rpc.wxtools.request.model;\n\nimport java.io.Serializable;\n\npublic class ModelMsgData implements "
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/MusicMessage.java",
"chars": 326,
"preview": "package com.cheng.weixin.rpc.wxtools.request.model;\n\n/**\n * 音乐消息\n * @author Cheng\n */\npublic class MusicMessage extends "
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/NewsMessage.java",
"chars": 385,
"preview": "package com.cheng.weixin.rpc.wxtools.request.model;\n\nimport java.util.List;\n\n/**\n * 图文消息\n * @author Cheng\n */\npublic cla"
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/TemplateMessage.java",
"chars": 868,
"preview": "package com.cheng.weixin.rpc.wxtools.request.model;\n\nimport java.io.Serializable;\nimport java.util.Map;\n\n/**\n * 模版消息\n * "
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/TextMessage.java",
"chars": 329,
"preview": "package com.cheng.weixin.rpc.wxtools.request.model;\n/**\n * 文本消息\n * @author Cheng\n */\npublic class TextMessage extends Ba"
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/VoiceMessage.java",
"chars": 326,
"preview": "package com.cheng.weixin.rpc.wxtools.request.model;\n\n/**\n * 语音消息\n * @author Cheng\n */\npublic class VoiceMessage extends "
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/WxImage.java",
"chars": 325,
"preview": "package com.cheng.weixin.rpc.wxtools.request.model;\n\nimport java.io.Serializable;\n\npublic class WxImage implements Seria"
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/WxMenu.java",
"chars": 1146,
"preview": "package com.cheng.weixin.rpc.wxtools.request.model;\n\nimport com.cheng.weixin.rpc.wxtools.enums.ActionType;\nimport com.fa"
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/WxMusic.java",
"chars": 1145,
"preview": "package com.cheng.weixin.rpc.wxtools.request.model;\n\nimport java.io.Serializable;\n\npublic class WxMusic implements Seria"
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/WxNews.java",
"chars": 729,
"preview": "package com.cheng.weixin.rpc.wxtools.request.model;\n\nimport java.io.Serializable;\n\npublic class WxNews implements Serial"
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/request/model/WxVoice.java",
"chars": 325,
"preview": "package com.cheng.weixin.rpc.wxtools.request.model;\n\nimport java.io.Serializable;\n\npublic class WxVoice implements Seria"
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/response/model/AccessToken.java",
"chars": 472,
"preview": "package com.cheng.weixin.rpc.wxtools.response.model;\n/**\n * 动态Token\n * @author Cheng\n */\npublic class AccessToken {\n\tpri"
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/response/model/SendTemplateMassage.java",
"chars": 654,
"preview": "package com.cheng.weixin.rpc.wxtools.response.model;\n\nimport java.io.Serializable;\n\n/**\n * 发送模版消息的回复\n * @author Cheng\n *"
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/response/model/WxGroup.java",
"chars": 910,
"preview": "package com.cheng.weixin.rpc.wxtools.response.model;\n\nimport com.fasterxml.jackson.annotation.JsonInclude;\nimport com.fa"
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/response/model/WxMedia.java",
"chars": 662,
"preview": "package com.cheng.weixin.rpc.wxtools.response.model;\n\npublic class WxMedia {\n\n\tprivate String type;\n\tprivate String medi"
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/service/RpcMessageHandleService.java",
"chars": 479,
"preview": "package com.cheng.weixin.rpc.wxtools.service;\n\nimport javax.servlet.http.HttpServletRequest;\nimport java.util.Map;\n\n/**\n"
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/service/RpcWxGroupService.java",
"chars": 821,
"preview": "package com.cheng.weixin.rpc.wxtools.service;\n\n\nimport com.cheng.weixin.rpc.wxtools.response.model.WxGroup;\n\nimport java"
},
{
"path": "weixin-rpc-wxtools/src/main/java/com/cheng/weixin/rpc/wxtools/service/RpcWxMenuService.java",
"chars": 151,
"preview": "package com.cheng.weixin.rpc.wxtools.service;\n\n\n/** 用户业务处理\n * Desc:\n * Author: Cheng\n * Date: 2016/1/28 0028\n */\npublic "
},
{
"path": "weixin-service-admin/pom.xml",
"chars": 7310,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "weixin-service-admin/shell/service-admin.sh",
"chars": 1207,
"preview": "#!/bin/sh\n\n## java env\nexport JAVA_HOME=/usr/local/jdk1.7.0_45\nexport JRE_HOME=$JAVA_HOME/jre\n\n## service name\nAPP_NAME="
},
{
"path": "weixin-service-admin/src/main/java/com/cheng/weixin/service/admin/dao/AdminDaoMapper.java",
"chars": 467,
"preview": "package com.cheng.weixin.service.admin.dao;\n\nimport com.cheng.weixin.common.core.dao.BaseDaoMapper;\nimport com.cheng.wei"
},
{
"path": "weixin-service-admin/src/main/java/com/cheng/weixin/service/admin/dao/AdminRoleDaoMapper.java",
"chars": 287,
"preview": "package com.cheng.weixin.service.admin.dao;\n\nimport com.cheng.weixin.common.core.dao.BaseDaoMapper;\nimport com.cheng.wei"
},
{
"path": "weixin-service-admin/src/main/java/com/cheng/weixin/service/admin/dao/PermissionDaoMapper.java",
"chars": 510,
"preview": "package com.cheng.weixin.service.admin.dao;\n\nimport com.cheng.weixin.common.core.dao.BaseDaoMapper;\nimport com.cheng.wei"
},
{
"path": "weixin-service-admin/src/main/java/com/cheng/weixin/service/admin/dao/RoleDaoMapper.java",
"chars": 482,
"preview": "package com.cheng.weixin.service.admin.dao;\n\nimport com.cheng.weixin.common.core.dao.BaseDaoMapper;\nimport com.cheng.wei"
},
{
"path": "weixin-service-admin/src/main/java/com/cheng/weixin/service/admin/service/AdminService.java",
"chars": 4136,
"preview": "package com.cheng.weixin.service.admin.service;\n\nimport com.cheng.weixin.rpc.admin.entity.Admin;\nimport com.cheng.weixin"
},
{
"path": "weixin-service-admin/src/main/resources/log4j.properties",
"chars": 755,
"preview": "#log4j.rootLogger=DEBUG,CONSOLE,FILE\nlog4j.rootLogger=DEBUG,FILE\nlog4j.appender.Threshold=ERROR\n\n#log4j.appender.CONSOLE"
},
{
"path": "weixin-service-admin/src/main/resources/mybatis/mapper/AdminMapper.xml",
"chars": 3542,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!DOCTYPE mapper PUBLIC \"-//mybatis.org//DTD Mapper 3.0//EN\"\n \"http://myb"
},
{
"path": "weixin-service-admin/src/main/resources/mybatis/mapper/AdminRoleMapper.xml",
"chars": 1727,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!DOCTYPE mapper PUBLIC \"-//mybatis.org//DTD Mapper 3.0//EN\"\n \"http://myb"
},
{
"path": "weixin-service-admin/src/main/resources/mybatis/mapper/PermissionMapper.xml",
"chars": 2487,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!DOCTYPE mapper PUBLIC \"-//mybatis.org//DTD Mapper 3.0//EN\"\n \"http://myb"
},
{
"path": "weixin-service-admin/src/main/resources/mybatis/mapper/RoleMapper.xml",
"chars": 2343,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!DOCTYPE mapper PUBLIC \"-//mybatis.org//DTD Mapper 3.0//EN\"\n \"http://myb"
},
{
"path": "weixin-service-admin/src/main/resources/mybatis/mybatis-config.xml",
"chars": 681,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!DOCTYPE configuration\n PUBLIC \"-//mybatis.org//DTD Config 3.0//EN\"\n "
},
{
"path": "weixin-service-admin/src/main/resources/spring/spring-context.xml",
"chars": 932,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<beans xmlns=\"http://www.springframework.org/schema/beans\"\n\txmlns:xsi=\"http://www"
},
{
"path": "weixin-service-admin/src/main/resources/spring/spring-dubbo-provider.xml",
"chars": 970,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<beans xmlns=\"http://www.springframework.org/schema/beans\"\n xmlns:dubbo=\"ht"
},
{
"path": "weixin-service-admin/src/main/resources/spring/spring-mybatis.xml",
"chars": 3253,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<beans xmlns=\"http://www.springframework.org/schema/beans\"\n\t\t\t xmlns:xsi=\"http://"
},
{
"path": "weixin-service-admin/src/test/java/com/cheng/shrio/passwd/TestPssWd.java",
"chars": 461,
"preview": "package com.cheng.shrio.passwd;\n\n\n/**\n * Desc:\n * Author: Cheng\n * Date: 2016/1/29 0029\n */\npublic class TestPssWd {\n\n "
},
{
"path": "weixin-service-cart/pom.xml",
"chars": 7301,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n xmlns:xsi=\"http://www"
},
{
"path": "weixin-service-cart/shell/service-cart.sh",
"chars": 1226,
"preview": "#!/bin/sh\n\n## java env\nexport JAVA_HOME=/usr/local/java/jdk1.7.0_45\nexport JRE_HOME=$JAVA_HOME/jre\n\n## service name\nAPP_"
},
{
"path": "weixin-service-cart/src/main/java/com/cheng/weixin/service/cart/service/CartService.java",
"chars": 8418,
"preview": "package com.cheng.weixin.service.cart.service;\n\nimport com.cheng.weixin.common.constant.Constant;\nimport com.cheng.weixi"
},
{
"path": "weixin-service-cart/src/main/resources/log4j.properties",
"chars": 774,
"preview": "log4j.rootLogger=DEBUG,CONSOLE,FILE\nlog4j.appender.Threshold=ERROR\n\n#log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppe"
},
{
"path": "weixin-service-cart/src/main/resources/spring/spring-context.xml",
"chars": 868,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<beans xmlns=\"http://www.springframework.org/schema/beans\"\n\txmlns:xsi=\"http://www"
},
{
"path": "weixin-service-cart/src/main/resources/spring/spring-dubbo-consumer.xml",
"chars": 691,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<beans xmlns=\"http://www.springframework.org/schema/beans\"\n xmlns:dubbo=\"ht"
},
{
"path": "weixin-service-cart/src/main/resources/spring/spring-dubbo-provider.xml",
"chars": 965,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<beans xmlns=\"http://www.springframework.org/schema/beans\"\n xmlns:dubbo=\"ht"
},
{
"path": "weixin-service-cart/src/test/java/com/cheng/weixin/cart/TestAll.java",
"chars": 227,
"preview": "package com.cheng.weixin.cart;\n\nimport org.junit.Test;\n\n/**\n * Desc:\n * Author: hp\n * Date: 2016/9/20\n */\npublic class T"
},
{
"path": "weixin-service-cart/src/test/java/com/cheng/weixin/cart/TestCart.java",
"chars": 1823,
"preview": "package com.cheng.weixin.cart;\n\nimport com.cheng.weixin.rpc.cart.entity.ShoppingCart;\nimport com.cheng.weixin.rpc.cart.m"
}
]
// ... and 484 more files (download for full content)
About this extraction
This page contains the full source code of the chengzhx76/Weixin-Dubbo GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 684 files (5.0 MB), approximately 1.4M tokens, and a symbol index with 4097 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.