OWL ITS + 탐지시스템(인터넷 진흥원)
이민희
2022-01-07 ad7e60c5d5a090160c6b9be63c02a75a6c369b91
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
 * Created by wisestone on 2018-06-01.
 */
'use strict';
 
define([
    'app'
], function (app) {
    app.factory("Severity", ['$http', '$log', function ($http, $log) {
        return {
            find : function (conditions) {
                return $http.post("severity/find", conditions).then(function (response) {
                    $log.debug("중요도 목록 데이터 : ", response);
                    return response;
                });
            }
        }
    }
    ]);
});