| | |
| | | @ApiModelProperty(value = "组件json数据") |
| | | private String jsonObject; |
| | | |
| | | @ApiModelProperty(value = "是否在线 (0 不在线 1在线)") |
| | | private String isOnLine; |
| | | |
| | | private List<ComActWorkGuideMaterialVO> materials = Lists.newArrayList(); |
| | | } |
| | |
| | | @ApiModelProperty(value = "组件json数据") |
| | | private String jsonObject; |
| | | |
| | | @ApiModelProperty(value = "是否在线 (0 不在线 1在线)") |
| | | private String isOnLine; |
| | | |
| | | private List<ComActWorkGuideMaterialVO> materials = Lists.newArrayList(); |
| | | } |
| | |
| | | @ApiModelProperty(value = "组件json数据") |
| | | private String jsonObject; |
| | | |
| | | |
| | | @ApiModelProperty(value = "是否在线 (0 不在线 1在线)") |
| | | private String isOnLine; |
| | | |
| | | @TableField(exist = false) |
| | | private List<ComActWorkGuideMaterialVO> materials = Lists.newArrayList(); |
| | | } |
| | |
| | | <result column="community_id" property="communityId" /> |
| | | <result column="area_code" property="areaCode" /> |
| | | <result column="json_object" property="jsonObject" /> |
| | | <result column="is_on_line" property="isOnLine" /> |
| | | </resultMap> |
| | | |
| | | |
| | | <!-- 通用查询结果列 --> |
| | | <sql id="Base_Column_List"> |
| | | id, title, content, classify, time_at, address, phone, lon, lat, create_at, create_by, update_at, update_by,community_id |
| | | id, title, content, classify, time_at, address, phone, lon, lat, create_at, create_by, |
| | | update_at, update_by,community_id,is_on_line |
| | | </sql> |
| | | |
| | | |
| | |
| | | phone, |
| | | create_at, |
| | | json_object, |
| | | community_id |
| | | community_id, |
| | | is_on_line |
| | | from jinhui_com_act_work_guide |
| | | <where> |
| | | <if test='pageActWorkGuideDTO.classify != null'> |
| | |
| | | </if> |
| | | <if test='pageActWorkGuideDTO.title != null and pageActWorkGuideDTO.title.trim() != ""'> |
| | | and title like concat('%',#{pageActWorkGuideDTO.title},'%') |
| | | </if> |
| | | <if test='pageActWorkGuideDTO.isOnLine != null and pageActWorkGuideDTO.isOnLine != ""'> |
| | | and is_on_line=#{isOnLine} |
| | | </if> |
| | | </where> |
| | | order by update_at desc |
| | |
| | | phone, |
| | | create_at, |
| | | json_object, |
| | | is_on_line, |
| | | community_id |
| | | from jinhui_com_act_work_guide |
| | | where classify = #{classifyId} |
| | |
| | | */ |
| | | @PostMapping("detailuser") |
| | | public R<LoginUserInfoVO> detailUser(@RequestParam("userId") Long userId) { |
| | | return userService.detailUser(userId); |
| | | // return userService.detailUser(userId); |
| | | return userService.getUserInfo(userId+""); |
| | | } |
| | | |
| | | /** |