Browse Source

group_message代码生成

master
yinzuomei 4 years ago
parent
commit
108607d2eb
  1. 97
      epmet-module/resi-group/resi-group-client/src/main/java/com/epmet/resi/group/dto/group/GroupMessageDTO.java
  2. 33
      epmet-module/resi-group/resi-group-server/src/main/java/com/epmet/modules/group/dao/GroupMessageDao.java
  3. 63
      epmet-module/resi-group/resi-group-server/src/main/java/com/epmet/modules/group/entity/GroupMessageEntity.java
  4. 95
      epmet-module/resi-group/resi-group-server/src/main/java/com/epmet/modules/group/service/GroupMessageService.java
  5. 99
      epmet-module/resi-group/resi-group-server/src/main/java/com/epmet/modules/group/service/impl/GroupMessageServiceImpl.java
  6. 8
      epmet-module/resi-group/resi-group-server/src/main/resources/mapper/group/GroupMessageDao.xml

97
epmet-module/resi-group/resi-group-client/src/main/java/com/epmet/resi/group/dto/group/GroupMessageDTO.java

@ -0,0 +1,97 @@
/**
* Copyright 2018 人人开源 https://www.renren.io
* <p>
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* <p>
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* <p>
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.epmet.resi.group.dto.group;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
/**
* 组内消息(话题通知活动)记录表
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2021-04-22
*/
@Data
public class GroupMessageDTO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键
*/
private String id;
/**
* 客户id
*/
private String customerId;
/**
* 网格id
*/
private String gridId;
/**
* 话题topic; 通知notice; 活动act
*/
private String type;
/**
* 话题id , 通知id,活动id
*/
private String messageId;
/**
* 发布人用户id
*/
private String publishUserId;
/**
* 逻辑删除标识
*/
private String delFlag;
/**
* 乐观锁
*/
private Integer revision;
/**
* 创建人
*/
private String createdBy;
/**
* 创建时间
*/
private Date createdTime;
/**
* 更新人
*/
private String updatedBy;
/**
* 更新时间
*/
private Date updatedTime;
}

33
epmet-module/resi-group/resi-group-server/src/main/java/com/epmet/modules/group/dao/GroupMessageDao.java

@ -0,0 +1,33 @@
/**
* Copyright 2018 人人开源 https://www.renren.io
* <p>
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* <p>
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* <p>
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.epmet.modules.group.dao;
import com.epmet.commons.mybatis.dao.BaseDao;
import com.epmet.modules.group.entity.GroupMessageEntity;
import org.apache.ibatis.annotations.Mapper;
/**
* 组内消息(话题通知活动)记录表
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2021-04-22
*/
@Mapper
public interface GroupMessageDao extends BaseDao<GroupMessageEntity> {
}

63
epmet-module/resi-group/resi-group-server/src/main/java/com/epmet/modules/group/entity/GroupMessageEntity.java

@ -0,0 +1,63 @@
/**
* Copyright 2018 人人开源 https://www.renren.io
* <p>
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* <p>
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* <p>
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.epmet.modules.group.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.epmet.commons.mybatis.entity.BaseEpmetEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 组内消息(话题通知活动)记录表
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2021-04-22
*/
@Data
@EqualsAndHashCode(callSuper=false)
@TableName("group_message")
public class GroupMessageEntity extends BaseEpmetEntity {
private static final long serialVersionUID = 1L;
/**
* 客户id
*/
private String customerId;
/**
* 网格id
*/
private String gridId;
/**
* 话题topic; 通知notice; 活动act
*/
private String type;
/**
* 话题id , 通知id,活动id
*/
private String messageId;
/**
* 发布人用户id
*/
private String publishUserId;
}

95
epmet-module/resi-group/resi-group-server/src/main/java/com/epmet/modules/group/service/GroupMessageService.java

