New file |
| | |
| | | package com.panzhihua.service_community.dao; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveAnswerContentDO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:33:32 |
| | | * @describe 预约登记回答记录内容 mapper类 |
| | | */ |
| | | @Mapper |
| | | public interface ComActReserveAnswerContentMapper extends BaseMapper<ComActReserveAnswerContentDO> { |
| | | |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.dao; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveDO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:33:11 |
| | | * @describe 预约登记表mapper类 |
| | | */ |
| | | @Mapper |
| | | public interface ComActReserveMapper extends BaseMapper<ComActReserveDO> { |
| | | |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.dao; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveOperationRecordDO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:33:42 |
| | | * @describe 预约登记操作记录表mapper类 |
| | | */ |
| | | @Mapper |
| | | public interface ComActReserveOperationRecordMapper extends BaseMapper<ComActReserveOperationRecordDO> { |
| | | |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.dao; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveRecordDO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:33:53 |
| | | * @describe 预约登记记录表mapper类 |
| | | */ |
| | | @Mapper |
| | | public interface ComActReserveRecordMapper extends BaseMapper<ComActReserveRecordDO> { |
| | | |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.dao; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveSubDO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:34:03 |
| | | * @describe 预约登记题目选项mapper类 |
| | | */ |
| | | @Mapper |
| | | public interface ComActReserveSubMapper extends BaseMapper<ComActReserveSubDO> { |
| | | |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.dao; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveSubSelectionDO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:34:13 |
| | | * @describe 预约登记题目选项 mapper类 |
| | | */ |
| | | @Mapper |
| | | public interface ComActReserveSubSelectionMapper extends BaseMapper<ComActReserveSubSelectionDO> { |
| | | |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.model.dos; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:33:32 |
| | | * @describe 预约登记回答记录内容 实体类 |
| | | */ |
| | | |
| | | @Data |
| | | @TableName("com_act_reserve_answer_content") |
| | | public class ComActReserveAnswerContentDO implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * id |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** |
| | | * 预约登记题目id |
| | | */ |
| | | private Long reserveSubId; |
| | | |
| | | /** |
| | | * 预约登记题目选项id |
| | | */ |
| | | private Long reserveSelectionId; |
| | | |
| | | /** |
| | | * 用户id |
| | | */ |
| | | private Long userId; |
| | | |
| | | /** |
| | | * 题目类型(1.选项题 2.问答题) |
| | | */ |
| | | private Integer type; |
| | | |
| | | /** |
| | | * 问卷回答选项 |
| | | */ |
| | | private String choice; |
| | | |
| | | /** |
| | | * 问卷回答内容 |
| | | */ |
| | | private String answerContent; |
| | | |
| | | /** |
| | | * 创建人 |
| | | */ |
| | | private Long createBy; |
| | | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | private Date createAt; |
| | | |
| | | /** |
| | | * 更新人 |
| | | */ |
| | | private String updateBy; |
| | | |
| | | /** |
| | | * 更新时间 |
| | | */ |
| | | private Date updateAt; |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "ComActReserveAnswerContentDO{" + |
| | | "id=" + id + |
| | | ", reserveSubId=" + reserveSubId + |
| | | ", reserveSelectionId=" + reserveSelectionId + |
| | | ", userId=" + userId + |
| | | ", type=" + type + |
| | | ", choice=" + choice + |
| | | ", answerContent=" + answerContent + |
| | | ", createBy=" + createBy + |
| | | ", createAt=" + createAt + |
| | | ", updateBy=" + updateBy + |
| | | ", updateAt=" + updateAt + |
| | | "}"; |
| | | } |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.model.dos; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:33:11 |
| | | * @describe 预约登记表实体类 |
| | | */ |
| | | |
| | | @Data |
| | | @TableName("com_act_reserve") |
| | | public class ComActReserveDO implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 主键id |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** |
| | | * 社区id |
| | | */ |
| | | private Long communityId; |
| | | |
| | | /** |
| | | * 类型(1.预约 2.登记) |
| | | */ |
| | | private Integer type; |
| | | |
| | | /** |
| | | * 主题 |
| | | */ |
| | | private String title; |
| | | |
| | | /** |
| | | * 浏览量 |
| | | */ |
| | | private Integer viewNum; |
| | | |
| | | /** |
| | | * 总参加人数 |
| | | */ |
| | | private Integer joinAllCount; |
| | | |
| | | /** |
| | | * 参加人数 |
| | | */ |
| | | private Integer joinCount; |
| | | |
| | | /** |
| | | * 图标类型(1.预设1 2.预设2 3.预设3 4.预设4 5.用户自定义图片) |
| | | */ |
| | | private Integer imgType; |
| | | |
| | | /** |
| | | * 图标url(当img_type为5时,此字段的值为图标url地址) |
| | | */ |
| | | private String imgUrl; |
| | | |
| | | /** |
| | | * 状态(1.待发布 2.进行中 3.已停止) |
| | | */ |
| | | private Integer status; |
| | | |
| | | /** |
| | | * 发布时间 |
| | | */ |
| | | private Date publishTime; |
| | | |
| | | /** |
| | | * 是否可重复提交(1.是 2.否) |
| | | */ |
| | | private Integer isRepeat; |
| | | |
| | | /** |
| | | * 备注 |
| | | */ |
| | | private String remark; |
| | | |
| | | /** |
| | | * 组件json数据 |
| | | */ |
| | | private String jsonObject; |
| | | |
| | | /** |
| | | * 是否是首页顶部(1.是 2.否) |
| | | */ |
| | | private Integer adverPositionTop; |
| | | |
| | | /** |
| | | * 是否是首页应用(1.是 2.否) |
| | | */ |
| | | private Integer adverPositionApplication; |
| | | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | private Date createAt; |
| | | |
| | | /** |
| | | * 创建人 |
| | | */ |
| | | private Long createBy; |
| | | |
| | | /** |
| | | * 修改时间 |
| | | */ |
| | | private Date updateAt; |
| | | |
| | | /** |
| | | * 修改人 |
| | | */ |
| | | private Long updateBy; |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "ComActReserveDO{" + |
| | | "id=" + id + |
| | | ", communityId=" + communityId + |
| | | ", type=" + type + |
| | | ", title=" + title + |
| | | ", viewNum=" + viewNum + |
| | | ", joinAllCount=" + joinAllCount + |
| | | ", joinCount=" + joinCount + |
| | | ", imgType=" + imgType + |
| | | ", imgUrl=" + imgUrl + |
| | | ", status=" + status + |
| | | ", publishTime=" + publishTime + |
| | | ", isRepeat=" + isRepeat + |
| | | ", remark=" + remark + |
| | | ", jsonObject=" + jsonObject + |
| | | ", adverPositionTop=" + adverPositionTop + |
| | | ", adverPositionApplication=" + adverPositionApplication + |
| | | ", createAt=" + createAt + |
| | | ", createBy=" + createBy + |
| | | ", updateAt=" + updateAt + |
| | | ", updateBy=" + updateBy + |
| | | "}"; |
| | | } |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.model.dos; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:33:42 |
| | | * @describe 预约登记操作记录表实体类 |
| | | */ |
| | | |
| | | @Data |
| | | @TableName("com_act_reserve_operation_record") |
| | | public class ComActReserveOperationRecordDO implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 主键id |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** |
| | | * 预约登记id |
| | | */ |
| | | private Long reserveId; |
| | | |
| | | /** |
| | | * 预约登记记录id |
| | | */ |
| | | private Long reserveRecordId; |
| | | |
| | | /** |
| | | * 用户id |
| | | */ |
| | | private Long userId; |
| | | |
| | | /** |
| | | * 类型(1.本人操作 2.社区操作) |
| | | */ |
| | | private Integer type; |
| | | |
| | | /** |
| | | * 操作人手机号 |
| | | */ |
| | | private String phone; |
| | | |
| | | /** |
| | | * 操作时间 |
| | | */ |
| | | private Date reserveTime; |
| | | |
| | | /** |
| | | * 操作内容 |
| | | */ |
| | | private String reserveContent; |
| | | |
| | | /** |
| | | * 备注 |
| | | */ |
| | | private String remark; |
| | | |
| | | /** |
| | | * 状态(1.提交 2.预约成功 3.预约失败 4.取消) |
| | | */ |
| | | private Integer status; |
| | | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | private Date createAt; |
| | | |
| | | /** |
| | | * 创建人 |
| | | */ |
| | | private Long createBy; |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "ComActReserveOperationRecordDO{" + |
| | | "id=" + id + |
| | | ", reserveId=" + reserveId + |
| | | ", reserveRecordId=" + reserveRecordId + |
| | | ", userId=" + userId + |
| | | ", type=" + type + |
| | | ", phone=" + phone + |
| | | ", reserveTime=" + reserveTime + |
| | | ", reserveContent=" + reserveContent + |
| | | ", remark=" + remark + |
| | | ", status=" + status + |
| | | ", createAt=" + createAt + |
| | | ", createBy=" + createBy + |
| | | "}"; |
| | | } |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.model.dos; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:33:53 |
| | | * @describe 预约登记记录表实体类 |
| | | */ |
| | | |
| | | @Data |
| | | @TableName("com_act_reserve_record") |
| | | public class ComActReserveRecordDO implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 主键id |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** |
| | | * 用户id |
| | | */ |
| | | private Long userId; |
| | | |
| | | /** |
| | | * 预约登记id |
| | | */ |
| | | private Long reserveId; |
| | | |
| | | /** |
| | | * 社区id |
| | | */ |
| | | private Long communityId; |
| | | |
| | | /** |
| | | * 类型(1.预约 2.登记) |
| | | */ |
| | | private Integer type; |
| | | |
| | | /** |
| | | * 提交人名称 |
| | | */ |
| | | private String name; |
| | | |
| | | /** |
| | | * 提交人手机号 |
| | | */ |
| | | private String phone; |
| | | |
| | | /** |
| | | * 状态(1.待处理 2.预约成功 3.预约失败 4.已取消) |
| | | */ |
| | | private Integer status; |
| | | |
| | | /** |
| | | * 内容 |
| | | */ |
| | | private String content; |
| | | |
| | | /** |
| | | * 备注 |
| | | */ |
| | | private String remark; |
| | | |
| | | /** |
| | | * 社区备注 |
| | | */ |
| | | private String actRemark; |
| | | |
| | | /** |
| | | * 预约时间 |
| | | */ |
| | | private Date reserveTime; |
| | | |
| | | /** |
| | | * 用户填报json数据 |
| | | */ |
| | | private String jsonObject; |
| | | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | private Date createAt; |
| | | |
| | | /** |
| | | * 创建人 |
| | | */ |
| | | private Long createBy; |
| | | |
| | | /** |
| | | * 修改时间 |
| | | */ |
| | | private Date updateAt; |
| | | |
| | | /** |
| | | * 修改人 |
| | | */ |
| | | private Long updateBy; |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "ComActReserveRecordDO{" + |
| | | "id=" + id + |
| | | ", userId=" + userId + |
| | | ", reserveId=" + reserveId + |
| | | ", communityId=" + communityId + |
| | | ", type=" + type + |
| | | ", name=" + name + |
| | | ", phone=" + phone + |
| | | ", status=" + status + |
| | | ", content=" + content + |
| | | ", remark=" + remark + |
| | | ", actRemark=" + actRemark + |
| | | ", reserveTime=" + reserveTime + |
| | | ", jsonObject=" + jsonObject + |
| | | ", createAt=" + createAt + |
| | | ", createBy=" + createBy + |
| | | ", updateAt=" + updateAt + |
| | | ", updateBy=" + updateBy + |
| | | "}"; |
| | | } |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.model.dos; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:34:03 |
| | | * @describe 预约登记题目选项实体类 |
| | | */ |
| | | |
| | | @Data |
| | | @TableName("com_act_reserve_sub") |
| | | public class ComActReserveSubDO implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * id |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** |
| | | * 预约登记id |
| | | */ |
| | | private Long reserveId; |
| | | |
| | | /** |
| | | * 序号 |
| | | */ |
| | | private Integer sort; |
| | | |
| | | /** |
| | | * 类型 0单选1多选2问答题 |
| | | */ |
| | | private Integer type; |
| | | |
| | | /** |
| | | * 问卷调查题目key |
| | | */ |
| | | private String key; |
| | | |
| | | /** |
| | | * 题目内容 |
| | | */ |
| | | private String content; |
| | | |
| | | /** |
| | | * 创建人 |
| | | */ |
| | | private Long createBy; |
| | | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | private Date createAt; |
| | | |
| | | /** |
| | | * 更新人 |
| | | */ |
| | | private Long updateBy; |
| | | |
| | | /** |
| | | * 更新时间 |
| | | */ |
| | | private Date updateAt; |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "ComActReserveSubDO{" + |
| | | "id=" + id + |
| | | ", reserveId=" + reserveId + |
| | | ", sort=" + sort + |
| | | ", type=" + type + |
| | | ", key=" + key + |
| | | ", content=" + content + |
| | | ", createBy=" + createBy + |
| | | ", createAt=" + createAt + |
| | | ", updateBy=" + updateBy + |
| | | ", updateAt=" + updateAt + |
| | | "}"; |
| | | } |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.model.dos; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:34:13 |
| | | * @describe 预约登记题目选项 实体类 |
| | | */ |
| | | |
| | | @Data |
| | | @TableName("com_act_reserve_sub_selection") |
| | | public class ComActReserveSubSelectionDO implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * id |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** |
| | | * 预约登记id |
| | | */ |
| | | private Long reserveId; |
| | | |
| | | /** |
| | | * 预约登记题目id |
| | | */ |
| | | private Long reserveSubId; |
| | | |
| | | /** |
| | | * 预约登记选项key |
| | | */ |
| | | private String key; |
| | | |
| | | /** |
| | | * 选项类型 0 固定选项 1 自定义选项 |
| | | */ |
| | | private Integer type; |
| | | |
| | | /** |
| | | * 排序 |
| | | */ |
| | | private Integer sort; |
| | | |
| | | /** |
| | | * 选项名 |
| | | */ |
| | | private String optionName; |
| | | |
| | | /** |
| | | * 选项内容 |
| | | */ |
| | | private String content; |
| | | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | private Date createAt; |
| | | |
| | | /** |
| | | * 创建人 |
| | | */ |
| | | private Long createBy; |
| | | |
| | | /** |
| | | * 更新时间 |
| | | */ |
| | | private Date updateAt; |
| | | |
| | | /** |
| | | * 更新人 |
| | | */ |
| | | private Long updateBy; |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "ComActReserveSubSelectionDO{" + |
| | | "id=" + id + |
| | | ", reserveId=" + reserveId + |
| | | ", reserveSubId=" + reserveSubId + |
| | | ", key=" + key + |
| | | ", type=" + type + |
| | | ", sort=" + sort + |
| | | ", optionName=" + optionName + |
| | | ", content=" + content + |
| | | ", createAt=" + createAt + |
| | | ", createBy=" + createBy + |
| | | ", updateAt=" + updateAt + |
| | | ", updateBy=" + updateBy + |
| | | "}"; |
| | | } |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveAnswerContentDO; |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:33:32 |
| | | * @describe 预约登记回答记录内容 服务类 |
| | | */ |
| | | public interface ComActReserveAnswerContentService extends IService<ComActReserveAnswerContentDO> { |
| | | |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveOperationRecordDO; |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:33:42 |
| | | * @describe 预约登记操作记录表服务类 |
| | | */ |
| | | public interface ComActReserveOperationRecordService extends IService<ComActReserveOperationRecordDO> { |
| | | |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveRecordDO; |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:33:53 |
| | | * @describe 预约登记记录表服务类 |
| | | */ |
| | | public interface ComActReserveRecordService extends IService<ComActReserveRecordDO> { |
| | | |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveDO; |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:33:11 |
| | | * @describe 预约登记表服务类 |
| | | */ |
| | | public interface ComActReserveService extends IService<ComActReserveDO> { |
| | | |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveSubSelectionDO; |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:34:13 |
| | | * @describe 预约登记题目选项 服务类 |
| | | */ |
| | | public interface ComActReserveSubSelectionService extends IService<ComActReserveSubSelectionDO> { |
| | | |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveSubDO; |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:34:03 |
| | | * @describe 预约登记题目选项服务类 |
| | | */ |
| | | public interface ComActReserveSubService extends IService<ComActReserveSubDO> { |
| | | |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.panzhihua.service_community.dao.ComActReserveAnswerContentMapper; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveAnswerContentDO; |
| | | import com.panzhihua.service_community.service.ComActReserveAnswerContentService; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:33:32 |
| | | * @describe 预约登记回答记录内容 服务实现类 |
| | | */ |
| | | @Slf4j |
| | | @Service |
| | | public class ComActReserveAnswerContentServiceImpl extends ServiceImpl<ComActReserveAnswerContentMapper, ComActReserveAnswerContentDO> implements ComActReserveAnswerContentService { |
| | | |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.panzhihua.service_community.dao.ComActReserveOperationRecordMapper; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveOperationRecordDO; |
| | | import com.panzhihua.service_community.service.ComActReserveOperationRecordService; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:33:42 |
| | | * @describe 预约登记操作记录表服务实现类 |
| | | */ |
| | | @Slf4j |
| | | @Service |
| | | public class ComActReserveOperationRecordServiceImpl extends ServiceImpl<ComActReserveOperationRecordMapper, ComActReserveOperationRecordDO> implements ComActReserveOperationRecordService { |
| | | |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.panzhihua.service_community.dao.ComActReserveRecordMapper; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveRecordDO; |
| | | import com.panzhihua.service_community.service.ComActReserveRecordService; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:33:53 |
| | | * @describe 预约登记记录表服务实现类 |
| | | */ |
| | | @Slf4j |
| | | @Service |
| | | public class ComActReserveRecordServiceImpl extends ServiceImpl<ComActReserveRecordMapper, ComActReserveRecordDO> implements ComActReserveRecordService { |
| | | |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.panzhihua.service_community.dao.ComActReserveMapper; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveDO; |
| | | import com.panzhihua.service_community.service.ComActReserveService; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:33:11 |
| | | * @describe 预约登记表服务实现类 |
| | | */ |
| | | @Slf4j |
| | | @Service |
| | | public class ComActReserveServiceImpl extends ServiceImpl<ComActReserveMapper, ComActReserveDO> implements ComActReserveService { |
| | | |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.panzhihua.service_community.dao.ComActReserveSubSelectionMapper; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveSubSelectionDO; |
| | | import com.panzhihua.service_community.service.ComActReserveSubSelectionService; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:34:13 |
| | | * @describe 预约登记题目选项 服务实现类 |
| | | */ |
| | | @Slf4j |
| | | @Service |
| | | public class ComActReserveSubSelectionServiceImpl extends ServiceImpl<ComActReserveSubSelectionMapper, ComActReserveSubSelectionDO> implements ComActReserveSubSelectionService { |
| | | |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.panzhihua.service_community.dao.ComActReserveSubMapper; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveSubDO; |
| | | import com.panzhihua.service_community.service.ComActReserveSubService; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:34:03 |
| | | * @describe 预约登记题目选项服务实现类 |
| | | */ |
| | | @Slf4j |
| | | @Service |
| | | public class ComActReserveSubServiceImpl extends ServiceImpl<ComActReserveSubMapper, ComActReserveSubDO> implements ComActReserveSubService { |
| | | |
| | | } |
New file |
| | |
| | | <?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.panzhihua.service_community.dao.ComActReserveAnswerContentMapper"> |
| | | |
| | | <!-- 通用查询映射结果 --> |
| | | <resultMap id="BaseResultMap" type="com.panzhihua.service_community.model.dos.ComActReserveAnswerContentDO"> |
| | | <id column="id" property="id" /> |
| | | <result column="reserve_sub_id" property="reserveSubId" /> |
| | | <result column="reserve_selection_id" property="reserveSelectionId" /> |
| | | <result column="user_id" property="userId" /> |
| | | <result column="type" property="type" /> |
| | | <result column="choice" property="choice" /> |
| | | <result column="answer_content" property="answerContent" /> |
| | | <result column="create_by" property="createBy" /> |
| | | <result column="create_at" property="createAt" /> |
| | | <result column="update_by" property="updateBy" /> |
| | | <result column="update_at" property="updateAt" /> |
| | | </resultMap> |
| | | |
| | | <!-- 通用查询结果列 --> |
| | | <sql id="Base_Column_List"> |
| | | id, reserve_sub_id, reserve_selection_id, user_id, type, choice, answer_content, create_by, create_at, update_by, update_at |
| | | </sql> |
| | | |
| | | </mapper> |
New file |
| | |
| | | <?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.panzhihua.service_community.dao.ComActReserveMapper"> |
| | | |
| | | <!-- 通用查询映射结果 --> |
| | | <resultMap id="BaseResultMap" type="com.panzhihua.service_community.model.dos.ComActReserveDO"> |
| | | <id column="id" property="id" /> |
| | | <result column="community_id" property="communityId" /> |
| | | <result column="type" property="type" /> |
| | | <result column="title" property="title" /> |
| | | <result column="view_num" property="viewNum" /> |
| | | <result column="join_all_count" property="joinAllCount" /> |
| | | <result column="join_count" property="joinCount" /> |
| | | <result column="img_type" property="imgType" /> |
| | | <result column="img_url" property="imgUrl" /> |
| | | <result column="status" property="status" /> |
| | | <result column="publish_time" property="publishTime" /> |
| | | <result column="is_repeat" property="isRepeat" /> |
| | | <result column="remark" property="remark" /> |
| | | <result column="json_object" property="jsonObject" /> |
| | | <result column="adver_position_top" property="adverPositionTop" /> |
| | | <result column="adver_position_application" property="adverPositionApplication" /> |
| | | <result column="create_at" property="createAt" /> |
| | | <result column="create_by" property="createBy" /> |
| | | <result column="update_at" property="updateAt" /> |
| | | <result column="update_by" property="updateBy" /> |
| | | </resultMap> |
| | | |
| | | <!-- 通用查询结果列 --> |
| | | <sql id="Base_Column_List"> |
| | | id, community_id, type, title, view_num, join_all_count, join_count, img_type, img_url, status, publish_time, is_repeat, remark, json_object, adver_position_top, adver_position_application, create_at, create_by, update_at, update_by |
| | | </sql> |
| | | |
| | | </mapper> |
New file |
| | |
| | | <?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.panzhihua.service_community.dao.ComActReserveOperationRecordMapper"> |
| | | |
| | | <!-- 通用查询映射结果 --> |
| | | <resultMap id="BaseResultMap" type="com.panzhihua.service_community.model.dos.ComActReserveOperationRecordDO"> |
| | | <id column="id" property="id" /> |
| | | <result column="reserve_id" property="reserveId" /> |
| | | <result column="reserve_record_id" property="reserveRecordId" /> |
| | | <result column="user_id" property="userId" /> |
| | | <result column="type" property="type" /> |
| | | <result column="phone" property="phone" /> |
| | | <result column="reserve_time" property="reserveTime" /> |
| | | <result column="reserve_content" property="reserveContent" /> |
| | | <result column="remark" property="remark" /> |
| | | <result column="status" property="status" /> |
| | | <result column="create_at" property="createAt" /> |
| | | <result column="create_by" property="createBy" /> |
| | | </resultMap> |
| | | |
| | | <!-- 通用查询结果列 --> |
| | | <sql id="Base_Column_List"> |
| | | id, reserve_id, reserve_record_id, user_id, type, phone, reserve_time, reserve_content, remark, status, create_at, create_by |
| | | </sql> |
| | | |
| | | </mapper> |
New file |
| | |
| | | <?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.panzhihua.service_community.dao.ComActReserveRecordMapper"> |
| | | |
| | | <!-- 通用查询映射结果 --> |
| | | <resultMap id="BaseResultMap" type="com.panzhihua.service_community.model.dos.ComActReserveRecordDO"> |
| | | <id column="id" property="id" /> |
| | | <result column="user_id" property="userId" /> |
| | | <result column="reserve_id" property="reserveId" /> |
| | | <result column="community_id" property="communityId" /> |
| | | <result column="type" property="type" /> |
| | | <result column="name" property="name" /> |
| | | <result column="phone" property="phone" /> |
| | | <result column="status" property="status" /> |
| | | <result column="content" property="content" /> |
| | | <result column="remark" property="remark" /> |
| | | <result column="act_remark" property="actRemark" /> |
| | | <result column="reserve_time" property="reserveTime" /> |
| | | <result column="json_object" property="jsonObject" /> |
| | | <result column="create_at" property="createAt" /> |
| | | <result column="create_by" property="createBy" /> |
| | | <result column="update_at" property="updateAt" /> |
| | | <result column="update_by" property="updateBy" /> |
| | | </resultMap> |
| | | |
| | | <!-- 通用查询结果列 --> |
| | | <sql id="Base_Column_List"> |
| | | id, user_id, reserve_id, community_id, type, name, phone, status, content, remark, act_remark, reserve_time, json_object, create_at, create_by, update_at, update_by |
| | | </sql> |
| | | |
| | | </mapper> |
New file |
| | |
| | | <?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.panzhihua.service_community.dao.ComActReserveSubMapper"> |
| | | |
| | | <!-- 通用查询映射结果 --> |
| | | <resultMap id="BaseResultMap" type="com.panzhihua.service_community.model.dos.ComActReserveSubDO"> |
| | | <id column="id" property="id" /> |
| | | <result column="reserve_id" property="reserveId" /> |
| | | <result column="sort" property="sort" /> |
| | | <result column="type" property="type" /> |
| | | <result column="key" property="key" /> |
| | | <result column="content" property="content" /> |
| | | <result column="create_by" property="createBy" /> |
| | | <result column="create_at" property="createAt" /> |
| | | <result column="update_by" property="updateBy" /> |
| | | <result column="update_at" property="updateAt" /> |
| | | </resultMap> |
| | | |
| | | <!-- 通用查询结果列 --> |
| | | <sql id="Base_Column_List"> |
| | | id, reserve_id, sort, type, key, content, create_by, create_at, update_by, update_at |
| | | </sql> |
| | | |
| | | </mapper> |
New file |
| | |
| | | <?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.panzhihua.service_community.dao.ComActReserveSubSelectionMapper"> |
| | | |
| | | <!-- 通用查询映射结果 --> |
| | | <resultMap id="BaseResultMap" type="com.panzhihua.service_community.model.dos.ComActReserveSubSelectionDO"> |
| | | <id column="id" property="id" /> |
| | | <result column="reserve_id" property="reserveId" /> |
| | | <result column="reserve_sub_id" property="reserveSubId" /> |
| | | <result column="key" property="key" /> |
| | | <result column="type" property="type" /> |
| | | <result column="sort" property="sort" /> |
| | | <result column="option_name" property="optionName" /> |
| | | <result column="content" property="content" /> |
| | | <result column="create_at" property="createAt" /> |
| | | <result column="create_by" property="createBy" /> |
| | | <result column="update_at" property="updateAt" /> |
| | | <result column="update_by" property="updateBy" /> |
| | | </resultMap> |
| | | |
| | | <!-- 通用查询结果列 --> |
| | | <sql id="Base_Column_List"> |
| | | id, reserve_id, reserve_sub_id, key, type, sort, option_name, content, create_at, create_by, update_at, update_by |
| | | </sql> |
| | | |
| | | </mapper> |