作者 钟来

删除页面代码,前后端开发人员分离

正在显示 100 个修改的文件 包含 3831 行增加648 行删除

要显示太多修改。

为保证性能只显示 100 of 100+ 个文件。

1 -package com.ruoyi.web.core.config; 1 +package com.zhonglai.luhui.admin.config;
2 2
3 import java.util.ArrayList; 3 import java.util.ArrayList;
4 import java.util.List; 4 import java.util.List;
@@ -36,6 +36,7 @@ logging: @@ -36,6 +36,7 @@ logging:
36 level: 36 level:
37 com.ruoyi: debug 37 com.ruoyi: debug
38 org.springframework: warn 38 org.springframework: warn
  39 +# org.springframework.context.annotation.ClassPathBeanDefinitionScanner: DEBUG
39 40
40 # 用户配置 41 # 用户配置
41 user: 42 user:
@@ -8,7 +8,7 @@ @@ -8,7 +8,7 @@
8 <version>1.0.0</version> 8 <version>1.0.0</version>
9 </parent> 9 </parent>
10 <modelVersion>4.0.0</modelVersion> 10 <modelVersion>4.0.0</modelVersion>
11 - <packaging>jar</packaging> 11 +
12 <artifactId>ruoyi-admin</artifactId> 12 <artifactId>ruoyi-admin</artifactId>
13 13
14 <description> 14 <description>
@@ -17,26 +17,6 @@ @@ -17,26 +17,6 @@
17 17
18 <dependencies> 18 <dependencies>
19 19
20 - <!-- spring-boot-devtools -->  
21 - <dependency>  
22 - <groupId>org.springframework.boot</groupId>  
23 - <artifactId>spring-boot-devtools</artifactId>  
24 - <optional>true</optional> <!-- 表示依赖不会传递 -->  
25 - </dependency>  
26 -  
27 - <!-- 文档 -->  
28 - <dependency>  
29 - <groupId>com.github.xiaoymin</groupId>  
30 - <artifactId>knife4j-spring-boot-starter</artifactId>  
31 - </dependency>  
32 -  
33 - <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->  
34 - <dependency>  
35 - <groupId>io.swagger</groupId>  
36 - <artifactId>swagger-models</artifactId>  
37 - <version>1.6.2</version>  
38 - </dependency>  
39 -  
40 <!-- Mysql驱动包 --> 20 <!-- Mysql驱动包 -->
41 <dependency> 21 <dependency>
42 <groupId>mysql</groupId> 22 <groupId>mysql</groupId>
@@ -63,34 +43,5 @@ @@ -63,34 +43,5 @@
63 43
64 </dependencies> 44 </dependencies>
65 45
66 - <build>  
67 - <plugins>  
68 - <plugin>  
69 - <groupId>org.springframework.boot</groupId>  
70 - <artifactId>spring-boot-maven-plugin</artifactId>  
71 - <version>2.5.15</version>  
72 - <configuration>  
73 - <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->  
74 - </configuration>  
75 - <executions>  
76 - <execution>  
77 - <goals>  
78 - <goal>repackage</goal>  
79 - </goals>  
80 - </execution>  
81 - </executions>  
82 - </plugin>  
83 - <plugin>  
84 - <groupId>org.apache.maven.plugins</groupId>  
85 - <artifactId>maven-war-plugin</artifactId>  
86 - <version>3.1.0</version>  
87 - <configuration>  
88 - <failOnMissingWebXml>false</failOnMissingWebXml>  
89 - <warName>${project.artifactId}</warName>  
90 - </configuration>  
91 - </plugin>  
92 - </plugins>  
93 - <finalName>${project.artifactId}</finalName>  
94 - </build>  
95 46
96 </project> 47 </project>
1 -package com.ruoyi;  
2 -  
3 -import org.springframework.boot.SpringApplication;  
4 -import org.springframework.boot.autoconfigure.SpringBootApplication;  
5 -import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;  
6 -  
7 -/**  
8 - * 启动程序  
9 - *  
10 - * @author ruoyi  
11 - */  
12 -@SpringBootApplication(exclude = { DataSourceAutoConfiguration.class })  
13 -public class RuoYiApplication  
14 -{  
15 - public static void main(String[] args)  
16 - {  
17 - // System.setProperty("spring.devtools.restart.enabled", "false");  
18 - SpringApplication.run(RuoYiApplication.class, args);  
19 - System.out.println("(♥◠‿◠)ノ゙ 若依启动成功 ლ(´ڡ`ლ)゙ \n" +  
20 - " .-------. ____ __ \n" +  
21 - " | _ _ \\ \\ \\ / / \n" +  
22 - " | ( ' ) | \\ _. / ' \n" +  
23 - " |(_ o _) / _( )_ .' \n" +  
24 - " | (_,_).' __ ___(_ o _)' \n" +  
25 - " | |\\ \\ | || |(_,_)' \n" +  
26 - " | | \\ `' /| `-' / \n" +  
27 - " | | \\ / \\ / \n" +  
28 - " ''-' `'-' `-..-' ");  
29 - }  
30 -}  
1 -package com.ruoyi;  
2 -  
3 -import org.springframework.boot.builder.SpringApplicationBuilder;  
4 -import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;  
5 -  
6 -/**  
7 - * web容器中进行部署  
8 - *  
9 - * @author ruoyi  
10 - */  
11 -public class RuoYiServletInitializer extends SpringBootServletInitializer  
12 -{  
13 - @Override  
14 - protected SpringApplicationBuilder configure(SpringApplicationBuilder application)  
15 - {  
16 - return application.sources(RuoYiApplication.class);  
17 - }  
18 -}  
1 -package com.ruoyi.web.controller.tool;  
2 -  
3 -import java.util.ArrayList;  
4 -import java.util.LinkedHashMap;  
5 -import java.util.List;  
6 -import java.util.Map;  
7 -import org.springframework.web.bind.annotation.DeleteMapping;  
8 -import org.springframework.web.bind.annotation.GetMapping;  
9 -import org.springframework.web.bind.annotation.PathVariable;  
10 -import org.springframework.web.bind.annotation.PostMapping;  
11 -import org.springframework.web.bind.annotation.PutMapping;  
12 -import org.springframework.web.bind.annotation.RequestBody;  
13 -import org.springframework.web.bind.annotation.RequestMapping;  
14 -import org.springframework.web.bind.annotation.RestController;  
15 -import com.ruoyi.common.core.controller.BaseController;  
16 -import com.ruoyi.common.core.domain.R;  
17 -import com.ruoyi.common.utils.StringUtils;  
18 -import io.swagger.annotations.Api;  
19 -import io.swagger.annotations.ApiImplicitParam;  
20 -import io.swagger.annotations.ApiImplicitParams;  
21 -import io.swagger.annotations.ApiModel;  
22 -import io.swagger.annotations.ApiModelProperty;  
23 -import io.swagger.annotations.ApiOperation;  
24 -  
25 -/**  
26 - * swagger 用户测试方法  
27 - *  
28 - * @author ruoyi  
29 - */  
30 -@Api("用户信息管理")  
31 -@RestController  
32 -@RequestMapping("/test/user")  
33 -public class TestController extends BaseController  
34 -{  
35 - private final static Map<Integer, UserEntity> users = new LinkedHashMap<Integer, UserEntity>();  
36 - {  
37 - users.put(1, new UserEntity(1, "admin", "admin123", "15888888888"));  
38 - users.put(2, new UserEntity(2, "ry", "admin123", "15666666666"));  
39 - }  
40 -  
41 - @ApiOperation("获取用户列表")  
42 - @GetMapping("/list")  
43 - public R<List<UserEntity>> userList()  
44 - {  
45 - List<UserEntity> userList = new ArrayList<UserEntity>(users.values());  
46 - return R.ok(userList);  
47 - }  
48 -  
49 - @ApiOperation("获取用户详细")  
50 - @ApiImplicitParam(name = "userId", value = "用户ID", required = true, dataType = "int", paramType = "path", dataTypeClass = Integer.class)  
51 - @GetMapping("/{userId}")  
52 - public R<UserEntity> getUser(@PathVariable Integer userId)  
53 - {  
54 - if (!users.isEmpty() && users.containsKey(userId))  
55 - {  
56 - return R.ok(users.get(userId));  
57 - }  
58 - else  
59 - {  
60 - return R.fail("用户不存在");  
61 - }  
62 - }  
63 -  
64 - @ApiOperation("新增用户")  
65 - @ApiImplicitParams({  
66 - @ApiImplicitParam(name = "userId", value = "用户id", dataType = "Integer", dataTypeClass = Integer.class),  
67 - @ApiImplicitParam(name = "username", value = "用户名称", dataType = "String", dataTypeClass = String.class),  
68 - @ApiImplicitParam(name = "password", value = "用户密码", dataType = "String", dataTypeClass = String.class),  
69 - @ApiImplicitParam(name = "mobile", value = "用户手机", dataType = "String", dataTypeClass = String.class)  
70 - })  
71 - @PostMapping("/save")  
72 - public R<String> save(UserEntity user)  
73 - {  
74 - if (StringUtils.isNull(user) || StringUtils.isNull(user.getUserId()))  
75 - {  
76 - return R.fail("用户ID不能为空");  
77 - }  
78 - users.put(user.getUserId(), user);  
79 - return R.ok();  
80 - }  
81 -  
82 - @ApiOperation("更新用户")  
83 - @PutMapping("/update")  
84 - public R<String> update(@RequestBody UserEntity user)  
85 - {  
86 - if (StringUtils.isNull(user) || StringUtils.isNull(user.getUserId()))  
87 - {  
88 - return R.fail("用户ID不能为空");  
89 - }  
90 - if (users.isEmpty() || !users.containsKey(user.getUserId()))  
91 - {  
92 - return R.fail("用户不存在");  
93 - }  
94 - users.remove(user.getUserId());  
95 - users.put(user.getUserId(), user);  
96 - return R.ok();  
97 - }  
98 -  
99 - @ApiOperation("删除用户信息")  
100 - @ApiImplicitParam(name = "userId", value = "用户ID", required = true, dataType = "int", paramType = "path", dataTypeClass = Integer.class)  
101 - @DeleteMapping("/{userId}")  
102 - public R<String> delete(@PathVariable Integer userId)  
103 - {  
104 - if (!users.isEmpty() && users.containsKey(userId))  
105 - {  
106 - users.remove(userId);  
107 - return R.ok();  
108 - }  
109 - else  
110 - {  
111 - return R.fail("用户不存在");  
112 - }  
113 - }  
114 -}  
115 -  
116 -@ApiModel(value = "UserEntity", description = "用户实体")  
117 -class UserEntity  
118 -{  
119 - @ApiModelProperty("用户ID")  
120 - private Integer userId;  
121 -  
122 - @ApiModelProperty("用户名称")  
123 - private String username;  
124 -  
125 - @ApiModelProperty("用户密码")  
126 - private String password;  
127 -  
128 - @ApiModelProperty("用户手机")  
129 - private String mobile;  
130 -  
131 - public UserEntity()  
132 - {  
133 -  
134 - }  
135 -  
136 - public UserEntity(Integer userId, String username, String password, String mobile)  
137 - {  
138 - this.userId = userId;  
139 - this.username = username;  
140 - this.password = password;  
141 - this.mobile = mobile;  
142 - }  
143 -  
144 - public Integer getUserId()  
145 - {  
146 - return userId;  
147 - }  
148 -  
149 - public void setUserId(Integer userId)  
150 - {  
151 - this.userId = userId;  
152 - }  
153 -  
154 - public String getUsername()  
155 - {  
156 - return username;  
157 - }  
158 -  
159 - public void setUsername(String username)  
160 - {  
161 - this.username = username;  
162 - }  
163 -  
164 - public String getPassword()  
165 - {  
166 - return password;  
167 - }  
168 -  
169 - public void setPassword(String password)  
170 - {  
171 - this.password = password;  
172 - }  
173 -  
174 - public String getMobile()  
175 - {  
176 - return mobile;  
177 - }  
178 -  
179 - public void setMobile(String mobile)  
180 - {  
181 - this.mobile = mobile;  
182 - }  
183 -}  
1 -# 数据源配置  
2 -spring:  
3 - datasource:  
4 - type: com.alibaba.druid.pool.DruidDataSource  
5 - driverClassName: com.mysql.cj.jdbc.Driver  
6 - druid:  
7 - # 主库数据源  
8 - master:  
9 - url: jdbc:mysql://rm-wz9740un21f09iokuao.mysql.rds.aliyuncs.com:3306/lh-aquaculture-sys?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8  
10 - username: luhui  
11 - password: Luhui586  
12 - # 从库数据源  
13 - slave:  
14 - # 从数据源开关/默认关闭  
15 - enabled: false  
16 - url:  
17 - username:  
18 - password:  
19 - # 初始连接数  
20 - initialSize: 5  
21 - # 最小连接池数量  
22 - minIdle: 10  
23 - # 最大连接池数量  
24 - maxActive: 20  
25 - # 配置获取连接等待超时的时间  
26 - maxWait: 60000  
27 - # 配置连接超时时间  
28 - connectTimeout: 30000  
29 - # 配置网络超时时间  
30 - socketTimeout: 60000  
31 - # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒  
32 - timeBetweenEvictionRunsMillis: 60000  
33 - # 配置一个连接在池中最小生存的时间,单位是毫秒  
34 - minEvictableIdleTimeMillis: 300000  
35 - # 配置一个连接在池中最大生存的时间,单位是毫秒  
36 - maxEvictableIdleTimeMillis: 900000  
37 - # 配置检测连接是否有效  
38 - validationQuery: SELECT 1 FROM DUAL  
39 - testWhileIdle: true  
40 - testOnBorrow: false  
41 - testOnReturn: false  
42 - webStatFilter:  
43 - enabled: true  
44 - statViewServlet:  
45 - enabled: true  
46 - # 设置白名单,不填则允许所有访问  
47 - allow:  
48 - url-pattern: /druid/*  
49 - # 控制台管理用户名和密码  
50 - login-username: ruoyi  
51 - login-password: 123456  
52 - filter:  
53 - stat:  
54 - enabled: true  
55 - # 慢SQL记录  
56 - log-slow-sql: true  
57 - slow-sql-millis: 1000  
58 - merge-sql: true  
59 - wall:  
60 - config:  
61 - multi-statement-allow: true  
1 -# 项目相关配置  
2 -ruoyi:  
3 - # 名称  
4 - name: RuoYi  
5 - # 版本  
6 - version: 3.8.7  
7 - # 版权年份  
8 - copyrightYear: 2024  
9 - # 文件路径 示例( Windows配置D:/ruoyi/uploadPath,Linux配置 /home/ruoyi/uploadPath)  
10 - profile: D:/ruoyi/uploadPath  
11 - # 获取ip地址开关  
12 - addressEnabled: false  
13 - # 验证码类型 math 数字计算 char 字符验证  
14 - captchaType: math  
15 -  
16 -# 开发环境配置  
17 -server:  
18 - # 服务器的HTTP端口,默认为8080  
19 - port: 8080  
20 - servlet:  
21 - # 应用的访问路径  
22 - context-path: /  
23 - tomcat:  
24 - # tomcat的URI编码  
25 - uri-encoding: UTF-8  
26 - # 连接数满后的排队数,默认为100  
27 - accept-count: 1000  
28 - threads:  
29 - # tomcat最大线程数,默认为200  
30 - max: 800  
31 - # Tomcat启动初始化的线程数,默认值10  
32 - min-spare: 100  
33 -  
34 -# 日志配置  
35 -logging:  
36 - level:  
37 - com.ruoyi: debug  
38 - org.springframework: warn  
39 -  
40 -# 用户配置  
41 -user:  
42 - password:  
43 - # 密码最大错误次数  
44 - maxRetryCount: 5  
45 - # 密码锁定时间(默认10分钟)  
46 - lockTime: 10  
47 -  
48 -# Spring配置  
49 -spring:  
50 - # 资源信息  
51 - messages:  
52 - # 国际化资源文件路径  
53 - basename: i18n/messages  
54 - profiles:  
55 - active: druid  
56 - # 文件上传  
57 - servlet:  
58 - multipart:  
59 - # 单个文件大小  
60 - max-file-size: 10MB  
61 - # 设置总上传的文件大小  
62 - max-request-size: 20MB  
63 - # 服务模块  
64 - devtools:  
65 - restart:  
66 - # 热部署开关  
67 - enabled: true  
68 - # redis 配置  
69 - redis:  
70 - # 地址  
71 - host: 47.112.163.61  
72 - # 端口,默认为6379  
73 - port: 9527  
74 - # 数据库索引  
75 - database: 4  
76 - # 密码  
77 - password: Luhui586  
78 - # 连接超时时间  
79 - timeout: 10s  
80 - lettuce:  
81 - pool:  
82 - # 连接池中的最小空闲连接  
83 - min-idle: 0  
84 - # 连接池中的最大空闲连接  
85 - max-idle: 8  
86 - # 连接池的最大数据库连接数  
87 - max-active: 8  
88 - # #连接池最大阻塞等待时间(使用负值表示没有限制)  
89 - max-wait: -1ms  
90 -  
91 -# token配置  
92 -token:  
93 - # 令牌自定义标识  
94 - header: Authorization  
95 - # 令牌密钥  
96 - secret: abcdefghijklmnopqrstuvwxyz  
97 - # 令牌有效期(默认30分钟)  
98 - expireTime: 30  
99 -  
100 -# MyBatis配置  
101 -mybatis:  
102 - # 搜索指定包别名  
103 - typeAliasesPackage: com.ruoyi.**.domain  
104 - # 配置mapper的扫描,找到所有的mapper.xml映射文件  
105 - mapperLocations: classpath*:mapper/**/*Mapper.xml  
106 - # 加载全局的配置文件  
107 - configLocation: classpath:mybatis/mybatis-config.xml  
108 -  
109 -# PageHelper分页插件  
110 -pagehelper:  
111 - helperDialect: mysql  
112 - supportMethodsArguments: true  
113 - params: count=countSql  
114 -  
115 -# Swagger配置  
116 -swagger:  
117 - # 是否开启swagger  
118 - enabled: true  
119 - # 请求前缀  
120 - pathMapping: /dev-api  
121 -  
122 -# 防止XSS攻击  
123 -xss:  
124 - # 过滤开关  
125 - enabled: true  
126 - # 排除链接(多个用逗号分隔)  
127 - excludes: /system/notice  
128 - # 匹配链接  
129 - urlPatterns: /system/*,/monitor/*,/tool/*  
1 -Application Version: ${ruoyi.version}  
2 -Spring Boot Version: ${spring-boot.version}  
3 -////////////////////////////////////////////////////////////////////  
4 -// _ooOoo_ //  
5 -// o8888888o //  
6 -// 88" . "88 //  
7 -// (| ^_^ |) //  
8 -// O\ = /O //  
9 -// ____/`---'\____ //  
10 -// .' \\| |// `. //  
11 -// / \\||| : |||// \ //  
12 -// / _||||| -:- |||||- \ //  
13 -// | | \\\ - /// | | //  
14 -// | \_| ''\---/'' | | //  
15 -// \ .-\__ `-` ___/-. / //  
16 -// ___`. .' /--.--\ `. . ___ //  
17 -// ."" '< `.___\_<|>_/___.' >'"". //  
18 -// | | : `- \`.;`\ _ /`;.`/ - ` : | | //  
19 -// \ \ `-. \_ __\ /__ _/ .-` / / //  
20 -// ========`-.____`-.___\_____/___.-`____.-'======== //  
21 -// `=---=' //  
22 -// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ //  
23 -// 佛祖保佑 永不宕机 永无BUG //  
24 -////////////////////////////////////////////////////////////////////  
1 -#错误消息  
2 -not.null=* 必须填写  
3 -user.jcaptcha.error=验证码错误  
4 -user.jcaptcha.expire=验证码已失效  
5 -user.not.exists=用户不存在/密码错误  
6 -user.password.not.match=用户不存在/密码错误  
7 -user.password.retry.limit.count=密码输入错误{0}次  
8 -user.password.retry.limit.exceed=密码输入错误{0}次,帐户锁定{1}分钟  
9 -user.password.delete=对不起,您的账号已被删除  
10 -user.blocked=用户已封禁,请联系管理员  
11 -role.blocked=角色已封禁,请联系管理员  
12 -login.blocked=很遗憾,访问IP已被列入系统黑名单  
13 -user.logout.success=退出成功  
14 -  
15 -length.not.valid=长度必须在{min}到{max}个字符之间  
16 -  
17 -user.username.not.valid=* 2到20个汉字、字母、数字或下划线组成,且必须以非数字开头  
18 -user.password.not.valid=* 5-50个字符  
19 -  
20 -user.email.not.valid=邮箱格式错误  
21 -user.mobile.phone.number.not.valid=手机号格式错误  
22 -user.login.success=登录成功  
23 -user.register.success=注册成功  
24 -user.notfound=请重新登录  
25 -user.forcelogout=管理员强制退出,请重新登录  
26 -user.unknown.error=未知错误,请重新登录  
27 -  
28 -##文件上传消息  
29 -upload.exceed.maxSize=上传的文件大小超出限制的文件大小!<br/>允许的文件最大大小是:{0}MB!  
30 -upload.filename.exceed.length=上传的文件名最长{0}个字符  
31 -  
32 -##权限  
33 -no.permission=您没有数据的权限,请联系管理员添加权限 [{0}]  
34 -no.create.permission=您没有创建数据的权限,请联系管理员添加权限 [{0}]  
35 -no.update.permission=您没有修改数据的权限,请联系管理员添加权限 [{0}]  
36 -no.delete.permission=您没有删除数据的权限,请联系管理员添加权限 [{0}]  
37 -no.export.permission=您没有导出数据的权限,请联系管理员添加权限 [{0}]  
38 -no.view.permission=您没有查看数据的权限,请联系管理员添加权限 [{0}]  
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<configuration>  
3 - <!-- 日志存放路径 -->  
4 - <property name="log.path" value="/home/ruoyi/logs" />  
5 - <!-- 日志输出格式 -->  
6 - <property name="log.pattern" value="%d{HH:mm:ss.SSS} [%thread] %-5level %logger{20} - [%method,%line] - %msg%n" />  
7 -  
8 - <!-- 控制台输出 -->  
9 - <appender name="console" class="ch.qos.logback.core.ConsoleAppender">  
10 - <encoder>  
11 - <pattern>${log.pattern}</pattern>  
12 - </encoder>  
13 - </appender>  
14 -  
15 - <!-- 系统日志输出 -->  
16 - <appender name="file_info" class="ch.qos.logback.core.rolling.RollingFileAppender">  
17 - <file>${log.path}/sys-info.log</file>  
18 - <!-- 循环政策:基于时间创建日志文件 -->  
19 - <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">  
20 - <!-- 日志文件名格式 -->  
21 - <fileNamePattern>${log.path}/sys-info.%d{yyyy-MM-dd}.log</fileNamePattern>  
22 - <!-- 日志最大的历史 60天 -->  
23 - <maxHistory>60</maxHistory>  
24 - </rollingPolicy>  
25 - <encoder>  
26 - <pattern>${log.pattern}</pattern>  
27 - </encoder>  
28 - <filter class="ch.qos.logback.classic.filter.LevelFilter">  
29 - <!-- 过滤的级别 -->  
30 - <level>INFO</level>  
31 - <!-- 匹配时的操作:接收(记录) -->  
32 - <onMatch>ACCEPT</onMatch>  
33 - <!-- 不匹配时的操作:拒绝(不记录) -->  
34 - <onMismatch>DENY</onMismatch>  
35 - </filter>  
36 - </appender>  
37 -  
38 - <appender name="file_error" class="ch.qos.logback.core.rolling.RollingFileAppender">  
39 - <file>${log.path}/sys-error.log</file>  
40 - <!-- 循环政策:基于时间创建日志文件 -->  
41 - <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">  
42 - <!-- 日志文件名格式 -->  
43 - <fileNamePattern>${log.path}/sys-error.%d{yyyy-MM-dd}.log</fileNamePattern>  
44 - <!-- 日志最大的历史 60天 -->  
45 - <maxHistory>60</maxHistory>  
46 - </rollingPolicy>  
47 - <encoder>  
48 - <pattern>${log.pattern}</pattern>  
49 - </encoder>  
50 - <filter class="ch.qos.logback.classic.filter.LevelFilter">  
51 - <!-- 过滤的级别 -->  
52 - <level>ERROR</level>  
53 - <!-- 匹配时的操作:接收(记录) -->  
54 - <onMatch>ACCEPT</onMatch>  
55 - <!-- 不匹配时的操作:拒绝(不记录) -->  
56 - <onMismatch>DENY</onMismatch>  
57 - </filter>  
58 - </appender>  
59 -  
60 - <!-- 用户访问日志输出 -->  
61 - <appender name="sys-user" class="ch.qos.logback.core.rolling.RollingFileAppender">  
62 - <file>${log.path}/sys-user.log</file>  
63 - <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">  
64 - <!-- 按天回滚 daily -->  
65 - <fileNamePattern>${log.path}/sys-user.%d{yyyy-MM-dd}.log</fileNamePattern>  
66 - <!-- 日志最大的历史 60天 -->  
67 - <maxHistory>60</maxHistory>  
68 - </rollingPolicy>  
69 - <encoder>  
70 - <pattern>${log.pattern}</pattern>  
71 - </encoder>  
72 - </appender>  
73 -  
74 - <!-- 系统模块日志级别控制 -->  
75 - <logger name="com.ruoyi" level="info" />  
76 - <!-- Spring日志级别控制 -->  
77 - <logger name="org.springframework" level="warn" />  
78 -  
79 - <root level="info">  
80 - <appender-ref ref="console" />  
81 - </root>  
82 -  
83 - <!--系统操作日志-->  
84 - <root level="info">  
85 - <appender-ref ref="file_info" />  
86 - <appender-ref ref="file_error" />  
87 - </root>  
88 -  
89 - <!--系统用户操作日志-->  
90 - <logger name="sys-user" level="info">  
91 - <appender-ref ref="sys-user"/>  
92 - </logger>  
93 -</configuration>  
1 -<?xml version="1.0" encoding="UTF-8" ?>  
2 -<!DOCTYPE configuration  
3 -PUBLIC "-//mybatis.org//DTD Config 3.0//EN"  
4 -"http://mybatis.org/dtd/mybatis-3-config.dtd">  
5 -<configuration>  
6 - <!-- 全局参数 -->  
7 - <settings>  
8 - <!-- 使全局的映射器启用或禁用缓存 -->  
9 - <setting name="cacheEnabled" value="true" />  
10 - <!-- 允许JDBC 支持自动生成主键 -->  
11 - <setting name="useGeneratedKeys" value="true" />  
12 - <!-- 配置默认的执行器.SIMPLE就是普通执行器;REUSE执行器会重用预处理语句(prepared statements);BATCH执行器将重用语句并执行批量更新 -->  
13 - <setting name="defaultExecutorType" value="SIMPLE" />  
14 - <!-- 指定 MyBatis 所用日志的具体实现 -->  
15 - <setting name="logImpl" value="SLF4J" />  
16 - <!-- 使用驼峰命名法转换字段 -->  
17 - <!-- <setting name="mapUnderscoreToCamelCase" value="true"/> -->  
18 - </settings>  
19 -  
20 -</configuration>  
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询标粗结转成本列表
  4 +export function listBold_closing_cost(query) {
  5 + return request({
  6 + url: '/admin/cb/bold_closing_cost/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询标粗结转成本详细
  13 +export function getBold_closing_cost(id) {
  14 + return request({
  15 + url: '/admin/cb/bold_closing_cost/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增标粗结转成本
  21 +export function addBold_closing_cost(data) {
  22 + return request({
  23 + url: '/admin/cb/bold_closing_cost',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改标粗结转成本
  30 +export function updateBold_closing_cost(data) {
  31 + return request({
  32 + url: '/admin/cb/bold_closing_cost',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除标粗结转成本
  39 +export function delBold_closing_cost(id) {
  40 + return request({
  41 + url: '/admin/cb/bold_closing_cost/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询标粗动态成本列表
  4 +export function listBold_dynamic_cost(query) {
  5 + return request({
  6 + url: '/admin/cb/bold_dynamic_cost/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询标粗动态成本详细
  13 +export function getBold_dynamic_cost(id) {
  14 + return request({
  15 + url: '/admin/cb/bold_dynamic_cost/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增标粗动态成本
  21 +export function addBold_dynamic_cost(data) {
  22 + return request({
  23 + url: '/admin/cb/bold_dynamic_cost',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改标粗动态成本
  30 +export function updateBold_dynamic_cost(data) {
  31 + return request({
  32 + url: '/admin/cb/bold_dynamic_cost',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除标粗动态成本
  39 +export function delBold_dynamic_cost(id) {
  40 + return request({
  41 + url: '/admin/cb/bold_dynamic_cost/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询养成动态成本列表
  4 +export function listDevelopment_dynamic_cost(query) {
  5 + return request({
  6 + url: '/admin/cb/development_dynamic_cost/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询养成动态成本详细
  13 +export function getDevelopment_dynamic_cost(id) {
  14 + return request({
  15 + url: '/admin/cb/development_dynamic_cost/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增养成动态成本
  21 +export function addDevelopment_dynamic_cost(data) {
  22 + return request({
  23 + url: '/admin/cb/development_dynamic_cost',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改养成动态成本
  30 +export function updateDevelopment_dynamic_cost(data) {
  31 + return request({
  32 + url: '/admin/cb/development_dynamic_cost',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除养成动态成本
  39 +export function delDevelopment_dynamic_cost(id) {
  40 + return request({
  41 + url: '/admin/cb/development_dynamic_cost/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询养成存塘成本统计列表
  4 +export function listDevelopment_stock_cost_statistics(query) {
  5 + return request({
  6 + url: '/admin/cb/development_stock_cost_statistics/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询养成存塘成本统计详细
  13 +export function getDevelopment_stock_cost_statistics(id) {
  14 + return request({
  15 + url: '/admin/cb/development_stock_cost_statistics/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增养成存塘成本统计
  21 +export function addDevelopment_stock_cost_statistics(data) {
  22 + return request({
  23 + url: '/admin/cb/development_stock_cost_statistics',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改养成存塘成本统计
  30 +export function updateDevelopment_stock_cost_statistics(data) {
  31 + return request({
  32 + url: '/admin/cb/development_stock_cost_statistics',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除养成存塘成本统计
  39 +export function delDevelopment_stock_cost_statistics(id) {
  40 + return request({
  41 + url: '/admin/cb/development_stock_cost_statistics/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询斤鱼成本与售价查询列表
  4 +export function listFish_cost_and_price_query(query) {
  5 + return request({
  6 + url: '/admin/cb/fish_cost_and_price_query/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询斤鱼成本与售价查询详细
  13 +export function getFish_cost_and_price_query(id) {
  14 + return request({
  15 + url: '/admin/cb/fish_cost_and_price_query/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增斤鱼成本与售价查询
  21 +export function addFish_cost_and_price_query(data) {
  22 + return request({
  23 + url: '/admin/cb/fish_cost_and_price_query',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改斤鱼成本与售价查询
  30 +export function updateFish_cost_and_price_query(data) {
  31 + return request({
  32 + url: '/admin/cb/fish_cost_and_price_query',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除斤鱼成本与售价查询
  39 +export function delFish_cost_and_price_query(id) {
  40 + return request({
  41 + url: '/admin/cb/fish_cost_and_price_query/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询养成结转成本统计列表
  4 +export function listGrowth_closing_cost_statistics(query) {
  5 + return request({
  6 + url: '/admin/cb/growth_closing_cost_statistics/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询养成结转成本统计详细
  13 +export function getGrowth_closing_cost_statistics(id) {
  14 + return request({
  15 + url: '/admin/cb/growth_closing_cost_statistics/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增养成结转成本统计
  21 +export function addGrowth_closing_cost_statistics(data) {
  22 + return request({
  23 + url: '/admin/cb/growth_closing_cost_statistics',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改养成结转成本统计
  30 +export function updateGrowth_closing_cost_statistics(data) {
  31 + return request({
  32 + url: '/admin/cb/growth_closing_cost_statistics',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除养成结转成本统计
  39 +export function delGrowth_closing_cost_statistics(id) {
  40 + return request({
  41 + url: '/admin/cb/growth_closing_cost_statistics/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询养成成本月度汇总余额列表
  4 +export function listMonthly_raising_cost_summary(query) {
  5 + return request({
  6 + url: '/admin/cb/monthly_raising_cost_summary/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询养成成本月度汇总余额详细
  13 +export function getMonthly_raising_cost_summary(id) {
  14 + return request({
  15 + url: '/admin/cb/monthly_raising_cost_summary/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增养成成本月度汇总余额
  21 +export function addMonthly_raising_cost_summary(data) {
  22 + return request({
  23 + url: '/admin/cb/monthly_raising_cost_summary',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改养成成本月度汇总余额
  30 +export function updateMonthly_raising_cost_summary(data) {
  31 + return request({
  32 + url: '/admin/cb/monthly_raising_cost_summary',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除养成成本月度汇总余额
  39 +export function delMonthly_raising_cost_summary(id) {
  40 + return request({
  41 + url: '/admin/cb/monthly_raising_cost_summary/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询育苗成本月度汇总余额列表
  4 +export function listMonthly_seedling_cost_summary(query) {
  5 + return request({
  6 + url: '/admin/cb/monthly_seedling_cost_summary/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询育苗成本月度汇总余额详细
  13 +export function getMonthly_seedling_cost_summary(id) {
  14 + return request({
  15 + url: '/admin/cb/monthly_seedling_cost_summary/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增育苗成本月度汇总余额
  21 +export function addMonthly_seedling_cost_summary(data) {
  22 + return request({
  23 + url: '/admin/cb/monthly_seedling_cost_summary',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改育苗成本月度汇总余额
  30 +export function updateMonthly_seedling_cost_summary(data) {
  31 + return request({
  32 + url: '/admin/cb/monthly_seedling_cost_summary',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除育苗成本月度汇总余额
  39 +export function delMonthly_seedling_cost_summary(id) {
  40 + return request({
  41 + url: '/admin/cb/monthly_seedling_cost_summary/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询育苗结转成本统计列表
  4 +export function listNursery_closing_cost_statistics(query) {
  5 + return request({
  6 + url: '/admin/cb/nursery_closing_cost_statistics/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询育苗结转成本统计详细
  13 +export function getNursery_closing_cost_statistics(id) {
  14 + return request({
  15 + url: '/admin/cb/nursery_closing_cost_statistics/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增育苗结转成本统计
  21 +export function addNursery_closing_cost_statistics(data) {
  22 + return request({
  23 + url: '/admin/cb/nursery_closing_cost_statistics',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改育苗结转成本统计
  30 +export function updateNursery_closing_cost_statistics(data) {
  31 + return request({
  32 + url: '/admin/cb/nursery_closing_cost_statistics',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除育苗结转成本统计
  39 +export function delNursery_closing_cost_statistics(id) {
  40 + return request({
  41 + url: '/admin/cb/nursery_closing_cost_statistics/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询育苗存塘成本统计列表
  4 +export function listNursery_stock_cost_statistics(query) {
  5 + return request({
  6 + url: '/admin/cb/nursery_stock_cost_statistics/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询育苗存塘成本统计详细
  13 +export function getNursery_stock_cost_statistics(id) {
  14 + return request({
  15 + url: '/admin/cb/nursery_stock_cost_statistics/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增育苗存塘成本统计
  21 +export function addNursery_stock_cost_statistics(data) {
  22 + return request({
  23 + url: '/admin/cb/nursery_stock_cost_statistics',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改育苗存塘成本统计
  30 +export function updateNursery_stock_cost_statistics(data) {
  31 + return request({
  32 + url: '/admin/cb/nursery_stock_cost_statistics',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除育苗存塘成本统计
  39 +export function delNursery_stock_cost_statistics(id) {
  40 + return request({
  41 + url: '/admin/cb/nursery_stock_cost_statistics/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询养成成本统计明细列表
  4 +export function listRearing_cost_details(query) {
  5 + return request({
  6 + url: '/admin/cb/rearing_cost_details/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询养成成本统计明细详细
  13 +export function getRearing_cost_details(id) {
  14 + return request({
  15 + url: '/admin/cb/rearing_cost_details/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增养成成本统计明细
  21 +export function addRearing_cost_details(data) {
  22 + return request({
  23 + url: '/admin/cb/rearing_cost_details',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改养成成本统计明细
  30 +export function updateRearing_cost_details(data) {
  31 + return request({
  32 + url: '/admin/cb/rearing_cost_details',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除养成成本统计明细
  39 +export function delRearing_cost_details(id) {
  40 + return request({
  41 + url: '/admin/cb/rearing_cost_details/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询育苗成本统计明细列表
  4 +export function listSeedling_cost_details(query) {
  5 + return request({
  6 + url: '/admin/cb/seedling_cost_details/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询育苗成本统计明细详细
  13 +export function getSeedling_cost_details(id) {
  14 + return request({
  15 + url: '/admin/cb/seedling_cost_details/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增育苗成本统计明细
  21 +export function addSeedling_cost_details(data) {
  22 + return request({
  23 + url: '/admin/cb/seedling_cost_details',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改育苗成本统计明细
  30 +export function updateSeedling_cost_details(data) {
  31 + return request({
  32 + url: '/admin/cb/seedling_cost_details',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除育苗成本统计明细
  39 +export function delSeedling_cost_details(id) {
  40 + return request({
  41 + url: '/admin/cb/seedling_cost_details/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询采样记录列表
  4 +export function listSampling_records(query) {
  5 + return request({
  6 + url: '/admin/cj/sampling_records/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询采样记录详细
  13 +export function getSampling_records(id) {
  14 + return request({
  15 + url: '/admin/cj/sampling_records/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增采样记录
  21 +export function addSampling_records(data) {
  22 + return request({
  23 + url: '/admin/cj/sampling_records',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改采样记录
  30 +export function updateSampling_records(data) {
  31 + return request({
  32 + url: '/admin/cj/sampling_records',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除采样记录
  39 +export function delSampling_records(id) {
  40 + return request({
  41 + url: '/admin/cj/sampling_records/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询存塘抽样指标分析列表
  4 +export function listStock_pond_sampling_analysis(query) {
  5 + return request({
  6 + url: '/admin/cj/stock_pond_sampling_analysis/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询存塘抽样指标分析详细
  13 +export function getStock_pond_sampling_analysis(id) {
  14 + return request({
  15 + url: '/admin/cj/stock_pond_sampling_analysis/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增存塘抽样指标分析
  21 +export function addStock_pond_sampling_analysis(data) {
  22 + return request({
  23 + url: '/admin/cj/stock_pond_sampling_analysis',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改存塘抽样指标分析
  30 +export function updateStock_pond_sampling_analysis(data) {
  31 + return request({
  32 + url: '/admin/cj/stock_pond_sampling_analysis',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除存塘抽样指标分析
  39 +export function delStock_pond_sampling_analysis(id) {
  40 + return request({
  41 + url: '/admin/cj/stock_pond_sampling_analysis/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询区域投喂列表
  4 +export function listArea_feeding(query) {
  5 + return request({
  6 + url: '/admin/cl/area_feeding/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询区域投喂详细
  13 +export function getArea_feeding(id) {
  14 + return request({
  15 + url: '/admin/cl/area_feeding/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增区域投喂
  21 +export function addArea_feeding(data) {
  22 + return request({
  23 + url: '/admin/cl/area_feeding',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改区域投喂
  30 +export function updateArea_feeding(data) {
  31 + return request({
  32 + url: '/admin/cl/area_feeding',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除区域投喂
  39 +export function delArea_feeding(id) {
  40 + return request({
  41 + url: '/admin/cl/area_feeding/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询饲料调拨列表
  4 +export function listFeed_allocation(query) {
  5 + return request({
  6 + url: '/admin/cl/feed_allocation/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询饲料调拨详细
  13 +export function getFeed_allocation(id) {
  14 + return request({
  15 + url: '/admin/cl/feed_allocation/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增饲料调拨
  21 +export function addFeed_allocation(data) {
  22 + return request({
  23 + url: '/admin/cl/feed_allocation',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改饲料调拨
  30 +export function updateFeed_allocation(data) {
  31 + return request({
  32 + url: '/admin/cl/feed_allocation',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除饲料调拨
  39 +export function delFeed_allocation(id) {
  40 + return request({
  41 + url: '/admin/cl/feed_allocation/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询饲料期初列表
  4 +export function listFeed_beginning_balance(query) {
  5 + return request({
  6 + url: '/admin/cl/feed_beginning_balance/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询饲料期初详细
  13 +export function getFeed_beginning_balance(id) {
  14 + return request({
  15 + url: '/admin/cl/feed_beginning_balance/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增饲料期初
  21 +export function addFeed_beginning_balance(data) {
  22 + return request({
  23 + url: '/admin/cl/feed_beginning_balance',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改饲料期初
  30 +export function updateFeed_beginning_balance(data) {
  31 + return request({
  32 + url: '/admin/cl/feed_beginning_balance',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除饲料期初
  39 +export function delFeed_beginning_balance(id) {
  40 + return request({
  41 + url: '/admin/cl/feed_beginning_balance/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询饲料借调列表
  4 +export function listFeed_borrow(query) {
  5 + return request({
  6 + url: '/admin/cl/feed_borrow/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询饲料借调详细
  13 +export function getFeed_borrow(id) {
  14 + return request({
  15 + url: '/admin/cl/feed_borrow/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增饲料借调
  21 +export function addFeed_borrow(data) {
  22 + return request({
  23 + url: '/admin/cl/feed_borrow',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改饲料借调
  30 +export function updateFeed_borrow(data) {
  31 + return request({
  32 + url: '/admin/cl/feed_borrow',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除饲料借调
  39 +export function delFeed_borrow(id) {
  40 + return request({
  41 + url: '/admin/cl/feed_borrow/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询饲料信息列表
  4 +export function listFeed_info(query) {
  5 + return request({
  6 + url: '/admin/cl/feed_info/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询饲料信息详细
  13 +export function getFeed_info(id) {
  14 + return request({
  15 + url: '/admin/cl/feed_info/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增饲料信息
  21 +export function addFeed_info(data) {
  22 + return request({
  23 + url: '/admin/cl/feed_info',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改饲料信息
  30 +export function updateFeed_info(data) {
  31 + return request({
  32 + url: '/admin/cl/feed_info',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除饲料信息
  39 +export function delFeed_info(id) {
  40 + return request({
  41 + url: '/admin/cl/feed_info/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询饲料盘点列表
  4 +export function listFeed_inventory(query) {
  5 + return request({
  6 + url: '/admin/cl/feed_inventory/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询饲料盘点详细
  13 +export function getFeed_inventory(id) {
  14 + return request({
  15 + url: '/admin/cl/feed_inventory/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增饲料盘点
  21 +export function addFeed_inventory(data) {
  22 + return request({
  23 + url: '/admin/cl/feed_inventory',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改饲料盘点
  30 +export function updateFeed_inventory(data) {
  31 + return request({
  32 + url: '/admin/cl/feed_inventory',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除饲料盘点
  39 +export function delFeed_inventory(id) {
  40 + return request({
  41 + url: '/admin/cl/feed_inventory/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询饲料价格列表
  4 +export function listFeed_price(query) {
  5 + return request({
  6 + url: '/admin/cl/feed_price/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询饲料价格详细
  13 +export function getFeed_price(id) {
  14 + return request({
  15 + url: '/admin/cl/feed_price/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增饲料价格
  21 +export function addFeed_price(data) {
  22 + return request({
  23 + url: '/admin/cl/feed_price',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改饲料价格
  30 +export function updateFeed_price(data) {
  31 + return request({
  32 + url: '/admin/cl/feed_price',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除饲料价格
  39 +export function delFeed_price(id) {
  40 + return request({
  41 + url: '/admin/cl/feed_price/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询饲料申购列表
  4 +export function listFeed_purchase_requisition(query) {
  5 + return request({
  6 + url: '/admin/cl/feed_purchase_requisition/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询饲料申购详细
  13 +export function getFeed_purchase_requisition(id) {
  14 + return request({
  15 + url: '/admin/cl/feed_purchase_requisition/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增饲料申购
  21 +export function addFeed_purchase_requisition(data) {
  22 + return request({
  23 + url: '/admin/cl/feed_purchase_requisition',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改饲料申购
  30 +export function updateFeed_purchase_requisition(data) {
  31 + return request({
  32 + url: '/admin/cl/feed_purchase_requisition',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除饲料申购
  39 +export function delFeed_purchase_requisition(id) {
  40 + return request({
  41 + url: '/admin/cl/feed_purchase_requisition/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询饲料入库列表
  4 +export function listFeed_stock_in(query) {
  5 + return request({
  6 + url: '/admin/cl/feed_stock_in/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询饲料入库详细
  13 +export function getFeed_stock_in(id) {
  14 + return request({
  15 + url: '/admin/cl/feed_stock_in/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增饲料入库
  21 +export function addFeed_stock_in(data) {
  22 + return request({
  23 + url: '/admin/cl/feed_stock_in',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改饲料入库
  30 +export function updateFeed_stock_in(data) {
  31 + return request({
  32 + url: '/admin/cl/feed_stock_in',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除饲料入库
  39 +export function delFeed_stock_in(id) {
  40 + return request({
  41 + url: '/admin/cl/feed_stock_in/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保调拨列表
  4 +export function listAnimal_protection_allocation(query) {
  5 + return request({
  6 + url: '/admin/db/animal_protection_allocation/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保调拨详细
  13 +export function getAnimal_protection_allocation(id) {
  14 + return request({
  15 + url: '/admin/db/animal_protection_allocation/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保调拨
  21 +export function addAnimal_protection_allocation(data) {
  22 + return request({
  23 + url: '/admin/db/animal_protection_allocation',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保调拨
  30 +export function updateAnimal_protection_allocation(data) {
  31 + return request({
  32 + url: '/admin/db/animal_protection_allocation',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保调拨
  39 +export function delAnimal_protection_allocation(id) {
  40 + return request({
  41 + url: '/admin/db/animal_protection_allocation/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保区域使用列表
  4 +export function listAnimal_protection_area_usage(query) {
  5 + return request({
  6 + url: '/admin/db/animal_protection_area_usage/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保区域使用详细
  13 +export function getAnimal_protection_area_usage(id) {
  14 + return request({
  15 + url: '/admin/db/animal_protection_area_usage/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保区域使用
  21 +export function addAnimal_protection_area_usage(data) {
  22 + return request({
  23 + url: '/admin/db/animal_protection_area_usage',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保区域使用
  30 +export function updateAnimal_protection_area_usage(data) {
  31 + return request({
  32 + url: '/admin/db/animal_protection_area_usage',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保区域使用
  39 +export function delAnimal_protection_area_usage(id) {
  40 + return request({
  41 + url: '/admin/db/animal_protection_area_usage/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保期初列表
  4 +export function listAnimal_protection_beginning(query) {
  5 + return request({
  6 + url: '/admin/db/animal_protection_beginning/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保期初详细
  13 +export function getAnimal_protection_beginning(id) {
  14 + return request({
  15 + url: '/admin/db/animal_protection_beginning/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保期初
  21 +export function addAnimal_protection_beginning(data) {
  22 + return request({
  23 + url: '/admin/db/animal_protection_beginning',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保期初
  30 +export function updateAnimal_protection_beginning(data) {
  31 + return request({
  32 + url: '/admin/db/animal_protection_beginning',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保期初
  39 +export function delAnimal_protection_beginning(id) {
  40 + return request({
  41 + url: '/admin/db/animal_protection_beginning/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保入库列表
  4 +export function listAnimal_protection_inbound(query) {
  5 + return request({
  6 + url: '/admin/db/animal_protection_inbound/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保入库详细
  13 +export function getAnimal_protection_inbound(id) {
  14 + return request({
  15 + url: '/admin/db/animal_protection_inbound/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保入库
  21 +export function addAnimal_protection_inbound(data) {
  22 + return request({
  23 + url: '/admin/db/animal_protection_inbound',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保入库
  30 +export function updateAnimal_protection_inbound(data) {
  31 + return request({
  32 + url: '/admin/db/animal_protection_inbound',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保入库
  39 +export function delAnimal_protection_inbound(id) {
  40 + return request({
  41 + url: '/admin/db/animal_protection_inbound/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保信息列表
  4 +export function listAnimal_protection_info(query) {
  5 + return request({
  6 + url: '/admin/db/animal_protection_info/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保信息详细
  13 +export function getAnimal_protection_info(id) {
  14 + return request({
  15 + url: '/admin/db/animal_protection_info/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保信息
  21 +export function addAnimal_protection_info(data) {
  22 + return request({
  23 + url: '/admin/db/animal_protection_info',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保信息
  30 +export function updateAnimal_protection_info(data) {
  31 + return request({
  32 + url: '/admin/db/animal_protection_info',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保信息
  39 +export function delAnimal_protection_info(id) {
  40 + return request({
  41 + url: '/admin/db/animal_protection_info/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保盘点列表
  4 +export function listAnimal_protection_inventory(query) {
  5 + return request({
  6 + url: '/admin/db/animal_protection_inventory/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保盘点详细
  13 +export function getAnimal_protection_inventory(id) {
  14 + return request({
  15 + url: '/admin/db/animal_protection_inventory/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保盘点
  21 +export function addAnimal_protection_inventory(data) {
  22 + return request({
  23 + url: '/admin/db/animal_protection_inventory',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保盘点
  30 +export function updateAnimal_protection_inventory(data) {
  31 + return request({
  32 + url: '/admin/db/animal_protection_inventory',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保盘点
  39 +export function delAnimal_protection_inventory(id) {
  40 + return request({
  41 + url: '/admin/db/animal_protection_inventory/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保借调列表
  4 +export function listAnimal_protection_loan(query) {
  5 + return request({
  6 + url: '/admin/db/animal_protection_loan/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保借调详细
  13 +export function getAnimal_protection_loan(id) {
  14 + return request({
  15 + url: '/admin/db/animal_protection_loan/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保借调
  21 +export function addAnimal_protection_loan(data) {
  22 + return request({
  23 + url: '/admin/db/animal_protection_loan',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保借调
  30 +export function updateAnimal_protection_loan(data) {
  31 + return request({
  32 + url: '/admin/db/animal_protection_loan',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保借调
  39 +export function delAnimal_protection_loan(id) {
  40 + return request({
  41 + url: '/admin/db/animal_protection_loan/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保塘口使用列表
  4 +export function listAnimal_protection_pond_usage(query) {
  5 + return request({
  6 + url: '/admin/db/animal_protection_pond_usage/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保塘口使用详细
  13 +export function getAnimal_protection_pond_usage(id) {
  14 + return request({
  15 + url: '/admin/db/animal_protection_pond_usage/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保塘口使用
  21 +export function addAnimal_protection_pond_usage(data) {
  22 + return request({
  23 + url: '/admin/db/animal_protection_pond_usage',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保塘口使用
  30 +export function updateAnimal_protection_pond_usage(data) {
  31 + return request({
  32 + url: '/admin/db/animal_protection_pond_usage',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保塘口使用
  39 +export function delAnimal_protection_pond_usage(id) {
  40 + return request({
  41 + url: '/admin/db/animal_protection_pond_usage/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保处方列表
  4 +export function listAnimal_protection_prescription(query) {
  5 + return request({
  6 + url: '/admin/db/animal_protection_prescription/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保处方详细
  13 +export function getAnimal_protection_prescription(id) {
  14 + return request({
  15 + url: '/admin/db/animal_protection_prescription/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保处方
  21 +export function addAnimal_protection_prescription(data) {
  22 + return request({
  23 + url: '/admin/db/animal_protection_prescription',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保处方
  30 +export function updateAnimal_protection_prescription(data) {
  31 + return request({
  32 + url: '/admin/db/animal_protection_prescription',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保处方
  39 +export function delAnimal_protection_prescription(id) {
  40 + return request({
  41 + url: '/admin/db/animal_protection_prescription/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保申购列表
  4 +export function listAnimal_protection_purchase_requisition(query) {
  5 + return request({
  6 + url: '/admin/db/animal_protection_purchase_requisition/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保申购详细
  13 +export function getAnimal_protection_purchase_requisition(id) {
  14 + return request({
  15 + url: '/admin/db/animal_protection_purchase_requisition/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保申购
  21 +export function addAnimal_protection_purchase_requisition(data) {
  22 + return request({
  23 + url: '/admin/db/animal_protection_purchase_requisition',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保申购
  30 +export function updateAnimal_protection_purchase_requisition(data) {
  31 + return request({
  32 + url: '/admin/db/animal_protection_purchase_requisition',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保申购
  39 +export function delAnimal_protection_purchase_requisition(id) {
  40 + return request({
  41 + url: '/admin/db/animal_protection_purchase_requisition/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保入库明细列表
  4 +export function listAnimal_health_protection_inbound_details(query) {
  5 + return request({
  6 + url: '/admin/dbkb/animal_health_protection_inbound_details/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保入库明细详细
  13 +export function getAnimal_health_protection_inbound_details(id) {
  14 + return request({
  15 + url: '/admin/dbkb/animal_health_protection_inbound_details/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保入库明细
  21 +export function addAnimal_health_protection_inbound_details(data) {
  22 + return request({
  23 + url: '/admin/dbkb/animal_health_protection_inbound_details',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保入库明细
  30 +export function updateAnimal_health_protection_inbound_details(data) {
  31 + return request({
  32 + url: '/admin/dbkb/animal_health_protection_inbound_details',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保入库明细
  39 +export function delAnimal_health_protection_inbound_details(id) {
  40 + return request({
  41 + url: '/admin/dbkb/animal_health_protection_inbound_details/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保进出存列表
  4 +export function listAnimal_health_protection_inventory(query) {
  5 + return request({
  6 + url: '/admin/dbkb/animal_health_protection_inventory/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保进出存详细
  13 +export function getAnimal_health_protection_inventory(id) {
  14 + return request({
  15 + url: '/admin/dbkb/animal_health_protection_inventory/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保进出存
  21 +export function addAnimal_health_protection_inventory(data) {
  22 + return request({
  23 + url: '/admin/dbkb/animal_health_protection_inventory',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保进出存
  30 +export function updateAnimal_health_protection_inventory(data) {
  31 + return request({
  32 + url: '/admin/dbkb/animal_health_protection_inventory',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保进出存
  39 +export function delAnimal_health_protection_inventory(id) {
  40 + return request({
  41 + url: '/admin/dbkb/animal_health_protection_inventory/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保出库明细列表
  4 +export function listAnimal_health_protection_outbound_details(query) {
  5 + return request({
  6 + url: '/admin/dbkb/animal_health_protection_outbound_details/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保出库明细详细
  13 +export function getAnimal_health_protection_outbound_details(id) {
  14 + return request({
  15 + url: '/admin/dbkb/animal_health_protection_outbound_details/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保出库明细
  21 +export function addAnimal_health_protection_outbound_details(data) {
  22 + return request({
  23 + url: '/admin/dbkb/animal_health_protection_outbound_details',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保出库明细
  30 +export function updateAnimal_health_protection_outbound_details(data) {
  31 + return request({
  32 + url: '/admin/dbkb/animal_health_protection_outbound_details',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保出库明细
  39 +export function delAnimal_health_protection_outbound_details(id) {
  40 + return request({
  41 + url: '/admin/dbkb/animal_health_protection_outbound_details/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保投用记录列表
  4 +export function listAnimal_health_protection_records(query) {
  5 + return request({
  6 + url: '/admin/dbkb/animal_health_protection_records/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保投用记录详细
  13 +export function getAnimal_health_protection_records(id) {
  14 + return request({
  15 + url: '/admin/dbkb/animal_health_protection_records/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保投用记录
  21 +export function addAnimal_health_protection_records(data) {
  22 + return request({
  23 + url: '/admin/dbkb/animal_health_protection_records',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保投用记录
  30 +export function updateAnimal_health_protection_records(data) {
  31 + return request({
  32 + url: '/admin/dbkb/animal_health_protection_records',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保投用记录
  39 +export function delAnimal_health_protection_records(id) {
  40 + return request({
  41 + url: '/admin/dbkb/animal_health_protection_records/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询动保投用汇总列表
  4 +export function listAnimal_health_protection_summary(query) {
  5 + return request({
  6 + url: '/admin/dbkb/animal_health_protection_summary/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询动保投用汇总详细
  13 +export function getAnimal_health_protection_summary(id) {
  14 + return request({
  15 + url: '/admin/dbkb/animal_health_protection_summary/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增动保投用汇总
  21 +export function addAnimal_health_protection_summary(data) {
  22 + return request({
  23 + url: '/admin/dbkb/animal_health_protection_summary',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改动保投用汇总
  30 +export function updateAnimal_health_protection_summary(data) {
  31 + return request({
  32 + url: '/admin/dbkb/animal_health_protection_summary',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除动保投用汇总
  39 +export function delAnimal_health_protection_summary(id) {
  40 + return request({
  41 + url: '/admin/dbkb/animal_health_protection_summary/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询费用成本录入列表
  4 +export function listCost_expense_entry(query) {
  5 + return request({
  6 + url: '/admin/fy/cost_expense_entry/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询费用成本录入详细
  13 +export function getCost_expense_entry(id) {
  14 + return request({
  15 + url: '/admin/fy/cost_expense_entry/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增费用成本录入
  21 +export function addCost_expense_entry(data) {
  22 + return request({
  23 + url: '/admin/fy/cost_expense_entry',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改费用成本录入
  30 +export function updateCost_expense_entry(data) {
  31 + return request({
  32 + url: '/admin/fy/cost_expense_entry',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除费用成本录入
  39 +export function delCost_expense_entry(id) {
  40 + return request({
  41 + url: '/admin/fy/cost_expense_entry/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询成本项目维护列表
  4 +export function listCost_item_maintenance(query) {
  5 + return request({
  6 + url: '/admin/fy/cost_item_maintenance/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询成本项目维护详细
  13 +export function getCost_item_maintenance(id) {
  14 + return request({
  15 + url: '/admin/fy/cost_item_maintenance/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增成本项目维护
  21 +export function addCost_item_maintenance(data) {
  22 + return request({
  23 + url: '/admin/fy/cost_item_maintenance',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改成本项目维护
  30 +export function updateCost_item_maintenance(data) {
  31 + return request({
  32 + url: '/admin/fy/cost_item_maintenance',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除成本项目维护
  39 +export function delCost_item_maintenance(id) {
  40 + return request({
  41 + url: '/admin/fy/cost_item_maintenance/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询客户期初管理列表
  4 +export function listCustomer_beginning_balance_management(query) {
  5 + return request({
  6 + url: '/admin/fy/customer_beginning_balance_management/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询客户期初管理详细
  13 +export function getCustomer_beginning_balance_management(id) {
  14 + return request({
  15 + url: '/admin/fy/customer_beginning_balance_management/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增客户期初管理
  21 +export function addCustomer_beginning_balance_management(data) {
  22 + return request({
  23 + url: '/admin/fy/customer_beginning_balance_management',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改客户期初管理
  30 +export function updateCustomer_beginning_balance_management(data) {
  31 + return request({
  32 + url: '/admin/fy/customer_beginning_balance_management',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除客户期初管理
  39 +export function delCustomer_beginning_balance_management(id) {
  40 + return request({
  41 + url: '/admin/fy/customer_beginning_balance_management/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询客户收款结算列表
  4 +export function listCustomer_collection_settlement(query) {
  5 + return request({
  6 + url: '/admin/fy/customer_collection_settlement/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询客户收款结算详细
  13 +export function getCustomer_collection_settlement(id) {
  14 + return request({
  15 + url: '/admin/fy/customer_collection_settlement/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增客户收款结算
  21 +export function addCustomer_collection_settlement(data) {
  22 + return request({
  23 + url: '/admin/fy/customer_collection_settlement',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改客户收款结算
  30 +export function updateCustomer_collection_settlement(data) {
  31 + return request({
  32 + url: '/admin/fy/customer_collection_settlement',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除客户收款结算
  39 +export function delCustomer_collection_settlement(id) {
  40 + return request({
  41 + url: '/admin/fy/customer_collection_settlement/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询客户应收管理列表
  4 +export function listCustomer_receivable_management(query) {
  5 + return request({
  6 + url: '/admin/fy/customer_receivable_management/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询客户应收管理详细
  13 +export function getCustomer_receivable_management(id) {
  14 + return request({
  15 + url: '/admin/fy/customer_receivable_management/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增客户应收管理
  21 +export function addCustomer_receivable_management(data) {
  22 + return request({
  23 + url: '/admin/fy/customer_receivable_management',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改客户应收管理
  30 +export function updateCustomer_receivable_management(data) {
  31 + return request({
  32 + url: '/admin/fy/customer_receivable_management',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除客户应收管理
  39 +export function delCustomer_receivable_management(id) {
  40 + return request({
  41 + url: '/admin/fy/customer_receivable_management/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询费用事项维护列表
  4 +export function listExpense_item_maintenance(query) {
  5 + return request({
  6 + url: '/admin/fy/expense_item_maintenance/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询费用事项维护详细
  13 +export function getExpense_item_maintenance(id) {
  14 + return request({
  15 + url: '/admin/fy/expense_item_maintenance/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增费用事项维护
  21 +export function addExpense_item_maintenance(data) {
  22 + return request({
  23 + url: '/admin/fy/expense_item_maintenance',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改费用事项维护
  30 +export function updateExpense_item_maintenance(data) {
  31 + return request({
  32 + url: '/admin/fy/expense_item_maintenance',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除费用事项维护
  39 +export function delExpense_item_maintenance(id) {
  40 + return request({
  41 + url: '/admin/fy/expense_item_maintenance/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询客户管理列表
  4 +export function listCustomer_management(query) {
  5 + return request({
  6 + url: '/admin/jc/customer_management/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询客户管理详细
  13 +export function getCustomer_management(id) {
  14 + return request({
  15 + url: '/admin/jc/customer_management/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增客户管理
  21 +export function addCustomer_management(data) {
  22 + return request({
  23 + url: '/admin/jc/customer_management',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改客户管理
  30 +export function updateCustomer_management(data) {
  31 + return request({
  32 + url: '/admin/jc/customer_management',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除客户管理
  39 +export function delCustomer_management(id) {
  40 + return request({
  41 + url: '/admin/jc/customer_management/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询供应商管理列表
  4 +export function listSupplier_management(query) {
  5 + return request({
  6 + url: '/admin/jc/supplier_management/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询供应商管理详细
  13 +export function getSupplier_management(id) {
  14 + return request({
  15 + url: '/admin/jc/supplier_management/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增供应商管理
  21 +export function addSupplier_management(data) {
  22 + return request({
  23 + url: '/admin/jc/supplier_management',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改供应商管理
  30 +export function updateSupplier_management(data) {
  31 + return request({
  32 + url: '/admin/jc/supplier_management',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除供应商管理
  39 +export function delSupplier_management(id) {
  40 + return request({
  41 + url: '/admin/jc/supplier_management/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询运输管理列表
  4 +export function listTransport_management(query) {
  5 + return request({
  6 + url: '/admin/jc/transport_management/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询运输管理详细
  13 +export function getTransport_management(id) {
  14 + return request({
  15 + url: '/admin/jc/transport_management/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增运输管理
  21 +export function addTransport_management(data) {
  22 + return request({
  23 + url: '/admin/jc/transport_management',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改运输管理
  30 +export function updateTransport_management(data) {
  31 + return request({
  32 + url: '/admin/jc/transport_management',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除运输管理
  39 +export function delTransport_management(id) {
  40 + return request({
  41 + url: '/admin/jc/transport_management/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询自定义分组列表
  4 +export function listCustom_groups(query) {
  5 + return request({
  6 + url: '/admin/jdtk/custom_groups/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询自定义分组详细
  13 +export function getCustom_groups(id) {
  14 + return request({
  15 + url: '/admin/jdtk/custom_groups/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增自定义分组
  21 +export function addCustom_groups(data) {
  22 + return request({
  23 + url: '/admin/jdtk/custom_groups',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改自定义分组
  30 +export function updateCustom_groups(data) {
  31 + return request({
  32 + url: '/admin/jdtk/custom_groups',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除自定义分组
  39 +export function delCustom_groups(id) {
  40 + return request({
  41 + url: '/admin/jdtk/custom_groups/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询养殖场设置列表
  4 +export function listFarm_settings(query) {
  5 + return request({
  6 + url: '/admin/jdtk/farm_settings/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询养殖场设置详细
  13 +export function getFarm_settings(id) {
  14 + return request({
  15 + url: '/admin/jdtk/farm_settings/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增养殖场设置
  21 +export function addFarm_settings(data) {
  22 + return request({
  23 + url: '/admin/jdtk/farm_settings',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改养殖场设置
  30 +export function updateFarm_settings(data) {
  31 + return request({
  32 + url: '/admin/jdtk/farm_settings',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除养殖场设置
  39 +export function delFarm_settings(id) {
  40 + return request({
  41 + url: '/admin/jdtk/farm_settings/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询分组与塘口的关联列表
  4 +export function listGroup_ponds(query) {
  5 + return request({
  6 + url: '/admin/jdtk/group_ponds/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询分组与塘口的关联详细
  13 +export function getGroup_ponds(groupId) {
  14 + return request({
  15 + url: '/admin/jdtk/group_ponds/' + groupId,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增分组与塘口的关联
  21 +export function addGroup_ponds(data) {
  22 + return request({
  23 + url: '/admin/jdtk/group_ponds',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改分组与塘口的关联
  30 +export function updateGroup_ponds(data) {
  31 + return request({
  32 + url: '/admin/jdtk/group_ponds',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除分组与塘口的关联
  39 +export function delGroup_ponds(groupId) {
  40 + return request({
  41 + url: '/admin/jdtk/group_ponds/' + groupId,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询塘口设置列表
  4 +export function listPond_settings(query) {
  5 + return request({
  6 + url: '/admin/jdtk/pond_settings/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询塘口设置详细
  13 +export function getPond_settings(id) {
  14 + return request({
  15 + url: '/admin/jdtk/pond_settings/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增塘口设置
  21 +export function addPond_settings(data) {
  22 + return request({
  23 + url: '/admin/jdtk/pond_settings',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改塘口设置
  30 +export function updatePond_settings(data) {
  31 + return request({
  32 + url: '/admin/jdtk/pond_settings',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除塘口设置
  39 +export function delPond_settings(id) {
  40 + return request({
  41 + url: '/admin/jdtk/pond_settings/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询成品加工入库列表
  4 +export function listFinished_goods_processing(query) {
  5 + return request({
  6 + url: '/admin/jg/finished_goods_processing/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询成品加工入库详细
  13 +export function getFinished_goods_processing(id) {
  14 + return request({
  15 + url: '/admin/jg/finished_goods_processing/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增成品加工入库
  21 +export function addFinished_goods_processing(data) {
  22 + return request({
  23 + url: '/admin/jg/finished_goods_processing',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改成品加工入库
  30 +export function updateFinished_goods_processing(data) {
  31 + return request({
  32 + url: '/admin/jg/finished_goods_processing',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除成品加工入库
  39 +export function delFinished_goods_processing(id) {
  40 + return request({
  41 + url: '/admin/jg/finished_goods_processing/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询库存盘点列表
  4 +export function listInventory_check(query) {
  5 + return request({
  6 + url: '/admin/jg/inventory_check/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询库存盘点详细
  13 +export function getInventory_check(id) {
  14 + return request({
  15 + url: '/admin/jg/inventory_check/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增库存盘点
  21 +export function addInventory_check(data) {
  22 + return request({
  23 + url: '/admin/jg/inventory_check',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改库存盘点
  30 +export function updateInventory_check(data) {
  31 + return request({
  32 + url: '/admin/jg/inventory_check',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除库存盘点
  39 +export function delInventory_check(id) {
  40 + return request({
  41 + url: '/admin/jg/inventory_check/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询加工品销售列表
  4 +export function listProcessed_goods_sales(query) {
  5 + return request({
  6 + url: '/admin/jg/processed_goods_sales/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询加工品销售详细
  13 +export function getProcessed_goods_sales(id) {
  14 + return request({
  15 + url: '/admin/jg/processed_goods_sales/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增加工品销售
  21 +export function addProcessed_goods_sales(data) {
  22 + return request({
  23 + url: '/admin/jg/processed_goods_sales',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改加工品销售
  30 +export function updateProcessed_goods_sales(data) {
  31 + return request({
  32 + url: '/admin/jg/processed_goods_sales',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除加工品销售
  39 +export function delProcessed_goods_sales(id) {
  40 + return request({
  41 + url: '/admin/jg/processed_goods_sales/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询加工厂信息列表
  4 +export function listProcessing_plant_info(query) {
  5 + return request({
  6 + url: '/admin/jg/processing_plant_info/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询加工厂信息详细
  13 +export function getProcessing_plant_info(id) {
  14 + return request({
  15 + url: '/admin/jg/processing_plant_info/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增加工厂信息
  21 +export function addProcessing_plant_info(data) {
  22 + return request({
  23 + url: '/admin/jg/processing_plant_info',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改加工厂信息
  30 +export function updateProcessing_plant_info(data) {
  31 + return request({
  32 + url: '/admin/jg/processing_plant_info',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除加工厂信息
  39 +export function delProcessing_plant_info(id) {
  40 + return request({
  41 + url: '/admin/jg/processing_plant_info/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询商品期初设置列表
  4 +export function listProduct_beginning_settings(query) {
  5 + return request({
  6 + url: '/admin/jg/product_beginning_settings/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询商品期初设置详细
  13 +export function getProduct_beginning_settings(id) {
  14 + return request({
  15 + url: '/admin/jg/product_beginning_settings/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增商品期初设置
  21 +export function addProduct_beginning_settings(data) {
  22 + return request({
  23 + url: '/admin/jg/product_beginning_settings',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改商品期初设置
  30 +export function updateProduct_beginning_settings(data) {
  31 + return request({
  32 + url: '/admin/jg/product_beginning_settings',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除商品期初设置
  39 +export function delProduct_beginning_settings(id) {
  40 + return request({
  41 + url: '/admin/jg/product_beginning_settings/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询商品信息列表
  4 +export function listProduct_info(query) {
  5 + return request({
  6 + url: '/admin/jg/product_info/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询商品信息详细
  13 +export function getProduct_info(id) {
  14 + return request({
  15 + url: '/admin/jg/product_info/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增商品信息
  21 +export function addProduct_info(data) {
  22 + return request({
  23 + url: '/admin/jg/product_info',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改商品信息
  30 +export function updateProduct_info(data) {
  31 + return request({
  32 + url: '/admin/jg/product_info',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除商品信息
  39 +export function delProduct_info(id) {
  40 + return request({
  41 + url: '/admin/jg/product_info/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询原材料购进列表
  4 +export function listRaw_material_purchase(query) {
  5 + return request({
  6 + url: '/admin/jg/raw_material_purchase/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询原材料购进详细
  13 +export function getRaw_material_purchase(id) {
  14 + return request({
  15 + url: '/admin/jg/raw_material_purchase/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增原材料购进
  21 +export function addRaw_material_purchase(data) {
  22 + return request({
  23 + url: '/admin/jg/raw_material_purchase',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改原材料购进
  30 +export function updateRaw_material_purchase(data) {
  31 + return request({
  32 + url: '/admin/jg/raw_material_purchase',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除原材料购进
  39 +export function delRaw_material_purchase(id) {
  40 + return request({
  41 + url: '/admin/jg/raw_material_purchase/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询部门设置列表
  4 +export function listDepartment_settings(query) {
  5 + return request({
  6 + url: '/admin/jgyh/department_settings/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询部门设置详细
  13 +export function getDepartment_settings(departmentCode) {
  14 + return request({
  15 + url: '/admin/jgyh/department_settings/' + departmentCode,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增部门设置
  21 +export function addDepartment_settings(data) {
  22 + return request({
  23 + url: '/admin/jgyh/department_settings',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改部门设置
  30 +export function updateDepartment_settings(data) {
  31 + return request({
  32 + url: '/admin/jgyh/department_settings',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除部门设置
  39 +export function delDepartment_settings(departmentCode) {
  40 + return request({
  41 + url: '/admin/jgyh/department_settings/' + departmentCode,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询机构设置列表
  4 +export function listOrganization_settings(query) {
  5 + return request({
  6 + url: '/admin/jgyh/organization_settings/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询机构设置详细
  13 +export function getOrganization_settings(id) {
  14 + return request({
  15 + url: '/admin/jgyh/organization_settings/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增机构设置
  21 +export function addOrganization_settings(data) {
  22 + return request({
  23 + url: '/admin/jgyh/organization_settings',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改机构设置
  30 +export function updateOrganization_settings(data) {
  31 + return request({
  32 + url: '/admin/jgyh/organization_settings',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除机构设置
  39 +export function delOrganization_settings(id) {
  40 + return request({
  41 + url: '/admin/jgyh/organization_settings/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询角色设置列表
  4 +export function listRole_settings(query) {
  5 + return request({
  6 + url: '/admin/jgyh/role_settings/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询角色设置详细
  13 +export function getRole_settings(id) {
  14 + return request({
  15 + url: '/admin/jgyh/role_settings/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增角色设置
  21 +export function addRole_settings(data) {
  22 + return request({
  23 + url: '/admin/jgyh/role_settings',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改角色设置
  30 +export function updateRole_settings(data) {
  31 + return request({
  32 + url: '/admin/jgyh/role_settings',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除角色设置
  39 +export function delRole_settings(id) {
  40 + return request({
  41 + url: '/admin/jgyh/role_settings/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询用户设置列表
  4 +export function listUser_settings(query) {
  5 + return request({
  6 + url: '/admin/jgyh/user_settings/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询用户设置详细
  13 +export function getUser_settings(id) {
  14 + return request({
  15 + url: '/admin/jgyh/user_settings/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增用户设置
  21 +export function addUser_settings(data) {
  22 + return request({
  23 + url: '/admin/jgyh/user_settings',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改用户设置
  30 +export function updateUser_settings(data) {
  31 + return request({
  32 + url: '/admin/jgyh/user_settings',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除用户设置
  39 +export function delUser_settings(id) {
  40 + return request({
  41 + url: '/admin/jgyh/user_settings/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询Binmass列表
  4 +export function listBinmass(query) {
  5 + return request({
  6 + url: '/admin/other/binmass/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询Binmass详细
  13 +export function getBinmass(id) {
  14 + return request({
  15 + url: '/admin/other/binmass/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增Binmass
  21 +export function addBinmass(data) {
  22 + return request({
  23 + url: '/admin/other/binmass',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改Binmass
  30 +export function updateBinmass(data) {
  31 + return request({
  32 + url: '/admin/other/binmass',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除Binmass
  39 +export function delBinmass(id) {
  40 + return request({
  41 + url: '/admin/other/binmass/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询Complete FCR列表
  4 +export function listComplete_fcr(query) {
  5 + return request({
  6 + url: '/admin/other/complete_fcr/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询Complete FCR详细
  13 +export function getComplete_fcr(id) {
  14 + return request({
  15 + url: '/admin/other/complete_fcr/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增Complete FCR
  21 +export function addComplete_fcr(data) {
  22 + return request({
  23 + url: '/admin/other/complete_fcr',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改Complete FCR
  30 +export function updateComplete_fcr(data) {
  31 + return request({
  32 + url: '/admin/other/complete_fcr',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除Complete FCR
  39 +export function delComplete_fcr(id) {
  40 + return request({
  41 + url: '/admin/other/complete_fcr/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询检测数据列表
  4 +export function listDetection_data(query) {
  5 + return request({
  6 + url: '/admin/rc/detection_data/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询检测数据详细
  13 +export function getDetection_data(id) {
  14 + return request({
  15 + url: '/admin/rc/detection_data/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增检测数据
  21 +export function addDetection_data(data) {
  22 + return request({
  23 + url: '/admin/rc/detection_data',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改检测数据
  30 +export function updateDetection_data(data) {
  31 + return request({
  32 + url: '/admin/rc/detection_data',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除检测数据
  39 +export function delDetection_data(id) {
  40 + return request({
  41 + url: '/admin/rc/detection_data/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询巡查日志列表
  4 +export function listInspection_logs(query) {
  5 + return request({
  6 + url: '/admin/rc/inspection_logs/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询巡查日志详细
  13 +export function getInspection_logs(id) {
  14 + return request({
  15 + url: '/admin/rc/inspection_logs/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增巡查日志
  21 +export function addInspection_logs(data) {
  22 + return request({
  23 + url: '/admin/rc/inspection_logs',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改巡查日志
  30 +export function updateInspection_logs(data) {
  31 + return request({
  32 + url: '/admin/rc/inspection_logs',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除巡查日志
  39 +export function delInspection_logs(id) {
  40 + return request({
  41 + url: '/admin/rc/inspection_logs/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询换水记录列表
  4 +export function listWater_exchange_records(query) {
  5 + return request({
  6 + url: '/admin/rc/water_exchange_records/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询换水记录详细
  13 +export function getWater_exchange_records(id) {
  14 + return request({
  15 + url: '/admin/rc/water_exchange_records/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增换水记录
  21 +export function addWater_exchange_records(data) {
  22 + return request({
  23 + url: '/admin/rc/water_exchange_records',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改换水记录
  30 +export function updateWater_exchange_records(data) {
  31 + return request({
  32 + url: '/admin/rc/water_exchange_records',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除换水记录
  39 +export function delWater_exchange_records(id) {
  40 + return request({
  41 + url: '/admin/rc/water_exchange_records/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询移箱操作审批列表
  4 +export function listBox_transfer_approval(query) {
  5 + return request({
  6 + url: '/admin/sc/box_transfer_approval/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询移箱操作审批详细
  13 +export function getBox_transfer_approval(id) {
  14 + return request({
  15 + url: '/admin/sc/box_transfer_approval/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增移箱操作审批
  21 +export function addBox_transfer_approval(data) {
  22 + return request({
  23 + url: '/admin/sc/box_transfer_approval',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改移箱操作审批
  30 +export function updateBox_transfer_approval(data) {
  31 + return request({
  32 + url: '/admin/sc/box_transfer_approval',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除移箱操作审批
  39 +export function delBox_transfer_approval(id) {
  40 + return request({
  41 + url: '/admin/sc/box_transfer_approval/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询检测管理列表
  4 +export function listInspection_management(query) {
  5 + return request({
  6 + url: '/admin/sc/inspection_management/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询检测管理详细
  13 +export function getInspection_management(id) {
  14 + return request({
  15 + url: '/admin/sc/inspection_management/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增检测管理
  21 +export function addInspection_management(data) {
  22 + return request({
  23 + url: '/admin/sc/inspection_management',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改检测管理
  30 +export function updateInspection_management(data) {
  31 + return request({
  32 + url: '/admin/sc/inspection_management',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除检测管理
  39 +export function delInspection_management(id) {
  40 + return request({
  41 + url: '/admin/sc/inspection_management/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询投苗操作审批列表
  4 +export function listSeeding_operation_approval(query) {
  5 + return request({
  6 + url: '/admin/sc/seeding_operation_approval/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询投苗操作审批详细
  13 +export function getSeeding_operation_approval(id) {
  14 + return request({
  15 + url: '/admin/sc/seeding_operation_approval/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增投苗操作审批
  21 +export function addSeeding_operation_approval(data) {
  22 + return request({
  23 + url: '/admin/sc/seeding_operation_approval',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改投苗操作审批
  30 +export function updateSeeding_operation_approval(data) {
  31 + return request({
  32 + url: '/admin/sc/seeding_operation_approval',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除投苗操作审批
  39 +export function delSeeding_operation_approval(id) {
  40 + return request({
  41 + url: '/admin/sc/seeding_operation_approval/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询存塘采样盘点列表
  4 +export function listStock_sampling_inventory(query) {
  5 + return request({
  6 + url: '/admin/sc/stock_sampling_inventory/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询存塘采样盘点详细
  13 +export function getStock_sampling_inventory(inventoryId) {
  14 + return request({
  15 + url: '/admin/sc/stock_sampling_inventory/' + inventoryId,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增存塘采样盘点
  21 +export function addStock_sampling_inventory(data) {
  22 + return request({
  23 + url: '/admin/sc/stock_sampling_inventory',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改存塘采样盘点
  30 +export function updateStock_sampling_inventory(data) {
  31 + return request({
  32 + url: '/admin/sc/stock_sampling_inventory',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除存塘采样盘点
  39 +export function delStock_sampling_inventory(inventoryId) {
  40 + return request({
  41 + url: '/admin/sc/stock_sampling_inventory/' + inventoryId,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询养成收获基础列表
  4 +export function listBreeding_harvest_base(query) {
  5 + return request({
  6 + url: '/admin/sh/breeding_harvest_base/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询养成收获基础详细
  13 +export function getBreeding_harvest_base(id) {
  14 + return request({
  15 + url: '/admin/sh/breeding_harvest_base/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增养成收获基础
  21 +export function addBreeding_harvest_base(data) {
  22 + return request({
  23 + url: '/admin/sh/breeding_harvest_base',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改养成收获基础
  30 +export function updateBreeding_harvest_base(data) {
  31 + return request({
  32 + url: '/admin/sh/breeding_harvest_base',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除养成收获基础
  39 +export function delBreeding_harvest_base(id) {
  40 + return request({
  41 + url: '/admin/sh/breeding_harvest_base/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询养成收获月报-产量列表
  4 +export function listBreeding_harvest_monthly_report_production(query) {
  5 + return request({
  6 + url: '/admin/sh/breeding_harvest_monthly_report_production/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询养成收获月报-产量详细
  13 +export function getBreeding_harvest_monthly_report_production(id) {
  14 + return request({
  15 + url: '/admin/sh/breeding_harvest_monthly_report_production/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增养成收获月报-产量
  21 +export function addBreeding_harvest_monthly_report_production(data) {
  22 + return request({
  23 + url: '/admin/sh/breeding_harvest_monthly_report_production',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改养成收获月报-产量
  30 +export function updateBreeding_harvest_monthly_report_production(data) {
  31 + return request({
  32 + url: '/admin/sh/breeding_harvest_monthly_report_production',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除养成收获月报-产量
  39 +export function delBreeding_harvest_monthly_report_production(id) {
  40 + return request({
  41 + url: '/admin/sh/breeding_harvest_monthly_report_production/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询养成收获记录列表
  4 +export function listBreeding_harvest_record(query) {
  5 + return request({
  6 + url: '/admin/sh/breeding_harvest_record/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询养成收获记录详细
  13 +export function getBreeding_harvest_record(id) {
  14 + return request({
  15 + url: '/admin/sh/breeding_harvest_record/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增养成收获记录
  21 +export function addBreeding_harvest_record(data) {
  22 + return request({
  23 + url: '/admin/sh/breeding_harvest_record',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改养成收获记录
  30 +export function updateBreeding_harvest_record(data) {
  31 + return request({
  32 + url: '/admin/sh/breeding_harvest_record',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除养成收获记录
  39 +export function delBreeding_harvest_record(id) {
  40 + return request({
  41 + url: '/admin/sh/breeding_harvest_record/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询客户应收余额列表
  4 +export function listCustomer_receivable_balance(query) {
  5 + return request({
  6 + url: '/admin/sh/customer_receivable_balance/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询客户应收余额详细
  13 +export function getCustomer_receivable_balance(id) {
  14 + return request({
  15 + url: '/admin/sh/customer_receivable_balance/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增客户应收余额
  21 +export function addCustomer_receivable_balance(data) {
  22 + return request({
  23 + url: '/admin/sh/customer_receivable_balance',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改客户应收余额
  30 +export function updateCustomer_receivable_balance(data) {
  31 + return request({
  32 + url: '/admin/sh/customer_receivable_balance',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除客户应收余额
  39 +export function delCustomer_receivable_balance(id) {
  40 + return request({
  41 + url: '/admin/sh/customer_receivable_balance/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询育苗收获基础列表
  4 +export function listNursery_harvest_base(query) {
  5 + return request({
  6 + url: '/admin/sh/nursery_harvest_base/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询育苗收获基础详细
  13 +export function getNursery_harvest_base(id) {
  14 + return request({
  15 + url: '/admin/sh/nursery_harvest_base/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增育苗收获基础
  21 +export function addNursery_harvest_base(data) {
  22 + return request({
  23 + url: '/admin/sh/nursery_harvest_base',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改育苗收获基础
  30 +export function updateNursery_harvest_base(data) {
  31 + return request({
  32 + url: '/admin/sh/nursery_harvest_base',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除育苗收获基础
  39 +export function delNursery_harvest_base(id) {
  40 + return request({
  41 + url: '/admin/sh/nursery_harvest_base/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询育苗收获记录列表
  4 +export function listNursery_harvest_record(query) {
  5 + return request({
  6 + url: '/admin/sh/nursery_harvest_record/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询育苗收获记录详细
  13 +export function getNursery_harvest_record(id) {
  14 + return request({
  15 + url: '/admin/sh/nursery_harvest_record/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增育苗收获记录
  21 +export function addNursery_harvest_record(data) {
  22 + return request({
  23 + url: '/admin/sh/nursery_harvest_record',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改育苗收获记录
  30 +export function updateNursery_harvest_record(data) {
  31 + return request({
  32 + url: '/admin/sh/nursery_harvest_record',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除育苗收获记录
  39 +export function delNursery_harvest_record(id) {
  40 + return request({
  41 + url: '/admin/sh/nursery_harvest_record/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询养成收获月报-利润列表
  4 +export function listRaising_harvest_monthly_profit_report(query) {
  5 + return request({
  6 + url: '/admin/sh/raising_harvest_monthly_profit_report/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询养成收获月报-利润详细
  13 +export function getRaising_harvest_monthly_profit_report(id) {
  14 + return request({
  15 + url: '/admin/sh/raising_harvest_monthly_profit_report/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增养成收获月报-利润
  21 +export function addRaising_harvest_monthly_profit_report(data) {
  22 + return request({
  23 + url: '/admin/sh/raising_harvest_monthly_profit_report',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改养成收获月报-利润
  30 +export function updateRaising_harvest_monthly_profit_report(data) {
  31 + return request({
  32 + url: '/admin/sh/raising_harvest_monthly_profit_report',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除养成收获月报-利润
  39 +export function delRaising_harvest_monthly_profit_report(id) {
  40 + return request({
  41 + url: '/admin/sh/raising_harvest_monthly_profit_report/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询养成收获月报-产值列表
  4 +export function listRaising_harvest_monthly_report(query) {
  5 + return request({
  6 + url: '/admin/sh/raising_harvest_monthly_report/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询养成收获月报-产值详细
  13 +export function getRaising_harvest_monthly_report(id) {
  14 + return request({
  15 + url: '/admin/sh/raising_harvest_monthly_report/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增养成收获月报-产值
  21 +export function addRaising_harvest_monthly_report(data) {
  22 + return request({
  23 + url: '/admin/sh/raising_harvest_monthly_report',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改养成收获月报-产值
  30 +export function updateRaising_harvest_monthly_report(data) {
  31 + return request({
  32 + url: '/admin/sh/raising_harvest_monthly_report',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除养成收获月报-产值
  39 +export function delRaising_harvest_monthly_report(id) {
  40 + return request({
  41 + url: '/admin/sh/raising_harvest_monthly_report/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询育苗收获月报-利润列表
  4 +export function listSeedling_harvest_monthly_profit_report(query) {
  5 + return request({
  6 + url: '/admin/sh/seedling_harvest_monthly_profit_report/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询育苗收获月报-利润详细
  13 +export function getSeedling_harvest_monthly_profit_report(id) {
  14 + return request({
  15 + url: '/admin/sh/seedling_harvest_monthly_profit_report/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增育苗收获月报-利润
  21 +export function addSeedling_harvest_monthly_profit_report(data) {
  22 + return request({
  23 + url: '/admin/sh/seedling_harvest_monthly_profit_report',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改育苗收获月报-利润
  30 +export function updateSeedling_harvest_monthly_profit_report(data) {
  31 + return request({
  32 + url: '/admin/sh/seedling_harvest_monthly_profit_report',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除育苗收获月报-利润
  39 +export function delSeedling_harvest_monthly_profit_report(id) {
  40 + return request({
  41 + url: '/admin/sh/seedling_harvest_monthly_profit_report/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询育苗收获月报-产值列表
  4 +export function listSeedling_harvest_monthly_report(query) {
  5 + return request({
  6 + url: '/admin/sh/seedling_harvest_monthly_report/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询育苗收获月报-产值详细
  13 +export function getSeedling_harvest_monthly_report(id) {
  14 + return request({
  15 + url: '/admin/sh/seedling_harvest_monthly_report/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增育苗收获月报-产值
  21 +export function addSeedling_harvest_monthly_report(data) {
  22 + return request({
  23 + url: '/admin/sh/seedling_harvest_monthly_report',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改育苗收获月报-产值
  30 +export function updateSeedling_harvest_monthly_report(data) {
  31 + return request({
  32 + url: '/admin/sh/seedling_harvest_monthly_report',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除育苗收获月报-产值
  39 +export function delSeedling_harvest_monthly_report(id) {
  40 + return request({
  41 + url: '/admin/sh/seedling_harvest_monthly_report/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询育苗收获月报-产量列表
  4 +export function listSeedling_monthly_report_production(query) {
  5 + return request({
  6 + url: '/admin/sh/seedling_monthly_report_production/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询育苗收获月报-产量详细
  13 +export function getSeedling_monthly_report_production(id) {
  14 + return request({
  15 + url: '/admin/sh/seedling_monthly_report_production/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增育苗收获月报-产量
  21 +export function addSeedling_monthly_report_production(data) {
  22 + return request({
  23 + url: '/admin/sh/seedling_monthly_report_production',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改育苗收获月报-产量
  30 +export function updateSeedling_monthly_report_production(data) {
  31 + return request({
  32 + url: '/admin/sh/seedling_monthly_report_production',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除育苗收获月报-产量
  39 +export function delSeedling_monthly_report_production(id) {
  40 + return request({
  41 + url: '/admin/sh/seedling_monthly_report_production/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询损失数据查询列表
  4 +export function listLoss_data_query(query) {
  5 + return request({
  6 + url: '/admin/ss/loss_data_query/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询损失数据查询详细
  13 +export function getLoss_data_query(id) {
  14 + return request({
  15 + url: '/admin/ss/loss_data_query/' + id,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增损失数据查询
  21 +export function addLoss_data_query(data) {
  22 + return request({
  23 + url: '/admin/ss/loss_data_query',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改损失数据查询
  30 +export function updateLoss_data_query(data) {
  31 + return request({
  32 + url: '/admin/ss/loss_data_query',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除损失数据查询
  39 +export function delLoss_data_query(id) {
  40 + return request({
  41 + url: '/admin/ss/loss_data_query/' + id,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询饲料信息列表
  4 +export function listFeed_info(query) {
  5 + return request({
  6 + url: '/admin/sy/feed_info/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询饲料信息详细
  13 +export function getFeed_info(feedId) {
  14 + return request({
  15 + url: '/admin/sy/feed_info/' + feedId,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增饲料信息
  21 +export function addFeed_info(data) {
  22 + return request({
  23 + url: '/admin/sy/feed_info',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改饲料信息
  30 +export function updateFeed_info(data) {
  31 + return request({
  32 + url: '/admin/sy/feed_info',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除饲料信息
  39 +export function delFeed_info(feedId) {
  40 + return request({
  41 + url: '/admin/sy/feed_info/' + feedId,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询鱼种信息列表
  4 +export function listFish_species_info(query) {
  5 + return request({
  6 + url: '/admin/sy/fish_species_info/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询鱼种信息详细
  13 +export function getFish_species_info(fishSpeciesId) {
  14 + return request({
  15 + url: '/admin/sy/fish_species_info/' + fishSpeciesId,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增鱼种信息
  21 +export function addFish_species_info(data) {
  22 + return request({
  23 + url: '/admin/sy/fish_species_info',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改鱼种信息
  30 +export function updateFish_species_info(data) {
  31 + return request({
  32 + url: '/admin/sy/fish_species_info',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除鱼种信息
  39 +export function delFish_species_info(fishSpeciesId) {
  40 + return request({
  41 + url: '/admin/sy/fish_species_info/' + fishSpeciesId,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询产地信息列表
  4 +export function listOrigin_info(query) {
  5 + return request({
  6 + url: '/admin/sy/origin_info/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询产地信息详细
  13 +export function getOrigin_info(originId) {
  14 + return request({
  15 + url: '/admin/sy/origin_info/' + originId,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增产地信息
  21 +export function addOrigin_info(data) {
  22 + return request({
  23 + url: '/admin/sy/origin_info',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改产地信息
  30 +export function updateOrigin_info(data) {
  31 + return request({
  32 + url: '/admin/sy/origin_info',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除产地信息
  39 +export function delOrigin_info(originId) {
  40 + return request({
  41 + url: '/admin/sy/origin_info/' + originId,
  42 + method: 'delete'
  43 + })
  44 +}
  1 +import request from '@/utils/request'
  2 +
  3 +// 查询水质信息列表
  4 +export function listWater_quality_info(query) {
  5 + return request({
  6 + url: '/admin/sy/water_quality_info/list',
  7 + method: 'get',
  8 + params: query
  9 + })
  10 +}
  11 +
  12 +// 查询水质信息详细
  13 +export function getWater_quality_info(waterQualityId) {
  14 + return request({
  15 + url: '/admin/sy/water_quality_info/' + waterQualityId,
  16 + method: 'get'
  17 + })
  18 +}
  19 +
  20 +// 新增水质信息
  21 +export function addWater_quality_info(data) {
  22 + return request({
  23 + url: '/admin/sy/water_quality_info',
  24 + method: 'post',
  25 + data: data
  26 + })
  27 +}
  28 +
  29 +// 修改水质信息
  30 +export function updateWater_quality_info(data) {
  31 + return request({
  32 + url: '/admin/sy/water_quality_info',
  33 + method: 'put',
  34 + data: data
  35 + })
  36 +}
  37 +
  38 +// 删除水质信息
  39 +export function delWater_quality_info(waterQualityId) {
  40 + return request({
  41 + url: '/admin/sy/water_quality_info/' + waterQualityId,
  42 + method: 'delete'
  43 + })
  44 +}