feed_stock_in_detail.js 943 字节
import request from '@/utils/request'

// 查询饲料入库明细列表
export function listFeed_stock_in_detail(query) {
  return request({
    url: '/admin/wl/feed_stock_in_detail/list',
    method: 'get',
    params: query
  })
}

// 查询饲料入库明细详细
export function getFeed_stock_in_detail(id) {
  return request({
    url: '/admin/wl/feed_stock_in_detail/' + id,
    method: 'get'
  })
}

// 新增饲料入库明细
export function addFeed_stock_in_detail(data) {
  return request({
    url: '/admin/wl/feed_stock_in_detail',
    method: 'post',
    data: data
  })
}

// 修改饲料入库明细
export function updateFeed_stock_in_detail(data) {
  return request({
    url: '/admin/wl/feed_stock_in_detail',
    method: 'put',
    data: data
  })
}

// 删除饲料入库明细
export function delFeed_stock_in_detail(id) {
  return request({
    url: '/admin/wl/feed_stock_in_detail/' + id,
    method: 'delete'
  })
}