@ -0,0 +1,95 @@
/**
* Copyright 2018 人人开源 https://www.renren.io
* <p>
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* <p>
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* <p>
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.epmet.modules.group.service;
import com.epmet.commons.mybatis.service.BaseService;
import com.epmet.commons.tools.page.PageData;
import com.epmet.dto.GroupMessageDTO;
import com.epmet.modules.group.entity.GroupMessageEntity;
import java.util.List;
import java.util.Map;
/**
* 组内消息(话题通知活动)记录表
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2021-04-22
*/
public interface GroupMessageService extends BaseService<GroupMessageEntity> {
/**
* 默认分页
*
* @param params
* @return PageData<GroupMessageDTO>
* @author generator
* @date 2021-04-22
*/
PageData<GroupMessageDTO> page(Map<String, Object> params);
/**
* 默认查询
*
* @param params
* @return java.util.List<GroupMessageDTO>
* @author generator
* @date 2021-04-22
*/
List<GroupMessageDTO> list(Map<String, Object> params);
/**
* 单条查询
*
* @param id
* @return GroupMessageDTO
* @author generator
* @date 2021-04-22
*/
GroupMessageDTO get(String id);
/**
* 默认保存
*
* @param dto
* @return void
* @author generator
* @date 2021-04-22
*/
void save(GroupMessageDTO dto);
/**
* 默认更新
*
* @param dto
* @return void
* @author generator
* @date 2021-04-22
*/
void update(GroupMessageDTO dto);
/**
* 批量删除
*
* @param ids
* @return void
* @author generator
* @date 2021-04-22
*/
void delete(String[] ids);
}

99
epmet-module/resi-group/resi-group-server/src/main/java/com/epmet/modules/group/service/impl/GroupMessageServiceImpl.java

@ -0,0 +1,99 @@
/**
* Copyright 2018 人人开源 https://www.renren.io
* <p>
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* <p>
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* <p>
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.epmet.modules.group.service.impl;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.epmet.commons.mybatis.service.impl.BaseServiceImpl;
import com.epmet.commons.tools.constant.FieldConstant;
import com.epmet.commons.tools.page.PageData;
import com.epmet.commons.tools.utils.ConvertUtils;
import com.epmet.dto.GroupMessageDTO;
import com.epmet.modules.group.dao.GroupMessageDao;
import com.epmet.modules.group.entity.GroupMessageEntity;
import com.epmet.modules.group.service.GroupMessageService;
import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
/**
* 组内消息(话题通知活动)记录表
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2021-04-22
*/
@Service
public class GroupMessageServiceImpl extends BaseServiceImpl<GroupMessageDao, GroupMessageEntity> implements GroupMessageService {
@Override
public PageData<GroupMessageDTO> page(Map<String, Object> params) {
IPage<GroupMessageEntity> page = baseDao.selectPage(
getPage(params, FieldConstant.CREATED_TIME, false),
getWrapper(params)
);
return getPageData(page, GroupMessageDTO.class);
}
@Override
public List<GroupMessageDTO> list(Map<String, Object> params) {
List<GroupMessageEntity> entityList = baseDao.selectList(getWrapper(params));
return ConvertUtils.sourceToTarget(entityList, GroupMessageDTO.class);
}
private QueryWrapper<GroupMessageEntity> getWrapper(Map<String, Object> params){
String id = (String)params.get(FieldConstant.ID_HUMP);
QueryWrapper<GroupMessageEntity> wrapper = new QueryWrapper<>();
wrapper.eq(StringUtils.isNotBlank(id), FieldConstant.ID, id);
return wrapper;
}
@Override
public GroupMessageDTO get(String id) {
GroupMessageEntity entity = baseDao.selectById(id);
return ConvertUtils.sourceToTarget(entity, GroupMessageDTO.class);
}
@Override
@Transactional(rollbackFor = Exception.class)
public void save(GroupMessageDTO dto) {
GroupMessageEntity entity = ConvertUtils.sourceToTarget(dto, GroupMessageEntity.class);
insert(entity);
}
@Override
@Transactional(rollbackFor = Exception.class)
public void update(GroupMessageDTO dto) {
GroupMessageEntity entity = ConvertUtils.sourceToTarget(dto, GroupMessageEntity.class);
updateById(entity);
}
@Override
@Transactional(rollbackFor = Exception.class)
public void delete(String[] ids) {
// 逻辑删除(@TableLogic 注解)
baseDao.deleteBatchIds(Arrays.asList(ids));
}
}

8
epmet-module/resi-group/resi-group-server/src/main/resources/mapper/group/GroupMessageDao.xml

@ -0,0 +1,8 @@
<?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.epmet.modules.group.dao.GroupMessageDao">
</mapper>
Loading…
Cancel
Save