kindAdvice.js 347 B

123456789101112
  1. /**
  2. * 类目结构建议 - 数据交互
  3. */
  4. define([ 'ngResource'], function() {
  5. angular.module('common.query.kindAdvice', [ 'ngResource'
  6. ]).factory('KindAdvice', ['$resource', '$cacheFactory', function($resource, $cacheFactory) {
  7. var cache = $cacheFactory('KindAdvice');
  8. return $resource('produce/kindAdvice/:id', {}, {
  9. });
  10. }]);
  11. });