| 123456789101112131415161718 |
- define([ 'ngResource' ], function() {
- angular.module('AttendtionServices', ['ngResource']).factory('Attendtion', ['$resource', function ($resource) {
- return $resource('produce/kindConcern', {}, {
- getList: {
- url: 'produce/kindConcern/list',
- method: 'GET'
- },
- add: {
- url: 'produce/kindConcern/batch/add',
- method: 'POST'
- },
- del: {
- url: 'produce/kindConcern/batch/delete',
- method: 'POST'
- }
- });
- }]);
- });
|