Commit 7437aac3 authored by YazhouChen's avatar YazhouChen

增加 办法

parent 0a19d600
This diff is collapsed.
#Generated by Maven
#Mon Aug 02 14:36:44 CST 2021
#Thu Aug 05 16:15:02 CST 2021
version=2.0
groupId=io.geekidea.springbootplus
artifactId=admin
#Generated by Maven
#Mon Aug 02 14:37:36 CST 2021
#Thu Aug 05 16:15:40 CST 2021
version=2.0
groupId=io.geekidea.springbootplus
artifactId=bootstrap
......@@ -18,8 +18,8 @@ spring:
database: 0
# redis bus123$ 8976 127.0.0.1 dapchina 6390
host: 127.0.0.1
password: dapchina
port: 6390
password:
port: 6379
# 打印SQL语句和结果集,本地开发环境可开启,线上注释掉
mybatis-plus:
......
#Generated by Maven
#Mon Aug 02 14:36:51 CST 2021
#Thu Aug 05 16:15:07 CST 2021
version=2.0
groupId=io.geekidea.springbootplus
artifactId=config
#Generated by Maven
#Mon Aug 02 14:37:37 CST 2021
#Thu Aug 05 16:15:41 CST 2021
version=2.0
groupId=io.geekidea.springbootplus
artifactId=distribution
......@@ -6,7 +6,7 @@ import javax.annotation.Generated;
@Generated(
value = "org.mapstruct.ap.MappingProcessor",
date = "2021-08-02T14:36:57+0800",
date = "2021-08-05T16:15:17+0800",
comments = "version: 1.3.1.Final, compiler: javac, environment: Java 1.8.0_131 (Oracle Corporation)"
)
public class LoginSysUserVoConvertImpl implements LoginSysUserVoConvert {
......
......@@ -6,7 +6,7 @@ import javax.annotation.Generated;
@Generated(
value = "org.mapstruct.ap.MappingProcessor",
date = "2021-08-02T14:36:57+0800",
date = "2021-08-05T16:15:17+0800",
comments = "version: 1.3.1.Final, compiler: javac, environment: Java 1.8.0_131 (Oracle Corporation)"
)
public class ShiroMapstructConvertImpl implements ShiroMapstructConvert {
......
#Generated by Maven
#Mon Aug 02 14:37:01 CST 2021
#Thu Aug 05 16:15:22 CST 2021
version=2.0
groupId=io.geekidea.springbootplus
artifactId=framework
......@@ -49,7 +49,7 @@ public class SpringBootPlusGenerator {
.setFileOverride(true);
// 设置表信息
generatorProperties.addTable("noticeType","ID");
generatorProperties.addTable("manage_way","ID");
// 数据源配置
generatorProperties.getDataSourceConfig()
......
#Generated by Maven
#Mon Aug 02 14:37:39 CST 2021
#Thu Aug 05 16:15:43 CST 2021
version=2.0
groupId=io.geekidea.springbootplus
artifactId=generator
package com.hongxinhui.controller;
import com.hongxinhui.entity.ManageWay;
import com.hongxinhui.entity.Notice;
import com.hongxinhui.service.ManageWayService;
import lombok.extern.slf4j.Slf4j;
import com.hongxinhui.param.ManageWayPageParam;
import io.geekidea.springbootplus.framework.common.controller.BaseController;
import io.geekidea.springbootplus.framework.common.api.ApiResult;
import io.geekidea.springbootplus.framework.core.pagination.Paging;
import io.geekidea.springbootplus.framework.common.param.IdParam;
import io.geekidea.springbootplus.framework.log.annotation.Module;
import io.geekidea.springbootplus.framework.log.annotation.OperationLog;
import io.geekidea.springbootplus.framework.log.enums.OperationLogType;
import io.geekidea.springbootplus.framework.core.validator.groups.Add;
import io.geekidea.springbootplus.framework.core.validator.groups.Update;
import org.springframework.validation.annotation.Validated;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
/**
* 管理办法 控制器
*
* @author cyz
* @since 2021-08-05
*/
@Slf4j
@RestController
@RequestMapping("/manageWay")
@Module("${cfg.module}")
@Api(value = "管理办法API", tags = {"管理办法"})
public class ManageWayController extends BaseController {
@Autowired
private ManageWayService manageWayService;
/**
* 添加管理办法
*/
@PostMapping("/add")
@OperationLog(name = "添加管理办法", type = OperationLogType.ADD)
@ApiOperation(value = "添加管理办法", response = ApiResult.class)
public ApiResult<Boolean> addManageWay(@Validated(Add.class) @RequestBody ManageWay manageWay) throws Exception {
boolean flag = manageWayService.saveManageWay(manageWay);
return ApiResult.result(flag);
}
/**
* 修改管理办法
*/
@PostMapping("/update")
@OperationLog(name = "修改管理办法", type = OperationLogType.UPDATE)
@ApiOperation(value = "修改管理办法", response = ApiResult.class)
public ApiResult<Boolean> updateManageWay(@Validated(Update.class) @RequestBody ManageWay manageWay) throws Exception {
boolean flag = manageWayService.updateManageWay(manageWay);
return ApiResult.result(flag);
}
/**
* 删除管理办法
*/
@PostMapping("/delete/{id}")
@OperationLog(name = "删除管理办法", type = OperationLogType.DELETE)
@ApiOperation(value = "删除管理办法", response = ApiResult.class)
public ApiResult<Boolean> deleteManageWay(@PathVariable("id") Long id) throws Exception {
boolean flag = manageWayService.deleteManageWay(id);
return ApiResult.result(flag);
}
/**
* 获取管理办法详情
*/
@GetMapping("/info/{id}")
@OperationLog(name = "管理办法详情", type = OperationLogType.INFO)
@ApiOperation(value = "管理办法详情", response = ManageWay.class)
public ApiResult<ManageWay> getManageWay(@PathVariable("id") Long id) throws Exception {
ManageWay manageWay = manageWayService.getById(id);
return ApiResult.ok(manageWay);
}
/**
* 管理办法分页列表
*/
@PostMapping("/getPageList")
@OperationLog(name = "管理办法分页列表", type = OperationLogType.PAGE)
@ApiOperation(value = "管理办法分页列表", response = ManageWay.class)
public ApiResult<Paging<ManageWay>> getManageWayPageList(@Validated @RequestBody ManageWayPageParam manageWayPageParam) throws Exception {
Paging<ManageWay> paging = manageWayService.getManageWayPageList(manageWayPageParam);
return ApiResult.ok(paging);
}
@PostMapping("/updateStatus")
@OperationLog(name = "发布办法", type = OperationLogType.UPDATE)
@ApiOperation(value = "发布办法", response = ApiResult.class)
public ApiResult<Boolean> updateStatus(@RequestBody ManageWay manageWay) throws Exception {
boolean flag = manageWayService.updateStatus(manageWay);
return ApiResult.result(flag);
}
}
......@@ -16,6 +16,7 @@
package com.hongxinhui.controller;
import com.hongxinhui.entity.ManageWay;
import com.hongxinhui.entity.Members;
import com.hongxinhui.entity.Notice;
import com.hongxinhui.entity.Survey;
......@@ -167,6 +168,20 @@ public class WxController {
}
}
@PostMapping("/manageWayList")
@OperationLogIgnore
@ApiOperation(value = "管理办法列表 ", notes = "管理办法列表 ")
public ApiResult<List<ManageWay>> manageWayList(HttpServletResponse response) throws Exception {
HashMap<String,Object> info = membersService.manageWayList();
if(info.get("code").toString().equals("200")){
return ApiResult.ok( (List<ManageWay>)info.get("data"));
}else{
return ApiResult.result(Integer.valueOf(info.get("code").toString()),info.get("info").toString(),null);
}
}
@PostMapping("/surveyList")
@OperationLogIgnore
@ApiOperation(value = "资产查询列表 ", notes = "资产查询列表 ")
......
package com.hongxinhui.entity;
import io.geekidea.springbootplus.framework.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.IdType;
import java.util.Date;
import com.baomidou.mybatisplus.annotation.Version;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.baomidou.mybatisplus.annotation.TableField;
import io.geekidea.springbootplus.framework.common.enums.BaseEnum;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.experimental.Accessors;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import io.geekidea.springbootplus.framework.core.validator.groups.Update;
/**
* 管理办法
*
* @author cyz
* @since 2021-08-05
*/
@Data
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = true)
@ApiModel(value = "ManageWay对象")
public class ManageWay extends BaseEntity {
private static final long serialVersionUID = 1L;
@NotNull(message = "id不能为空", groups = {Update.class})
@TableId(value = "ID", type = IdType.AUTO)
private Long id;
@ApiModelProperty("管理办法标题")
private String title;
@ApiModelProperty("办法内容")
private String content;
@ApiModelProperty("办法状态1草稿2已发布")
private Integer status;
@ApiModelProperty("发布时间")
@TableField("releaseTime")
private Date releaseTime;
@ApiModelProperty("创建时间")
@TableField("createTime")
private Date createTime;
@ApiModelProperty("创建人")
@TableField("createUser")
private Integer createUser;
@ApiModelProperty("1正常0删除")
@TableLogic
private Integer enable;
@ApiModelProperty("创建人名字")
@TableField(exist = false)
private String createUserstr;
public enum FieldEnum implements BaseEnum {
title("title", "管理办法标题"),
content("content", "办法内容"),
status("status", "办法状态1草稿2已发布"),
releaseTime("releaseTime", "发布时间"),
createTime("createTime", "创建时间"),
createUser("createUser", "创建人"),
enable("enable", "1正常0删除"),
id("id", "编号");
/**
* name
*/
@Getter
private final String name;
/**
* desc
*/
@Getter
private final String desc;
FieldEnum(String name, String desc) {
this.name = name;
this.desc = desc;
}
@Override
public Integer getCode() {
return null;
}
}
}
package com.hongxinhui.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.hongxinhui.entity.ManageWay;
import com.hongxinhui.param.ManageWayPageParam;
import org.springframework.stereotype.Repository;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.apache.ibatis.annotations.Param;
import java.io.Serializable;
/**
* 管理办法 Mapper 接口
*
* @author cyz
* @since 2021-08-05
*/
@Repository
public interface ManageWayMapper extends BaseMapper<ManageWay> {
}
package com.hongxinhui.param;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import io.geekidea.springbootplus.framework.core.pagination.BasePageOrderParam;
import java.util.Date;
/**
* <pre>
* 管理办法 分页参数对象
* </pre>
*
* @author cyz
* @date 2021-08-05
*/
@Data
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = true)
@ApiModel(value = "管理办法分页参数")
public class ManageWayPageParam extends BasePageOrderParam {
private static final long serialVersionUID = 1L;
@ApiModelProperty("公告标题")
private String title;
@ApiModelProperty("公告状态-1全部1草稿2已发布")
private Integer status;
@ApiModelProperty("开始时间")
private Date beginTime;
@ApiModelProperty("结束时间")
private Date endTime;
}
package com.hongxinhui.service;
import com.hongxinhui.entity.ManageWay;
import com.hongxinhui.param.ManageWayPageParam;
import io.geekidea.springbootplus.framework.common.service.BaseService;
import io.geekidea.springbootplus.framework.core.pagination.Paging;
/**
* 管理办法 服务类
*
* @author cyz
* @since 2021-08-05
*/
public interface ManageWayService extends BaseService<ManageWay> {
/**
* 保存
*
* @param manageWay
* @return
* @throws Exception
*/
boolean saveManageWay(ManageWay manageWay) throws Exception;
/**
* 修改
*
* @param manageWay
* @return
* @throws Exception
*/
boolean updateManageWay(ManageWay manageWay) throws Exception;
/**
* 删除
*
* @param id
* @return
* @throws Exception
*/
boolean deleteManageWay(Long id) throws Exception;
/**
* 获取分页对象
*
* @param manageWayQueryParam
* @return
* @throws Exception
*/
Paging<ManageWay> getManageWayPageList(ManageWayPageParam manageWayPageParam) throws Exception;
boolean updateStatus(ManageWay manageWay);
}
......@@ -77,4 +77,6 @@ public interface MembersService extends BaseService<Members> {
HashMap<String, Object> passwordUpdateone(String phone, String verifyCode);
HashMap<String, Object> passwordUpdatetwo(String phone, String pwd);
HashMap<String, Object> manageWayList();
}
package com.hongxinhui.service.impl;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.hongxinhui.entity.ManageWay;
import com.hongxinhui.entity.Notice;
import com.hongxinhui.entity.Superadmindb;
import com.hongxinhui.mapper.ManageWayMapper;
import com.hongxinhui.mapper.SuperadmindbMapper;
import com.hongxinhui.service.ManageWayService;
import com.hongxinhui.param.ManageWayPageParam;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.hongxinhui.utils.StringUtils;
import io.geekidea.springbootplus.framework.common.service.impl.BaseServiceImpl;
import io.geekidea.springbootplus.framework.core.pagination.Paging;
import io.geekidea.springbootplus.framework.core.pagination.PageInfo;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.core.metadata.OrderItem;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import io.geekidea.springbootplus.framework.util.LoginUtil;
import org.apache.commons.text.StringEscapeUtils;
import org.springframework.transaction.annotation.Transactional;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
import org.springframework.beans.factory.annotation.Autowired;
import java.util.Date;
/**
* 管理办法 服务实现类
*
* @author cyz
* @since 2021-08-05
*/
@Slf4j
@Service
public class ManageWayServiceImpl extends BaseServiceImpl<ManageWayMapper, ManageWay> implements ManageWayService {
@Autowired
private ManageWayMapper manageWayMapper;
@Autowired
private SuperadmindbMapper superadmindbMapper;
@Transactional(rollbackFor = Exception.class)
@Override
public boolean saveManageWay(ManageWay manageWay) throws Exception {
manageWay.setContent(StringEscapeUtils.unescapeHtml4( manageWay.getContent() ));//转义html
if(manageWay.getStatus()==2){
manageWay.setReleaseTime(new Date());
}
Superadmindb user = (Superadmindb) LoginUtil.getSysUser();
if(user!=null){
manageWay.setCreateUser(user.getId().intValue());
}else{
return false;
}
return manageWayMapper.insert(manageWay)>0;
}
@Transactional(rollbackFor = Exception.class)
@Override
public boolean updateManageWay(ManageWay manageWay) throws Exception {
return super.updateById(manageWay);
}
@Transactional(rollbackFor = Exception.class)
@Override
public boolean deleteManageWay(Long id) throws Exception {
return super.removeById(id);
}
@Override
public Paging<ManageWay> getManageWayPageList(ManageWayPageParam manageWayPageParam) throws Exception {
Page<ManageWay> page = new PageInfo<>(manageWayPageParam, OrderItem.desc(getLambdaColumn(ManageWay::getCreateTime)));
QueryWrapper<ManageWay> wrapper = new QueryWrapper<>();
if(manageWayPageParam.getStatus()!=null&&manageWayPageParam.getStatus()!=-1){
wrapper.eq("status",manageWayPageParam.getStatus());
}
if(!StringUtils.isEmpty(manageWayPageParam.getTitle())){
wrapper.like("title",manageWayPageParam.getTitle());
}
if(manageWayPageParam.getBeginTime()!=null){
wrapper.ge("releaseTime",manageWayPageParam.getBeginTime());
}
if(manageWayPageParam.getEndTime()!=null){
wrapper.le("releaseTime",manageWayPageParam.getEndTime());
}
IPage<ManageWay> iPage = manageWayMapper.selectPage(page, wrapper);
for (ManageWay manageWay:iPage.getRecords()) {
Integer createUser = manageWay.getCreateUser();
if(createUser!=null){
manageWay.setCreateUserstr(superadmindbMapper.selectById(createUser).getNickname());
}
manageWay.setContent(StringEscapeUtils.unescapeHtml4(manageWay.getContent()));
}
return new Paging<ManageWay>(iPage);
}
@Override
public boolean updateStatus(ManageWay manageWay) {
manageWay.setStatus(2);
manageWay.setReleaseTime(new Date());
int count = manageWayMapper.updateById(manageWay);
return count>0;
}
}
......@@ -59,6 +59,8 @@ public class MembersServiceImpl extends BaseServiceImpl<MembersMapper, Members>
@Autowired
private NoticeMapper noticeMapper;
@Autowired
private ManageWayMapper manageWayMapper;
@Autowired
private NoticetypeMapper noticetypeMapper;
@Lazy
@Autowired
......@@ -333,7 +335,6 @@ public class MembersServiceImpl extends BaseServiceImpl<MembersMapper, Members>
members.setLastLoginTime(new Date());
membersMapper.updateById(members);
// AccountManager.setAttribute(AccountManager.LOGIN_USER, members);
redisTemplate.opsForValue().set("USER_"+token,members);
hashMap.put("code","200");
hashMap.put("info","登录成功!");
......@@ -583,4 +584,27 @@ public class MembersServiceImpl extends BaseServiceImpl<MembersMapper, Members>
return hashMap;
}
@Override
public HashMap<String, Object> manageWayList() {
HashMap<String, Object> hashMap = new HashMap<>();
Members weChartUser = (Members)LoginUtil.getWxUser();
if(weChartUser==null){
hashMap.put("code","501");
hashMap.put("info","请先去登录!");
return hashMap;
}
QueryWrapper<ManageWay> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("enable",1);
queryWrapper.eq("status",2);//已发布的
List<ManageWay> manageWays = manageWayMapper.selectList(queryWrapper);
for (ManageWay manageWay:manageWays) {
manageWay.setContent(StringEscapeUtils.unescapeHtml4(manageWay.getContent()));
}
hashMap.put("code","200");
hashMap.put("info","查询成功");
hashMap.put("data",manageWays);
return hashMap;
}
}
......@@ -2,8 +2,10 @@ package com.hongxinhui.service.impl;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.hongxinhui.entity.Notice;
import com.hongxinhui.entity.Noticetype;
import com.hongxinhui.entity.Superadmindb;
import com.hongxinhui.mapper.NoticeMapper;
import com.hongxinhui.mapper.NoticetypeMapper;
import com.hongxinhui.mapper.SuperadmindbMapper;
import com.hongxinhui.param.NoticeAdd;
import com.hongxinhui.service.NoticeService;
......@@ -37,6 +39,8 @@ public class NoticeServiceImpl extends BaseServiceImpl<NoticeMapper, Notice> imp
@Autowired
private NoticeMapper noticeMapper;
@Autowired
private NoticetypeMapper noticetypeMapper;
@Autowired
private SuperadmindbMapper superadmindbMapper;
@Transactional(rollbackFor = Exception.class)
......@@ -97,6 +101,10 @@ public class NoticeServiceImpl extends BaseServiceImpl<NoticeMapper, Notice> imp
notice.setCreateUserstr(superadmindbMapper.selectById(createUser).getNickname());
}
notice.setContent(StringEscapeUtils.unescapeHtml4(notice.getContent()));
Noticetype noticetype = noticetypeMapper.selectById(notice.getTypeId());
if(noticetype!=null){
notice.setTypeStr(noticetype.getName());
}
// System.out.println("notice.getContent() = " + notice.getContent());
}
return new Paging<Notice>(iPage);
......
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.hongxinhui.mapper.ManageWayMapper">
</mapper>
#Generated by Maven
#Mon Aug 02 14:37:27 CST 2021
#Thu Aug 05 16:15:34 CST 2021
version=2.0
groupId=io.geekidea.springbootplus
artifactId=example
......@@ -5,6 +5,7 @@ com\hongxinhui\param\EnterpriseMembers.class
com\hongxinhui\entity\Surveyfile$FieldEnum.class
com\hongxinhui\vo\SysDepartmentQueryVo.class
com\hongxinhui\controller\MembersController.class
com\hongxinhui\param\ManageWayPageParam.class
com\hongxinhui\utils\wx\msg\MusicMessage$Music.class
com\hongxinhui\utils\wx\msg\VoiceMessage.class
com\hongxinhui\utils\DownloadHelper.class
......@@ -67,9 +68,11 @@ com\hongxinhui\param\SurveyAdd.class
com\hongxinhui\param\NoticePageParam.class
com\hongxinhui\utils\CapitalizationUtils.class
com\hongxinhui\utils\wx\msg\EventMessage.class
com\hongxinhui\controller\ManageWayController.class
com\hongxinhui\entity\Superadmindb$FieldEnum.class
com\hongxinhui\utils\wx\WXMessageUtils.class
com\hongxinhui\vo\ProjectQueryVo.class
com\hongxinhui\service\ManageWayService.class
com\hongxinhui\param\SuperadmindbPageParam.class
com\hongxinhui\utils\wx\msg\NewsMessage$Item.class
com\hongxinhui\service\impl\NoticetypeServiceImpl.class
......@@ -85,12 +88,16 @@ com\hongxinhui\utils\wx\msg\VideoMessage.class
com\hongxinhui\utils\wx\WXConfigInfo.class
com\hongxinhui\utils\ListUtils$2.class
com\hongxinhui\entity\Notice$FieldEnum.class
com\hongxinhui\entity\ManageWay$FieldEnum.class
com\hongxinhui\utils\IpUtils.class
com\hongxinhui\utils\wx\msg\ImageMessage.class
com\hongxinhui\vo\TFolderManagementTreeVo.class
com\hongxinhui\entity\ManageWay.class
com\hongxinhui\mapper\ManageWayMapper.class
com\hongxinhui\utils\wx\DateUtils$ISimpleDateFormat.class
com\hongxinhui\utils\ExcelUtils.class
com\hongxinhui\utils\wx\aes\PKCS7Encoder.class
com\hongxinhui\service\impl\ManageWayServiceImpl.class
com\hongxinhui\utils\wx\msg\LinkMessage.class
com\hongxinhui\utils\wx\msg\LocationMessage.class
com\hongxinhui\param\SuperadmindbAdd.class
......
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\service\ManageWayService.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\utils\StringUtils.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\utils\SendMail.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\vo\countFiveYearsEntity.java
......@@ -9,6 +10,7 @@ E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\utils\wx\AccessTok
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\vo\TFirsthandDataPageList.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\mapper\SuperadmindbMapper.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\utils\wx\msg\LinkMessage.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\param\ManageWayPageParam.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\utils\wx\msg\MediaMessage.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\mapper\SurveyMapper.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\service\NoticetypeService.java
......@@ -27,6 +29,7 @@ E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\utils\wx\msg\Video
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\controller\UploadController.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\service\impl\SurveyfileServiceImpl.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\utils\wx\msg\NewsMessage.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\service\impl\ManageWayServiceImpl.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\entity\Members.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\enums\MenuLevelEnum.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\enums\EntityEnum.java
......@@ -48,6 +51,7 @@ E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\entity\Survey.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\utils\wx\msg\TextMessage.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\vo\SysUserQueryVo.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\utils\wx\aes\SHA1.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\controller\ManageWayController.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\controller\SurveyfileController.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\mapper\NoticetypeMapper.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\param\NoticeAdd.java
......@@ -60,6 +64,7 @@ E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\utils\wx\msg\Event
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\service\MembersService.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\service\SuperadmindbService.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\service\impl\MembersServiceImpl.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\entity\ManageWay.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\utils\IdCardUtil.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\controller\NoticetypeController.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\utils\ExcelUtils.java
......@@ -81,6 +86,7 @@ E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\param\NoticetypePa
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\vo\SubjectsInfoStatisticsDashboard.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\utils\IpUtils.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\mapper\NoticeMapper.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\mapper\ManageWayMapper.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\param\EnterpriseMembers.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\param\EnterpriseMembersPage.java
E:\changfa\hongxinhui\hongxinhui\src\main\java\com\hongxinhui\controller\MembersController.java
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
#Generated by Maven
#Mon Aug 02 14:37:40 CST 2021
#Thu Aug 05 16:15:45 CST 2021
version=2.0
groupId=io.geekidea.springbootplus
artifactId=scheduled
#Generated by Maven
#Mon Aug 02 14:37:32 CST 2021
#Thu Aug 05 16:15:35 CST 2021
version=2.0
groupId=io.geekidea.springbootplus
artifactId=system
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment