14 | * 账户信息 15 | *
16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class AcctInfoQO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | private Long id; 27 | private Date gmtCreate; 28 | private Date gmtModified; 29 | /** 30 | * 1 正常 2 冻结 9注销 31 | */ 32 | private Integer statusId; 33 | /** 34 | * 用户ID 35 | */ 36 | private Long userInfoId; 37 | /** 38 | * 总余额 39 | */ 40 | private Long totalBalance; 41 | /** 42 | * 最后交易余额 43 | */ 44 | private Long lastTradeBalance; 45 | /** 46 | * 最后交易时间 47 | */ 48 | private Date lastTradeDate; 49 | /** 50 | * 校验码 51 | */ 52 | private String verificationCode; 53 | } 54 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/qo/AreaInfoQO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.qo; 5 | 6 | import java.io.Serializable; 7 | 8 | import lombok.Data; 9 | import lombok.experimental.Accessors; 10 | 11 | /** 12 | *13 | * 14 | *
15 | * 16 | * @author wujing 17 | * @since 2017-12-30 18 | */ 19 | @Data 20 | @Accessors(chain = true) 21 | public class AreaInfoQO implements Serializable { 22 | 23 | private static final long serialVersionUID = 1L; 24 | 25 | private Long id; 26 | /** 27 | * 省编号 28 | */ 29 | private String provinceCode; 30 | /** 31 | * 市编号 32 | */ 33 | private String cityCode; 34 | /** 35 | * 区号 36 | */ 37 | private String areaCode; 38 | /** 39 | * 省名称 40 | */ 41 | private String provinceName; 42 | /** 43 | * 市名称 44 | */ 45 | private String cityName; 46 | /** 47 | * 分类:1.省 2 市 48 | */ 49 | private Integer areaType; 50 | } 51 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/qo/MobileInfoQO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.qo; 5 | 6 | import java.io.Serializable; 7 | 8 | import lombok.Data; 9 | import lombok.experimental.Accessors; 10 | 11 | /** 12 | *13 | * 14 | *
15 | * 16 | * @author wujing 17 | * @since 2018-01-06 18 | */ 19 | @Data 20 | @Accessors(chain = true) 21 | public class MobileInfoQO implements Serializable { 22 | 23 | private static final long serialVersionUID = 1L; 24 | 25 | private Long id; 26 | /** 27 | * 号码片段 28 | */ 29 | private String mobilePrefix; 30 | /** 31 | * 省份代码 32 | */ 33 | private String provinceCode; 34 | /** 35 | * 市代码 36 | */ 37 | private String cityCode; 38 | /** 39 | * 区号 40 | */ 41 | private String areaCode; 42 | /** 43 | * 省份 44 | */ 45 | private String provinceName; 46 | /** 47 | * 市 48 | */ 49 | private String cityName; 50 | /** 51 | * 运营商名称 52 | */ 53 | private String carrierName; 54 | /** 55 | * 运营商类型:1移动,2 电信,3联通 56 | */ 57 | private Integer carrierType; 58 | } 59 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/qo/SysLogLoginQO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.qo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *14 | * 用户登陆日志 15 | *
16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysLogLoginQO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 用户ID 36 | */ 37 | private Long userInfoId; 38 | /** 39 | * 登录名 40 | */ 41 | private String loginName; 42 | /** 43 | * 登录IP 44 | */ 45 | private String loginIp; 46 | /** 47 | * 上次登录IP 48 | */ 49 | private String lastLoginIp; 50 | /** 51 | * 上次登录时间 52 | */ 53 | private Date lastLoginTime; 54 | } 55 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/qo/SysLogOptQO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.qo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *14 | * 用户操作日志表 15 | *
16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysLogOptQO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 用户ID 36 | */ 37 | private Long userInfoId; 38 | /** 39 | * 真实姓名 40 | */ 41 | private String loginName; 42 | /** 43 | * 动作 44 | */ 45 | private Integer action; 46 | /** 47 | * 备注 48 | */ 49 | private String remark; 50 | } 51 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/qo/SysMenuRoleQO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.qo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *14 | * 菜单角色关联表 15 | *
16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysMenuRoleQO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 修改时间 36 | */ 37 | private Date gmtModified; 38 | /** 39 | * 排序 40 | */ 41 | private Integer sort; 42 | /** 43 | * 1 正常 2 冻结 9 注销 44 | */ 45 | private Integer statusId; 46 | /** 47 | * 平台ID 48 | */ 49 | private Long platformId; 50 | /** 51 | * 菜单ID 52 | */ 53 | private Long menuId; 54 | /** 55 | * 角色ID 56 | */ 57 | private Long roleId; 58 | } 59 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/qo/SysPlatformQO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.qo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *14 | * 授权客户端表 15 | *
16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysPlatformQO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 修改时间 36 | */ 37 | private Date gmtModified; 38 | /** 39 | * 排序 40 | */ 41 | private Integer sort; 42 | /** 43 | * 1 正常 2 冻结 9 注销 44 | */ 45 | private Integer statusId; 46 | /** 47 | * 平台APPID 48 | */ 49 | private String platformAppId; 50 | /** 51 | * 平台APPSECRET 52 | */ 53 | private String platformAppSecret; 54 | /** 55 | * 平台名称 56 | */ 57 | private String platformName; 58 | /** 59 | * 备注 60 | */ 61 | private String remark; 62 | } 63 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/qo/SysRoleQO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.qo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *14 | * 角色信息 15 | *
16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysRoleQO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 修改时间 36 | */ 37 | private Date gmtModified; 38 | /** 39 | * 排序 40 | */ 41 | private Integer sort; 42 | /** 43 | * 1 正常 2 冻结 9 注销 44 | */ 45 | private Integer statusId; 46 | /** 47 | * 平台ID 48 | */ 49 | private Long platformId; 50 | /** 51 | * 名称 52 | */ 53 | private String roleName; 54 | /** 55 | * 备注 56 | */ 57 | private String remark; 58 | } 59 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/qo/SysRoleUserQO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.qo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *14 | * 角色用户关联表 15 | *
16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysRoleUserQO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 修改时间 36 | */ 37 | private Date gmtModified; 38 | /** 39 | * 排序 40 | */ 41 | private Integer sort; 42 | /** 43 | * 1 正常 2 冻结 9 注销 44 | */ 45 | private Integer statusId; 46 | /** 47 | * 平台ID 48 | */ 49 | private Long platformId; 50 | /** 51 | * 角色ID 52 | */ 53 | private Long roleId; 54 | /** 55 | * 用户ID 56 | */ 57 | private Long userInfoId; 58 | 59 | private String roleName; 60 | } 61 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/vo/AcctInfoVO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.vo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *14 | * 账户信息 15 | *
16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class AcctInfoVO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | private Long id; 27 | private Date gmtCreate; 28 | private Date gmtModified; 29 | /** 30 | * 1 正常 2 冻结 9注销 31 | */ 32 | private Integer statusId; 33 | /** 34 | * 用户ID 35 | */ 36 | private Long userInfoId; 37 | /** 38 | * 总余额 39 | */ 40 | private Long totalBalance; 41 | /** 42 | * 最后交易余额 43 | */ 44 | private Long lastTradeBalance; 45 | /** 46 | * 最后交易时间 47 | */ 48 | private Date lastTradeDate; 49 | /** 50 | * 校验码 51 | */ 52 | private String verificationCode; 53 | 54 | } 55 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/vo/AreaInfoVO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.vo; 5 | 6 | import java.io.Serializable; 7 | 8 | import lombok.Data; 9 | import lombok.experimental.Accessors; 10 | 11 | /** 12 | *13 | * 14 | *
15 | * 16 | * @author wujing 17 | * @since 2017-12-30 18 | */ 19 | @Data 20 | @Accessors(chain = true) 21 | public class AreaInfoVO implements Serializable { 22 | 23 | private static final long serialVersionUID = 1L; 24 | 25 | private Long id; 26 | /** 27 | * 省编号 28 | */ 29 | private String provinceCode; 30 | /** 31 | * 市编号 32 | */ 33 | private String cityCode; 34 | /** 35 | * 区号 36 | */ 37 | private String areaCode; 38 | /** 39 | * 省名称 40 | */ 41 | private String provinceName; 42 | /** 43 | * 市名称 44 | */ 45 | private String cityName; 46 | /** 47 | * 分类:1.省 2 市 48 | */ 49 | private Integer areaType; 50 | 51 | } 52 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/vo/MobileInfoVO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.vo; 5 | 6 | import java.io.Serializable; 7 | 8 | import lombok.Data; 9 | import lombok.experimental.Accessors; 10 | 11 | /** 12 | *13 | * 14 | *
15 | * 16 | * @author wujing 17 | * @since 2018-01-06 18 | */ 19 | @Data 20 | @Accessors(chain = true) 21 | public class MobileInfoVO implements Serializable { 22 | 23 | private static final long serialVersionUID = 1L; 24 | 25 | private Long id; 26 | /** 27 | * 号码片段 28 | */ 29 | private String mobilePrefix; 30 | /** 31 | * 省份代码 32 | */ 33 | private String provinceCode; 34 | /** 35 | * 市代码 36 | */ 37 | private String cityCode; 38 | /** 39 | * 区号 40 | */ 41 | private String areaCode; 42 | /** 43 | * 省份 44 | */ 45 | private String provinceName; 46 | /** 47 | * 市 48 | */ 49 | private String cityName; 50 | /** 51 | * 运营商名称 52 | */ 53 | private String carrierName; 54 | /** 55 | * 运营商类型:1移动,2 电信,3联通 56 | */ 57 | private Integer carrierType; 58 | 59 | } 60 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/vo/SysLogLoginVO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.vo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *14 | * 用户登陆日志 15 | *
16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysLogLoginVO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 用户ID 36 | */ 37 | private Long userInfoId; 38 | /** 39 | * 登录名 40 | */ 41 | private String loginName; 42 | /** 43 | * 登录IP 44 | */ 45 | private String loginIp; 46 | /** 47 | * 上次登录IP 48 | */ 49 | private String lastLoginIp; 50 | /** 51 | * 上次登录时间 52 | */ 53 | private Date lastLoginTime; 54 | 55 | } 56 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/vo/SysLogOptVO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.vo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *14 | * 用户操作日志表 15 | *
16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysLogOptVO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 用户ID 36 | */ 37 | private Long userInfoId; 38 | /** 39 | * 真实姓名 40 | */ 41 | private String loginName; 42 | /** 43 | * 动作 44 | */ 45 | private Integer action; 46 | /** 47 | * 备注 48 | */ 49 | private String remark; 50 | 51 | } 52 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/vo/SysMenuRoleVO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.vo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *14 | * 菜单角色关联表 15 | *
16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysMenuRoleVO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 修改时间 36 | */ 37 | private Date gmtModified; 38 | /** 39 | * 排序 40 | */ 41 | private Integer sort; 42 | /** 43 | * 1 正常 2 冻结 9 注销 44 | */ 45 | private Integer statusId; 46 | /** 47 | * 平台ID 48 | */ 49 | private Long platformId; 50 | /** 51 | * 菜单ID 52 | */ 53 | private Long menuId; 54 | /** 55 | * 角色ID 56 | */ 57 | private Long roleId; 58 | 59 | } 60 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/vo/SysPlatformVO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.vo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *14 | * 授权客户端表 15 | *
16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysPlatformVO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 修改时间 36 | */ 37 | private Date gmtModified; 38 | /** 39 | * 排序 40 | */ 41 | private Integer sort; 42 | /** 43 | * 1 正常 2 冻结 9 注销 44 | */ 45 | private Integer statusId; 46 | /** 47 | * 平台APPID 48 | */ 49 | private String platformAppId; 50 | /** 51 | * 平台APPSECRET 52 | */ 53 | private String platformAppSecret; 54 | /** 55 | * 平台名称 56 | */ 57 | private String platformName; 58 | /** 59 | * 备注 60 | */ 61 | private String remark; 62 | 63 | } 64 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/vo/SysRoleUserVO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.vo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *14 | * 角色用户关联表 15 | *
16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysRoleUserVO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 修改时间 36 | */ 37 | private Date gmtModified; 38 | /** 39 | * 排序 40 | */ 41 | private Integer sort; 42 | /** 43 | * 1 正常 2 冻结 9 注销 44 | */ 45 | private Integer statusId; 46 | /** 47 | * 平台ID 48 | */ 49 | private Long platformId; 50 | /** 51 | * 角色ID 52 | */ 53 | private Long roleId; 54 | /** 55 | * 用户ID 56 | */ 57 | private Long userInfoId; 58 | 59 | } 60 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/bean/vo/SysRoleVO.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.bean.vo; 5 | 6 | import java.io.Serializable; 7 | import java.util.Date; 8 | 9 | import lombok.Data; 10 | import lombok.experimental.Accessors; 11 | 12 | /** 13 | *14 | * 角色信息 15 | *
16 | * 17 | * @author wujing 18 | * @since 2017-12-27 19 | */ 20 | @Data 21 | @Accessors(chain = true) 22 | public class SysRoleVO implements Serializable { 23 | 24 | private static final long serialVersionUID = 1L; 25 | 26 | /** 27 | * 主键 28 | */ 29 | private Long id; 30 | /** 31 | * 创建时间 32 | */ 33 | private Date gmtCreate; 34 | /** 35 | * 修改时间 36 | */ 37 | private Date gmtModified; 38 | /** 39 | * 排序 40 | */ 41 | private Integer sort; 42 | /** 43 | * 1 正常 2 冻结 9 注销 44 | */ 45 | private Integer statusId; 46 | /** 47 | * 平台ID 48 | */ 49 | private Long platformId; 50 | /** 51 | * 名称 52 | */ 53 | private String roleName; 54 | /** 55 | * 备注 56 | */ 57 | private String remark; 58 | 59 | private Integer isShow; 60 | 61 | } 62 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/java/com/roncoo/recharge/boss/common/ShiroComponent.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2015-现在 广州市领课网络科技有限公司 3 | */ 4 | package com.roncoo.recharge.boss.common; 5 | 6 | import javax.annotation.PostConstruct; 7 | 8 | import org.springframework.beans.factory.annotation.Autowired; 9 | import org.springframework.stereotype.Component; 10 | import org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer; 11 | 12 | import com.roncoo.shiro.freemarker.ShiroTags; 13 | 14 | /** 15 | * shiro配置类 16 | */ 17 | @Component 18 | public class ShiroComponent { 19 | 20 | @Autowired 21 | private FreeMarkerConfigurer freeMarkerConfigurer; 22 | 23 | @PostConstruct 24 | public void setSharedVariable() { 25 | freeMarkerConfigurer.getConfiguration().setSharedVariable("shiro", new ShiroTags()); 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | # server 2 | server.port=8888 3 | 4 | # profile 5 | spring.profiles.active=local 6 | 7 | # shiro 8 | spring.shiro.login-url=/login 9 | spring.shiro.success-url=/ 10 | spring.shiro.unauthorized-url=/403 11 | spring.shiro.filter-chain-definition-map.anon=/static/**,/BJUI/**,/favicon.ico,/timeout 12 | spring.shiro.filter-chain-definition-map.authc=/authc 13 | spring.shiro.filter-chain-definition-map.logout=/exit 14 | spring.shiro.filter-chain-definition-map.user=/** 15 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/login/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/login/css/login.css -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/login/images/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/login/images/account.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/login/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/login/images/bg.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/login/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/login/images/logo.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/login/images/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/login/images/password.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/bootstrapSelect/defaults-zh_CN.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.6.3 (http://silviomoreto.github.io/bootstrap-select/) 3 | * 4 | * Copyright 2013-2014 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | (function ($) { 8 | $.fn.selectpicker.defaults = { 9 | //noneSelectedText: '没有选中任何项', 10 | noneSelectedText: '', 11 | noneResultsText: '没有找到匹配项', 12 | countSelectedText: '选中{1}中的{0}项', 13 | maxOptionsText: ['超出限制 (最多选择{n}项)', '组选择超出限制(最多选择{n}组)'], 14 | multipleSeparator: ', ' 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/bootstrapSelect/defaults-zh_CN.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap-select v1.6.3 (http://silviomoreto.github.io/bootstrap-select/) 3 | * 4 | * Copyright 2013-2014 bootstrap-select 5 | * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) 6 | */ 7 | !function(a){a.fn.selectpicker.defaults={noneSelectedText:"",noneResultsText:"没有找到匹配项",countSelectedText:"选中{1}中的{0}项",maxOptionsText:["超出限制 (最多选择{n}项)","组选择超出限制(最多选择{n}组)"],multipleSeparator:", "}}(jQuery); -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/colorpicker/img/bootstrap-colorpicker/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/colorpicker/img/bootstrap-colorpicker/alpha-horizontal.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/colorpicker/img/bootstrap-colorpicker/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/colorpicker/img/bootstrap-colorpicker/alpha.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/colorpicker/img/bootstrap-colorpicker/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/colorpicker/img/bootstrap-colorpicker/hue-horizontal.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/colorpicker/img/bootstrap-colorpicker/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/colorpicker/img/bootstrap-colorpicker/hue.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/colorpicker/img/bootstrap-colorpicker/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/colorpicker/img/bootstrap-colorpicker/saturation.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/echarts/theme/default.js: -------------------------------------------------------------------------------- 1 | /** 2 | * echarts默认主题,开发中 3 | * 4 | * @desc echarts基于Canvas,纯Javascript图表库,提供直观,生动,可交互,可个性化定制的数据统计图表。 5 | * @author Kener (@Kener-林峰, kener.linfeng@gmail.com) 6 | * 7 | */ 8 | define(function() { 9 | return {}; 10 | }); -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/attached/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/attached/test.txt -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/editor-content.css: -------------------------------------------------------------------------------- 1 | @CHARSET "UTF-8"; 2 | /*自定义--编辑框内的内容样式*/ 3 | .ke-content table { 4 | border-collapse: collapse; 5 | border-spacing: 0; 6 | } 7 | .ke-content table th, 8 | .ke-content table td { 9 | border: 1px solid #ddd !important; 10 | } -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/code/prettify.css: -------------------------------------------------------------------------------- 1 | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} 2 | 3 | pre.prettyprint { 4 | border: 0; 5 | border-left: 3px solid rgb(204, 204, 204); 6 | margin-left: 2em; 7 | padding: 0.5em; 8 | font-size: 110%; 9 | display: block; 10 | font-family: "Consolas", "Monaco", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace; 11 | margin: 1em 0px; 12 | white-space: pre; 13 | } 14 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/0.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/1.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/10.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/100.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/101.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/101.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/102.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/102.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/103.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/103.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/104.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/104.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/105.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/105.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/106.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/106.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/107.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/107.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/108.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/108.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/109.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/109.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/11.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/110.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/110.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/111.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/111.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/112.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/112.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/113.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/113.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/114.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/114.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/115.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/115.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/116.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/116.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/117.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/117.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/118.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/118.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/119.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/119.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/12.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/120.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/121.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/121.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/122.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/122.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/123.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/123.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/124.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/124.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/125.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/125.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/126.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/126.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/127.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/127.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/128.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/128.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/129.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/129.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/13.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/130.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/130.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/131.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/131.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/132.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/132.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/133.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/133.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/134.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/134.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/14.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/15.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/16.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/17.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/18.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/19.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/2.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/20.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/21.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/22.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/23.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/24.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/25.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/26.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/27.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/28.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/29.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/3.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/30.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/31.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/32.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/33.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/34.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/35.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/36.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/37.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/38.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/39.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/4.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/40.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/41.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/42.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/43.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/44.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/45.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/46.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/47.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/48.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/49.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/5.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/50.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/51.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/52.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/53.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/54.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/55.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/56.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/57.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/58.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/59.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/6.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/60.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/61.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/62.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/63.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/64.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/65.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/66.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/67.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/68.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/69.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/7.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/70.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/71.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/72.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/72.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/73.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/73.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/74.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/74.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/75.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/76.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/76.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/77.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/77.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/78.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/78.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/79.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/79.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/8.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/80.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/81.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/81.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/82.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/82.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/83.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/83.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/84.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/84.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/85.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/85.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/86.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/86.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/87.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/87.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/88.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/88.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/89.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/89.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/9.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/90.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/90.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/91.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/91.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/92.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/92.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/93.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/93.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/94.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/94.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/95.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/95.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/96.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/96.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/97.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/97.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/98.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/98.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/99.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/99.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/emoticons/images/static.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/filemanager/images/file-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/filemanager/images/file-16.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/filemanager/images/file-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/filemanager/images/file-64.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/filemanager/images/folder-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/filemanager/images/folder-16.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/filemanager/images/folder-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/filemanager/images/folder-64.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/filemanager/images/go-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/filemanager/images/go-up.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/image/images/align_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/image/images/align_left.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/image/images/align_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/image/images/align_right.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/image/images/align_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/image/images/align_top.gif -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/image/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/image/images/refresh.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/multiimage/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/multiimage/images/image.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/multiimage/images/select-files-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/multiimage/images/select-files-en.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/multiimage/images/select-files-zh_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/multiimage/images/select-files-zh_CN.png -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/multiimage/images/swfupload.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-recharge/8151f2177df4f79178edb9e8c2b4eadd3e88bd9a/roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/multiimage/images/swfupload.swf -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/pagebreak/pagebreak.js: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * KindEditor - WYSIWYG HTML Editor for Internet 3 | * Copyright (C) 2006-2011 kindsoft.net 4 | * 5 | * @author Roddy11 | 在此处输入内容 12 |
13 | 14 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/template/html/2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |
14 | 标题115 | |
16 |
17 | 标题118 | |
19 |
22 | 内容1 23 | | 24 |25 | 内容2 26 | | 27 |
30 | 内容3 31 | | 32 |33 | 内容4 34 | | 35 |
39 | 表格说明 40 |
41 | 42 | -------------------------------------------------------------------------------- /roncoo-recharge-boss/src/main/resources/static/BJUI/plugins/kindeditor_4.1.10/plugins/template/html/3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |8 | 在此处输入内容 9 |
10 |22 | 在此处输入内容 23 |
24 |