OWL ITS + 탐지시스템(인터넷 진흥원)
이민희
2022-01-13 4545664bbece1b1b185945376b344b1660669a53
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
/**
 * Created by wisestone on 2018-05-29.
 */
'use strict';
 
define([
    'app'
], function (app) {
    app.factory("Notice", ['$http', '$log', function ($http, $log) {
        return {
            find : function (conditions) {
                return $http.post("notice/find", conditions).then(function (response) {
                    $log.debug("공지사항 목록 데이터 : ", response);
                    return response;
                });
            },
            add : function (conditions) {
                return $http.post("notice/add", conditions).then(function (response) {
                    $log.debug("공지사항 생성 결과 : ", response);
                    return response;
                });
            },
            send : function (conditions) {
                return $http.post("notice/send", conditions).then(function (response) {
                    $log.debug("메세지 발송 결과 : ", response);
                    return response;
                });
            },
            modify : function (conditions) {
                return $http.post("notice/modify", conditions).then(function (response) {
                    $log.debug("공지사항 수정 결과 : ", response);
                    return response;
                });
            },
            detail : function (conditions) {
                return $http.post("notice/detail", conditions).then(function (response) {
                    $log.debug("공지사항 상세 데이터 : ", response);
                    return response;
                });
            },
            remove : function (conditions) {
                return $http.post("notice/remove", conditions).then(function (response) {
                    $log.debug("공지사항 삭제 결과 : ", response);
                    return response;
                });
            }
        }
    }
    ]);
});