/** * Created by maprex on 2021-11-04 */ 'use strict'; define([ 'app' ], function (app) { app.factory("IspField", ['$http', '$log', function ($http, $log) { return { find : function (conditions) { return $http.post("IspField/find", conditions).then(function (response) { $log.debug("ISP 필드 목록 데이터 : ", response); return response; }); } } } ]); });