OWL ITS + 탐지시스템(인터넷 진흥원)
wyu
2021-11-22 3fa520f0cd36bb903b25437c745bb4f2c0eca848
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
/**
 * Created by wisestone on 2019-02-07.
 */
'use strict';
 
define(['app'], function (app) {
    app.factory("IssueTableConfig", ['$http', '$log', function ($http, $log) {
        return {
            detail : function (conditions) {
                return $http.post("issueTableConfig/detail", conditions).then(function (response) {
                    $log.debug("이슈 목록 테이블 설정 상세 조회 : ", response);
                    return response;
                });
            },
            add : function (conditions) {
                return $http.post("issueTableConfig/add", conditions).then(function (response) {
                    $log.debug("이슈 목록 테이블 설정 등록 : ", response);
                    return response;
                });
            },
 
            relationAdd : function (conditions) {
                return $http.post("issueTableConfig/relationAdd", conditions).then(function (response) {
                    $log.debug("연관 이슈 목록 테이블 설정 등록 : ", response);
                    return response;
                });
            },
 
            relationDetail : function (conditions) {
                return $http.post("issueTableConfig/relationDetail", conditions).then(function (response) {
                    $log.debug("연관 이슈 목록 테이블 설정 상세 조회 : ", response);
                    return response;
                });
            },
 
            downAdd : function (conditions) {
                return $http.post("issueTableConfig/downAdd", conditions).then(function (response) {
                    $log.debug("하위 이슈 목록 테이블 설정 등록 : ", response);
                    return response;
                });
            },
 
            downDetail : function (conditions) {
                return $http.post("issueTableConfig/downDetail", conditions).then(function (response) {
                    $log.debug("하위 목록 테이블 설정 상세 조회 : ", response);
                    return response;
                });
            },
        }
    }
    ])
});