mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package com.panzhihua.service_grid.api;
 
import javax.annotation.Resource;
 
import org.springframework.web.bind.annotation.*;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.panzhihua.common.model.dtos.grid.EventApplicationUserNoticeAddDTO;
import com.panzhihua.common.model.dtos.grid.EventApplicationUserNoticeDeleteDTO;
import com.panzhihua.common.model.dtos.grid.EventApplicationUserNoticeEditDTO;
import com.panzhihua.common.model.dtos.grid.PageEventApplicationUserNoticeDTO;
import com.panzhihua.common.model.vos.R;
import com.panzhihua.common.model.vos.grid.EventApplicationUserNoticeDetailsVO;
import com.panzhihua.common.model.vos.grid.EventApplicationUserNoticeVO;
import com.panzhihua.service_grid.service.EventApplicationUserNoticeService;
 
import lombok.extern.slf4j.Slf4j;
 
/**
 *
 * @author cedoo email:cedoo(a)qq.com
 * @version 1.0
 * @since 1.0
 * @date 2021-05-26
 */
@Slf4j
@RestController
@RequestMapping("/eventapplicationusernotice")
public class EventApplicationUserNoticeApi {
 
    @Resource
    private EventApplicationUserNoticeService eventApplicationUserNoticeService;
 
    /**
     * 新增用户协议和隐私政策信息
     * 
     * @param eventApplicationUserNoticeAddDTO
     * @return 新增结果
     */
    @PostMapping("/add")
    R add(@RequestBody EventApplicationUserNoticeAddDTO eventApplicationUserNoticeAddDTO) {
        return eventApplicationUserNoticeService.add(eventApplicationUserNoticeAddDTO);
    }
 
    /**
     * 修改用户协议和隐私政策信息
     * 
     * @param eventApplicationUserNoticeEditDTO
     * @return 维护结果
     */
    @PostMapping("/edit")
    R edit(@RequestBody EventApplicationUserNoticeEditDTO eventApplicationUserNoticeEditDTO) {
        return eventApplicationUserNoticeService.edit(eventApplicationUserNoticeEditDTO);
    }
 
    /**
     * 分页查找用户协议和隐私政策信息
     * 
     * @param pageEventApplicationUserNoticeDTO
     * @return 维护结果
     */
    @PostMapping("/page")
    R<IPage<EventApplicationUserNoticeVO>>
        query(@RequestBody PageEventApplicationUserNoticeDTO pageEventApplicationUserNoticeDTO) {
        return eventApplicationUserNoticeService.query(pageEventApplicationUserNoticeDTO);
    }
 
    /**
     * 删除用户协议和隐私政策信息
     * 
     * @param EventApplicationUserNoticeDeleteDTO
     * @return 平台用户信息
     */
    @PostMapping("/delete")
    R delete(@RequestBody EventApplicationUserNoticeDeleteDTO EventApplicationUserNoticeDeleteDTO) {
        return eventApplicationUserNoticeService.delete(EventApplicationUserNoticeDeleteDTO);
    }
 
    /**
     * 查询用户协议和隐私政策信息详细信息
     * 
     * @param id
     *            用户协议和隐私政策信息 id
     * @return 查找结果
     */
    @PostMapping("/{id}")
    R<EventApplicationUserNoticeDetailsVO> eventApplicationUserNoticeDetails(@PathVariable("id") Long id) {
        return eventApplicationUserNoticeService.eventApplicationUserNoticeDetails(id);
    }
 
}