diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/application-demo.yml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/application-demo.yml deleted file mode 100644 index 3a7d82e..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/application-demo.yml +++ /dev/null @@ -1,114 +0,0 @@ -spring: - # redis 配置 - redis: - # 地址 - host: 129.211.213.226 - # 端口,默认为6379 - port: 6379 - # 数据库索引 - database: 11 - # 密码 - password: Aiotagro@741 - # 连接超时时间 - timeout: 10s - lettuce: - pool: - # 连接池中的最小空闲连接 - min-idle: 0 - # 连接池中的最大空闲连接 - max-idle: 8 - # 连接池的最大数据库连接数 - max-active: 8 - # #连接池最大阻塞等待时间(使用负值表示没有限制) - max-wait: -1ms - datasource: - driver-class-name: com.mysql.cj.jdbc.Driver - url: jdbc:mysql://129.211.213.226:3306/cattletrade?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 - username: root - password: Aiotagro@741 - -sa-token: - # token 名称(同时也是 cookie 名称) - token-name: Authorization - # token 有效期(单位:秒) 默认30天,-1 代表永久有效 - timeout: 259200 - # token 最低活跃频率(单位:秒),如果 token 超过此时间没有访问系统就会被冻结,默认-1 代表不限制,永不冻结 - active-timeout: 86400 - # 是否允许同一账号多地同时登录 (为 true 时允许一起登录, 为 false 时新登录挤掉旧登录) - is-concurrent: false - # 在多人登录同一账号时,是否共用一个 token (为 true 时所有登录共用一个 token, 为 false 时每次登录新建一个 token) - is-share: false - # token 风格(默认可取值:uuid、simple-uuid、random-32、random-64、random-128、tik) - token-style: random-64 - # 是否输出操作日志 - is-log: true - # 同一账号最大登录数量 - max-login-count: 1 - # 是否尝试从请求体里读取token - is-read-body: false - # 是否尝试从请求头读取token - is-read-header: true - # 是否尝试从cookie读取token,为false时登录也不会再往前端注入cookie - is-read-cookie: false - # 是否在登录后将 Token 写入到响应头 - is-write-header: true - # 自动续签 - auto-renew: true - token-prefix: Bearer - # 是否在初始化配置时打印版本 - is-print: false - # 是否打印操作日志 - is-color-log: true - # jwt秘钥 - jwt-secret-key: aiotagrocommonpayplatformsystem - -remote: - baseUrl: http://127.0.0.1:8080/ - -pay-platform: - baseUrl: https://demo-pay.aiotagro.com - callbackUrl: https://cattletrack-test.aiotagro.com - - - -retrofit: - # 日志打印配置 - log: - # 启用日志打印 - enable: true - # 日志打印拦截器 - logging-interceptor: com.github.lianjiatech.retrofit.spring.boot.interceptor.DefaultLoggingInterceptor - # 全局日志打印级别 - global-log-level: info - # 全局日志打印策略 - global-log-strategy: body - # 全局连接超时时间 - global-connect-timeout-ms: 3000 - # 全局读取超时时间 - global-read-timeout-ms: 3000 - # 全局写入超时时间 - global-write-timeout-ms: 35000 - # 全局完整调用超时时间 - global-call-timeout-ms: 0 - -xxl: - job: - admin: - addresses: https://demo-xxljob.aiotagro.com #测试地址,生产地址换成https://xxl-job-admin.aiotagro.com/ - accessToken: default #和xxl-job服务里的accessToken保持一致 此项目前可以保持默认 - executor: - # 执行器名称,跟管理平台设置的Appname保持一致 - appname: trade-cattle - #ip: 10.123.1.53 端口要保证全局唯一 - port: 9620 - # 日志地址 - logpath: /data/applogs/xxl-job/jobhandler - # 日志保存时间 - logretentiondays: 30 - address: - ip: -# 日志配置 -logging: - level: - com.aiotagro: debug - org.springframework: info \ No newline at end of file diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/application-dev.yml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/application-dev.yml deleted file mode 100644 index 078a439..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/application-dev.yml +++ /dev/null @@ -1,113 +0,0 @@ -spring: - # redis 配置 - redis: - # 地址 - host: 129.211.213.226 - # 端口,默认为6379 - port: 6379 - # 数据库索引 - database: 11 - # 密码 - password: Aiotagro@741 - # 连接超时时间 - timeout: 10s - lettuce: - pool: - # 连接池中的最小空闲连接 - min-idle: 0 - # 连接池中的最大空闲连接 - max-idle: 8 - # 连接池的最大数据库连接数 - max-active: 8 - # #连接池最大阻塞等待时间(使用负值表示没有限制) - max-wait: -1ms - datasource: - driver-class-name: com.mysql.cj.jdbc.Driver - url: jdbc:mysql://129.211.213.226:3306/cattletrade?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 - username: root - password: Aiotagro@741 - -sa-token: - # token 名称(同时也是 cookie 名称) - token-name: Authorization - # token 有效期(单位:秒) 默认30天,-1 代表永久有效 - timeout: 259200 - # token 最低活跃频率(单位:秒),如果 token 超过此时间没有访问系统就会被冻结,默认-1 代表不限制,永不冻结 - active-timeout: 86400 - # 是否允许同一账号多地同时登录 (为 true 时允许一起登录, 为 false 时新登录挤掉旧登录) - is-concurrent: false - # 在多人登录同一账号时,是否共用一个 token (为 true 时所有登录共用一个 token, 为 false 时每次登录新建一个 token) - is-share: false - # token 风格(默认可取值:uuid、simple-uuid、random-32、random-64、random-128、tik) - token-style: random-64 - # 是否输出操作日志 - is-log: true - # 同一账号最大登录数量 - max-login-count: 1 - # 是否尝试从请求体里读取token - is-read-body: false - # 是否尝试从请求头读取token - is-read-header: true - # 是否尝试从cookie读取token,为false时登录也不会再往前端注入cookie - is-read-cookie: false - # 是否在登录后将 Token 写入到响应头 - is-write-header: true - # 自动续签 - auto-renew: true - token-prefix: Bearer - # 是否在初始化配置时打印版本 - is-print: false - # 是否打印操作日志 - is-color-log: true - # jwt秘钥 - jwt-secret-key: aiotagrocommonpayplatformsystem - -remote: - baseUrl: http://127.0.0.1:8080/ - -pay-platform: - baseUrl: https://demo-pay.aiotagro.com - callbackUrl: https://cattletrack-test.aiotagro.com - -retrofit: - # 日志打印配置 - log: - # 启用日志打印 - enable: true - # 日志打印拦截器 - logging-interceptor: com.github.lianjiatech.retrofit.spring.boot.interceptor.DefaultLoggingInterceptor - # 全局日志打印级别 - global-log-level: info - # 全局日志打印策略 - global-log-strategy: body - # 全局连接超时时间 - global-connect-timeout-ms: 3000 - # 全局读取超时时间 - global-read-timeout-ms: 3000 - # 全局写入超时时间 - global-write-timeout-ms: 35000 - # 全局完整调用超时时间 - global-call-timeout-ms: 0 - -xxl: - job: - admin: - addresses: https://demo-xxljob.aiotagro.com #测试地址,生产地址换成https://xxl-job-admin.aiotagro.com/ - accessToken: default #和xxl-job服务里的accessToken保持一致 此项目前可以保持默认 - executor: - # 执行器名称,跟管理平台设置的Appname保持一致 - appname: trade-cattle - #ip: 10.123.1.53 端口要保证全局唯一 - port: 9620 - # 日志地址 - logpath: /data/applogs/xxl-job/jobhandler - # 日志保存时间 - logretentiondays: 30 - address: - ip: - -# 日志配置 -logging: - level: - com.aiotagro: debug - org.springframework: info \ No newline at end of file diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/application-prod.yml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/application-prod.yml deleted file mode 100644 index 8fb7ab1..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/application-prod.yml +++ /dev/null @@ -1,112 +0,0 @@ -spring: - # redis 配置 - redis: - # 地址 - host: 127.0.0.1 - # 端口,默认为6379 - port: 6379 - # 数据库索引 - database: 11 - # 密码 - password: Aiotagro@741 - # 连接超时时间 - timeout: 10s - lettuce: - pool: - # 连接池中的最小空闲连接 - min-idle: 0 - # 连接池中的最大空闲连接 - max-idle: 8 - # 连接池的最大数据库连接数 - max-active: 8 - # #连接池最大阻塞等待时间(使用负值表示没有限制) - max-wait: -1ms - datasource: - driver-class-name: com.mysql.cj.jdbc.Driver - url: jdbc:mysql://mysql57-iot.aiotagro.com:60026/cattletrade?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 - username: iot-plateform - password: 3qJ7$bV%N9mE - -sa-token: - # token 名称(同时也是 cookie 名称) - token-name: Authorization - # token 有效期(单位:秒) 默认30天,-1 代表永久有效 - timeout: 259200 - # token 最低活跃频率(单位:秒),如果 token 超过此时间没有访问系统就会被冻结,默认-1 代表不限制,永不冻结 - active-timeout: 86400 - # 是否允许同一账号多地同时登录 (为 true 时允许一起登录, 为 false 时新登录挤掉旧登录) - is-concurrent: true - # 在多人登录同一账号时,是否共用一个 token (为 true 时所有登录共用一个 token, 为 false 时每次登录新建一个 token) - is-share: false - # token 风格(默认可取值:uuid、simple-uuid、random-32、random-64、random-128、tik) - token-style: random-64 - # 是否输出操作日志 - is-log: true - # 同一账号最大登录数量 - max-login-count: 1 - # 是否尝试从请求体里读取token - is-read-body: false - # 是否尝试从请求头读取token - is-read-header: true - # 是否尝试从cookie读取token,为false时登录也不会再往前端注入cookie - is-read-cookie: false - # 是否在登录后将 Token 写入到响应头 - is-write-header: true - # 自动续签 - auto-renew: true - token-prefix: Bearer - # 是否在初始化配置时打印版本 - is-print: false - # 是否打印操作日志 - is-color-log: true - # jwt秘钥 - jwt-secret-key: aiotagrocommonpayplatformsystem - -remote: - baseUrl: http://127.0.0.1:8080/ - -pay-platform: - baseUrl: https://demo-pay.aiotagro.com - callbackUrl: https://cattletrack-test.aiotagro.com - -retrofit: - # 日志打印配置 - log: - # 启用日志打印 - enable: true - # 日志打印拦截器 - logging-interceptor: com.github.lianjiatech.retrofit.spring.boot.interceptor.DefaultLoggingInterceptor - # 全局日志打印级别 - global-log-level: info - # 全局日志打印策略 - global-log-strategy: body - # 全局连接超时时间 - global-connect-timeout-ms: 3000 - # 全局读取超时时间 - global-read-timeout-ms: 3000 - # 全局写入超时时间 - global-write-timeout-ms: 35000 - # 全局完整调用超时时间 - global-call-timeout-ms: 0 - -xxl: - job: - admin: - addresses: https://xxl-job-admin.aiotagro.com/ #测试地址,生产地址换成https://xxl-job-admin.aiotagro.com/ - accessToken: default #和xxl-job服务里的accessToken保持一致 此项目前可以保持默认 - executor: - # 执行器名称,跟管理平台设置的Appname保持一致 - appname: trade-cattle - #ip: 10.123.1.53 端口要保证全局唯一 - port: 9620 - # 日志地址 - logpath: /data/applogs/xxl-job/jobhandler - # 日志保存时间 - logretentiondays: 30 - address: - ip: -# 日志配置 -logging: - level: - com.aiotagro: debug - org.springframework: info \ No newline at end of file diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/application.yml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/application.yml deleted file mode 100644 index 758c1b9..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/application.yml +++ /dev/null @@ -1,109 +0,0 @@ -server: - # 服务器的HTTP端口,默认为8080 - port: 16200 - servlet: - # 应用的访问路径 - context-path: /api - tomcat: - # tomcat的URI编码 - uri-encoding: UTF-8 - # 连接数满后的排队数,默认为100 - accept-count: 1000 - threads: - # tomcat最大线程数,默认为200 - max: 800 - # Tomcat启动初始化的线程数,默认值10 - min-spare: 100 -spring: - profiles: - active: dev - # 文件上传 - servlet: - multipart: - # 单个文件大小 - max-file-size: 50MB - # 设置总上传的文件大小 - max-request-size: 50MB - # 服务模块 - devtools: - restart: - # 热部署开关 - enabled: true - #设置热部署要监听的目录 - additional-paths: src/main/java - # 解决项目自动重新编译后接口报404的问题 - poll-interval: 3000 - quiet-period: 1000 - - - -# MyBatis配置 -#mybatis: -# # 搜索指定包别名 -# type-aliases-package: com.aiotagro.payinfo.domain.mapper -# # 配置mapper的扫描,找到所有的mapper.xml映射文件 -# mapper-locations: classpath*:mapper/**/*Mapper.xml -# # 加载全局的配置文件 -# config-location: classpath:mybatis/mybatis-config.xml - -# mybatis-plus配置 -mybatis-plus: - # 搜索指定包别名 - typeAliasesPackage: com.aiotagro.payinfo.domain.mapper - # 配置mapper的扫描,找到所有的mapper.xml映射文件 - mapper-locations: classpath*:mapper/**/*Mapper.xml - # 加载全局的配置文件 - configLocation: classpath:mybatis/mybatis-config.xml - global-config: - db-config: - logic-delete-field: del_flag - logic-delete-value: 1 - logic-not-delete-value: 0 - - - -# PageHelper分页插件 -pagehelper: - helper-dialect: mysql #设置数据库类型 - reasonable: true #开启合理化:页码<=0 查询第一页,页码>=总页数查询最后一页 - support-methods-arguments: true #支持通过 Mapper 接口参数来传递分页参数 - params: count=countsql - - -aiot-lims: - #多租户配置 - tenant: - enable: true - column: tenant_id - filterTables: - ignoreTables: - - pay_order - - pay_order_item - - sys_menu - - sys_tenant - - jbq_client_log - - jbq_server_log - - xq_client_log - - warning_log - - delivery_device - ignoreLoginNames: - - lpc - -#短信相关配置 -sms: - secret-id: AKIDcFj042ugFagXBcpmUxBAuQp32mHfrwqk - secret-key: sW7i9LI2YpsiLipiNp31lS4Tjrr5A0c0 - end-point: sms.tencentcloudapi.com - appid: 1400915506 - sign: 武汉爱农云联科技 - template-id: 2175348 - -openapi: - url: http://api.aiotagro.com/api/business/xq/locationLog - -iot: - url: http://aiot.aiotagro.com/iotPlateform/iotBusiness/sendCmd - -wechat: - appid: wxae2b1a5da0a0a799 - secret: 1f1a9e7146fd6a83d76eed76d80315f4 diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/AiotagroCattleTradeApplication.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/AiotagroCattleTradeApplication.class deleted file mode 100644 index 1d1e227..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/AiotagroCattleTradeApplication.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/CommonControl.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/CommonControl.class deleted file mode 100644 index 587c9a1..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/CommonControl.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/DeliveryController.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/DeliveryController.class deleted file mode 100644 index a63d5c0..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/DeliveryController.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/DeliveryDeviceController.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/DeliveryDeviceController.class deleted file mode 100644 index efca6ed..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/DeliveryDeviceController.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/JbqClientController.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/JbqClientController.class deleted file mode 100644 index 81cd615..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/JbqClientController.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/JbqClientLogController.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/JbqClientLogController.class deleted file mode 100644 index 2e81327..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/JbqClientLogController.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/JbqServerController.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/JbqServerController.class deleted file mode 100644 index 6b23275..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/JbqServerController.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/JbqServerLogController.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/JbqServerLogController.class deleted file mode 100644 index 22567ab..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/JbqServerLogController.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/LoginControl.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/LoginControl.class deleted file mode 100644 index dce3f40..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/LoginControl.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/MemberController.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/MemberController.class deleted file mode 100644 index 00e62c1..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/MemberController.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/PayFundControl.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/PayFundControl.class deleted file mode 100644 index f303244..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/PayFundControl.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/PayPurchaserControl.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/PayPurchaserControl.class deleted file mode 100644 index a933b26..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/PayPurchaserControl.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/SysRoleController.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/SysRoleController.class deleted file mode 100644 index 74be602..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/SysRoleController.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/SysTenantController.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/SysTenantController.class deleted file mode 100644 index b08dc42..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/SysTenantController.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/SysUserController.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/SysUserController.class deleted file mode 100644 index f290492..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/SysUserController.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/WarningLogController.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/WarningLogController.class deleted file mode 100644 index c350212..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/WarningLogController.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/WechatDeliveryControlller.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/WechatDeliveryControlller.class deleted file mode 100644 index 92b2084..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/WechatDeliveryControlller.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/XqClientController.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/XqClientController.class deleted file mode 100644 index 549f207..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/XqClientController.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/XqClientLogController.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/XqClientLogController.class deleted file mode 100644 index 4d17ea6..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/XqClientLogController.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/AllotDeviceDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/AllotDeviceDto.class deleted file mode 100644 index 26fe864..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/AllotDeviceDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/AllotListDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/AllotListDto.class deleted file mode 100644 index 145fe53..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/AllotListDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/ArrangeDeviceDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/ArrangeDeviceDto.class deleted file mode 100644 index f00b57a..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/ArrangeDeviceDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/ArrangeJbqDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/ArrangeJbqDto.class deleted file mode 100644 index 1d889e1..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/ArrangeJbqDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/BaseDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/BaseDto.class deleted file mode 100644 index 3351c86..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/BaseDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/CarLoadDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/CarLoadDto.class deleted file mode 100644 index c55d39f..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/CarLoadDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeliverListDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeliverListDto.class deleted file mode 100644 index 44630aa..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeliverListDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeliveryAddDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeliveryAddDto.class deleted file mode 100644 index 0597ed3..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeliveryAddDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeliveryDeviceDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeliveryDeviceDto.class deleted file mode 100644 index 90e7fc2..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeliveryDeviceDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeliveryOrderAddDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeliveryOrderAddDto.class deleted file mode 100644 index 48199b1..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeliveryOrderAddDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeliveryQueryDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeliveryQueryDto.class deleted file mode 100644 index 03ab170..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeliveryQueryDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeviceDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeviceDto.class deleted file mode 100644 index 47dd2fa..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeviceDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DriverDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DriverDto.class deleted file mode 100644 index 4e33533..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DriverDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/FileDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/FileDto.class deleted file mode 100644 index 52ef22b..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/FileDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/JbqLogDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/JbqLogDto.class deleted file mode 100644 index 2e8d67a..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/JbqLogDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/LoginDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/LoginDto.class deleted file mode 100644 index f572cbb..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/LoginDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/ServerLocationDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/ServerLocationDto.class deleted file mode 100644 index fbb999e..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/ServerLocationDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/SysRoleDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/SysRoleDto.class deleted file mode 100644 index 1e9ffd7..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/SysRoleDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/SysTenantDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/SysTenantDto.class deleted file mode 100644 index 213911d..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/SysTenantDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/SysUserDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/SysUserDto.class deleted file mode 100644 index 19eb185..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/SysUserDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/UpdateDeviceDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/UpdateDeviceDto.class deleted file mode 100644 index 8950287..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/UpdateDeviceDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/UserDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/UserDto.class deleted file mode 100644 index 32643e8..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/UserDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/WarningDetailDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/WarningDetailDto.class deleted file mode 100644 index 474fb20..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/WarningDetailDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/WechatLoginInDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/WechatLoginInDto.class deleted file mode 100644 index 389b139..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/WechatLoginInDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/XqLocationDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/XqLocationDto.class deleted file mode 100644 index 670b97e..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/XqLocationDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/pay/PayCallbackDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/pay/PayCallbackDto.class deleted file mode 100644 index 8952814..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/pay/PayCallbackDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/pay/PayFundPrepayDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/pay/PayFundPrepayDto.class deleted file mode 100644 index 9488207..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/pay/PayFundPrepayDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/pay/PayPurchaserPrepayDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/pay/PayPurchaserPrepayDto.class deleted file mode 100644 index be72781..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/pay/PayPurchaserPrepayDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/Delivery.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/Delivery.class deleted file mode 100644 index 40ff80a..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/Delivery.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/DeliveryDevice.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/DeliveryDevice.class deleted file mode 100644 index 3dbafae..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/DeliveryDevice.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/JbqClient.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/JbqClient.class deleted file mode 100644 index d96f75d..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/JbqClient.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/JbqClientLog.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/JbqClientLog.class deleted file mode 100644 index 8cd18e4..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/JbqClientLog.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/JbqServer.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/JbqServer.class deleted file mode 100644 index be5cd94..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/JbqServer.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/JbqServerLog.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/JbqServerLog.class deleted file mode 100644 index 91e7596..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/JbqServerLog.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/Member.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/Member.class deleted file mode 100644 index 8507faa..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/Member.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/MemberDriver.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/MemberDriver.class deleted file mode 100644 index c7e5795..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/MemberDriver.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/MemberUser.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/MemberUser.class deleted file mode 100644 index b42b05b..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/MemberUser.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/PayOrder.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/PayOrder.class deleted file mode 100644 index ff98e06..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/PayOrder.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/PayOrderItem.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/PayOrderItem.class deleted file mode 100644 index 5a528f4..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/PayOrderItem.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/SysMenu.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/SysMenu.class deleted file mode 100644 index 029f407..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/SysMenu.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/SysRole.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/SysRole.class deleted file mode 100644 index 10e6a54..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/SysRole.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/SysRoleMenu.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/SysRoleMenu.class deleted file mode 100644 index 9066491..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/SysRoleMenu.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/SysTenant.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/SysTenant.class deleted file mode 100644 index 386909a..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/SysTenant.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/SysUser.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/SysUser.class deleted file mode 100644 index 081875c..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/SysUser.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/WarningLog.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/WarningLog.class deleted file mode 100644 index be3ef0f..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/WarningLog.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/XqClient.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/XqClient.class deleted file mode 100644 index bec46ad..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/XqClient.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/XqClientLog.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/XqClientLog.class deleted file mode 100644 index 1406cd6..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/XqClientLog.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/DeliveryDeviceMapper.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/DeliveryDeviceMapper.class deleted file mode 100644 index 2fcca07..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/DeliveryDeviceMapper.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/DeliveryMapper.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/DeliveryMapper.class deleted file mode 100644 index 5c23608..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/DeliveryMapper.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/JbqClientLogMapper.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/JbqClientLogMapper.class deleted file mode 100644 index f809220..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/JbqClientLogMapper.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/JbqClientMapper.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/JbqClientMapper.class deleted file mode 100644 index 3f4b017..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/JbqClientMapper.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/JbqServerLogMapper.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/JbqServerLogMapper.class deleted file mode 100644 index 0a527b7..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/JbqServerLogMapper.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/JbqServerMapper.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/JbqServerMapper.class deleted file mode 100644 index c5771f4..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/JbqServerMapper.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/MemberDriverMapper.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/MemberDriverMapper.class deleted file mode 100644 index ef936f8..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/MemberDriverMapper.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/MemberMapper.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/MemberMapper.class deleted file mode 100644 index 8a6c8cd..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/MemberMapper.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/MemberUserMapper.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/MemberUserMapper.class deleted file mode 100644 index c579f48..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/MemberUserMapper.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/PayOrderItemMapper.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/PayOrderItemMapper.class deleted file mode 100644 index 7ba943e..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/PayOrderItemMapper.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/PayOrderMapper.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/PayOrderMapper.class deleted file mode 100644 index 8577bca..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/PayOrderMapper.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/SysMenuMapper.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/SysMenuMapper.class deleted file mode 100644 index bce2c1c..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/SysMenuMapper.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/SysRoleMapper.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/SysRoleMapper.class deleted file mode 100644 index 76a1de6..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/SysRoleMapper.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/SysRoleMenuMapper.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/SysRoleMenuMapper.class deleted file mode 100644 index 2c4a05b..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/SysRoleMenuMapper.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/SysTenantMapper.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/SysTenantMapper.class deleted file mode 100644 index b1a30a8..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/SysTenantMapper.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/SysUserMapper.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/SysUserMapper.class deleted file mode 100644 index 81a1f5f..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/SysUserMapper.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/WarningLogMapper.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/WarningLogMapper.class deleted file mode 100644 index 900d2ca..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/WarningLogMapper.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/XqClientLogMapper.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/XqClientLogMapper.class deleted file mode 100644 index 7c78c1e..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/XqClientLogMapper.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/XqClientMapper.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/XqClientMapper.class deleted file mode 100644 index 8f8c01d..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/XqClientMapper.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IDeliveryDeviceService.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IDeliveryDeviceService.class deleted file mode 100644 index ba5fdd8..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IDeliveryDeviceService.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IDeliveryService.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IDeliveryService.class deleted file mode 100644 index 24c2346..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IDeliveryService.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IJbqClientLogService.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IJbqClientLogService.class deleted file mode 100644 index a053904..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IJbqClientLogService.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IJbqClientService.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IJbqClientService.class deleted file mode 100644 index b04f975..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IJbqClientService.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IJbqServerLogService.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IJbqServerLogService.class deleted file mode 100644 index 44f37be..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IJbqServerLogService.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IJbqServerService.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IJbqServerService.class deleted file mode 100644 index e1f5850..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IJbqServerService.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IMemberService.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IMemberService.class deleted file mode 100644 index 9d7022d..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IMemberService.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/ISysRoleService.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/ISysRoleService.class deleted file mode 100644 index c74aacc..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/ISysRoleService.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/ISysTenantService.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/ISysTenantService.class deleted file mode 100644 index e3163c7..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/ISysTenantService.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/ISysUserService.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/ISysUserService.class deleted file mode 100644 index 4f1b1c6..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/ISysUserService.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IWarningLogService.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IWarningLogService.class deleted file mode 100644 index 3944383..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IWarningLogService.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IXqClientLogService.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IXqClientLogService.class deleted file mode 100644 index deaff11..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IXqClientLogService.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IXqClientService.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IXqClientService.class deleted file mode 100644 index 9601710..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IXqClientService.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/LoginService.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/LoginService.class deleted file mode 100644 index 627f9ff..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/LoginService.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/PayFundService.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/PayFundService.class deleted file mode 100644 index e260020..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/PayFundService.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/PayPurchaserService.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/PayPurchaserService.class deleted file mode 100644 index c671c27..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/PayPurchaserService.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/TencentSmsCodeService.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/TencentSmsCodeService.class deleted file mode 100644 index d15374e..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/TencentSmsCodeService.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/DeliveryDeviceServiceImpl.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/DeliveryDeviceServiceImpl.class deleted file mode 100644 index 7b9bf50..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/DeliveryDeviceServiceImpl.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/DeliveryServiceImpl.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/DeliveryServiceImpl.class deleted file mode 100644 index fcda5b5..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/DeliveryServiceImpl.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/JbqClientLogServiceImpl.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/JbqClientLogServiceImpl.class deleted file mode 100644 index c345634..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/JbqClientLogServiceImpl.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/JbqClientServiceImpl.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/JbqClientServiceImpl.class deleted file mode 100644 index 4784c01..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/JbqClientServiceImpl.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/JbqServerLogServiceImpl.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/JbqServerLogServiceImpl.class deleted file mode 100644 index 7506d35..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/JbqServerLogServiceImpl.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/JbqServerServiceImpl.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/JbqServerServiceImpl.class deleted file mode 100644 index 477d89b..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/JbqServerServiceImpl.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/LoginServiceImpl.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/LoginServiceImpl.class deleted file mode 100644 index 4eeab41..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/LoginServiceImpl.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/MemberServiceImpl.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/MemberServiceImpl.class deleted file mode 100644 index 7a09f5b..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/MemberServiceImpl.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayCbkOrderCashierService.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayCbkOrderCashierService.class deleted file mode 100644 index 4339a31..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayCbkOrderCashierService.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayCbkOrderPrepayService$Result.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayCbkOrderPrepayService$Result.class deleted file mode 100644 index 56a6173..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayCbkOrderPrepayService$Result.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayCbkOrderPrepayService.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayCbkOrderPrepayService.class deleted file mode 100644 index b325910..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayCbkOrderPrepayService.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayCbkOrderSaveService$Result.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayCbkOrderSaveService$Result.class deleted file mode 100644 index 09cb515..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayCbkOrderSaveService$Result.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayCbkOrderSaveService.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayCbkOrderSaveService.class deleted file mode 100644 index 0342072..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayCbkOrderSaveService.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayFundServiceImpl.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayFundServiceImpl.class deleted file mode 100644 index dd2b497..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayFundServiceImpl.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayPurchaserServiceImpl.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayPurchaserServiceImpl.class deleted file mode 100644 index f966837..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayPurchaserServiceImpl.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/SysRoleServiceImpl.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/SysRoleServiceImpl.class deleted file mode 100644 index 7627373..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/SysRoleServiceImpl.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/SysTenantServiceImpl.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/SysTenantServiceImpl.class deleted file mode 100644 index b08ba7e..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/SysTenantServiceImpl.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/SysUserServiceImpl.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/SysUserServiceImpl.class deleted file mode 100644 index 70e5f7a..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/SysUserServiceImpl.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/TencentSmsCodeServiceImpl.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/TencentSmsCodeServiceImpl.class deleted file mode 100644 index 3258cb9..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/TencentSmsCodeServiceImpl.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/WarningLogServiceImpl.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/WarningLogServiceImpl.class deleted file mode 100644 index a60083a..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/WarningLogServiceImpl.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/XqClientLogServiceImpl.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/XqClientLogServiceImpl.class deleted file mode 100644 index a01cb61..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/XqClientLogServiceImpl.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/XqClientServiceImpl.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/XqClientServiceImpl.class deleted file mode 100644 index 7635284..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/XqClientServiceImpl.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/CarLoadVo.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/CarLoadVo.class deleted file mode 100644 index 817e6b5..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/CarLoadVo.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/DeliveryDetailVo.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/DeliveryDetailVo.class deleted file mode 100644 index fdff03d..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/DeliveryDetailVo.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/DeliveryLogVo.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/DeliveryLogVo.class deleted file mode 100644 index 2e1e95b..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/DeliveryLogVo.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/DeliveryOrderVo.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/DeliveryOrderVo.class deleted file mode 100644 index 50171be..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/DeliveryOrderVo.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/DeliveryVo.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/DeliveryVo.class deleted file mode 100644 index 60dbc0b..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/DeliveryVo.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/DriverVo.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/DriverVo.class deleted file mode 100644 index a9b0fbd..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/DriverVo.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/JbqClientVo.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/JbqClientVo.class deleted file mode 100644 index 522fa6a..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/JbqClientVo.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/ServerClientVo.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/ServerClientVo.class deleted file mode 100644 index 7608c1c..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/ServerClientVo.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/ServerLocationVo.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/ServerLocationVo.class deleted file mode 100644 index e44358c..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/ServerLocationVo.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/UserVo.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/UserVo.class deleted file mode 100644 index bc2df0e..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/UserVo.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/XqClientVo.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/XqClientVo.class deleted file mode 100644 index 7eb9443..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/XqClientVo.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/config/DruidDataSourceConfig.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/config/DruidDataSourceConfig.class deleted file mode 100644 index 17ff6f5..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/config/DruidDataSourceConfig.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/config/LogRecordConfiguration.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/config/LogRecordConfiguration.class deleted file mode 100644 index e6a7ce9..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/config/LogRecordConfiguration.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/config/MybatisPlusConfig.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/config/MybatisPlusConfig.class deleted file mode 100644 index 137eeac..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/config/MybatisPlusConfig.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/config/SaTokenConfigure.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/config/SaTokenConfigure.class deleted file mode 100644 index ffe0ab9..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/config/SaTokenConfigure.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/config/XxlJobConfig.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/config/XxlJobConfig.class deleted file mode 100644 index cd57d2e..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/config/XxlJobConfig.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/constant/DeliveryStatusEnum.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/constant/DeliveryStatusEnum.class deleted file mode 100644 index 9c0e243..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/constant/DeliveryStatusEnum.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/constant/HttpStatus.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/constant/HttpStatus.class deleted file mode 100644 index 074072e..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/constant/HttpStatus.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/constant/SaobeiConstant.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/constant/SaobeiConstant.class deleted file mode 100644 index 6f6a110..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/constant/SaobeiConstant.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/constant/WarningStatusAdminEnum.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/constant/WarningStatusAdminEnum.class deleted file mode 100644 index a58731e..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/constant/WarningStatusAdminEnum.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/constant/WarningStatusEnum.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/constant/WarningStatusEnum.class deleted file mode 100644 index 3f6130b..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/constant/WarningStatusEnum.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/exception/GlobalException.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/exception/GlobalException.class deleted file mode 100644 index ecd3252..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/exception/GlobalException.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/generater/FastCodeGenerator$1.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/generater/FastCodeGenerator$1.class deleted file mode 100644 index 179ff37..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/generater/FastCodeGenerator$1.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/generater/FastCodeGenerator.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/generater/FastCodeGenerator.class deleted file mode 100644 index 00e47f6..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/generater/FastCodeGenerator.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/job/AutoNumWarningJob.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/job/AutoNumWarningJob.class deleted file mode 100644 index 6ca6fea..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/job/AutoNumWarningJob.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/properties/PlatformExpensesProperties.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/properties/PlatformExpensesProperties.class deleted file mode 100644 index b046083..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/properties/PlatformExpensesProperties.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/properties/TenantConfigProperties.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/properties/TenantConfigProperties.class deleted file mode 100644 index 4f97321..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/properties/TenantConfigProperties.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/properties/TenantProperties.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/properties/TenantProperties.class deleted file mode 100644 index f2d1ce4..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/properties/TenantProperties.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/TestApi.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/TestApi.class deleted file mode 100644 index bc09fd0..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/TestApi.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayBizOrderApi$BizOrderDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayBizOrderApi$BizOrderDto.class deleted file mode 100644 index c6444fb..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayBizOrderApi$BizOrderDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayBizOrderApi$BizOrderItemDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayBizOrderApi$BizOrderItemDto.class deleted file mode 100644 index 0f9a830..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayBizOrderApi$BizOrderItemDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayBizOrderApi.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayBizOrderApi.class deleted file mode 100644 index affe468..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayBizOrderApi.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkCashierApi$PayCashierLinkDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkCashierApi$PayCashierLinkDto.class deleted file mode 100644 index 71c2576..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkCashierApi$PayCashierLinkDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkCashierApi$PayCashierLinkResp.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkCashierApi$PayCashierLinkResp.class deleted file mode 100644 index 50ffb2c..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkCashierApi$PayCashierLinkResp.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkCashierApi.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkCashierApi.class deleted file mode 100644 index 5e17842..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkCashierApi.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkOrderApi$CbkPayOrderDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkOrderApi$CbkPayOrderDto.class deleted file mode 100644 index 0e75086..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkOrderApi$CbkPayOrderDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkOrderApi$CbkPayOrderItemResp.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkOrderApi$CbkPayOrderItemResp.class deleted file mode 100644 index f478d0d..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkOrderApi$CbkPayOrderItemResp.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkOrderApi$CbkPayOrderResp.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkOrderApi$CbkPayOrderResp.class deleted file mode 100644 index 39a2369..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkOrderApi$CbkPayOrderResp.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkOrderApi.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkOrderApi.class deleted file mode 100644 index 02d249f..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkOrderApi.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayResponse.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayResponse.class deleted file mode 100644 index c900b7c..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayResponse.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayUserApi$UserDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayUserApi$UserDto.class deleted file mode 100644 index 7ef4f85..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayUserApi$UserDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayUserApi.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayUserApi.class deleted file mode 100644 index ab46aea..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayUserApi.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayUserCBKApi$PayMchCreateAccountDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayUserCBKApi$PayMchCreateAccountDto.class deleted file mode 100644 index 1d01a82..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayUserCBKApi$PayMchCreateAccountDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayUserCBKApi$PayMchCustInfoDto.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayUserCBKApi$PayMchCustInfoDto.class deleted file mode 100644 index 66f866f..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayUserCBKApi$PayMchCustInfoDto.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayUserCBKApi.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayUserCBKApi.class deleted file mode 100644 index 9b37ea1..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayUserCBKApi.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/tenanthandler/MultiTenantHandler.class b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/tenanthandler/MultiTenantHandler.class deleted file mode 100644 index 3054ad4..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/tenanthandler/MultiTenantHandler.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/DeliveryDeviceMapper.xml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/DeliveryDeviceMapper.xml deleted file mode 100644 index c910f10..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/DeliveryDeviceMapper.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - id, delivery_id, device_id, device_type,device_user,is_ware,front_img,side_img,hip_img,bind_time,create_time,bind_weight - - - - select * from delivery_device where delivery_id = #{deliveryId} - - and device_type = #{deviceType} - - - - diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/DeliveryMapper.xml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/DeliveryMapper.xml deleted file mode 100644 index a38c8c9..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/DeliveryMapper.xml +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - id, delivery_number, status, license_plate, car_front_photo, car_behind_photo, car_video, start_location, start_lat, start_lon, - end_location, end_lat, end_lon, estimated_delivery_time, registered_jbq_count, driver_name, driver_mobile, create_time, - created_by, check_by, check_time, check_video,pound_list_img,deliver_title,driver_id,supplier_id,fund_id,buyer_id,buyer_price, - sale_price,empty_weight,entruck_weight,quarantine_tickey_url,entruck_video,empty_weight_video,entruck_weight_video,rated_quantity, - car_load_time,check_empty_weight,check_entruck_weight,check_empty_weight_video,check_entruck_weight_video - - - - SELECT - d.id, - d.delivery_number, - d.`status`, - d.license_plate, - d.car_front_photo, - d.car_behind_photo, - d.car_video, - d.start_location, - d.start_lat, - d.start_lon, - d.end_location, - d.end_lat, - d.end_lon, - d.estimated_delivery_time, - d.registered_jbq_count, - d.driver_name, - d.driver_mobile, - d.create_time, - d.created_by, - d.check_by, - d.check_time, - d.check_video, - wl.warning_type, - wl.warning_time, - wl.inventory_jbq_count, - su.name as createByName - FROM delivery d left join warning_log wl on d.id = wl.delivery_id - left join sys_user su on d.created_by = su.id - - wl.warning_type in (2,3) - and d.deleted = 1 - - and d.delivery_number like concat('%', #{dto.deliveryNumber}, '%') - - - and d.license_plate like concat('%', #{dto.licensePlate}, '%') - - - and d.create_time = ]]> #{dto.startTime} - - - and d.create_time #{dto.endTime} - - - and wl.warning_type = #{dto.warningType} - - - and d.status = #{dto.status} - - - order by wl.warning_time desc - - - - SELECT d.id, d.delivery_number, d.car_load_time, - COUNT(dd.device_id) AS ebCount, d.start_location, end_location, - d.estimated_delivery_time,d.`status`, d.buyer_price, d.sale_price, - SUM(dd.bind_weight) AS totalWeight, d.zip_url - FROM `delivery` d - LEFT JOIN delivery_device dd ON d.id = dd.delivery_id AND dd.device_type in (2, 3) AND dd.is_ware = 1 - - d.deleted = 1 - - and d.delivery_number like concat('%', #{item.deliveryNumber}, '%') - - - and d.driver_id = #{item.userId} - and d.status in (2, 3, 4) - - - and d.fund_id = #{item.userId} - and d.status in (2, 3, 4, 5) - - - and d.buyer_id = #{item.userId} - and d.status in (3, 4, 5) - - - GROUP BY d.id - ORDER BY d.id DESC - - - - SELECT d.id, d.delivery_number, d.`status`, d.car_video, - d.start_location, d.end_location, d.car_load_time, d.check_time, - d.empty_weight, d.entruck_weight, d.quarantine_tickey_url, - d.empty_weight_video, d.entruck_video, d.entruck_weight_video, d.pound_list_img, - d.check_video, d.estimated_delivery_time, d.check_by,d.check_empty_weight,d.check_entruck_weight, - d.check_empty_weight_video,d.check_entruck_weight_video, - m.mobile AS driver_mobile, d.zip_url, - md.username AS driver_name, md.car_number AS license_plate - FROM delivery d - LEFT JOIN member m ON d.driver_id = m.id - LEFT JOIN member_driver md ON m.id = md.member_id - WHERE d.id = #{id} - - - - SELECT * from delivery d WHERE d.deleted = 1 and d.delivery_number = #{deliveryNumber} limit 1 - - - select * from delivery where `status` in (1,2,3) - - - select * from delivery where id = #{deliveryId} - - - - diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/JbqClientLogMapper.xml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/JbqClientLogMapper.xml deleted file mode 100644 index a7e6ef7..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/JbqClientLogMapper.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - id, device_id, device_voltage, device_temp, server_device_id, latitude, longitude, walk_steps, y_walk_steps, create_time, create_by, update_time, update_by - - - SELECT - log.* - FROM - jbq_client_log log - WHERE - log.device_id IN ( - SELECT dd.device_id - FROM delivery_device dd - WHERE dd.delivery_id = #{deliveryId} - AND dd.device_type = 2 - ) - AND log.update_time BETWEEN #{createTime} AND #{checkTime} - AND log.device_id = #{deviceId} - order by log.update_time desc - - - diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/JbqClientMapper.xml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/JbqClientMapper.xml deleted file mode 100644 index dd2bc00..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/JbqClientMapper.xml +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - id, device_id, device_voltage, device_temp, server_device_id, latitude, longitude, walk_steps, y_walk_steps, create_time, create_by, update_time, update_by, source_id - - - SELECT - jbq.id AS id, - jbq.device_id AS deviceId, - jbq.device_voltage AS deviceVoltage, - jbq.device_temp AS deviceTemp, - del.delivery_number AS deliveryNumber, - del.license_plate AS licensePlate, - del.create_time AS deliveryCreateTime - FROM - jbq_client jbq - LEFT JOIN - delivery_device dd ON jbq.device_id = dd.device_id and dd.device_type = 2 - LEFT JOIN - delivery del ON dd.delivery_id = del.id - - - AND jbq.device_id = #{item.deviceId} - - - AND jbq.device_id >= #{item.startNo} - - - AND jbq.device_id <= #{item.endNo} - - - order by dd.bind_time desc - - - SELECT - jbq.device_id, - dd.delivery_id, - 2 as deviceTypeId - FROM - jbq_client jbq - LEFT JOIN delivery_device dd ON jbq.device_id = dd.device_id AND dd.device_type = 2 - AND dd.delivery_id = #{item.deliveryId} - where jbq.device_id not in (select distinct device_id from delivery_device) - - AND jbq.device_id like concat('%',#{item.deviceId},'%') - - union all - SELECT - xq.sn, - dd.delivery_id, - 3 as deviceType - FROM - xq_client xq - LEFT JOIN delivery_device dd ON xq.sn = dd.device_id AND dd.device_type = 3 - AND dd.delivery_id = #{item.deliveryId} - where xq.sn not in (select distinct device_id from delivery_device) - - AND xq.sn like concat('%',#{item.deviceId},'%') - - - - - select t.* from jbq_client t - - - and t.tenant_id in - - #{tenantId} - - - - - - SELECT - jbq.id, - jbq.device_id, - jbq.device_voltage, - jbq.device_temp, - jbq.server_device_id, - jbq.latitude, - jbq.longitude, - jbq.walk_steps, - jbq.y_walk_steps, - jbq.create_time, - jbq.create_by, - jbq.update_time, - jbq.update_by, - jbq.source_id, - dd.delivery_id, - 2 as deviceTypeId - FROM - jbq_client jbq - LEFT JOIN delivery_device dd ON jbq.device_id = dd.device_id AND dd.device_type = 2 - where dd.delivery_id = #{item.deliveryId} - - - diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/JbqServerLogMapper.xml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/JbqServerLogMapper.xml deleted file mode 100644 index 2928b46..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/JbqServerLogMapper.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - id, device_id, device_voltage, device_temp, latitude, longitude, walk_steps, y_walk_steps, create_time, create_by, update_time, update_by - - - SELECT device_id AS deviceId, latitude, longitude, update_time - FROM jbq_server_log - WHERE device_id = #{deviceId} - AND create_time BETWEEN #{deliverTime} AND #{checkTime} - ORDER BY update_time ASC - - - diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/JbqServerMapper.xml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/JbqServerMapper.xml deleted file mode 100644 index df2527c..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/JbqServerMapper.xml +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - id, device_id, device_voltage, device_temp, latitude, longitude, walk_steps, y_walk_steps, create_time, create_by, update_time, update_by, source_id - - - SELECT - server.id AS id, - server.device_id AS deviceId, - server.device_voltage AS deviceVoltage, - server.device_temp AS deviceTemp, - del.delivery_number AS deliveryNumber, - del.license_plate AS licensePlate, - del.create_time AS deliveryCreateTime, - CASE - WHEN TIMESTAMPDIFF(MINUTE, server.update_time, NOW()) <= 60 THEN '在线状态' - ELSE '离线状态' - END AS onlineStatusDesc - FROM - jbq_server server - LEFT JOIN - delivery_device dd ON server.device_id = dd.device_id and dd.device_type = 1 - LEFT JOIN - delivery del ON dd.delivery_id = del.id - - - AND server.device_id = #{item.deviceId} - - - order by dd.bind_time desc - - - select t.* from jbq_server t - - - and t.tenant_id in - - #{tenantId} - - - - - - - SELECT - server.id AS id, - server.device_id AS deviceId, - server.device_voltage AS deviceVoltage, - server.device_temp AS deviceTemp, - del.delivery_number AS deliveryNumber, - del.license_plate AS licensePlate, - del.create_time AS deliveryCreateTime, - CASE - WHEN TIMESTAMPDIFF(MINUTE, server.update_time, NOW()) <= 60 THEN '在线状态' - ELSE '离线状态' - END AS onlineStatusDesc - FROM - jbq_server server - LEFT JOIN - delivery_device dd ON server.device_id = dd.device_id and dd.device_type = 1 - LEFT JOIN - delivery del ON dd.delivery_id = del.id - - server.device_id not in (select device_id from delivery_device where device_type = 1) - - AND server.device_id like concat('%',#{item.deviceId},'%') - - - order by dd.bind_time desc - - - - - - diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/MemberMapper.xml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/MemberMapper.xml deleted file mode 100644 index 8553781..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/MemberMapper.xml +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - SELECT - a.username, - a.car_number, - a.create_time, - a.driving_license, - a.driver_license, - a.record_code, - a.car_img, - a.remark, - b.id, - b.mobile, - b.`status`, - c.`name` AS createName - FROM member_driver a - LEFT JOIN member b ON b.id = a.member_id - LEFT JOIN sys_user c ON c.id = b.create_by - WHERE - 1 = 1 - - AND a.username like concat('%', #{username},'%') - - - AND b.mobile like concat('%', #{mobile},'%') - - - AND b.status = #{status} - - - AND b.id = #{id} - - ORDER BY a.id DESC - - - - SELECT - a.username, - a.cbk_account, - a.remark, - a.create_time, - b.id, - b.mobile, - b.`status`, - b.type, - c.`name` AS createName - FROM member_user a - LEFT JOIN member b ON b.id = a.member_id - LEFT JOIN sys_user c ON c.id = b.create_by - WHERE - 1 = 1 - - AND a.username like concat('%', #{username},'%') - - - AND b.mobile like concat('%', #{mobile},'%') - - - AND b.status = #{status} - - - AND b.type = #{type} - - - AND b.id = #{id} - - ORDER BY a.id DESC - - - select * from member where mobile = #{mobile} - - diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/PayOrderItemMapper.xml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/PayOrderItemMapper.xml deleted file mode 100644 index d30e9a4..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/PayOrderItemMapper.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/PayOrderMapper.xml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/PayOrderMapper.xml deleted file mode 100644 index aa12925..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/PayOrderMapper.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/SysMenuMapper.xml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/SysMenuMapper.xml deleted file mode 100644 index c75d0b5..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/SysMenuMapper.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - id, parent_id, type, icon, name, sort, route_url, page_url, authority, create_time, update_time, is_delete - - - SELECT m.* - FROM sys_menu m - LEFT JOIN sys_role_menu rm ON m.id = rm.menu_id - LEFT JOIN sys_user u ON rm.role_id = u.role_id - WHERE u.is_delete = 0 - AND m.is_delete = 0 - AND u.id = #{userId} - - - - SELECT m.id, m.parent_id, m.name, m.type, m.icon, m.route_url, - m.page_url, m.sort, m.authority, m.create_time, - CASE WHEN rm.menu_id IS NOT NULL THEN 1 ELSE 0 END AS isSelected - FROM sys_menu m - LEFT JOIN sys_role_menu rm ON m.id = rm.menu_id - WHERE m.is_delete = 0 - AND rm.role_id = #{roleId} - - - diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/SysRoleMapper.xml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/SysRoleMapper.xml deleted file mode 100644 index cc94612..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/SysRoleMapper.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - id, name, description, company_id, type, create_time, update_time, is_delete - - - diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/SysRoleMenuMapper.xml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/SysRoleMenuMapper.xml deleted file mode 100644 index 28274cd..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/SysRoleMenuMapper.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - id, role_id, menu_id - - - diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/SysTenantMapper.xml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/SysTenantMapper.xml deleted file mode 100644 index cc00e70..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/SysTenantMapper.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - id, name, mobile, create_time, is_delete - - - diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/SysUserMapper.xml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/SysUserMapper.xml deleted file mode 100644 index bdd1f3f..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/SysUserMapper.xml +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - id, name, mobile, role_id, password, status, type, company_name, conpany_id, create_time, create_by, update_time, update_by, last_login_time, is_delete - - - - SELECT u.id, u.`name`, u.`status`, u.mobile, - u.create_time, r.`name` as roleName, - r.id as roleId - FROM sys_user u - LEFT JOIN sys_role r ON u.role_id = r.id - WHERE u.is_delete = 0 - - and u.name like concat ('%', #{item.name}, '%') - - order by u.id desc - - - - SELECT u.id, u.name, u.mobile, r.`name` AS roleName - FROM sys_user u - LEFT JOIN sys_role r ON u.role_id = r.id - WHERE u.id = #{id} - - - SELECT u.*, - r.`name` as roleName - FROM sys_user u - left join sys_role r on u.role_id = r.id - WHERE u.is_delete = 0 - and u.mobile = #{item.mobile} - - - diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/WarningLogMapper.xml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/WarningLogMapper.xml deleted file mode 100644 index 1f911f3..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/WarningLogMapper.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - id, delivery_id, warning_type, inventory_jbq_count, expected_distance, actual_distance, warning_time - - - - SELECT - - from warning_log - - id in(select max(wl.id) from warning_log wl - left join delivery d on d.id = wl.delivery_id - - (d.driver_id = #{dto.userId} or d.fund_id = #{dto.userId} or d.buyer_id = #{dto.userId}) - - group by wl.delivery_id,wl.warning_type) - - and delivery_id = (select id from delivery where delivery_number concat('%',#{dto.deliveryNumber},'%') and status = 1 limit 1) - - - and warning_type = #{dto.warningType} - - - - - - - diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/XqClientLogMapper.xml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/XqClientLogMapper.xml deleted file mode 100644 index f16ce5a..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/XqClientLogMapper.xml +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - id, sn, deviceId, longitude, latitude, altitude, nsat, rsrp, battery, temperature, steps, acc_x, acc_y, acc_z, bandge_status, ver, time, loctime, wifi_data, nb_data, gps_state - - - SELECT `sn` AS deviceId, latitude, longitude, `time` as updateTime - FROM xq_client_log - WHERE `sn` = #{deviceId} - - AND `time` BETWEEN #{startTime} AND #{endTime} - - ORDER BY `time` ASC - - - SELECT - log.* - FROM - xq_client_log log - WHERE - log.sn IN ( - SELECT dd.device_id - FROM delivery_device dd - WHERE dd.delivery_id = #{deliveryId} - AND dd.device_type = 3 - ) - AND log.time BETWEEN #{createTime} AND #{checkTime} - AND log.sn = #{deviceId} - AND log.battery is not null - order by log.time desc - - - diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/XqClientMapper.xml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/XqClientMapper.xml deleted file mode 100644 index 93f3065..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/XqClientMapper.xml +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - id, org_id, uid, deviceId, sn, state, longitude, latitude, altitude, gps_state, nsat, rsrp, battery, temperature, steps, acc_x, acc_y, acc_z, bandge_status, ver, time, uptime, y_steps, is_wear, is_temperature, source_id, loctime, subType, frequency, vehicle_id, evening_frequency - - - SELECT - xq.id AS id, - xq.sn AS deviceId, - xq.battery AS deviceVoltage, - xq.temperature AS deviceTemp, - del.delivery_number AS deliveryNumber, - del.id AS deliveryId, - del.license_plate AS licensePlate, - del.create_time AS deliveryCreateTime - FROM - xq_client xq - LEFT JOIN - delivery_device dd ON xq.sn = dd.device_id and dd.device_type = 3 - LEFT JOIN - delivery del ON dd.delivery_id = del.id - - - AND xq.sn = #{item.deviceId} - - - AND xq.sn >= #{item.startNo} - - - AND xq.sn <= #{item.endNo} - - - order by dd.bind_time desc - - - - select t.* from xq_client t - - - and t.tenant_id in - - #{tenantId} - - - - - - SELECT - xq.id, - xq.org_id, uid, - xq.deviceId, - xq.sn, - xq.state, - xq.longitude, - xq.latitude, - xq.altitude, - xq.gps_state, - xq.nsat, - xq.rsrp, - xq.battery, - xq.temperature, - xq.steps, - xq.acc_x, - xq.acc_y, - xq.acc_z, - xq.bandge_status, - xq.ver, - xq.time, - xq.uptime, - xq.y_steps, - xq.is_wear, - xq.is_temperature, - xq.source_id, - xq.loctime, - xq.subType, - xq.frequency, - xq.vehicle_id, - xq.evening_frequency, - dd.delivery_id, - 3 as deviceType - FROM - xq_client xq - LEFT JOIN delivery_device dd ON xq.sn = dd.device_id AND dd.device_type = 3 - where dd.delivery_id = #{item.deliveryId} - - - diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mybatis/mybatis-config.xml b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mybatis/mybatis-config.xml deleted file mode 100644 index 10cf6b0..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mybatis/mybatis-config.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classpath.idx b/aiotagro-cattletrade-1.0.1/BOOT-INF/classpath.idx deleted file mode 100644 index 1580c3c..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/classpath.idx +++ /dev/null @@ -1,154 +0,0 @@ -- "BOOT-INF/lib/jackson-databind-2.13.4.2.jar" -- "BOOT-INF/lib/jackson-annotations-2.13.4.jar" -- "BOOT-INF/lib/jackson-core-2.13.4.jar" -- "BOOT-INF/lib/jackson-datatype-jdk8-2.13.4.jar" -- "BOOT-INF/lib/jackson-datatype-jsr310-2.13.4.jar" -- "BOOT-INF/lib/jackson-module-parameter-names-2.13.4.jar" -- "BOOT-INF/lib/tomcat-embed-core-9.0.68.jar" -- "BOOT-INF/lib/tomcat-embed-websocket-9.0.68.jar" -- "BOOT-INF/lib/spring-web-5.3.23.jar" -- "BOOT-INF/lib/spring-beans-5.3.23.jar" -- "BOOT-INF/lib/spring-webmvc-5.3.23.jar" -- "BOOT-INF/lib/spring-aop-5.3.23.jar" -- "BOOT-INF/lib/spring-expression-5.3.23.jar" -- "BOOT-INF/lib/tomcat-embed-el-9.0.68.jar" -- "BOOT-INF/lib/hibernate-validator-6.2.5.Final.jar" -- "BOOT-INF/lib/jakarta.validation-api-2.0.2.jar" -- "BOOT-INF/lib/jboss-logging-3.4.3.Final.jar" -- "BOOT-INF/lib/classmate-1.5.1.jar" -- "BOOT-INF/lib/spring-boot-2.6.13.jar" -- "BOOT-INF/lib/spring-boot-autoconfigure-2.6.13.jar" -- "BOOT-INF/lib/lombok-1.18.24.jar" -- "BOOT-INF/lib/fastdfs-client-1.27.2.jar" -- "BOOT-INF/lib/slf4j-api-1.7.36.jar" -- "BOOT-INF/lib/jcl-over-slf4j-1.7.36.jar" -- "BOOT-INF/lib/logback-classic-1.2.11.jar" -- "BOOT-INF/lib/logback-core-1.2.11.jar" -- "BOOT-INF/lib/commons-beanutils-1.9.3.jar" -- "BOOT-INF/lib/commons-collections-3.2.2.jar" -- "BOOT-INF/lib/spring-core-5.3.23.jar" -- "BOOT-INF/lib/spring-jcl-5.3.23.jar" -- "BOOT-INF/lib/spring-context-5.3.23.jar" -- "BOOT-INF/lib/thumbnailator-0.4.8.jar" -- "BOOT-INF/lib/druid-1.2.20.jar" -- "BOOT-INF/lib/mysql-connector-j-8.4.0.jar" -- "BOOT-INF/lib/mybatis-plus-boot-starter-3.5.3.2.jar" -- "BOOT-INF/lib/mybatis-plus-3.5.3.2.jar" -- "BOOT-INF/lib/mybatis-plus-extension-3.5.3.2.jar" -- "BOOT-INF/lib/mybatis-plus-core-3.5.3.2.jar" -- "BOOT-INF/lib/mybatis-plus-annotation-3.5.3.2.jar" -- "BOOT-INF/lib/HikariCP-4.0.3.jar" -- "BOOT-INF/lib/spring-jdbc-5.3.23.jar" -- "BOOT-INF/lib/spring-tx-5.3.23.jar" -- "BOOT-INF/lib/pagehelper-spring-boot-starter-1.4.7.jar" -- "BOOT-INF/lib/mybatis-spring-boot-starter-2.3.1.jar" -- "BOOT-INF/lib/mybatis-spring-boot-autoconfigure-2.3.1.jar" -- "BOOT-INF/lib/mybatis-3.5.13.jar" -- "BOOT-INF/lib/mybatis-spring-2.1.1.jar" -- "BOOT-INF/lib/pagehelper-spring-boot-autoconfigure-1.4.7.jar" -- "BOOT-INF/lib/pagehelper-5.3.3.jar" -- "BOOT-INF/lib/jsqlparser-4.5.jar" -- "BOOT-INF/lib/UserAgentUtils-1.21.jar" -- "BOOT-INF/lib/oshi-core-6.4.11.jar" -- "BOOT-INF/lib/jna-5.14.0.jar" -- "BOOT-INF/lib/jna-platform-5.14.0.jar" -- "BOOT-INF/lib/commons-io-2.13.0.jar" -- "BOOT-INF/lib/poi-ooxml-4.1.2.jar" -- "BOOT-INF/lib/poi-4.1.2.jar" -- "BOOT-INF/lib/commons-math3-3.6.1.jar" -- "BOOT-INF/lib/SparseBitSet-1.2.jar" -- "BOOT-INF/lib/poi-ooxml-schemas-4.1.2.jar" -- "BOOT-INF/lib/xmlbeans-3.1.0.jar" -- "BOOT-INF/lib/commons-compress-1.19.jar" -- "BOOT-INF/lib/curvesapi-1.06.jar" -- "BOOT-INF/lib/fastjson2-2.0.43.jar" -- "BOOT-INF/lib/transmittable-thread-local-2.14.4.jar" -- "BOOT-INF/lib/commons-pool2-2.11.1.jar" -- "BOOT-INF/lib/hutool-all-5.8.25.jar" -- "BOOT-INF/lib/aiotagro-redis-1.0.1.jar" -- "BOOT-INF/lib/spring-data-redis-2.6.9.jar" -- "BOOT-INF/lib/spring-data-keyvalue-2.6.9.jar" -- "BOOT-INF/lib/spring-data-commons-2.6.9.jar" -- "BOOT-INF/lib/spring-oxm-5.3.23.jar" -- "BOOT-INF/lib/lettuce-core-6.1.10.RELEASE.jar" -- "BOOT-INF/lib/reactor-core-3.4.24.jar" -- "BOOT-INF/lib/reactive-streams-1.0.4.jar" -- "BOOT-INF/lib/aiotagro-core-1.0.1.jar" -- "BOOT-INF/lib/jjwt-0.9.1.jar" -- "BOOT-INF/lib/jaxb-api-2.3.1.jar" -- "BOOT-INF/lib/javax.activation-api-1.2.0.jar" -- "BOOT-INF/lib/javax.servlet-api-4.0.1.jar" -- "BOOT-INF/lib/bizlog-sdk-3.0.6.jar" -- "BOOT-INF/lib/java-object-diff-0.95.jar" -- "BOOT-INF/lib/annotations-3.0.1.jar" -- "BOOT-INF/lib/jcip-annotations-1.0.jar" -- "BOOT-INF/lib/jsr305-3.0.1.jar" -- "BOOT-INF/lib/sa-token-spring-boot-starter-1.37.0.jar" -- "BOOT-INF/lib/sa-token-servlet-1.37.0.jar" -- "BOOT-INF/lib/sa-token-spring-boot-autoconfig-1.37.0.jar" -- "BOOT-INF/lib/sa-token-redis-jackson-1.37.0.jar" -- "BOOT-INF/lib/sa-token-core-1.37.0.jar" -- "BOOT-INF/lib/sa-token-jwt-1.37.0.jar" -- "BOOT-INF/lib/hutool-jwt-5.8.20.jar" -- "BOOT-INF/lib/hutool-json-5.8.20.jar" -- "BOOT-INF/lib/hutool-core-5.8.20.jar" -- "BOOT-INF/lib/hutool-crypto-5.8.20.jar" -- "BOOT-INF/lib/tencentcloud-sdk-java-3.1.423.jar" -- "BOOT-INF/lib/commons-logging-1.2.jar" -- "BOOT-INF/lib/okhttp-2.7.5.jar" -- "BOOT-INF/lib/logging-interceptor-2.7.5.jar" -- "BOOT-INF/lib/ini4j-0.5.4.jar" -- "BOOT-INF/lib/cos_api-5.6.89.jar" -- "BOOT-INF/lib/joda-time-2.9.9.jar" -- "BOOT-INF/lib/tencentcloud-sdk-java-kms-3.1.213.jar" -- "BOOT-INF/lib/tencentcloud-sdk-java-common-3.1.213.jar" -- "BOOT-INF/lib/bcprov-jdk15on-1.67.jar" -- "BOOT-INF/lib/retrofit-spring-boot-starter-2.2.18.jar" -- "BOOT-INF/lib/retrofit-2.9.0.jar" -- "BOOT-INF/lib/converter-jackson-2.9.0.jar" -- "BOOT-INF/lib/javax.annotation-api-1.3.2.jar" -- "BOOT-INF/lib/logging-interceptor-3.14.9.jar" -- "BOOT-INF/lib/okhttp-3.14.9.jar" -- "BOOT-INF/lib/okio-1.17.5.jar" -- "BOOT-INF/lib/easyexcel-3.1.0.jar" -- "BOOT-INF/lib/easyexcel-core-3.1.0.jar" -- "BOOT-INF/lib/easyexcel-support-3.1.0.jar" -- "BOOT-INF/lib/commons-csv-1.8.jar" -- "BOOT-INF/lib/ehcache-3.9.10.jar" -- "BOOT-INF/lib/weixin-java-miniapp-3.3.0.jar" -- "BOOT-INF/lib/weixin-java-common-3.3.0.jar" -- "BOOT-INF/lib/xstream-1.4.10.jar" -- "BOOT-INF/lib/xmlpull-1.1.3.1.jar" -- "BOOT-INF/lib/xpp3_min-1.1.4c.jar" -- "BOOT-INF/lib/guava-20.0.jar" -- "BOOT-INF/lib/dom4j-2.0.0.jar" -- "BOOT-INF/lib/jaxen-1.2.0.jar" -- "BOOT-INF/lib/commons-lang3-3.12.0.jar" -- "BOOT-INF/lib/commons-collections4-4.4.jar" -- "BOOT-INF/lib/xxl-job-core-2.4.1.jar" -- "BOOT-INF/lib/netty-codec-http-4.1.84.Final.jar" -- "BOOT-INF/lib/netty-common-4.1.84.Final.jar" -- "BOOT-INF/lib/netty-buffer-4.1.84.Final.jar" -- "BOOT-INF/lib/netty-transport-4.1.84.Final.jar" -- "BOOT-INF/lib/netty-resolver-4.1.84.Final.jar" -- "BOOT-INF/lib/netty-codec-4.1.84.Final.jar" -- "BOOT-INF/lib/netty-handler-4.1.84.Final.jar" -- "BOOT-INF/lib/netty-transport-native-unix-common-4.1.84.Final.jar" -- "BOOT-INF/lib/gson-2.8.9.jar" -- "BOOT-INF/lib/groovy-4.0.21.jar" -- "BOOT-INF/lib/log4j-to-slf4j-2.17.2.jar" -- "BOOT-INF/lib/log4j-api-2.17.2.jar" -- "BOOT-INF/lib/jul-to-slf4j-1.7.36.jar" -- "BOOT-INF/lib/jakarta.annotation-api-1.3.5.jar" -- "BOOT-INF/lib/snakeyaml-1.29.jar" -- "BOOT-INF/lib/spring-test-5.3.23.jar" -- "BOOT-INF/lib/qcloudsms-1.0.6.jar" -- "BOOT-INF/lib/json-20170516.jar" -- "BOOT-INF/lib/httpclient-4.5.13.jar" -- "BOOT-INF/lib/httpcore-4.4.15.jar" -- "BOOT-INF/lib/httpmime-4.5.13.jar" -- "BOOT-INF/lib/commons-codec-1.15.jar" -- "BOOT-INF/lib/mybatis-plus-generator-3.5.1.jar" -- "BOOT-INF/lib/freemarker-2.3.31.jar" -- "BOOT-INF/lib/spring-context-support-5.3.23.jar" -- "BOOT-INF/lib/spring-boot-jarmode-layertools-2.6.13.jar" diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/layers.idx b/aiotagro-cattletrade-1.0.1/BOOT-INF/layers.idx deleted file mode 100644 index a1af61f..0000000 --- a/aiotagro-cattletrade-1.0.1/BOOT-INF/layers.idx +++ /dev/null @@ -1,163 +0,0 @@ -- "dependencies": - - "BOOT-INF/lib/HikariCP-4.0.3.jar" - - "BOOT-INF/lib/SparseBitSet-1.2.jar" - - "BOOT-INF/lib/UserAgentUtils-1.21.jar" - - "BOOT-INF/lib/annotations-3.0.1.jar" - - "BOOT-INF/lib/bcprov-jdk15on-1.67.jar" - - "BOOT-INF/lib/bizlog-sdk-3.0.6.jar" - - "BOOT-INF/lib/classmate-1.5.1.jar" - - "BOOT-INF/lib/commons-beanutils-1.9.3.jar" - - "BOOT-INF/lib/commons-codec-1.15.jar" - - "BOOT-INF/lib/commons-collections-3.2.2.jar" - - "BOOT-INF/lib/commons-collections4-4.4.jar" - - "BOOT-INF/lib/commons-compress-1.19.jar" - - "BOOT-INF/lib/commons-csv-1.8.jar" - - "BOOT-INF/lib/commons-io-2.13.0.jar" - - "BOOT-INF/lib/commons-lang3-3.12.0.jar" - - "BOOT-INF/lib/commons-logging-1.2.jar" - - "BOOT-INF/lib/commons-math3-3.6.1.jar" - - "BOOT-INF/lib/commons-pool2-2.11.1.jar" - - "BOOT-INF/lib/converter-jackson-2.9.0.jar" - - "BOOT-INF/lib/cos_api-5.6.89.jar" - - "BOOT-INF/lib/curvesapi-1.06.jar" - - "BOOT-INF/lib/dom4j-2.0.0.jar" - - "BOOT-INF/lib/druid-1.2.20.jar" - - "BOOT-INF/lib/easyexcel-3.1.0.jar" - - "BOOT-INF/lib/easyexcel-core-3.1.0.jar" - - "BOOT-INF/lib/easyexcel-support-3.1.0.jar" - - "BOOT-INF/lib/ehcache-3.9.10.jar" - - "BOOT-INF/lib/fastdfs-client-1.27.2.jar" - - "BOOT-INF/lib/fastjson2-2.0.43.jar" - - "BOOT-INF/lib/freemarker-2.3.31.jar" - - "BOOT-INF/lib/groovy-4.0.21.jar" - - "BOOT-INF/lib/gson-2.8.9.jar" - - "BOOT-INF/lib/guava-20.0.jar" - - "BOOT-INF/lib/hibernate-validator-6.2.5.Final.jar" - - "BOOT-INF/lib/httpclient-4.5.13.jar" - - "BOOT-INF/lib/httpcore-4.4.15.jar" - - "BOOT-INF/lib/httpmime-4.5.13.jar" - - "BOOT-INF/lib/hutool-all-5.8.25.jar" - - "BOOT-INF/lib/hutool-core-5.8.20.jar" - - "BOOT-INF/lib/hutool-crypto-5.8.20.jar" - - "BOOT-INF/lib/hutool-json-5.8.20.jar" - - "BOOT-INF/lib/hutool-jwt-5.8.20.jar" - - "BOOT-INF/lib/ini4j-0.5.4.jar" - - "BOOT-INF/lib/jackson-annotations-2.13.4.jar" - - "BOOT-INF/lib/jackson-core-2.13.4.jar" - - "BOOT-INF/lib/jackson-databind-2.13.4.2.jar" - - "BOOT-INF/lib/jackson-datatype-jdk8-2.13.4.jar" - - "BOOT-INF/lib/jackson-datatype-jsr310-2.13.4.jar" - - "BOOT-INF/lib/jackson-module-parameter-names-2.13.4.jar" - - "BOOT-INF/lib/jakarta.annotation-api-1.3.5.jar" - - "BOOT-INF/lib/jakarta.validation-api-2.0.2.jar" - - "BOOT-INF/lib/java-object-diff-0.95.jar" - - "BOOT-INF/lib/javax.activation-api-1.2.0.jar" - - "BOOT-INF/lib/javax.annotation-api-1.3.2.jar" - - "BOOT-INF/lib/javax.servlet-api-4.0.1.jar" - - "BOOT-INF/lib/jaxb-api-2.3.1.jar" - - "BOOT-INF/lib/jaxen-1.2.0.jar" - - "BOOT-INF/lib/jboss-logging-3.4.3.Final.jar" - - "BOOT-INF/lib/jcip-annotations-1.0.jar" - - "BOOT-INF/lib/jcl-over-slf4j-1.7.36.jar" - - "BOOT-INF/lib/jjwt-0.9.1.jar" - - "BOOT-INF/lib/jna-5.14.0.jar" - - "BOOT-INF/lib/jna-platform-5.14.0.jar" - - "BOOT-INF/lib/joda-time-2.9.9.jar" - - "BOOT-INF/lib/json-20170516.jar" - - "BOOT-INF/lib/jsqlparser-4.5.jar" - - "BOOT-INF/lib/jsr305-3.0.1.jar" - - "BOOT-INF/lib/jul-to-slf4j-1.7.36.jar" - - "BOOT-INF/lib/lettuce-core-6.1.10.RELEASE.jar" - - "BOOT-INF/lib/log4j-api-2.17.2.jar" - - "BOOT-INF/lib/log4j-to-slf4j-2.17.2.jar" - - "BOOT-INF/lib/logback-classic-1.2.11.jar" - - "BOOT-INF/lib/logback-core-1.2.11.jar" - - "BOOT-INF/lib/logging-interceptor-2.7.5.jar" - - "BOOT-INF/lib/logging-interceptor-3.14.9.jar" - - "BOOT-INF/lib/lombok-1.18.24.jar" - - "BOOT-INF/lib/mybatis-3.5.13.jar" - - "BOOT-INF/lib/mybatis-plus-3.5.3.2.jar" - - "BOOT-INF/lib/mybatis-plus-annotation-3.5.3.2.jar" - - "BOOT-INF/lib/mybatis-plus-boot-starter-3.5.3.2.jar" - - "BOOT-INF/lib/mybatis-plus-core-3.5.3.2.jar" - - "BOOT-INF/lib/mybatis-plus-extension-3.5.3.2.jar" - - "BOOT-INF/lib/mybatis-plus-generator-3.5.1.jar" - - "BOOT-INF/lib/mybatis-spring-2.1.1.jar" - - "BOOT-INF/lib/mybatis-spring-boot-autoconfigure-2.3.1.jar" - - "BOOT-INF/lib/mybatis-spring-boot-starter-2.3.1.jar" - - "BOOT-INF/lib/mysql-connector-j-8.4.0.jar" - - "BOOT-INF/lib/netty-buffer-4.1.84.Final.jar" - - "BOOT-INF/lib/netty-codec-4.1.84.Final.jar" - - "BOOT-INF/lib/netty-codec-http-4.1.84.Final.jar" - - "BOOT-INF/lib/netty-common-4.1.84.Final.jar" - - "BOOT-INF/lib/netty-handler-4.1.84.Final.jar" - - "BOOT-INF/lib/netty-resolver-4.1.84.Final.jar" - - "BOOT-INF/lib/netty-transport-4.1.84.Final.jar" - - "BOOT-INF/lib/netty-transport-native-unix-common-4.1.84.Final.jar" - - "BOOT-INF/lib/okhttp-2.7.5.jar" - - "BOOT-INF/lib/okhttp-3.14.9.jar" - - "BOOT-INF/lib/okio-1.17.5.jar" - - "BOOT-INF/lib/oshi-core-6.4.11.jar" - - "BOOT-INF/lib/pagehelper-5.3.3.jar" - - "BOOT-INF/lib/pagehelper-spring-boot-autoconfigure-1.4.7.jar" - - "BOOT-INF/lib/pagehelper-spring-boot-starter-1.4.7.jar" - - "BOOT-INF/lib/poi-4.1.2.jar" - - "BOOT-INF/lib/poi-ooxml-4.1.2.jar" - - "BOOT-INF/lib/poi-ooxml-schemas-4.1.2.jar" - - "BOOT-INF/lib/qcloudsms-1.0.6.jar" - - "BOOT-INF/lib/reactive-streams-1.0.4.jar" - - "BOOT-INF/lib/reactor-core-3.4.24.jar" - - "BOOT-INF/lib/retrofit-2.9.0.jar" - - "BOOT-INF/lib/retrofit-spring-boot-starter-2.2.18.jar" - - "BOOT-INF/lib/sa-token-core-1.37.0.jar" - - "BOOT-INF/lib/sa-token-jwt-1.37.0.jar" - - "BOOT-INF/lib/sa-token-redis-jackson-1.37.0.jar" - - "BOOT-INF/lib/sa-token-servlet-1.37.0.jar" - - "BOOT-INF/lib/sa-token-spring-boot-autoconfig-1.37.0.jar" - - "BOOT-INF/lib/sa-token-spring-boot-starter-1.37.0.jar" - - "BOOT-INF/lib/slf4j-api-1.7.36.jar" - - "BOOT-INF/lib/snakeyaml-1.29.jar" - - "BOOT-INF/lib/spring-aop-5.3.23.jar" - - "BOOT-INF/lib/spring-beans-5.3.23.jar" - - "BOOT-INF/lib/spring-boot-2.6.13.jar" - - "BOOT-INF/lib/spring-boot-autoconfigure-2.6.13.jar" - - "BOOT-INF/lib/spring-boot-jarmode-layertools-2.6.13.jar" - - "BOOT-INF/lib/spring-context-5.3.23.jar" - - "BOOT-INF/lib/spring-context-support-5.3.23.jar" - - "BOOT-INF/lib/spring-core-5.3.23.jar" - - "BOOT-INF/lib/spring-data-commons-2.6.9.jar" - - "BOOT-INF/lib/spring-data-keyvalue-2.6.9.jar" - - "BOOT-INF/lib/spring-data-redis-2.6.9.jar" - - "BOOT-INF/lib/spring-expression-5.3.23.jar" - - "BOOT-INF/lib/spring-jcl-5.3.23.jar" - - "BOOT-INF/lib/spring-jdbc-5.3.23.jar" - - "BOOT-INF/lib/spring-oxm-5.3.23.jar" - - "BOOT-INF/lib/spring-test-5.3.23.jar" - - "BOOT-INF/lib/spring-tx-5.3.23.jar" - - "BOOT-INF/lib/spring-web-5.3.23.jar" - - "BOOT-INF/lib/spring-webmvc-5.3.23.jar" - - "BOOT-INF/lib/tencentcloud-sdk-java-3.1.423.jar" - - "BOOT-INF/lib/tencentcloud-sdk-java-common-3.1.213.jar" - - "BOOT-INF/lib/tencentcloud-sdk-java-kms-3.1.213.jar" - - "BOOT-INF/lib/thumbnailator-0.4.8.jar" - - "BOOT-INF/lib/tomcat-embed-core-9.0.68.jar" - - "BOOT-INF/lib/tomcat-embed-el-9.0.68.jar" - - "BOOT-INF/lib/tomcat-embed-websocket-9.0.68.jar" - - "BOOT-INF/lib/transmittable-thread-local-2.14.4.jar" - - "BOOT-INF/lib/weixin-java-common-3.3.0.jar" - - "BOOT-INF/lib/weixin-java-miniapp-3.3.0.jar" - - "BOOT-INF/lib/xmlbeans-3.1.0.jar" - - "BOOT-INF/lib/xmlpull-1.1.3.1.jar" - - "BOOT-INF/lib/xpp3_min-1.1.4c.jar" - - "BOOT-INF/lib/xstream-1.4.10.jar" - - "BOOT-INF/lib/xxl-job-core-2.4.1.jar" -- "spring-boot-loader": - - "org/" -- "snapshot-dependencies": -- "application": - - "BOOT-INF/classes/" - - "BOOT-INF/classpath.idx" - - "BOOT-INF/layers.idx" - - "BOOT-INF/lib/aiotagro-core-1.0.1.jar" - - "BOOT-INF/lib/aiotagro-redis-1.0.1.jar" - - "META-INF/" diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/HikariCP-4.0.3.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/HikariCP-4.0.3.jar deleted file mode 100644 index f328920..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/HikariCP-4.0.3.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/SparseBitSet-1.2.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/SparseBitSet-1.2.jar deleted file mode 100644 index bdb6771..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/SparseBitSet-1.2.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/UserAgentUtils-1.21.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/UserAgentUtils-1.21.jar deleted file mode 100644 index af85eb6..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/UserAgentUtils-1.21.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/aiotagro-core-1.0.1.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/aiotagro-core-1.0.1.jar deleted file mode 100644 index 3cc59af..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/aiotagro-core-1.0.1.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/aiotagro-redis-1.0.1.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/aiotagro-redis-1.0.1.jar deleted file mode 100644 index 044f4aa..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/aiotagro-redis-1.0.1.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/annotations-3.0.1.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/annotations-3.0.1.jar deleted file mode 100644 index ca35d0e..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/annotations-3.0.1.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/bcprov-jdk15on-1.67.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/bcprov-jdk15on-1.67.jar deleted file mode 100644 index 94aae29..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/bcprov-jdk15on-1.67.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/bizlog-sdk-3.0.6.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/bizlog-sdk-3.0.6.jar deleted file mode 100644 index 505545b..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/bizlog-sdk-3.0.6.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/classmate-1.5.1.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/classmate-1.5.1.jar deleted file mode 100644 index 819f5ea..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/classmate-1.5.1.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-beanutils-1.9.3.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-beanutils-1.9.3.jar deleted file mode 100644 index 6728154..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-beanutils-1.9.3.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-codec-1.15.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-codec-1.15.jar deleted file mode 100644 index f14985a..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-codec-1.15.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-collections-3.2.2.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-collections-3.2.2.jar deleted file mode 100644 index fa5df82..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-collections-3.2.2.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-collections4-4.4.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-collections4-4.4.jar deleted file mode 100644 index da06c3e..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-collections4-4.4.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-compress-1.19.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-compress-1.19.jar deleted file mode 100644 index 5c9f52a..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-compress-1.19.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-csv-1.8.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-csv-1.8.jar deleted file mode 100644 index 127c5a2..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-csv-1.8.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-io-2.13.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-io-2.13.0.jar deleted file mode 100644 index eb316f4..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-io-2.13.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-lang3-3.12.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-lang3-3.12.0.jar deleted file mode 100644 index 4d434a2..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-lang3-3.12.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-logging-1.2.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-logging-1.2.jar deleted file mode 100644 index 93a3b9f..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-logging-1.2.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-math3-3.6.1.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-math3-3.6.1.jar deleted file mode 100644 index 0ff582c..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-math3-3.6.1.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-pool2-2.11.1.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-pool2-2.11.1.jar deleted file mode 100644 index 8da8a82..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-pool2-2.11.1.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/converter-jackson-2.9.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/converter-jackson-2.9.0.jar deleted file mode 100644 index 0c1d461..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/converter-jackson-2.9.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/cos_api-5.6.89.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/cos_api-5.6.89.jar deleted file mode 100644 index 6ba50ae..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/cos_api-5.6.89.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/curvesapi-1.06.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/curvesapi-1.06.jar deleted file mode 100644 index 800ab9b..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/curvesapi-1.06.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/dom4j-2.0.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/dom4j-2.0.0.jar deleted file mode 100644 index fd9e2cc..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/dom4j-2.0.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/druid-1.2.20.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/druid-1.2.20.jar deleted file mode 100644 index d069f17..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/druid-1.2.20.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/easyexcel-3.1.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/easyexcel-3.1.0.jar deleted file mode 100644 index 35e500f..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/easyexcel-3.1.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/easyexcel-core-3.1.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/easyexcel-core-3.1.0.jar deleted file mode 100644 index 533ec02..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/easyexcel-core-3.1.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/easyexcel-support-3.1.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/easyexcel-support-3.1.0.jar deleted file mode 100644 index 895a522..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/easyexcel-support-3.1.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/ehcache-3.9.10.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/ehcache-3.9.10.jar deleted file mode 100644 index 52382d0..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/ehcache-3.9.10.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/fastdfs-client-1.27.2.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/fastdfs-client-1.27.2.jar deleted file mode 100644 index eeff2f5..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/fastdfs-client-1.27.2.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/fastjson2-2.0.43.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/fastjson2-2.0.43.jar deleted file mode 100644 index 4c4ccbd..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/fastjson2-2.0.43.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/freemarker-2.3.31.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/freemarker-2.3.31.jar deleted file mode 100644 index 8fb169b..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/freemarker-2.3.31.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/groovy-4.0.21.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/groovy-4.0.21.jar deleted file mode 100644 index 9e5540d..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/groovy-4.0.21.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/gson-2.8.9.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/gson-2.8.9.jar deleted file mode 100644 index 3351867..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/gson-2.8.9.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/guava-20.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/guava-20.0.jar deleted file mode 100644 index 632772f..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/guava-20.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hibernate-validator-6.2.5.Final.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hibernate-validator-6.2.5.Final.jar deleted file mode 100644 index 1199abf..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hibernate-validator-6.2.5.Final.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/httpclient-4.5.13.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/httpclient-4.5.13.jar deleted file mode 100644 index 218ee25..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/httpclient-4.5.13.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/httpcore-4.4.15.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/httpcore-4.4.15.jar deleted file mode 100644 index dc4b9fc..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/httpcore-4.4.15.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/httpmime-4.5.13.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/httpmime-4.5.13.jar deleted file mode 100644 index cc52f44..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/httpmime-4.5.13.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hutool-all-5.8.25.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hutool-all-5.8.25.jar deleted file mode 100644 index c0d7831..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hutool-all-5.8.25.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hutool-core-5.8.20.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hutool-core-5.8.20.jar deleted file mode 100644 index 5d77d5f..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hutool-core-5.8.20.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hutool-crypto-5.8.20.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hutool-crypto-5.8.20.jar deleted file mode 100644 index 360c2db..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hutool-crypto-5.8.20.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hutool-json-5.8.20.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hutool-json-5.8.20.jar deleted file mode 100644 index ec6c2ee..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hutool-json-5.8.20.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hutool-jwt-5.8.20.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hutool-jwt-5.8.20.jar deleted file mode 100644 index 2efc0e4..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hutool-jwt-5.8.20.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/ini4j-0.5.4.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/ini4j-0.5.4.jar deleted file mode 100644 index 499f0af..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/ini4j-0.5.4.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-annotations-2.13.4.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-annotations-2.13.4.jar deleted file mode 100644 index 0c5e9c1..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-annotations-2.13.4.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-core-2.13.4.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-core-2.13.4.jar deleted file mode 100644 index 0cb7a37..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-core-2.13.4.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-databind-2.13.4.2.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-databind-2.13.4.2.jar deleted file mode 100644 index 5b653d6..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-databind-2.13.4.2.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-datatype-jdk8-2.13.4.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-datatype-jdk8-2.13.4.jar deleted file mode 100644 index e98483e..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-datatype-jdk8-2.13.4.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-datatype-jsr310-2.13.4.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-datatype-jsr310-2.13.4.jar deleted file mode 100644 index 102cf12..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-datatype-jsr310-2.13.4.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-module-parameter-names-2.13.4.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-module-parameter-names-2.13.4.jar deleted file mode 100644 index d3da4de..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-module-parameter-names-2.13.4.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jakarta.annotation-api-1.3.5.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jakarta.annotation-api-1.3.5.jar deleted file mode 100644 index 606d992..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jakarta.annotation-api-1.3.5.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jakarta.validation-api-2.0.2.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jakarta.validation-api-2.0.2.jar deleted file mode 100644 index d68c9f7..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jakarta.validation-api-2.0.2.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/java-object-diff-0.95.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/java-object-diff-0.95.jar deleted file mode 100644 index 38557ce..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/java-object-diff-0.95.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/javax.activation-api-1.2.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/javax.activation-api-1.2.0.jar deleted file mode 100644 index 986c365..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/javax.activation-api-1.2.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/javax.annotation-api-1.3.2.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/javax.annotation-api-1.3.2.jar deleted file mode 100644 index a8a470a..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/javax.annotation-api-1.3.2.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/javax.servlet-api-4.0.1.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/javax.servlet-api-4.0.1.jar deleted file mode 100644 index 844ec7f..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/javax.servlet-api-4.0.1.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jaxb-api-2.3.1.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jaxb-api-2.3.1.jar deleted file mode 100644 index 4565865..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jaxb-api-2.3.1.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jaxen-1.2.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jaxen-1.2.0.jar deleted file mode 100644 index c819d63..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jaxen-1.2.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jboss-logging-3.4.3.Final.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jboss-logging-3.4.3.Final.jar deleted file mode 100644 index 31d55c6..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jboss-logging-3.4.3.Final.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jcip-annotations-1.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jcip-annotations-1.0.jar deleted file mode 100644 index 06e9066..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jcip-annotations-1.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jcl-over-slf4j-1.7.36.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jcl-over-slf4j-1.7.36.jar deleted file mode 100644 index 3ecd7d5..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jcl-over-slf4j-1.7.36.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jjwt-0.9.1.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jjwt-0.9.1.jar deleted file mode 100644 index 905c80e..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jjwt-0.9.1.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jna-5.14.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jna-5.14.0.jar deleted file mode 100644 index e27f9c5..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jna-5.14.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jna-platform-5.14.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jna-platform-5.14.0.jar deleted file mode 100644 index 05984f7..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jna-platform-5.14.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/joda-time-2.9.9.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/joda-time-2.9.9.jar deleted file mode 100644 index b3080c4..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/joda-time-2.9.9.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/json-20170516.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/json-20170516.jar deleted file mode 100644 index 5033f66..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/json-20170516.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jsqlparser-4.5.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jsqlparser-4.5.jar deleted file mode 100644 index afd93c0..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jsqlparser-4.5.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jsr305-3.0.1.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jsr305-3.0.1.jar deleted file mode 100644 index 021df89..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jsr305-3.0.1.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jul-to-slf4j-1.7.36.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jul-to-slf4j-1.7.36.jar deleted file mode 100644 index ae8f815..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jul-to-slf4j-1.7.36.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/lettuce-core-6.1.10.RELEASE.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/lettuce-core-6.1.10.RELEASE.jar deleted file mode 100644 index 9eb39b3..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/lettuce-core-6.1.10.RELEASE.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/log4j-api-2.17.2.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/log4j-api-2.17.2.jar deleted file mode 100644 index 16d9061..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/log4j-api-2.17.2.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/log4j-to-slf4j-2.17.2.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/log4j-to-slf4j-2.17.2.jar deleted file mode 100644 index d6c35f4..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/log4j-to-slf4j-2.17.2.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/logback-classic-1.2.11.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/logback-classic-1.2.11.jar deleted file mode 100644 index b70c0e6..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/logback-classic-1.2.11.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/logback-core-1.2.11.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/logback-core-1.2.11.jar deleted file mode 100644 index e3038da..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/logback-core-1.2.11.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/logging-interceptor-2.7.5.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/logging-interceptor-2.7.5.jar deleted file mode 100644 index 444a41f..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/logging-interceptor-2.7.5.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/logging-interceptor-3.14.9.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/logging-interceptor-3.14.9.jar deleted file mode 100644 index 2f020f4..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/logging-interceptor-3.14.9.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/lombok-1.18.24.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/lombok-1.18.24.jar deleted file mode 100644 index 3a985fe..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/lombok-1.18.24.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-3.5.13.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-3.5.13.jar deleted file mode 100644 index c93a218..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-3.5.13.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-3.5.3.2.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-3.5.3.2.jar deleted file mode 100644 index e818b3d..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-3.5.3.2.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-annotation-3.5.3.2.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-annotation-3.5.3.2.jar deleted file mode 100644 index f0c43a3..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-annotation-3.5.3.2.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-boot-starter-3.5.3.2.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-boot-starter-3.5.3.2.jar deleted file mode 100644 index 5610042..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-boot-starter-3.5.3.2.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-core-3.5.3.2.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-core-3.5.3.2.jar deleted file mode 100644 index bfb1ea0..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-core-3.5.3.2.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-extension-3.5.3.2.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-extension-3.5.3.2.jar deleted file mode 100644 index 9b60247..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-extension-3.5.3.2.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-generator-3.5.1.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-generator-3.5.1.jar deleted file mode 100644 index 73173e3..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-generator-3.5.1.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-spring-2.1.1.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-spring-2.1.1.jar deleted file mode 100644 index 690550a..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-spring-2.1.1.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-spring-boot-autoconfigure-2.3.1.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-spring-boot-autoconfigure-2.3.1.jar deleted file mode 100644 index e47b2a2..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-spring-boot-autoconfigure-2.3.1.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-spring-boot-starter-2.3.1.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-spring-boot-starter-2.3.1.jar deleted file mode 100644 index 36e3db3..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-spring-boot-starter-2.3.1.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mysql-connector-j-8.4.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mysql-connector-j-8.4.0.jar deleted file mode 100644 index 8294fe0..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mysql-connector-j-8.4.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-buffer-4.1.84.Final.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-buffer-4.1.84.Final.jar deleted file mode 100644 index 38a3bf8..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-buffer-4.1.84.Final.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-codec-4.1.84.Final.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-codec-4.1.84.Final.jar deleted file mode 100644 index 40a531e..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-codec-4.1.84.Final.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-codec-http-4.1.84.Final.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-codec-http-4.1.84.Final.jar deleted file mode 100644 index 4f03143..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-codec-http-4.1.84.Final.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-common-4.1.84.Final.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-common-4.1.84.Final.jar deleted file mode 100644 index 4f860db..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-common-4.1.84.Final.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-handler-4.1.84.Final.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-handler-4.1.84.Final.jar deleted file mode 100644 index 83b7e1d..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-handler-4.1.84.Final.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-resolver-4.1.84.Final.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-resolver-4.1.84.Final.jar deleted file mode 100644 index 0df2ffc..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-resolver-4.1.84.Final.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-transport-4.1.84.Final.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-transport-4.1.84.Final.jar deleted file mode 100644 index f261d88..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-transport-4.1.84.Final.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-transport-native-unix-common-4.1.84.Final.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-transport-native-unix-common-4.1.84.Final.jar deleted file mode 100644 index 84d4070..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-transport-native-unix-common-4.1.84.Final.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/okhttp-2.7.5.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/okhttp-2.7.5.jar deleted file mode 100644 index e6df064..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/okhttp-2.7.5.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/okhttp-3.14.9.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/okhttp-3.14.9.jar deleted file mode 100644 index 52c046c..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/okhttp-3.14.9.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/okio-1.17.5.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/okio-1.17.5.jar deleted file mode 100644 index fb3ddd9..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/okio-1.17.5.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/oshi-core-6.4.11.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/oshi-core-6.4.11.jar deleted file mode 100644 index eb47bdb..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/oshi-core-6.4.11.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/pagehelper-5.3.3.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/pagehelper-5.3.3.jar deleted file mode 100644 index 92e0977..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/pagehelper-5.3.3.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/pagehelper-spring-boot-autoconfigure-1.4.7.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/pagehelper-spring-boot-autoconfigure-1.4.7.jar deleted file mode 100644 index 94be723..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/pagehelper-spring-boot-autoconfigure-1.4.7.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/pagehelper-spring-boot-starter-1.4.7.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/pagehelper-spring-boot-starter-1.4.7.jar deleted file mode 100644 index 264cfb8..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/pagehelper-spring-boot-starter-1.4.7.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/poi-4.1.2.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/poi-4.1.2.jar deleted file mode 100644 index 3803353..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/poi-4.1.2.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/poi-ooxml-4.1.2.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/poi-ooxml-4.1.2.jar deleted file mode 100644 index 6038a51..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/poi-ooxml-4.1.2.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/poi-ooxml-schemas-4.1.2.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/poi-ooxml-schemas-4.1.2.jar deleted file mode 100644 index 74d3cd5..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/poi-ooxml-schemas-4.1.2.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/qcloudsms-1.0.6.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/qcloudsms-1.0.6.jar deleted file mode 100644 index aee50b7..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/qcloudsms-1.0.6.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/reactive-streams-1.0.4.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/reactive-streams-1.0.4.jar deleted file mode 100644 index e58c483..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/reactive-streams-1.0.4.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/reactor-core-3.4.24.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/reactor-core-3.4.24.jar deleted file mode 100644 index 3333cd9..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/reactor-core-3.4.24.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/retrofit-2.9.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/retrofit-2.9.0.jar deleted file mode 100644 index b899846..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/retrofit-2.9.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/retrofit-spring-boot-starter-2.2.18.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/retrofit-spring-boot-starter-2.2.18.jar deleted file mode 100644 index 854831a..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/retrofit-spring-boot-starter-2.2.18.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-core-1.37.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-core-1.37.0.jar deleted file mode 100644 index cdce611..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-core-1.37.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-jwt-1.37.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-jwt-1.37.0.jar deleted file mode 100644 index 156b640..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-jwt-1.37.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-redis-jackson-1.37.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-redis-jackson-1.37.0.jar deleted file mode 100644 index 35b6928..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-redis-jackson-1.37.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-servlet-1.37.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-servlet-1.37.0.jar deleted file mode 100644 index d239a57..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-servlet-1.37.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-spring-boot-autoconfig-1.37.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-spring-boot-autoconfig-1.37.0.jar deleted file mode 100644 index c1a4ff7..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-spring-boot-autoconfig-1.37.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-spring-boot-starter-1.37.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-spring-boot-starter-1.37.0.jar deleted file mode 100644 index d278c89..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-spring-boot-starter-1.37.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/slf4j-api-1.7.36.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/slf4j-api-1.7.36.jar deleted file mode 100644 index 7d3ce68..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/slf4j-api-1.7.36.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/snakeyaml-1.29.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/snakeyaml-1.29.jar deleted file mode 100644 index b7db248..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/snakeyaml-1.29.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-aop-5.3.23.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-aop-5.3.23.jar deleted file mode 100644 index c7ee78d..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-aop-5.3.23.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-beans-5.3.23.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-beans-5.3.23.jar deleted file mode 100644 index fcc7cfd..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-beans-5.3.23.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-boot-2.6.13.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-boot-2.6.13.jar deleted file mode 100644 index 527e48f..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-boot-2.6.13.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-boot-autoconfigure-2.6.13.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-boot-autoconfigure-2.6.13.jar deleted file mode 100644 index e07146e..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-boot-autoconfigure-2.6.13.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-boot-jarmode-layertools-2.6.13.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-boot-jarmode-layertools-2.6.13.jar deleted file mode 100644 index 832940a..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-boot-jarmode-layertools-2.6.13.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-context-5.3.23.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-context-5.3.23.jar deleted file mode 100644 index e80b5da..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-context-5.3.23.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-context-support-5.3.23.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-context-support-5.3.23.jar deleted file mode 100644 index b290e9a..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-context-support-5.3.23.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-core-5.3.23.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-core-5.3.23.jar deleted file mode 100644 index 78ff1ca..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-core-5.3.23.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-data-commons-2.6.9.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-data-commons-2.6.9.jar deleted file mode 100644 index dc4b4b2..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-data-commons-2.6.9.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-data-keyvalue-2.6.9.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-data-keyvalue-2.6.9.jar deleted file mode 100644 index 93929e6..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-data-keyvalue-2.6.9.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-data-redis-2.6.9.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-data-redis-2.6.9.jar deleted file mode 100644 index 0541d90..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-data-redis-2.6.9.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-expression-5.3.23.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-expression-5.3.23.jar deleted file mode 100644 index 3d10ece..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-expression-5.3.23.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-jcl-5.3.23.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-jcl-5.3.23.jar deleted file mode 100644 index 98da8e2..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-jcl-5.3.23.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-jdbc-5.3.23.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-jdbc-5.3.23.jar deleted file mode 100644 index 2322be7..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-jdbc-5.3.23.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-oxm-5.3.23.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-oxm-5.3.23.jar deleted file mode 100644 index 1495a0b..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-oxm-5.3.23.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-test-5.3.23.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-test-5.3.23.jar deleted file mode 100644 index 3bdc3d7..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-test-5.3.23.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-tx-5.3.23.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-tx-5.3.23.jar deleted file mode 100644 index aad7465..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-tx-5.3.23.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-web-5.3.23.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-web-5.3.23.jar deleted file mode 100644 index 790d148..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-web-5.3.23.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-webmvc-5.3.23.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-webmvc-5.3.23.jar deleted file mode 100644 index 9a29a87..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-webmvc-5.3.23.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tencentcloud-sdk-java-3.1.423.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tencentcloud-sdk-java-3.1.423.jar deleted file mode 100644 index 1c5721b..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tencentcloud-sdk-java-3.1.423.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tencentcloud-sdk-java-common-3.1.213.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tencentcloud-sdk-java-common-3.1.213.jar deleted file mode 100644 index 09919b1..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tencentcloud-sdk-java-common-3.1.213.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tencentcloud-sdk-java-kms-3.1.213.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tencentcloud-sdk-java-kms-3.1.213.jar deleted file mode 100644 index 6d58b77..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tencentcloud-sdk-java-kms-3.1.213.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/thumbnailator-0.4.8.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/thumbnailator-0.4.8.jar deleted file mode 100644 index 25e593b..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/thumbnailator-0.4.8.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tomcat-embed-core-9.0.68.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tomcat-embed-core-9.0.68.jar deleted file mode 100644 index 87dd471..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tomcat-embed-core-9.0.68.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tomcat-embed-el-9.0.68.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tomcat-embed-el-9.0.68.jar deleted file mode 100644 index 967746f..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tomcat-embed-el-9.0.68.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tomcat-embed-websocket-9.0.68.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tomcat-embed-websocket-9.0.68.jar deleted file mode 100644 index 38230eb..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tomcat-embed-websocket-9.0.68.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/transmittable-thread-local-2.14.4.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/transmittable-thread-local-2.14.4.jar deleted file mode 100644 index d9f2a2f..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/transmittable-thread-local-2.14.4.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/weixin-java-common-3.3.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/weixin-java-common-3.3.0.jar deleted file mode 100644 index fd47ef6..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/weixin-java-common-3.3.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/weixin-java-miniapp-3.3.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/weixin-java-miniapp-3.3.0.jar deleted file mode 100644 index 3a9a801..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/weixin-java-miniapp-3.3.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/xmlbeans-3.1.0.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/xmlbeans-3.1.0.jar deleted file mode 100644 index 18e568f..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/xmlbeans-3.1.0.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/xmlpull-1.1.3.1.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/xmlpull-1.1.3.1.jar deleted file mode 100644 index cbc149d..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/xmlpull-1.1.3.1.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/xpp3_min-1.1.4c.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/xpp3_min-1.1.4c.jar deleted file mode 100644 index 813a9a8..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/xpp3_min-1.1.4c.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/xstream-1.4.10.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/xstream-1.4.10.jar deleted file mode 100644 index 4d7c5d0..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/xstream-1.4.10.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/xxl-job-core-2.4.1.jar b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/xxl-job-core-2.4.1.jar deleted file mode 100644 index 4a20c6e..0000000 Binary files a/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/xxl-job-core-2.4.1.jar and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/META-INF/MANIFEST.MF b/aiotagro-cattletrade-1.0.1/META-INF/MANIFEST.MF deleted file mode 100644 index e29ad4f..0000000 --- a/aiotagro-cattletrade-1.0.1/META-INF/MANIFEST.MF +++ /dev/null @@ -1,13 +0,0 @@ -Manifest-Version: 1.0 -Archiver-Version: Plexus Archiver -Created-By: Apache Maven 3.6.3 -Built-By: root -Build-Jdk: 17.0.11 -Main-Class: org.springframework.boot.loader.JarLauncher -Start-Class: com.aiotagro.cattletrade.AiotagroCattleTradeApplication -Spring-Boot-Version: 2.6.13 -Spring-Boot-Classes: BOOT-INF/classes/ -Spring-Boot-Lib: BOOT-INF/lib/ -Spring-Boot-Classpath-Index: BOOT-INF/classpath.idx -Spring-Boot-Layers-Index: BOOT-INF/layers.idx - diff --git a/aiotagro-cattletrade-1.0.1/META-INF/maven/com.aiotagro/aiotagro-cattletrade/pom.properties b/aiotagro-cattletrade-1.0.1/META-INF/maven/com.aiotagro/aiotagro-cattletrade/pom.properties deleted file mode 100644 index 23f8818..0000000 --- a/aiotagro-cattletrade-1.0.1/META-INF/maven/com.aiotagro/aiotagro-cattletrade/pom.properties +++ /dev/null @@ -1,5 +0,0 @@ -#Generated by Maven -#Mon Aug 04 03:39:03 UTC 2025 -groupId=com.aiotagro -artifactId=aiotagro-cattletrade -version=1.0.1 diff --git a/aiotagro-cattletrade-1.0.1/META-INF/maven/com.aiotagro/aiotagro-cattletrade/pom.xml b/aiotagro-cattletrade-1.0.1/META-INF/maven/com.aiotagro/aiotagro-cattletrade/pom.xml deleted file mode 100644 index 8b31452..0000000 --- a/aiotagro-cattletrade-1.0.1/META-INF/maven/com.aiotagro/aiotagro-cattletrade/pom.xml +++ /dev/null @@ -1,264 +0,0 @@ - - - 4.0.0 - - com.aiotagro - cattletrade - 1.0.1 - - - aiotagro-cattletrade - - - UTF-8 - 1.8 - 2.6.13 - - - - - - org.springframework.boot - spring-boot-starter-web - - - - org.springframework.boot - spring-boot-starter-validation - - - - - - org.springframework.boot - spring-boot-devtools - true - - - - org.projectlombok - lombok - - - - - org.springframework.boot - spring-boot-dependencies - ${spring-boot.version} - pom - import - - - - - com.github.tobato - fastdfs-client - - - - - - com.alibaba - druid - - - - - - com.mysql - mysql-connector-j - 8.4.0 - - - - - - com.baomidou - mybatis-plus-boot-starter - - - - - com.github.pagehelper - pagehelper-spring-boot-starter - 1.4.7 - - - - - - eu.bitwalker - UserAgentUtils - - - - - com.github.oshi - oshi-core - - - - - commons-io - commons-io - - - - - org.apache.poi - poi-ooxml - - - - - com.alibaba.fastjson2 - fastjson2 - - - - - - com.alibaba - transmittable-thread-local - - - - - - org.apache.commons - commons-pool2 - - - - cn.hutool - hutool-all - - - - - - com.aiotagro - aiotagro-redis - - - - - com.github.lianjiatech - retrofit-spring-boot-starter - - - - - - com.alibaba - easyexcel - 3.1.0 - - - poi-ooxml-schemas - org.apache.poi - - - - - org.projectlombok - lombok - - - - com.github.binarywang - weixin-java-miniapp - 3.3.0 - - - - - - - org.apache.commons - commons-lang3 - - - - org.apache.commons - commons-collections4 - 4.4 - - - - com.xuxueli - xxl-job-core - 2.4.1 - - - - - - org.springframework.boot - spring-boot-dependencies - ${spring-boot.version} - pom - import - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.8.1 - - ${java.version} - ${java.version} - ${project.build.sourceEncoding} - - - - org.springframework.boot - spring-boot-maven-plugin - ${spring-boot.version} - - true - true - - - - - repackage - - - - - - - - - - public - aliyun nexus - https://maven.aliyun.com/repository/public - - true - - - - - - - public - aliyun nexus - https://maven.aliyun.com/repository/public - - true - - - false - - - - - \ No newline at end of file diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/ClassPathIndexFile.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/ClassPathIndexFile.class deleted file mode 100644 index 6ab9fcc..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/ClassPathIndexFile.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/ExecutableArchiveLauncher.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/ExecutableArchiveLauncher.class deleted file mode 100644 index 9ec9e1f..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/ExecutableArchiveLauncher.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/JarLauncher.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/JarLauncher.class deleted file mode 100644 index 51e4302..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/JarLauncher.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/LaunchedURLClassLoader$DefinePackageCallType.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/LaunchedURLClassLoader$DefinePackageCallType.class deleted file mode 100644 index a91b025..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/LaunchedURLClassLoader$DefinePackageCallType.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/LaunchedURLClassLoader$UseFastConnectionExceptionsEnumeration.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/LaunchedURLClassLoader$UseFastConnectionExceptionsEnumeration.class deleted file mode 100644 index 91cc6d7..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/LaunchedURLClassLoader$UseFastConnectionExceptionsEnumeration.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/LaunchedURLClassLoader.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/LaunchedURLClassLoader.class deleted file mode 100644 index c955c98..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/LaunchedURLClassLoader.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/Launcher.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/Launcher.class deleted file mode 100644 index 25b4377..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/Launcher.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/MainMethodRunner.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/MainMethodRunner.class deleted file mode 100644 index c027630..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/MainMethodRunner.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/PropertiesLauncher$1.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/PropertiesLauncher$1.class deleted file mode 100644 index 60e3d55..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/PropertiesLauncher$1.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/PropertiesLauncher$ArchiveEntryFilter.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/PropertiesLauncher$ArchiveEntryFilter.class deleted file mode 100644 index 610f1a2..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/PropertiesLauncher$ArchiveEntryFilter.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/PropertiesLauncher$ClassPathArchives.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/PropertiesLauncher$ClassPathArchives.class deleted file mode 100644 index 845c344..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/PropertiesLauncher$ClassPathArchives.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/PropertiesLauncher$PrefixMatchingArchiveFilter.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/PropertiesLauncher$PrefixMatchingArchiveFilter.class deleted file mode 100644 index 62b73de..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/PropertiesLauncher$PrefixMatchingArchiveFilter.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/PropertiesLauncher.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/PropertiesLauncher.class deleted file mode 100644 index 9d7f6b9..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/PropertiesLauncher.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/WarLauncher.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/WarLauncher.class deleted file mode 100644 index 42f8078..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/WarLauncher.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/Archive$Entry.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/Archive$Entry.class deleted file mode 100644 index b713375..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/Archive$Entry.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/Archive$EntryFilter.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/Archive$EntryFilter.class deleted file mode 100644 index 32429b6..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/Archive$EntryFilter.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/Archive.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/Archive.class deleted file mode 100644 index 8bede6e..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/Archive.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive$AbstractIterator.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive$AbstractIterator.class deleted file mode 100644 index ca5bbcc..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive$AbstractIterator.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive$ArchiveIterator.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive$ArchiveIterator.class deleted file mode 100644 index 1e48eee..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive$ArchiveIterator.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive$EntryIterator.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive$EntryIterator.class deleted file mode 100644 index 5e4f1aa..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive$EntryIterator.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive$FileEntry.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive$FileEntry.class deleted file mode 100644 index 713f2b2..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive$FileEntry.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive$SimpleJarFileArchive.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive$SimpleJarFileArchive.class deleted file mode 100644 index caa9484..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive$SimpleJarFileArchive.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive.class deleted file mode 100644 index de340e1..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/JarFileArchive$AbstractIterator.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/JarFileArchive$AbstractIterator.class deleted file mode 100644 index dec0ba2..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/JarFileArchive$AbstractIterator.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/JarFileArchive$EntryIterator.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/JarFileArchive$EntryIterator.class deleted file mode 100644 index 402aaff..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/JarFileArchive$EntryIterator.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/JarFileArchive$JarFileEntry.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/JarFileArchive$JarFileEntry.class deleted file mode 100644 index 021dd66..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/JarFileArchive$JarFileEntry.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/JarFileArchive$NestedArchiveIterator.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/JarFileArchive$NestedArchiveIterator.class deleted file mode 100644 index b10913a..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/JarFileArchive$NestedArchiveIterator.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/JarFileArchive.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/JarFileArchive.class deleted file mode 100644 index 74d27dd..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/JarFileArchive.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/data/RandomAccessData.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/data/RandomAccessData.class deleted file mode 100644 index 35beeb1..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/data/RandomAccessData.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/data/RandomAccessDataFile$1.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/data/RandomAccessDataFile$1.class deleted file mode 100644 index da81192..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/data/RandomAccessDataFile$1.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/data/RandomAccessDataFile$DataInputStream.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/data/RandomAccessDataFile$DataInputStream.class deleted file mode 100644 index 133c1ce..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/data/RandomAccessDataFile$DataInputStream.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/data/RandomAccessDataFile$FileAccess.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/data/RandomAccessDataFile$FileAccess.class deleted file mode 100644 index 232927c..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/data/RandomAccessDataFile$FileAccess.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/data/RandomAccessDataFile.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/data/RandomAccessDataFile.class deleted file mode 100644 index 76df54e..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/data/RandomAccessDataFile.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/AbstractJarFile$JarFileType.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/AbstractJarFile$JarFileType.class deleted file mode 100644 index 7162c8f..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/AbstractJarFile$JarFileType.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/AbstractJarFile.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/AbstractJarFile.class deleted file mode 100644 index e598e45..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/AbstractJarFile.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/AsciiBytes.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/AsciiBytes.class deleted file mode 100644 index f1b13e5..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/AsciiBytes.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/Bytes.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/Bytes.class deleted file mode 100644 index 89f254f..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/Bytes.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryEndRecord$1.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryEndRecord$1.class deleted file mode 100644 index b37a7a8..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryEndRecord$1.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryEndRecord$Zip64End.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryEndRecord$Zip64End.class deleted file mode 100644 index 6fd20d2..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryEndRecord$Zip64End.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryEndRecord$Zip64Locator.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryEndRecord$Zip64Locator.class deleted file mode 100644 index 71e645a..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryEndRecord$Zip64Locator.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryEndRecord.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryEndRecord.class deleted file mode 100644 index 8529cc6..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryEndRecord.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryFileHeader.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryFileHeader.class deleted file mode 100644 index 6153ca3..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryFileHeader.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryParser.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryParser.class deleted file mode 100644 index 2dd7b04..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryParser.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryVisitor.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryVisitor.class deleted file mode 100644 index d55cf11..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryVisitor.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/FileHeader.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/FileHeader.class deleted file mode 100644 index be87e3e..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/FileHeader.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/Handler.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/Handler.class deleted file mode 100644 index a58135d..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/Handler.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarEntry.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarEntry.class deleted file mode 100644 index 854ddb0..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarEntry.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarEntryCertification.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarEntryCertification.class deleted file mode 100644 index 0e6ce95..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarEntryCertification.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarEntryFilter.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarEntryFilter.class deleted file mode 100644 index 6b57cef..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarEntryFilter.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFile$1.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFile$1.class deleted file mode 100644 index 53a69db..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFile$1.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFile$JarEntryEnumeration.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFile$JarEntryEnumeration.class deleted file mode 100644 index e472a0e..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFile$JarEntryEnumeration.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFile.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFile.class deleted file mode 100644 index 4509514..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFile.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries$1.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries$1.class deleted file mode 100644 index 3f4f053..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries$1.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries$EntryIterator.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries$EntryIterator.class deleted file mode 100644 index 4ae1f70..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries$EntryIterator.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries$Offsets.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries$Offsets.class deleted file mode 100644 index 209ebad..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries$Offsets.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries$Zip64Offsets.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries$Zip64Offsets.class deleted file mode 100644 index 17493a3..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries$Zip64Offsets.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries$ZipOffsets.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries$ZipOffsets.class deleted file mode 100644 index 2774473..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries$ZipOffsets.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries.class deleted file mode 100644 index 958784c..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileWrapper.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileWrapper.class deleted file mode 100644 index 6e90f13..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileWrapper.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarURLConnection$1.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarURLConnection$1.class deleted file mode 100644 index 985c789..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarURLConnection$1.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarURLConnection$JarEntryName.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarURLConnection$JarEntryName.class deleted file mode 100644 index 4a4ba21..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarURLConnection$JarEntryName.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarURLConnection.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarURLConnection.class deleted file mode 100644 index 8c8ac6a..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarURLConnection.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/StringSequence.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/StringSequence.class deleted file mode 100644 index 4c20a60..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/StringSequence.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/ZipInflaterInputStream.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/ZipInflaterInputStream.class deleted file mode 100644 index 0cf74dc..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/ZipInflaterInputStream.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jarmode/JarMode.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jarmode/JarMode.class deleted file mode 100644 index 8bf0f87..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jarmode/JarMode.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jarmode/JarModeLauncher.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jarmode/JarModeLauncher.class deleted file mode 100644 index 073e07d..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jarmode/JarModeLauncher.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jarmode/TestJarMode.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jarmode/TestJarMode.class deleted file mode 100644 index 35e6baf..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jarmode/TestJarMode.class and /dev/null differ diff --git a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/util/SystemPropertyUtils.class b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/util/SystemPropertyUtils.class deleted file mode 100644 index cb0c0b8..0000000 Binary files a/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/util/SystemPropertyUtils.class and /dev/null differ diff --git a/test_member_data.sql b/test_member_data.sql new file mode 100644 index 0000000..9ce38b5 --- /dev/null +++ b/test_member_data.sql @@ -0,0 +1,31 @@ +-- 插入测试的member数据 +-- 首先插入租户数据 +INSERT INTO sys_tenant (name, mobile, create_time, is_delete) VALUES +('测试租户1', '13800000001', NOW(), 0), +('测试租户2', '13800000002', NOW(), 0), +('测试租户3', '13800000003', NOW(), 0); + +-- 插入member数据 +INSERT INTO member (mobile, type, status, create_time, tenant_id) VALUES +-- 供应商 (type=2) +('13800001001', 2, 1, NOW(), 1), +('13800001002', 2, 1, NOW(), 1), +('13800001003', 2, 1, NOW(), 2), +-- 资金方 (type=3) +('13800002001', 3, 1, NOW(), 1), +('13800002002', 3, 1, NOW(), 2), +-- 采购商 (type=4) +('13800003001', 4, 1, NOW(), 1), +('13800003002', 4, 1, NOW(), 2), +('13800003003', 4, 1, NOW(), 3); + +-- 插入member_user数据(用户名信息) +INSERT INTO member_user (member_id, username) VALUES +(1, '供应商A'), +(2, '供应商B'), +(3, '供应商C'), +(4, '资金方A'), +(5, '资金方B'), +(6, '采购商A'), +(7, '采购商B'), +(8, '采购商C'); diff --git a/tradeCattle b/tradeCattle new file mode 160000 index 0000000..30bb0da --- /dev/null +++ b/tradeCattle @@ -0,0 +1 @@ +Subproject commit 30bb0dad3b625aaca4ce1926d4e4eb35e60b6306 diff --git a/修复delivery_edit权限.sql b/修复delivery_edit权限.sql new file mode 100644 index 0000000..1a75113 --- /dev/null +++ b/修复delivery_edit权限.sql @@ -0,0 +1,77 @@ +-- 检查超级管理员权限的完整脚本 +-- 1. 检查超级管理员用户信息 +SELECT + u.id, + u.mobile, + u.name, + u.role_id, + r.role_name, + r.role_code +FROM sys_user u +LEFT JOIN sys_role r ON u.role_id = r.id +WHERE u.mobile = '15900000000'; + +-- 2. 检查 delivery:edit 权限是否存在 +SELECT + id, + name, + authority, + parent_id, + type +FROM sys_menu +WHERE authority = 'delivery:edit'; + +-- 3. 检查超级管理员是否有 delivery:edit 权限 +SELECT + u.mobile, + u.name, + r.role_name, + m.name as menu_name, + m.authority, + rm.role_id, + rm.menu_id +FROM sys_user u +LEFT JOIN sys_role r ON u.role_id = r.id +LEFT JOIN sys_role_menu rm ON r.id = rm.role_id +LEFT JOIN sys_menu m ON rm.menu_id = m.id +WHERE u.mobile = '15900000000' + AND m.authority = 'delivery:edit'; + +-- 4. 如果权限不存在,添加权限 +-- 首先确保 delivery:edit 权限点存在 +INSERT INTO sys_menu (parent_id, type, name, authority, sort, is_delete, create_time) +SELECT + (SELECT id FROM sys_menu WHERE route_url LIKE '%delivery%' OR route_url LIKE '%loading%' LIMIT 1), + 2, + '运送清单编辑', + 'delivery:edit', + 3, + 0, + NOW() +WHERE NOT EXISTS (SELECT 1 FROM sys_menu WHERE authority = 'delivery:edit'); + +-- 5. 确保超级管理员角色有 delivery:edit 权限 +INSERT INTO sys_role_menu (role_id, menu_id) +SELECT + (SELECT id FROM sys_role WHERE role_name = '超级管理员' OR id = 1 LIMIT 1), + (SELECT id FROM sys_menu WHERE authority = 'delivery:edit') +WHERE NOT EXISTS ( + SELECT 1 FROM sys_role_menu rm + INNER JOIN sys_role r ON rm.role_id = r.id + INNER JOIN sys_menu m ON rm.menu_id = m.id + WHERE (r.role_name = '超级管理员' OR r.id = 1) AND m.authority = 'delivery:edit' +); + +-- 6. 最终验证 +SELECT + u.mobile, + u.name, + r.role_name, + m.name as menu_name, + m.authority +FROM sys_user u +LEFT JOIN sys_role r ON u.role_id = r.id +LEFT JOIN sys_role_menu rm ON r.id = rm.role_id +LEFT JOIN sys_menu m ON rm.menu_id = m.id +WHERE u.mobile = '15900000000' + AND m.authority = 'delivery:edit'; diff --git a/修复编辑权限.sql b/修复编辑权限.sql new file mode 100644 index 0000000..ecdc531 --- /dev/null +++ b/修复编辑权限.sql @@ -0,0 +1,36 @@ +-- 修复装车订单编辑权限问题 +-- 1. 确保 delivery:edit 权限存在 +INSERT INTO sys_menu (parent_id, type, name, authority, sort, is_delete, create_time) +SELECT + (SELECT id FROM sys_menu WHERE route_url LIKE '%delivery%' OR route_url LIKE '%loading%' LIMIT 1), + 2, + '运送清单编辑', + 'delivery:edit', + 3, + 0, + NOW() +WHERE NOT EXISTS (SELECT 1 FROM sys_menu WHERE authority = 'delivery:edit'); + +-- 2. 确保超级管理员角色有 delivery:edit 权限 +INSERT INTO sys_role_menu (role_id, menu_id) +SELECT + 1, -- 超级管理员角色ID + (SELECT id FROM sys_menu WHERE authority = 'delivery:edit') +WHERE NOT EXISTS ( + SELECT 1 FROM sys_role_menu rm + WHERE rm.role_id = 1 AND rm.menu_id = (SELECT id FROM sys_menu WHERE authority = 'delivery:edit') +); + +-- 3. 验证权限分配 +SELECT + u.mobile, + u.name, + r.role_name, + m.name as menu_name, + m.authority +FROM sys_user u +LEFT JOIN sys_role r ON u.role_id = r.id +LEFT JOIN sys_role_menu rm ON r.id = rm.role_id +LEFT JOIN sys_menu m ON rm.menu_id = m.id +WHERE u.mobile = '15900000000' + AND m.authority = 'delivery:edit'; diff --git a/修复菜单乱码.sql b/修复菜单乱码.sql new file mode 100644 index 0000000..240f7d3 --- /dev/null +++ b/修复菜单乱码.sql @@ -0,0 +1,31 @@ +-- ============================================ +-- 修复权限管理菜单乱码问题 +-- 请在 Navicat/HeidiSQL/MySQL Workbench 等图形化工具中执行 +-- ============================================ + +-- 设置字符集 +SET NAMES utf8mb4; +SET CHARACTER SET utf8mb4; + +-- 更新菜单名称 +UPDATE `sys_menu` SET `name` = '权限管理' WHERE `id` = 28; +UPDATE `sys_menu` SET `name` = '菜单权限管理' WHERE `id` = 29; +UPDATE `sys_menu` SET `name` = '菜单查询' WHERE `id` = 30; +UPDATE `sys_menu` SET `name` = '菜单新增' WHERE `id` = 31; +UPDATE `sys_menu` SET `name` = '菜单编辑' WHERE `id` = 32; +UPDATE `sys_menu` SET `name` = '菜单删除' WHERE `id` = 33; +UPDATE `sys_menu` SET `name` = '角色分配' WHERE `id` = 34; +UPDATE `sys_menu` SET `name` = '操作权限管理' WHERE `id` = 35; +UPDATE `sys_menu` SET `name` = '权限查询' WHERE `id` = 36; +UPDATE `sys_menu` SET `name` = '权限分配' WHERE `id` = 37; +UPDATE `sys_menu` SET `name` = '角色管理' WHERE `id` = 38; + +-- 验证结果 +SELECT id, parent_id, type, name, route_url, authority +FROM sys_menu +WHERE id >= 28 +ORDER BY parent_id, sort, id; + +-- 显示成功信息 +SELECT '✅ 菜单名称已修复!' as status; + diff --git a/修复验证查询.sql b/修复验证查询.sql new file mode 100644 index 0000000..6b6a07f --- /dev/null +++ b/修复验证查询.sql @@ -0,0 +1,17 @@ +-- 修复验证查询的字段名错误 +-- 检查 sys_role 表的字段结构 +DESCRIBE sys_role; + +-- 正确的验证查询(使用正确的字段名) +SELECT + u.mobile, + u.name, + r.name as role_name, -- 修正:使用 r.name 而不是 r.role_name + m.name as menu_name, + m.authority +FROM sys_user u +LEFT JOIN sys_role r ON u.role_id = r.id +LEFT JOIN sys_role_menu rm ON r.id = rm.role_id +LEFT JOIN sys_menu m ON rm.menu_id = m.id +WHERE u.mobile = '15900000000' + AND m.authority = 'delivery:edit'; diff --git a/完整权限检查.sql b/完整权限检查.sql new file mode 100644 index 0000000..5818528 --- /dev/null +++ b/完整权限检查.sql @@ -0,0 +1,73 @@ +-- 完整检查权限分配和修复 +-- 1. 检查超级管理员用户信息 +SELECT + u.id, + u.mobile, + u.name, + u.role_id, + r.name as role_name +FROM sys_user u +LEFT JOIN sys_role r ON u.role_id = r.id +WHERE u.mobile = '15900000000'; + +-- 2. 检查 delivery:edit 权限是否存在 +SELECT + id, + name, + authority, + parent_id, + type +FROM sys_menu +WHERE authority = 'delivery:edit'; + +-- 3. 如果不存在,创建 delivery:edit 权限 +INSERT INTO sys_menu (parent_id, type, name, authority, sort, is_delete, create_time) +SELECT + (SELECT id FROM sys_menu WHERE route_url LIKE '%delivery%' OR route_url LIKE '%loading%' LIMIT 1), + 2, + '运送清单编辑', + 'delivery:edit', + 3, + 0, + NOW() +WHERE NOT EXISTS (SELECT 1 FROM sys_menu WHERE authority = 'delivery:edit'); + +-- 4. 确保超级管理员角色有 delivery:edit 权限 +INSERT INTO sys_role_menu (role_id, menu_id) +SELECT + 1, -- 超级管理员角色ID + (SELECT id FROM sys_menu WHERE authority = 'delivery:edit') +WHERE NOT EXISTS ( + SELECT 1 FROM sys_role_menu rm + WHERE rm.role_id = 1 AND rm.menu_id = (SELECT id FROM sys_menu WHERE authority = 'delivery:edit') +); + +-- 5. 检查所有 delivery 相关权限 +SELECT + u.mobile, + u.name, + r.name as role_name, + m.name as menu_name, + m.authority +FROM sys_user u +LEFT JOIN sys_role r ON u.role_id = r.id +LEFT JOIN sys_role_menu rm ON r.id = rm.role_id +LEFT JOIN sys_menu m ON rm.menu_id = m.id +WHERE u.mobile = '15900000000' + AND m.authority LIKE '%delivery%' +ORDER BY m.authority; + +-- 6. 检查是否有通配符权限 +SELECT + u.mobile, + u.name, + r.name as role_name, + m.name as menu_name, + m.authority +FROM sys_user u +LEFT JOIN sys_role r ON u.role_id = r.id +LEFT JOIN sys_role_menu rm ON r.id = rm.role_id +LEFT JOIN sys_menu m ON rm.menu_id = m.id +WHERE u.mobile = '15900000000' + AND m.authority = '*:*:*' +ORDER BY m.authority; diff --git a/快速修复权限.sql b/快速修复权限.sql new file mode 100644 index 0000000..cfc1c45 --- /dev/null +++ b/快速修复权限.sql @@ -0,0 +1,41 @@ +-- 快速修复 delivery:edit 权限问题 +-- 1. 删除可能存在的重复权限 +DELETE FROM sys_menu WHERE authority = 'delivery:edit' AND id NOT IN ( + SELECT menu_id FROM sys_role_menu WHERE role_id = 1 +); + +-- 2. 确保 delivery:edit 权限存在 +INSERT INTO sys_menu (parent_id, type, name, authority, sort, is_delete, create_time) +SELECT + (SELECT id FROM sys_menu WHERE route_url LIKE '%delivery%' OR route_url LIKE '%loading%' LIMIT 1), + 2, + '运送清单编辑', + 'delivery:edit', + 3, + 0, + NOW() +WHERE NOT EXISTS (SELECT 1 FROM sys_menu WHERE authority = 'delivery:edit'); + +-- 3. 确保超级管理员有 delivery:edit 权限 +INSERT INTO sys_role_menu (role_id, menu_id) +SELECT + 1, -- 超级管理员角色ID + (SELECT id FROM sys_menu WHERE authority = 'delivery:edit') +WHERE NOT EXISTS ( + SELECT 1 FROM sys_role_menu rm + WHERE rm.role_id = 1 AND rm.menu_id = (SELECT id FROM sys_menu WHERE authority = 'delivery:edit') +); + +-- 4. 验证结果 +SELECT + u.mobile, + u.name, + r.role_name, + m.name as menu_name, + m.authority +FROM sys_user u +LEFT JOIN sys_role r ON u.role_id = r.id +LEFT JOIN sys_role_menu rm ON r.id = rm.role_id +LEFT JOIN sys_menu m ON rm.menu_id = m.id +WHERE u.mobile = '15900000000' + AND m.authority = 'delivery:edit'; diff --git a/快速启动指南.md b/快速启动指南.md new file mode 100644 index 0000000..c573d55 --- /dev/null +++ b/快速启动指南.md @@ -0,0 +1,178 @@ +# 🚀 权限管理功能 - 快速启动指南 + +## 第一步:执行数据库脚本 📊 + +在您的MySQL数据库客户端中执行: + +```bash +c:/cattleTransport/权限管理功能初始化SQL.sql +``` + +这个脚本会: +- ✅ 创建权限管理相关菜单 +- ✅ 设置 15900000000 为超级管理员(密码:123456) +- ✅ 配置所有必要的权限数据 + +## 第二步:启动服务 🔌 + +### 后端已经启动 ✅ + +后端服务正在后台运行: +- 地址:`http://127.0.0.1:16200` + +如需重启后端,执行: +```bash +# 停止Java进程 +taskkill /F /IM java.exe + +# 重新启动 +cd c:\cattleTransport\tradeCattle\aiotagro-cattle-trade +java -jar target\aiotagro-cattletrade-1.0.1.jar +``` + +### 启动前端 + +```bash +cd c:\cattleTransport\pc-cattle-transportation +npm run dev +``` + +前端地址:`http://localhost:8080` + +## 第三步:登录测试 👤 + +### 超级管理员登录 + +- **账号**:`15900000000` +- **密码**:`123456` + +### 测试功能 + +登录后,在系统菜单中找到: + +1. **权限管理** → **菜单权限管理** + - 查看和管理所有系统菜单 + - 新增、编辑、删除菜单项 + +2. **权限管理** → **操作权限管理** + - 管理角色 + - 为角色分配菜单和按钮权限 + +3. **运送清单** → **新增运送清单** + - 测试新的运送清单创建功能 + - 验证权限控制是否生效 + +## 第四步:验证权限功能 ✔️ + +### 验证超级管理员权限 + +1. 使用 15900000000 登录 +2. 确认所有菜单都可见 +3. 确认所有按钮都可点击 +4. 测试新增菜单 +5. 测试为角色分配权限 + +### 创建普通角色并测试 + +1. 进入"操作权限管理" +2. 点击"新增角色",创建"测试角色" +3. 为"测试角色"分配部分权限(如只分配运送清单查看权限) +4. 在用户管理中创建测试用户,分配"测试角色" +5. 退出超级管理员,用测试用户登录 +6. 验证: + - ✅ 只能看到被分配的菜单 + - ✅ 只能看到被分配的按钮 + - ✅ 无权限操作被后端拦截 + - ✅ 只能看到自己创建的数据 + +## 第五步:故障排查 🔧 + +### 问题1:SQL脚本执行失败 + +**检查点**: +- MySQL版本是否支持(建议5.7+) +- 数据库连接是否正常 +- 是否有权限执行DDL和DML语句 + +**解决方案**: +- 分段执行SQL脚本 +- 检查错误提示,手动修复冲突 + +### 问题2:后端启动失败 + +**检查点**: +- 16200端口是否被占用 +- 数据库连接配置是否正确 +- Redis是否启动(如果配置了) + +**解决方案**: +```bash +# 查看后端日志 +cd c:\cattleTransport\tradeCattle\aiotagro-cattle-trade +# 查看控制台输出或日志文件 +``` + +### 问题3:前端访问不了后端API + +**检查点**: +- 后端是否正常启动 +- Vite proxy配置是否正确 +- 浏览器控制台是否有跨域错误 + +**解决方案**: +- 检查 `vite.config.ts` 中的 proxy 配置 +- 确认后端地址为 `http://127.0.0.1:16200` +- 重启前端服务 + +### 问题4:登录后看不到权限管理菜单 + +**检查点**: +- SQL脚本是否执行成功 +- 用户角色是否正确 +- sys_role_menu 表是否有数据 + +**解决方案**: +```sql +-- 检查菜单数据 +SELECT * FROM sys_menu WHERE name LIKE '%权限%'; + +-- 检查用户角色 +SELECT * FROM sys_user WHERE mobile = '15900000000'; + +-- 检查超级管理员权限 +SELECT COUNT(*) FROM sys_role_menu WHERE role_id = 1; +``` + +### 问题5:权限控制不生效 + +**检查点**: +- 登录接口是否返回了permissions字段 +- Pinia store是否保存了权限数据 +- Controller是否添加了@SaCheckPermission注解 + +**解决方案**: +- 清除浏览器缓存和localStorage +- 重新登录 +- 检查浏览器控制台和Network请求 + +## 📚 完整文档 + +- **使用说明**:`c:/cattleTransport/权限管理功能使用说明.md` +- **实施计划**:`c:/cattleTransport/权限管理和运送清单新增功能实施计划.md` +- **SQL脚本**:`c:/cattleTransport/权限管理功能初始化SQL.sql` + +## 🎉 功能亮点 + +1. ✅ **完整的RBAC权限控制** - 角色、菜单、按钮三级权限 +2. ✅ **超级管理员机制** - 一键拥有所有权限 +3. ✅ **数据权限隔离** - 普通用户只能看自己的数据 +4. ✅ **前后端权限联动** - 前端v-hasPermi指令 + 后端@SaCheckPermission注解 +5. ✅ **可视化权限管理** - 树形权限分配界面 +6. ✅ **新增运送清单功能** - PC端完整的创建表单 + +--- + +**祝您使用愉快!** 🎊 + +如有问题,请参考《权限管理功能使用说明.md》文档。 + diff --git a/数据库连接信息和SQL执行指南.md b/数据库连接信息和SQL执行指南.md new file mode 100644 index 0000000..f0f6a3d --- /dev/null +++ b/数据库连接信息和SQL执行指南.md @@ -0,0 +1,314 @@ +# 🗄️ 数据库连接信息和SQL执行指南 + +## 📊 数据库配置信息 + +从后端配置文件 `application-dev.yml` 中提取的数据库信息: + +```yaml +数据库类型: MySQL +主机地址: 129.211.213.226 +端口: 3306 +数据库名: cattletrade +用户名: root +密码: Aiotagro@741 +字符集: UTF-8 +时区: GMT+8 +``` + +--- + +## 🚀 快速执行SQL脚本 + +### 方式一:使用MySQL命令行(推荐) + +```bash +# Windows CMD 或 PowerShell +mysql -h 129.211.213.226 -P 3306 -u root -pAiotagro@741 cattletrade < "c:/cattleTransport/权限管理菜单-精简版.sql" + +# 或者交互式执行 +mysql -h 129.211.213.226 -P 3306 -u root -pAiotagro@741 cattletrade +``` + +进入MySQL后执行: +```sql +source c:/cattleTransport/权限管理菜单-精简版.sql +``` + +--- + +### 方式二:使用Navicat + +1. **新建连接**: + - 连接名:牛只运输系统 + - 主机:`129.211.213.226` + - 端口:`3306` + - 用户名:`root` + - 密码:`Aiotagro@741` + - 数据库:`cattletrade` + +2. **测试连接** → 连接成功后,双击打开 + +3. **执行SQL**: + - 点击"查询" → "新建查询" + - 打开文件:`c:/cattleTransport/权限管理菜单-精简版.sql` + - 点击"运行"按钮(或按 `F5`) + +--- + +### 方式三:使用HeidiSQL + +1. **新建会话**: + - 网络类型:MySQL (TCP/IP) + - 主机名/IP:`129.211.213.226` + - 用户:`root` + - 密码:`Aiotagro@741` + - 端口:`3306` + - 数据库:`cattletrade` + +2. **打开**,右侧选择 `cattletrade` 数据库 + +3. **执行SQL**: + - 点击"文件" → "加载SQL文件" + - 选择:`c:/cattleTransport/权限管理菜单-精简版.sql` + - 点击"执行"(或按 `F9`) + +--- + +### 方式四:使用DBeaver + +1. **新建连接**: + - 数据库:MySQL + - 服务器地址:`129.211.213.226` + - 端口:`3306` + - 数据库:`cattletrade` + - 用户名:`root` + - 密码:`Aiotagro@741` + +2. **测试连接** → 完成 + +3. **执行SQL**: + - 右键数据库 → "SQL编辑器" → "打开SQL脚本" + - 选择:`c:/cattleTransport/权限管理菜单-精简版.sql` + - 点击"执行SQL脚本"(或按 `Ctrl+Enter`) + +--- + +## ✅ 执行后验证 + +### 1. 检查菜单是否创建成功 + +```sql +-- 查看权限管理相关菜单 +SELECT id, parent_id, name, route_url, authority, sort +FROM sys_menu +WHERE name LIKE '%权限%' + AND is_delete = 0 +ORDER BY parent_id, sort; +``` + +**预期结果**:应该看到3条记录: +- 权限管理(父菜单) +- 菜单权限管理(子菜单) +- 操作权限管理(子菜单) + +--- + +### 2. 检查超级管理员账号 + +```sql +-- 查看超级管理员用户 +SELECT id, mobile, name, role_id, status, user_type +FROM sys_user +WHERE mobile = '15900000000'; +``` + +**预期结果**: +- `role_id` 应该为 `1` +- `status` 应该为 `1`(启用) + +--- + +### 3. 检查超级管理员权限 + +```sql +-- 查看超级管理员拥有的权限数量 +SELECT COUNT(*) as '权限总数' +FROM sys_role_menu +WHERE role_id = 1; + +-- 查看具体权限列表(前20条) +SELECT + rm.role_id, + rm.menu_id, + m.name as menu_name, + m.authority, + m.type +FROM sys_role_menu rm +LEFT JOIN sys_menu m ON rm.menu_id = m.id +WHERE rm.role_id = 1 +LIMIT 20; +``` + +**预期结果**: +- 权限总数应该 > 10 +- 应该包含 `permission:menu:view`、`permission:operation:view` 等权限 + +--- + +### 4. 检查菜单按钮权限 + +```sql +-- 查看菜单权限管理的按钮权限 +SELECT + m.id, + m.parent_id, + m.name, + m.authority, + m.type +FROM sys_menu m +WHERE m.parent_id IN ( + SELECT id FROM sys_menu WHERE name = '菜单权限管理' +) +AND m.is_delete = 0; +``` + +**预期结果**:应该看到5个按钮权限: +- 菜单查询 (permission:menu:list) +- 菜单新增 (permission:menu:add) +- 菜单编辑 (permission:menu:edit) +- 菜单删除 (permission:menu:delete) +- 角色分配 (permission:menu:assign) + +--- + +## 🔄 SQL执行后的操作 + +### 重要!必须重新登录 + +SQL脚本执行成功后,**必须**按以下步骤操作: + +1. **退出当前登录** + - 点击系统右上角用户头像 + - 选择"退出登录" + +2. **清除浏览器缓存** + - 按 `Ctrl + Shift + Delete` + - 或按 `F12` 打开开发者工具 + - 在 Application → Storage → Clear site data + +3. **重新登录** + - 账号:`15900000000` + - 密码:`123456` + +4. **刷新页面** + - 按 `F5` 或 `Ctrl + R` + +5. **验证菜单** + - 左侧菜单栏应该出现"权限管理"菜单 + - 点击展开,应该有两个子菜单: + - 菜单权限管理 + - 操作权限管理 + +--- + +## 🐛 故障排查 + +### 问题1:SQL执行报错 + +**错误:Table 'sys_menu' doesn't exist** + +**解决**:检查数据库表是否存在 +```sql +SHOW TABLES LIKE 'sys_%'; +``` + +--- + +**错误:Duplicate entry for key 'PRIMARY'** + +**解决**:菜单已存在,先清理旧数据 +```sql +-- 删除旧的权限管理菜单 +DELETE FROM sys_role_menu +WHERE menu_id IN ( + SELECT id FROM sys_menu WHERE name LIKE '%权限%' +); + +DELETE FROM sys_menu WHERE name LIKE '%权限%'; + +-- 然后重新执行SQL脚本 +``` + +--- + +### 问题2:登录后菜单不显示 + +**可能原因1:用户角色不正确** + +```sql +-- 修正用户角色 +UPDATE sys_user +SET role_id = 1 +WHERE mobile = '15900000000'; +``` + +**可能原因2:角色权限未分配** + +```sql +-- 重新分配所有权限给超级管理员 +DELETE FROM sys_role_menu WHERE role_id = 1; +INSERT INTO sys_role_menu (role_id, menu_id) +SELECT 1, id FROM sys_menu WHERE is_delete = 0; +``` + +**可能原因3:未清除缓存** + +- 清除浏览器缓存 +- 清除localStorage +- 重新登录 + +--- + +### 问题3:连接数据库失败 + +**检查网络**: +```bash +# 测试能否ping通数据库服务器 +ping 129.211.213.226 + +# 测试端口是否开放 +telnet 129.211.213.226 3306 +``` + +**检查防火墙**: +- 确认本地防火墙允许访问3306端口 +- 确认云服务器安全组开放了3306端口 + +--- + +## 📞 联系信息 + +- **数据库服务器**:`129.211.213.226:3306` +- **后端API**:`http://127.0.0.1:16200/api` +- **前端界面**:`http://localhost:8080` + +--- + +## 📝 需要执行的SQL文件 + +1. **精简版**(推荐):`c:/cattleTransport/权限管理菜单-精简版.sql` + - 只创建核心菜单和权限 + - 执行速度快 + - 适合快速测试 + +2. **完整版**:`c:/cattleTransport/权限管理功能初始化SQL.sql` + - 包含所有功能 + - 包含运送清单权限 + - 更全面的配置 + +**建议先执行精简版,测试成功后再执行完整版。** + +--- + +**祝您顺利!** 🎉 + diff --git a/权限管理功能使用说明.md b/权限管理功能使用说明.md new file mode 100644 index 0000000..fbe2fbe --- /dev/null +++ b/权限管理功能使用说明.md @@ -0,0 +1,568 @@ +# 权限管理功能使用说明 + +## 📋 功能概述 + +本次开发完成了完整的权限管理系统,包括: + +1. **菜单权限管理** - 管理系统菜单树和菜单项 +2. **操作权限管理** - 为不同角色分配菜单和按钮操作权限 +3. **超级管理员** - 15900000000 账号拥有所有权限 + +--- + +## 🗂️ 部署步骤 + +### 第一步:执行数据库初始化脚本 + +在数据库中执行 `权限管理功能初始化SQL.sql` 文件,该脚本会: + +- ✅ 创建"权限管理"父菜单 +- ✅ 创建"菜单权限管理"子菜单 +- ✅ 创建"操作权限管理"子菜单 +- ✅ 为这些菜单添加对应的按钮权限 +- ✅ 创建或更新超级管理员角色(ID=1) +- ✅ 设置 15900000000 为超级管理员账号 +- ✅ 为超级管理员分配所有菜单权限 +- ✅ 为运送清单功能添加完整的权限点 + +**执行方式**: +```sql +-- 在MySQL客户端或管理工具中执行 +source /path/to/权限管理功能初始化SQL.sql; +-- 或直接复制粘贴SQL内容执行 +``` + +### 第二步:重新编译并启动后端 + +```bash +# 进入后端项目根目录 +cd c:\cattleTransport\tradeCattle + +# 清理并编译安装所有模块 +mvn clean install -DskipTests + +# 进入业务模块 +cd aiotagro-cattle-trade + +# 启动后端服务 +mvn spring-boot:run + +# 或使用jar包启动 +java -jar target/aiotagro-cattletrade-1.0.1.jar +``` + +**后端服务地址**:`http://127.0.0.1:16200` + +### 第三步:启动前端 + +```bash +# 进入前端项目目录 +cd c:\cattleTransport\pc-cattle-transportation + +# 安装依赖(首次或有新依赖时) +npm install + +# 启动开发服务器 +npm run dev +``` + +**前端访问地址**:`http://localhost:8080` + +--- + +## 👤 超级管理员账号 + +### 登录信息 + +- **账号**:`15900000000` +- **密码**:`123456` (如果是SQL脚本新创建的账号) +- **角色**:超级管理员(roleId=1) +- **权限**:拥有系统所有权限(*:*:*) + +### 特权说明 + +超级管理员具有以下特权: + +1. ✅ **绕过所有权限检查** - 自动拥有所有操作权限 +2. ✅ **查看所有数据** - 不受数据权限限制,可以看到所有用户创建的数据 +3. ✅ **管理权限** - 可以为其他角色分配权限 +4. ✅ **管理菜单** - 可以增删改菜单和按钮权限 + +--- + +## 🎯 功能使用指南 + +### 1. 菜单权限管理 + +**访问路径**:系统主菜单 → 权限管理 → 菜单权限管理 + +**功能列表**: + +- ✅ **查看菜单树** - 以树形结构展示所有系统菜单 +- ✅ **新增菜单** - 添加新的菜单或按钮权限 +- ✅ **编辑菜单** - 修改菜单信息 +- ✅ **删除菜单** - 软删除菜单(is_delete=1) + +**字段说明**: + +| 字段 | 说明 | 示例 | +|------|------|------| +| 菜单名称 | 显示在系统中的菜单名称 | 权限管理 | +| 菜单类型 | 1=菜单(页面),2=按钮(操作) | 1 | +| 路由地址 | 前端路由路径 | /permission/menu | +| 组件路径 | Vue组件路径 | permission/menuPermission | +| 权限标识 | 后端权限检查标识 | permission:menu:view | +| 图标 | Element Plus图标名称 | el-icon-lock | +| 排序 | 菜单显示顺序 | 1 | + +**操作步骤**: + +1. 点击"新增菜单"按钮 +2. 选择上级菜单(可选,默认为顶级菜单) +3. 选择菜单类型(菜单/按钮) +4. 填写必填信息:菜单名称、权限标识 +5. 如果是菜单类型,还需填写路由地址和组件路径 +6. 设置排序号 +7. 点击"确定"保存 + +--- + +### 2. 操作权限管理 + +**访问路径**:系统主菜单 → 权限管理 → 操作权限管理 + +**功能列表**: + +- ✅ **角色管理** - 新增、编辑、删除角色 +- ✅ **权限分配** - 为角色分配菜单和按钮权限 +- ✅ **查看权限** - 查看角色当前拥有的权限 + +**左侧:角色列表** +- 显示所有系统角色 +- 点击角色行可查看和编辑该角色的权限 +- 可以新增、编辑、删除角色(超级管理员角色不可删除) + +**右侧:权限树** +- 以树形结构显示所有菜单和按钮权限 +- 勾选表示该角色拥有该权限 +- 支持级联选择(选中父菜单会自动选中子项) + +**操作步骤**: + +#### 新增角色 +1. 点击左侧"新增角色"按钮 +2. 输入角色名称和描述 +3. 点击"确定"保存 + +#### 为角色分配权限 +1. 在左侧角色列表中点击选中某个角色 +2. 右侧会显示权限树 +3. 勾选该角色需要的菜单和按钮权限 +4. 点击右上角"保存权限"按钮 + +--- + +## 🔐 权限标识规范 + +系统采用统一的权限标识命名规范:`模块:资源:操作` + +### 示例 + +| 权限标识 | 说明 | 对应功能 | +|---------|------|---------| +| `permission:menu:view` | 权限-菜单-查看 | 查看菜单权限管理页面 | +| `permission:menu:list` | 权限-菜单-列表 | 查询菜单列表 | +| `permission:menu:add` | 权限-菜单-新增 | 新增菜单 | +| `permission:menu:edit` | 权限-菜单-编辑 | 编辑菜单 | +| `permission:menu:delete` | 权限-菜单-删除 | 删除菜单 | +| `permission:menu:assign` | 权限-菜单-分配 | 分配菜单权限给角色 | +| `permission:operation:view` | 权限-操作-查看 | 查看操作权限管理页面 | +| `permission:operation:list` | 权限-操作-列表 | 查询角色和权限列表 | +| `permission:operation:assign` | 权限-操作-分配 | 分配操作权限 | +| `permission:operation:role` | 权限-操作-角色 | 管理角色(增删改) | +| `delivery:list` | 运送-清单-列表 | 查看运送清单列表 | +| `delivery:add` | 运送-清单-新增 | 新增运送清单 | +| `delivery:edit` | 运送-清单-编辑 | 编辑运送清单 | +| `delivery:delete` | 运送-清单-删除 | 删除运送清单 | +| `delivery:view` | 运送-清单-查看 | 查看运送清单详情 | +| `delivery:check` | 运送-清单-核验 | 核验运送清单 | +| `delivery:assign` | 运送-清单-分配 | 分配设备 | +| `delivery:load` | 运送-清单-装车 | 装车操作 | +| `*:*:*` | 所有权限 | 超级管理员特有 | + +--- + +## 🔧 前端权限控制 + +### 按钮级权限指令 + +在前端使用 `v-hasPermi` 指令控制按钮的显示/隐藏: + +```vue + + + 新增 + + + + + 编辑 + +``` + +### 角色级权限指令 + +使用 `v-hasRole` 指令控制基于角色的显示: + +```vue + + 管理员功能 + +``` + +### 编程式权限判断 + +```javascript +import { useUserStore } from '@/store/user'; + +const userStore = useUserStore(); + +// 判断是否有某个权限 +if (userStore.hasPermission('delivery:add')) { + // 有权限,执行操作 +} + +// 判断是否有某个角色 +if (userStore.hasRole('admin')) { + // 有角色,执行操作 +} +``` + +--- + +## 🛡️ 后端权限控制 + +### 接口级权限注解 + +在Controller方法上使用 `@SaCheckPermission` 注解: + +```java +@RestController +@RequestMapping("/delivery") +public class DeliveryController { + + // 单个权限 + @SaCheckPermission("delivery:list") + @PostMapping("/pageQuery") + public PageResultResponse pageQuery(@RequestBody DeliveryQueryDto dto) { + // ... + } + + // 多个权限(满足其一即可) + @SaCheckPermission(value = {"delivery:add", "delivery:create"}, mode = SaMode.OR) + @PostMapping("/create") + public AjaxResult create(@RequestBody DeliveryCreateDto dto) { + // ... + } +} +``` + +### 数据权限控制 + +使用 `DataScopeUtil` 工具类进行数据权限过滤: + +```java +// 普通用户只能看自己创建的数据,超级管理员可以看所有数据 +LambdaQueryWrapper wrapper = new LambdaQueryWrapper<>(); +DataScopeUtil.applyDataScope(wrapper, Delivery::getCreatedBy); +List list = this.list(wrapper); + +// 用户可以看到自己创建或自己核验的数据 +LambdaQueryWrapper wrapper = new LambdaQueryWrapper<>(); +DataScopeUtil.applyDataScopeWithChecker(wrapper, Delivery::getCreatedBy, Delivery::getCheckBy); +List list = this.list(wrapper); +``` + +### 编程式权限判断 + +```java +import com.aiotagro.common.core.utils.SecurityUtil; + +// 判断是否超级管理员 +if (SecurityUtil.isSuperAdmin()) { + // 是超级管理员,执行特殊逻辑 +} + +// 判断是否有某个权限 +if (SecurityUtil.hasPermission("delivery:add")) { + // 有权限,执行操作 +} + +// 获取当前用户ID +Integer userId = SecurityUtil.getCurrentUserId(); + +// 获取当前用户角色ID +Integer roleId = SecurityUtil.getRoleId(); + +// 获取当前用户权限列表 +List permissions = SecurityUtil.getPermissions(); +``` + +--- + +## 📊 数据库表结构 + +### sys_menu(菜单表) + +| 字段 | 类型 | 说明 | +|------|------|------| +| id | int | 主键 | +| parent_id | int | 父菜单ID(0=顶级菜单) | +| type | tinyint | 类型(1=菜单,2=按钮) | +| name | varchar | 菜单名称 | +| route_url | varchar | 路由地址 | +| page_url | varchar | 组件路径 | +| authority | varchar | 权限标识 | +| icon | varchar | 图标 | +| sort | int | 排序 | +| is_delete | tinyint | 是否删除(0=否,1=是) | +| create_time | datetime | 创建时间 | +| update_time | datetime | 更新时间 | + +### sys_role(角色表) + +| 字段 | 类型 | 说明 | +|------|------|------| +| id | int | 主键 | +| name | varchar | 角色名称 | +| description | varchar | 角色描述 | +| is_delete | tinyint | 是否删除(0=否,1=是) | +| create_time | datetime | 创建时间 | +| update_time | datetime | 更新时间 | + +### sys_role_menu(角色菜单关联表) + +| 字段 | 类型 | 说明 | +|------|------|------| +| id | int | 主键 | +| role_id | int | 角色ID | +| menu_id | int | 菜单ID | + +### sys_user(用户表) + +| 字段 | 类型 | 说明 | +|------|------|------| +| id | int | 主键 | +| mobile | varchar | 手机号 | +| name | varchar | 用户名 | +| password | varchar | 密码(MD5加密) | +| role_id | int | 角色ID | +| user_type | int | 用户类型 | +| status | tinyint | 状态(1=启用) | +| is_delete | tinyint | 是否删除 | +| create_time | datetime | 创建时间 | + +--- + +## 🧪 测试指南 + +### 1. 超级管理员测试 + +**登录账号**:15900000000 / 123456 + +**验证点**: +- ✅ 登录成功后,所有菜单都可见 +- ✅ 所有按钮都可见(不受v-hasPermi限制) +- ✅ 可以查看所有用户创建的数据 +- ✅ 可以进入权限管理模块 +- ✅ 可以新增、编辑、删除菜单 +- ✅ 可以新增、编辑、删除角色 +- ✅ 可以为角色分配权限 + +### 2. 普通角色测试 + +**步骤**: +1. 使用超级管理员登录 +2. 进入"操作权限管理" +3. 新增一个测试角色(如"运输管理员") +4. 为该角色分配部分权限(如只分配运送清单相关权限) +5. 在用户管理中创建或修改一个测试用户,指定其角色为"运输管理员" +6. 退出超级管理员,使用测试用户登录 + +**验证点**: +- ✅ 登录后只能看到被分配的菜单 +- ✅ 只能看到被分配的按钮(其他按钮被v-hasPermi隐藏) +- ✅ 只能看到自己创建的数据(数据权限) +- ✅ 无权限的操作会被后端拦截(返回403) + +### 3. 权限管理功能测试 + +#### 菜单权限管理 +1. 进入"菜单权限管理"页面 +2. 测试新增一个测试菜单 +3. 测试编辑菜单信息 +4. 测试删除菜单(软删除) +5. 验证菜单树的显示是否正确 + +#### 操作权限管理 +1. 进入"操作权限管理"页面 +2. 左侧新增一个测试角色 +3. 点击该角色,右侧显示权限树 +4. 勾选部分菜单和按钮权限 +5. 点击"保存权限" +6. 刷新页面,验证权限是否保存成功 +7. 测试编辑和删除角色 + +--- + +## ❗ 常见问题 + +### Q1: 执行SQL脚本后,菜单没有出现? + +**解决方案**: +1. 检查SQL脚本是否执行成功,查看数据库是否有数据 +2. 检查用户的角色是否被分配了相应菜单权限 +3. 退出重新登录,刷新权限缓存 + +### Q2: 按钮被v-hasPermi隐藏了,但我应该有权限? + +**解决方案**: +1. 检查登录接口返回的permissions字段是否包含该权限 +2. 检查Pinia store中是否正确保存了permissions +3. 退出重新登录,刷新权限 +4. 如果是超级管理员,检查permissions是否包含"*:*:*" + +### Q3: 后端接口返回403,提示无权限? + +**解决方案**: +1. 检查Controller方法上的@SaCheckPermission注解 +2. 检查用户的角色是否被分配了该权限 +3. 检查Sa-Token配置是否正确 +4. 查看后端日志,确认权限检查的详细信息 + +### Q4: 超级管理员看不到其他用户的数据? + +**解决方案**: +1. 检查Service层是否正确使用了DataScopeUtil +2. 检查SecurityUtil.isSuperAdmin()方法是否正确判断 +3. 检查用户的roleId是否为1 + +### Q5: 菜单树显示不正常,层级错乱? + +**解决方案**: +1. 检查sys_menu表的parent_id字段是否正确 +2. 检查sort字段,调整排序 +3. 检查is_delete字段,确认菜单未被软删除 + +--- + +## 📝 开发文档 + +### 新增模块权限的步骤 + +如果要为一个新功能模块添加权限控制: + +#### 1. 数据库添加菜单和权限 + +```sql +-- 添加父菜单 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `route_url`, `page_url`, `authority`, `icon`, `sort`, `is_delete`, `create_time`) +VALUES (0, 1, '新模块', '/newmodule', null, 'newmodule:view', 'el-icon-setting', 30, 0, NOW()); + +SET @parent_id = LAST_INSERT_ID(); + +-- 添加子菜单 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `route_url`, `page_url`, `authority`, `icon`, `sort`, `is_delete`, `create_time`) +VALUES (@parent_id, 1, '功能页面', '/newmodule/function', 'newmodule/function', 'newmodule:function:view', null, 1, 0, NOW()); + +SET @function_id = LAST_INSERT_ID(); + +-- 添加按钮权限 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `authority`, `sort`, `is_delete`, `create_time`) VALUES +(@function_id, 2, '新增', 'newmodule:function:add', 1, 0, NOW()), +(@function_id, 2, '编辑', 'newmodule:function:edit', 2, 0, NOW()), +(@function_id, 2, '删除', 'newmodule:function:delete', 3, 0, NOW()); + +-- 为超级管理员分配新权限 +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) +SELECT 1, id FROM `sys_menu` WHERE `authority` LIKE 'newmodule:%' AND `is_delete` = 0; +``` + +#### 2. 后端Controller添加权限注解 + +```java +@RestController +@RequestMapping("/newmodule") +public class NewModuleController { + + @SaCheckPermission("newmodule:function:list") + @PostMapping("/list") + public AjaxResult list(@RequestBody QueryDto dto) { + // ... + } + + @SaCheckPermission("newmodule:function:add") + @PostMapping("/add") + public AjaxResult add(@RequestBody AddDto dto) { + // ... + } +} +``` + +#### 3. 前端按钮添加权限指令 + +```vue + + 新增 + +``` + +--- + +## 🎉 功能清单 + +本次开发完成的文件清单: + +### 后端文件 +- ✅ `RoleConstants.java` - 角色常量类 +- ✅ `SecurityUtil.java` - 安全工具类(扩展) +- ✅ `DataScopeUtil.java` - 数据权限工具类 +- ✅ `SysMenuController.java` - 菜单权限管理Controller +- ✅ `SysRoleController.java` - 角色管理Controller(扩展) +- ✅ `LoginServiceImpl.java` - 登录Service(扩展,存储权限信息) +- ✅ `DeliveryController.java` - 运送清单Controller(添加权限注解) +- ✅ `DeliveryServiceImpl.java` - 运送清单Service(添加数据权限) +- ✅ `DeliveryCreateDto.java` - 运送清单创建DTO + +### 前端文件 +- ✅ `permission.js` - 权限管理API接口 +- ✅ `menuPermission.vue` - 菜单权限管理页面 +- ✅ `operationPermission.vue` - 操作权限管理页面 +- ✅ `createDeliveryDialog.vue` - 新增运送清单对话框 +- ✅ `user.ts` - 用户Store(扩展,添加权限判断) +- ✅ `login.vue` - 登录页(扩展,保存权限) +- ✅ `loadingOrder.vue` - 运送清单列表(添加权限控制) +- ✅ `shipping.js` - 运送清单API(扩展) + +### 数据库文件 +- ✅ `权限管理功能初始化SQL.sql` - 数据库初始化脚本 + +### 文档文件 +- ✅ `权限管理和运送清单新增功能实施计划.md` - 实施计划文档 +- ✅ `权限管理功能使用说明.md` - 本使用说明文档 + +--- + +## 📞 技术支持 + +如有问题,请检查: + +1. 后端日志:查看权限验证相关错误 +2. 浏览器控制台:查看前端请求和权限判断 +3. 数据库数据:确认菜单、角色、权限数据是否正确 +4. Sa-Token文档:https://sa-token.cc/ + +--- + +**祝使用愉快!** 🎊 + diff --git a/权限管理功能初始化SQL.sql b/权限管理功能初始化SQL.sql new file mode 100644 index 0000000..1f3105b --- /dev/null +++ b/权限管理功能初始化SQL.sql @@ -0,0 +1,152 @@ +-- ============================================ +-- 权限管理功能初始化 SQL +-- 功能:添加权限管理菜单、设置超级管理员 +-- 日期:2025-10-11 +-- ============================================ + +-- ============================================ +-- 1. 添加权限管理父菜单 +-- ============================================ +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `route_url`, `page_url`, `authority`, `icon`, `sort`, `is_delete`, `create_time`) +VALUES (0, 1, '权限管理', '/permission', null, 'permission:view', 'el-icon-lock', 20, 0, NOW()); + +-- 获取刚插入的权限管理父菜单ID(假设为 @permission_parent_id) +SET @permission_parent_id = LAST_INSERT_ID(); + +-- ============================================ +-- 2. 添加子菜单:菜单权限管理 +-- ============================================ +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `route_url`, `page_url`, `authority`, `icon`, `sort`, `is_delete`, `create_time`) +VALUES (@permission_parent_id, 1, '菜单权限管理', '/permission/menu', 'permission/menuPermission', 'permission:menu:view', 'el-icon-menu', 1, 0, NOW()); + +SET @menu_permission_id = LAST_INSERT_ID(); + +-- 菜单权限管理的按钮权限 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `authority`, `sort`, `is_delete`, `create_time`) VALUES +(@menu_permission_id, 2, '菜单查询', 'permission:menu:list', 1, 0, NOW()), +(@menu_permission_id, 2, '菜单新增', 'permission:menu:add', 2, 0, NOW()), +(@menu_permission_id, 2, '菜单编辑', 'permission:menu:edit', 3, 0, NOW()), +(@menu_permission_id, 2, '菜单删除', 'permission:menu:delete', 4, 0, NOW()), +(@menu_permission_id, 2, '角色分配', 'permission:menu:assign', 5, 0, NOW()); + +-- ============================================ +-- 3. 添加子菜单:操作权限管理 +-- ============================================ +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `route_url`, `page_url`, `authority`, `icon`, `sort`, `is_delete`, `create_time`) +VALUES (@permission_parent_id, 1, '操作权限管理', '/permission/operation', 'permission/operationPermission', 'permission:operation:view', 'el-icon-setting', 2, 0, NOW()); + +SET @operation_permission_id = LAST_INSERT_ID(); + +-- 操作权限管理的按钮权限 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `authority`, `sort`, `is_delete`, `create_time`) VALUES +(@operation_permission_id, 2, '权限查询', 'permission:operation:list', 1, 0, NOW()), +(@operation_permission_id, 2, '权限分配', 'permission:operation:assign', 2, 0, NOW()), +(@operation_permission_id, 2, '角色管理', 'permission:operation:role', 3, 0, NOW()); + +-- ============================================ +-- 4. 查找或创建超级管理员角色 +-- ============================================ +-- 查看是否已有ID=1的角色,如果没有则插入 +INSERT INTO `sys_role` (`id`, `name`, `description`, `is_delete`, `create_time`) +SELECT 1, '超级管理员', '拥有系统所有权限', 0, NOW() +WHERE NOT EXISTS (SELECT 1 FROM `sys_role` WHERE `id` = 1); + +-- ============================================ +-- 5. 为超级管理员角色分配所有菜单权限 +-- ============================================ +-- 清空超级管理员的旧权限(可选) +DELETE FROM `sys_role_menu` WHERE `role_id` = 1; + +-- 分配所有菜单权限给超级管理员 +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) +SELECT 1, id FROM `sys_menu` WHERE `is_delete` = 0; + +-- ============================================ +-- 6. 设置15900000000账号为超级管理员 +-- ============================================ +-- 查找该手机号的用户 +UPDATE `sys_user` +SET `role_id` = 1 +WHERE `mobile` = '15900000000' AND `is_delete` = 0; + +-- 如果用户不存在,创建超级管理员账号(密码默认为 123456,已MD5加密) +-- 注意:请根据实际的密码加密方式调整密码值 +INSERT INTO `sys_user` (`mobile`, `name`, `password`, `role_id`, `status`, `user_type`, `is_delete`, `create_time`) +SELECT + '15900000000', + '超级管理员', + 'e10adc3949ba59abbe56e057f20f883e', -- 123456 的MD5值 + 1, + 1, + 1, + 0, + NOW() +WHERE NOT EXISTS ( + SELECT 1 FROM `sys_user` WHERE `mobile` = '15900000000' +); + +-- ============================================ +-- 7. 为运送清单添加完整的权限点(如果还没有) +-- ============================================ +-- 查找运送清单菜单 +SET @delivery_menu_id = (SELECT id FROM `sys_menu` WHERE `route_url` LIKE '%delivery%' OR `route_url` LIKE '%loading%' LIMIT 1); + +-- 如果找到了运送清单菜单,添加权限点 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `authority`, `sort`, `is_delete`, `create_time`) +SELECT @delivery_menu_id, 2, '运送清单查看', 'delivery:list', 1, 0, NOW() +WHERE @delivery_menu_id IS NOT NULL +AND NOT EXISTS (SELECT 1 FROM `sys_menu` WHERE `authority` = 'delivery:list'); + +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `authority`, `sort`, `is_delete`, `create_time`) +SELECT @delivery_menu_id, 2, '运送清单新增', 'delivery:add', 2, 0, NOW() +WHERE @delivery_menu_id IS NOT NULL +AND NOT EXISTS (SELECT 1 FROM `sys_menu` WHERE `authority` = 'delivery:add'); + +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `authority`, `sort`, `is_delete`, `create_time`) +SELECT @delivery_menu_id, 2, '运送清单编辑', 'delivery:edit', 3, 0, NOW() +WHERE @delivery_menu_id IS NOT NULL +AND NOT EXISTS (SELECT 1 FROM `sys_menu` WHERE `authority` = 'delivery:edit'); + +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `authority`, `sort`, `is_delete`, `create_time`) +SELECT @delivery_menu_id, 2, '运送清单删除', 'delivery:delete', 4, 0, NOW() +WHERE @delivery_menu_id IS NOT NULL +AND NOT EXISTS (SELECT 1 FROM `sys_menu` WHERE `authority` = 'delivery:delete'); + +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `authority`, `sort`, `is_delete`, `create_time`) +SELECT @delivery_menu_id, 2, '运送清单查看详情', 'delivery:view', 5, 0, NOW() +WHERE @delivery_menu_id IS NOT NULL +AND NOT EXISTS (SELECT 1 FROM `sys_menu` WHERE `authority` = 'delivery:view'); + +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `authority`, `sort`, `is_delete`, `create_time`) +SELECT @delivery_menu_id, 2, '运送清单核验', 'delivery:check', 6, 0, NOW() +WHERE @delivery_menu_id IS NOT NULL +AND NOT EXISTS (SELECT 1 FROM `sys_menu` WHERE `authority` = 'delivery:check'); + +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `authority`, `sort`, `is_delete`, `create_time`) +SELECT @delivery_menu_id, 2, '设备分配', 'delivery:assign', 7, 0, NOW() +WHERE @delivery_menu_id IS NOT NULL +AND NOT EXISTS (SELECT 1 FROM `sys_menu` WHERE `authority` = 'delivery:assign'); + +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `authority`, `sort`, `is_delete`, `create_time`) +SELECT @delivery_menu_id, 2, '装车操作', 'delivery:load', 8, 0, NOW() +WHERE @delivery_menu_id IS NOT NULL +AND NOT EXISTS (SELECT 1 FROM `sys_menu` WHERE `authority` = 'delivery:load'); + +-- ============================================ +-- 8. 验证数据 +-- ============================================ +-- 查看新增的权限管理菜单 +SELECT * FROM `sys_menu` WHERE `name` LIKE '%权限%' OR `name` LIKE '%permission%'; + +-- 查看超级管理员用户 +SELECT `id`, `mobile`, `name`, `role_id`, `status` FROM `sys_user` WHERE `mobile` = '15900000000'; + +-- 查看超级管理员的权限数量 +SELECT COUNT(*) as '超级管理员权限数' FROM `sys_role_menu` WHERE `role_id` = 1; + +-- ============================================ +-- 执行完成 +-- ============================================ +SELECT '✅ 权限管理功能初始化完成!' as 'Status'; +SELECT '账号: 15900000000, 密码: 123456 (如果是新创建的账号)' as '超级管理员信息'; + diff --git a/权限管理和运送清单新增功能实施计划.md b/权限管理和运送清单新增功能实施计划.md new file mode 100644 index 0000000..e3865be --- /dev/null +++ b/权限管理和运送清单新增功能实施计划.md @@ -0,0 +1,1795 @@ +# 权限管理和运送清单新增功能实施计划 + +**项目名称:** 牛只运输管理系统 +**文档版本:** V1.0 +**创建日期:** 2025-10-11 +**项目路径:** c:\cattleTransport + +--- + +## 一、项目概述 + +### 1.1 背景说明 +本项目旨在完善牛只运输管理系统的权限管理机制,并新增运送清单创建功能。系统采用前后端分离架构: +- **前端:** Vue3 + TypeScript + Pinia + Element Plus +- **后端:** Spring Boot 2.6.13 + MyBatis-Plus + Sa-Token +- **数据库:** MySQL + Redis + +### 1.2 核心目标 +1. 实现基于角色的菜单权限管理和动态路由 +2. 实现基于权限码的操作权限控制(按钮级) +3. 实现基于角色的数据范围隔离 +4. 支持超级管理员全权限访问 +5. 新增运送清单创建功能并进行权限控制 + +--- + +## 二、功能需求详述 + +### 2.1 菜单权限管理 +**需求描述:** +- 由 `sys_menu` 表维护菜单树与权限点 +- 后端根据用户 `role_id` 返回可见菜单列表 +- 前端动态生成路由,仅渲染可见菜单节点 +- 菜单权限调整后,用户重新获取菜单即可动态生效 + +**涉及表:** +- `sys_menu` - 系统菜单表 +- `sys_role_menu` - 角色菜单关联表 +- `sys_role` - 角色表 +- `sys_user` - 用户表 + +### 2.2 操作权限管理 +**需求描述:** +- 基于权限码(`permKey`)控制页面按钮与接口访问 +- 前端通过 `v-hasPermi`/`v-hasRole` 指令控制按钮显示/禁用 +- 后端在 Controller 层使用 `@SaCheckPermission` 注解进行权限拦截 +- 防止前端绕过直接调用接口的越权操作 + +**权限码示例:** +- `delivery:list` - 运送清单查看 +- `delivery:add` - 运送清单新增 +- `delivery:edit` - 运送清单编辑 +- `delivery:delete` - 运送清单删除 +- `delivery:check` - 运送清单核验 +- `delivery:assign` - 设备分配 +- `delivery:load` - 装车操作 + +### 2.3 数据范围隔离 +**需求描述:** +- 登录成功后读取 `sys_user.role_id`,作为数据作用域依据 +- 普通角色仅能访问本角色范围内的数据(创建人或核验人为当前用户) +- 超级管理员可访问全部数据 +- 在 Service 层查询时动态添加数据权限过滤条件 + +### 2.4 超级管理员权限 +**需求描述:** +- 超级管理员具备最高权限与全数据可见性 +- 可以管理所有角色与菜单 +- 建议使用固定角色编码或 ID 标识(如 `role_id = 1` 或 `is_super_admin = 1`) + +### 2.5 运送清单新增功能 +**需求描述:** +- 在运送清单列表页增加"新增"按钮 +- 仅具备 `delivery:add` 权限的用户可见与可操作 +- 打开表单弹窗,填写运送清单信息 +- 提交后调用后端接口创建记录,成功后刷新列表 + +**表单字段:** +- 运输单号(自动生成,格式:yyyyMMddHHmmss) +- 发货方(必填) +- 采购方(必填) +- 车牌号(必填,格式校验) +- 司机姓名(必填) +- 司机电话(必填,手机号校验) +- 主机设备(下拉选择,可选) +- 耳标设备(多选,可选) +- 项圈设备(多选,可选) +- 预计出发时间(必填,日期时间选择器) +- 预计到达时间(必填,必须晚于出发时间) +- 起点地址(必填) +- 目的地地址(必填) +- 牛只数量(必填,正整数) +- 预估重量(公斤,必填,正数) +- 检疫证号(可选) +- 备注(可选,最多500字) + +--- + +## 三、后端开发方案 + +### 3.1 项目结构 +``` +c:/cattleTransport/tradeCattle/ +├── aiotagro-core/ # 核心模块 +│ └── src/main/java/com/aiotagro/common/core/ +│ ├── constant/ +│ │ └── RoleConstants.java # 【新增】角色常量 +│ └── utils/ +│ ├── SecurityUtil.java # 【修改】安全工具类 +│ └── DataScopeUtil.java # 【新增】数据权限工具类 +└── aiotagro-cattle-trade/ # 业务模块 + └── src/main/java/com/aiotagro/cattletrade/ + ├── config/ + │ └── SaTokenConfigure.java # 【修改】Sa-Token配置 + └── business/ + ├── controller/ + │ └── DeliveryController.java # 【修改】运送清单控制器 + ├── service/ + │ ├── LoginService.java + │ └── impl/ + │ ├── LoginServiceImpl.java # 【修改】登录服务实现 + │ └── DeliveryServiceImpl.java # 【修改】运送清单服务实现 + ├── dto/ + │ └── DeliveryCreateDto.java # 【新增】运送清单创建DTO + └── entity/ + ├── SysUser.java + ├── SysRole.java + └── SysMenu.java +``` + +### 3.2 详细实施步骤 + +#### 步骤1:创建角色常量类 +**文件:** `aiotagro-core/src/main/java/com/aiotagro/common/core/constant/RoleConstants.java` + +```java +package com.aiotagro.common.core.constant; + +/** + * 角色相关常量 + */ +public class RoleConstants { + + /** + * 超级管理员角色ID + */ + public static final Integer SUPER_ADMIN_ROLE_ID = 1; + + /** + * 超级管理员角色编码 + */ + public static final String SUPER_ADMIN_ROLE_CODE = "ROLE_SUPER_ADMIN"; + + /** + * 所有权限标识 + */ + public static final String ALL_PERMISSION = "*:*:*"; +} +``` + +#### 步骤2:扩展SecurityUtil工具类 +**文件:** `aiotagro-core/src/main/java/com/aiotagro/common/core/utils/SecurityUtil.java` + +**修改内容:** 添加以下方法 +```java +/** + * 获取当前用户角色ID + */ +public static Integer getRoleId() { + Object roleId = StpUtil.getTokenSession().get("roleId"); + return roleId != null ? Integer.parseInt(roleId.toString()) : null; +} + +/** + * 获取当前用户权限列表 + */ +@SuppressWarnings("unchecked") +public static List getPermissions() { + Object permissions = StpUtil.getTokenSession().get("permissions"); + return permissions != null ? (List) permissions : Collections.emptyList(); +} + +/** + * 判断是否超级管理员 + */ +public static boolean isSuperAdmin() { + Integer roleId = getRoleId(); + return roleId != null && roleId.equals(RoleConstants.SUPER_ADMIN_ROLE_ID); +} + +/** + * 判断是否拥有某个权限 + */ +public static boolean hasPermission(String permission) { + if (isSuperAdmin()) { + return true; + } + List permissions = getPermissions(); + return permissions.contains(RoleConstants.ALL_PERMISSION) || + permissions.contains(permission); +} +``` + +#### 步骤3:创建数据权限工具类 +**文件:** `aiotagro-core/src/main/java/com/aiotagro/common/core/utils/DataScopeUtil.java` + +```java +package com.aiotagro.common.core.utils; + +import com.aiotagro.common.core.constant.RoleConstants; +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; + +/** + * 数据权限工具类 + */ +public class DataScopeUtil { + + /** + * 应用数据权限过滤(基于创建人) + * 超级管理员不过滤,普通用户只能看自己创建的数据 + */ + public static void applyDataScope(LambdaQueryWrapper wrapper, + SFunction createdByField) { + // 超级管理员不过滤 + if (SecurityUtil.isSuperAdmin()) { + return; + } + + // 普通用户只能查看自己创建的数据 + Integer currentUserId = SecurityUtil.getCurrentUserId(); + wrapper.eq(createdByField, currentUserId); + } + + /** + * 应用数据权限过滤(基于创建人或核验人) + * 用户可以看到自己创建或自己核验的数据 + */ + public static void applyDataScopeWithChecker(LambdaQueryWrapper wrapper, + SFunction createdByField, + SFunction checkByField) { + // 超级管理员不过滤 + if (SecurityUtil.isSuperAdmin()) { + return; + } + + // 普通用户可以查看自己创建或自己核验的数据 + Integer currentUserId = SecurityUtil.getCurrentUserId(); + wrapper.and(w -> w.eq(createdByField, currentUserId) + .or() + .eq(checkByField, currentUserId)); + } +} +``` + +#### 步骤4:修改登录服务实现 +**文件:** `aiotagro-cattle-trade/src/main/java/com/aiotagro/cattletrade/business/service/impl/LoginServiceImpl.java` + +**修改 login 方法(第100行后):** 添加权限信息存储 +```java +// 原有代码 +user.setLastLoginTime(new Date()); +userMapper.updateById(user); + +// 登录,并设置用户信息到session +StpUtil.login(user.getId(), SaLoginConfig + .setExtra("username", user.getName()) + .setExtra("mobile", user.getMobile()) + .setExtra("userType", user.getUserType())); + +// ===== 【新增代码开始】 ===== +// 存储角色ID到session +StpUtil.getTokenSession().set("roleId", user.getRoleId()); + +// 查询用户权限列表 +List permissions = queryUserPermissions(user.getRoleId()); +StpUtil.getTokenSession().set("permissions", permissions); + +// 查询用户角色信息 +SysRole role = roleMapper.selectById(user.getRoleId()); +String roleCode = role != null ? role.getCode() : ""; +StpUtil.getTokenSession().set("roleCode", roleCode); +// ===== 【新增代码结束】 ===== + +Map result = new HashMap<>(); +result.put("token", StpUtil.getTokenValue()); +result.put("mobile", user.getMobile()); +result.put("username", user.getName()); +result.put("userType", user.getUserType()); +result.put("roleId", user.getRoleId()); // 【新增】返回角色ID +result.put("permissions", permissions); // 【新增】返回权限列表 +return AjaxResult.success(result); +``` + +**添加查询权限列表的方法:** +```java +/** + * 查询用户权限列表 + */ +private List queryUserPermissions(Integer roleId) { + if (roleId == null) { + return Collections.emptyList(); + } + + // 如果是超级管理员,返回所有权限 + if (roleId.equals(RoleConstants.SUPER_ADMIN_ROLE_ID)) { + return Collections.singletonList(RoleConstants.ALL_PERMISSION); + } + + // 查询角色关联的菜单权限 + List menus = menuMapper.selectMenusByRoleId(roleId); + return menus.stream() + .filter(menu -> StringUtils.isNotEmpty(menu.getAuthority())) + .map(SysMenu::getAuthority) + .distinct() + .collect(Collectors.toList()); +} +``` + +**在 SysMenuMapper 中添加方法:** +```java +/** + * 根据角色ID查询菜单列表 + */ +List selectMenusByRoleId(@Param("roleId") Integer roleId); +``` + +**在 SysMenuMapper.xml 中添加SQL:** +```xml + + SELECT DISTINCT m.* + FROM sys_menu m + INNER JOIN sys_role_menu rm ON m.id = rm.menu_id + WHERE rm.role_id = #{roleId} + AND m.is_delete = 0 + ORDER BY m.sort ASC + +``` + +#### 步骤5:修改DeliveryController添加权限注解 +**文件:** `aiotagro-cattle-trade/src/main/java/com/aiotagro/cattletrade/business/controller/DeliveryController.java` + +**修改内容:** 在类和方法上添加权限注解 +```java +package com.aiotagro.cattletrade.business.controller; + +import cn.dev33.satoken.annotation.SaCheckPermission; // 【新增】导入 +import com.aiotagro.cattletrade.business.dto.*; +import com.aiotagro.cattletrade.business.entity.Delivery; +import com.aiotagro.cattletrade.business.service.IDeliveryService; +import com.aiotagro.common.core.web.domain.AjaxResult; +import com.aiotagro.common.core.web.domain.PageResultResponse; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.*; + +/** + * 运送清单表 前端控制器 + */ +@RestController +@RequestMapping("/delivery") +public class DeliveryController { + + @Autowired + private IDeliveryService deliveryService; + + /** + * 运送清单-分页查询 + */ + @SaCheckPermission("delivery:list") // 【新增】 + @PostMapping(value = "/pageQuery") + public PageResultResponse pageQuery(@RequestBody DeliveryQueryDto dto) { + return deliveryService.pageQuery(dto); + } + + /** + * 运送清单-新增(原有的add方法) + */ + @SaCheckPermission("delivery:add") // 【新增】 + @PostMapping(value = "/add") + public AjaxResult add(@RequestBody DeliveryAddDto dto) { + try{ + return deliveryService.addDelivery(dto); + }catch (Exception e){ + e.printStackTrace(); + return AjaxResult.error(e.getMessage()); + } + } + + /** + * 运送清单-创建(新增的create接口) + */ + @SaCheckPermission("delivery:add") // 【新增】 + @PostMapping(value = "/create") + public AjaxResult create(@Validated @RequestBody DeliveryCreateDto dto) { + try{ + return deliveryService.createDelivery(dto); + }catch (Exception e){ + e.printStackTrace(); + return AjaxResult.error(e.getMessage()); + } + } + + /** + * 运送清单-查询详情 + */ + @SaCheckPermission("delivery:view") // 【新增】 + @GetMapping(value = "/view") + public AjaxResult view(@RequestParam Integer id) { + return deliveryService.viewDelivery(id); + } + + /** + * 运送清单-核验提交 + */ + @SaCheckPermission("delivery:check") // 【新增】 + @PostMapping(value = "/submitCheck") + public AjaxResult submitCheck(@RequestBody Delivery delivery) { + // ... 原有代码 + } + + /** + * 运送清单-编辑 + */ + @SaCheckPermission("delivery:edit") // 【新增】 + @PostMapping(value = "/update") + public AjaxResult update(@RequestBody Delivery delivery) { + // ... 原有代码 + } + + /** + * 运送清单-删除 + */ + @SaCheckPermission("delivery:delete") // 【新增】 + @GetMapping(value = "/delete") + public AjaxResult delete(@RequestParam Integer id) { + // ... 原有代码 + } +} +``` + +#### 步骤6:创建运送清单创建DTO +**文件:** `aiotagro-cattle-trade/src/main/java/com/aiotagro/cattletrade/business/dto/DeliveryCreateDto.java` + +```java +package com.aiotagro.cattletrade.business.dto; + +import lombok.Data; +import javax.validation.constraints.*; +import java.util.Date; +import java.util.List; + +/** + * 运送清单创建DTO + */ +@Data +public class DeliveryCreateDto { + + /** + * 发货方 + */ + @NotBlank(message = "发货方不能为空") + private String shipper; + + /** + * 采购方 + */ + @NotBlank(message = "采购方不能为空") + private String buyer; + + /** + * 车牌号 + */ + @NotBlank(message = "车牌号不能为空") + @Pattern(regexp = "^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领][A-Z][A-Z0-9]{5}[A-Z0-9挂学警港澳]$", + message = "车牌号格式不正确") + private String plateNumber; + + /** + * 司机姓名 + */ + @NotBlank(message = "司机姓名不能为空") + private String driverName; + + /** + * 司机电话 + */ + @NotBlank(message = "司机电话不能为空") + @Pattern(regexp = "^1[3-9]\\d{9}$", message = "手机号格式不正确") + private String driverPhone; + + /** + * 主机设备ID + */ + private Integer serverId; + + /** + * 耳标设备ID列表 + */ + private List eartagIds; + + /** + * 项圈设备ID列表 + */ + private List collarIds; + + /** + * 预计出发时间 + */ + @NotNull(message = "预计出发时间不能为空") + private Date estimatedDepartureTime; + + /** + * 预计到达时间 + */ + @NotNull(message = "预计到达时间不能为空") + private Date estimatedArrivalTime; + + /** + * 起点地址 + */ + @NotBlank(message = "起点地址不能为空") + private String startLocation; + + /** + * 目的地地址 + */ + @NotBlank(message = "目的地地址不能为空") + private String endLocation; + + /** + * 牛只数量 + */ + @NotNull(message = "牛只数量不能为空") + @Min(value = 1, message = "牛只数量至少为1") + private Integer cattleCount; + + /** + * 预估重量(公斤) + */ + @NotNull(message = "预估重量不能为空") + @DecimalMin(value = "0.01", message = "预估重量必须大于0") + private Double estimatedWeight; + + /** + * 检疫证号 + */ + private String quarantineCertNo; + + /** + * 备注 + */ + @Size(max = 500, message = "备注不能超过500字") + private String remark; +} +``` + +#### 步骤7:在DeliveryService中添加创建方法 +**接口文件:** `IDeliveryService.java` + +```java +/** + * 创建运送清单 + */ +AjaxResult createDelivery(DeliveryCreateDto dto); +``` + +**实现文件:** `DeliveryServiceImpl.java` + +```java +@Transactional +@Override +public AjaxResult createDelivery(DeliveryCreateDto dto) { + // 校验时间逻辑 + if (dto.getEstimatedArrivalTime().before(dto.getEstimatedDepartureTime())) { + return AjaxResult.error("预计到达时间必须晚于出发时间"); + } + + // 获取当前登录用户 + Integer userId = SecurityUtil.getCurrentUserId(); + String userName = SecurityUtil.getUserName(); + + // 生成运输单号 + LocalDateTime now = LocalDateTime.now(); + String deliveryNumber = "YS" + now.format(DateTimeFormatter.ofPattern("yyyyMMddHHmmss")); + + // 创建运送清单 + Delivery delivery = new Delivery(); + delivery.setDeliveryNumber(deliveryNumber); + delivery.setShipper(dto.getShipper()); + delivery.setBuyer(dto.getBuyer()); + delivery.setPlateNumber(dto.getPlateNumber()); + delivery.setDriverName(dto.getDriverName()); + delivery.setDriverPhone(dto.getDriverPhone()); + delivery.setEstimatedDepartureTime(dto.getEstimatedDepartureTime()); + delivery.setEstimatedArrivalTime(dto.getEstimatedArrivalTime()); + delivery.setStartLocation(dto.getStartLocation()); + delivery.setEndLocation(dto.getEndLocation()); + delivery.setCattleCount(dto.getCattleCount()); + delivery.setEstimatedWeight(dto.getEstimatedWeight()); + delivery.setQuarantineCertNo(dto.getQuarantineCertNo()); + delivery.setRemark(dto.getRemark()); + delivery.setStatus(1); // 待装车 + delivery.setCreatedBy(userId); + delivery.setCreatedByName(userName); + delivery.setCreateTime(new Date()); + + // 保存运送清单 + this.save(delivery); + + // 如果选择了设备,保存设备关联 + if (dto.getServerId() != null || + CollectionUtils.isNotEmpty(dto.getEartagIds()) || + CollectionUtils.isNotEmpty(dto.getCollarIds())) { + // 保存设备关联逻辑(根据实际业务调整) + saveDeliveryDevices(delivery.getId(), dto); + } + + return AjaxResult.success("创建成功", delivery); +} + +/** + * 保存运送清单设备关联 + */ +private void saveDeliveryDevices(Integer deliveryId, DeliveryCreateDto dto) { + // 根据实际业务实现设备关联逻辑 + // 示例代码,需要根据实际的 DeliveryDevice 表结构调整 +} +``` + +#### 步骤8:修改DeliveryServiceImpl的查询方法 +**文件:** `DeliveryServiceImpl.java` + +**修改 pageQuery 方法:** 应用数据权限过滤 +```java +@Override +public PageResultResponse pageQuery(DeliveryQueryDto dto) { + // 获取当前登录人id + Integer userId = SecurityUtil.getCurrentUserId(); + Page result = PageHelper.startPage(dto.getPageNum(), dto.getPageSize()); + + LambdaQueryWrapper wrapper = new LambdaQueryWrapper<>(); + + // ===== 【修改:应用数据权限过滤】 ===== + if (!SecurityUtil.isSuperAdmin()) { + // 普通用户只能查看自己创建或自己核验的数据 + wrapper.and(w -> w.eq(Delivery::getCreatedBy, userId) + .or() + .eq(Delivery::getCheckBy, userId)); + } + // 否则超级管理员可以看到所有数据 + // ===== 【修改结束】 ===== + + // 运输单号模糊查询 + if(StringUtils.isNotEmpty(dto.getDeliveryNumber())){ + wrapper.like(Delivery::getDeliveryNumber, dto.getDeliveryNumber()); + } + + wrapper.orderByDesc(Delivery::getId); + List list = this.list(wrapper); + + if(CollectionUtils.isNotEmpty(list)){ + list.forEach(delivery -> { + if(userId.equals(delivery.getCheckBy())){ + // 判断是否需要核验,1:需要核验,2:不需要核验 + delivery.setIfCheck(1); + } + }); + } + + return new PageResultResponse(result.getTotal(), list); +} +``` + +#### 步骤9:修改Sa-Token配置(可选) +**文件:** `SaTokenConfigure.java` + +如果需要排除某些路径不进行权限校验,可以修改: +```java +@Override +public void addInterceptors(InterceptorRegistry registry) { + registry.addInterceptor(new SaInterceptor(handler -> StpUtil.checkLogin())) + .addPathPatterns("/**") + .excludePathPatterns( + "/login", // 登录 + "/sendLoginSmsCode", // 发送验证码 + "/common/upload", // 文件上传 + "/warningLog/savaWarn" // 告警保存 + ); +} +``` + +--- + +## 四、前端开发方案 + +### 4.1 项目结构 +``` +pc-cattle-transportation/ +├── src/ +│ ├── api/ +│ │ └── shipping.js # 【修改】运送清单API +│ ├── components/ +│ │ └── common/ +│ ├── directive/ +│ │ └── permission/ +│ │ └── hasPermi.js # 权限指令 +│ ├── store/ +│ │ ├── user.ts # 【修改】用户状态管理 +│ │ └── permission.js # 权限状态管理 +│ ├── utils/ +│ │ ├── permission.js # 权限工具函数 +│ │ └── validate.js # 【修改】表单校验规则 +│ └── views/ +│ └── shipping/ +│ ├── loadingOrder.vue # 【修改】运送清单列表 +│ └── createDeliveryDialog.vue # 【新增】运送清单创建弹窗 +``` + +### 4.2 详细实施步骤 + +#### 步骤1:扩展用户Store +**文件:** `pc-cattle-transportation/src/store/user.ts` + +```typescript +import { defineStore } from 'pinia'; + +export const useUserStore = defineStore('storeUser', { + state: () => { + return { + id: '', + username: '', + token: '', + loginUser: null, + userType: '', + roleId: '', + permissions: [] as string[], // 【新增】权限列表 + roles: [] as string[], // 【新增】角色列表 + }; + }, + persist: { + enabled: true, + strategies: [ + { + key: 'userStore', + storage: localStorage, + }, + ], + }, + getters: { + // 【新增】判断是否有某个权限 + hasPermission: (state) => { + return (permission: string) => { + if (state.permissions.includes('*:*:*')) { + return true; + } + return state.permissions.includes(permission); + }; + }, + // 【新增】判断是否有某个角色 + hasRole: (state) => { + return (role: string) => { + if (state.roles.includes('admin')) { + return true; + } + return state.roles.includes(role); + }; + }, + }, + actions: { + removeAllInfo() { + this.id = ''; + this.username = ''; + this.token = ''; + this.userType = ''; + this.loginUser = null; + this.roleId = ''; + this.permissions = []; // 【新增】 + this.roles = []; // 【新增】 + }, + updateToken(token: string) { + this.token = token; + }, + updateUserType(userType: string) { + this.userType = userType; + }, + updateUserName(userName: string) { + this.username = userName; + }, + updateLoginUser(user: Object) { + // @ts-ignore + this.loginUser = user; + }, + updateLoginUserType(userType: number) { + // @ts-ignore + this.userType = userType; + }, + updateRoleId(roleId: string) { + this.roleId = roleId; + }, + // 【新增】更新权限列表 + updatePermissions(permissions: string[]) { + this.permissions = permissions || []; + }, + // 【新增】更新角色列表 + updateRoles(roles: string[]) { + this.roles = roles || []; + }, + }, +}); +``` + +#### 步骤2:修改登录页面 +**文件:** `pc-cattle-transportation/src/views/login.vue` + +在登录成功的处理逻辑中添加: +```javascript +// 找到登录成功的处理代码,通常在 handleLogin 或类似方法中 +const handleLogin = async () => { + try { + const res = await login(loginForm); + if (res.code === 200) { + const { token, username, userType, roleId, permissions, roles } = res.data; + + // 保存用户信息 + userStore.updateToken(token); + userStore.updateUserName(username); + userStore.updateUserType(userType); + userStore.updateRoleId(roleId); + userStore.updatePermissions(permissions || []); // 【新增】 + userStore.updateRoles(roles || []); // 【新增】 + + // 跳转到首页 + router.push('/'); + } else { + ElMessage.error(res.msg || '登录失败'); + } + } catch (error) { + ElMessage.error('登录失败,请稍后重试'); + } +}; +``` + +#### 步骤3:添加运送清单创建API +**文件:** `pc-cattle-transportation/src/api/shipping.js` + +```javascript +// 在文件末尾添加 +// 运送清单 - 创建 +export function createDelivery(data) { + return request({ + url: '/delivery/create', + method: 'POST', + data, + }); +} + +// 查询可用主机设备列表 +export function getAvailableServers(data) { + return request({ + url: '/jbqServer/availableList', + method: 'POST', + data, + }); +} + +// 查询可用耳标设备列表 +export function getAvailableEartags(data) { + return request({ + url: '/jbqClient/availableList', + method: 'POST', + data, + }); +} + +// 查询可用项圈设备列表 +export function getAvailableCollars(data) { + return request({ + url: '/xqClient/availableList', + method: 'POST', + data, + }); +} +``` + +#### 步骤4:创建运送清单创建弹窗组件 +**文件:** `pc-cattle-transportation/src/views/shipping/createDeliveryDialog.vue` + +```vue + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 取消 + + 提交 + + + + + + + + + +``` + +#### 步骤5:修改运送清单列表页 +**文件:** `pc-cattle-transportation/src/views/shipping/loadingOrder.vue` + +**在模板部分,修改按钮区域:** +```vue + + + + + + 创建装车订单 + + + + 新增运送清单 + + + + + + + + + + + + 编辑 + + + 分配设备 + + + 详情 + + + 查看设备 + + + 删除 + + + 装车 + + + + + + + + + + + + + + + + + + + + +``` + +**在 script 部分,添加导入和方法:** +```javascript +import CreateDeliveryDialog from './createDeliveryDialog.vue'; // 【新增】 + +const CreateDeliveryDialogRef = ref(null); // 【新增】 + +// 【新增】显示创建运送清单对话框 +const showCreateDeliveryDialog = () => { + CreateDeliveryDialogRef.value.open(); +}; +``` + +#### 步骤6:确保权限指令已全局注册 +**文件:** `pc-cattle-transportation/src/directive/index.js` + +确保包含以下内容: +```javascript +import hasPermi from './permission/hasPermi'; +import hasRole from './permission/hasRole'; // 如果有角色指令 + +export default function directive(app) { + app.directive('hasPermi', hasPermi); + app.directive('hasRole', hasRole); // 如果有角色指令 +} +``` + +在 `main.ts` 中确保已引入: +```typescript +import directive from './directive'; + +const app = createApp(App); +directive(app); // 注册自定义指令 +``` + +--- + +## 五、数据库变更 + +### 5.1 可选:添加超级管理员标识字段 + +```sql +-- 在 sys_role 表添加超级管理员标识字段(可选) +ALTER TABLE `sys_role` +ADD COLUMN `is_super_admin` TINYINT(1) DEFAULT 0 COMMENT '是否超级管理员 1-是 0-否' AFTER `description`; + +-- 设置某个角色为超级管理员 +UPDATE `sys_role` SET `is_super_admin` = 1 WHERE `id` = 1; +``` + +### 5.2 确保权限点数据完整 + +在 `sys_menu` 表中添加运送清单相关权限点(如果不存在): + +```sql +-- 运送清单菜单(假设父级菜单ID为2) +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `route_url`, `page_url`, `authority`, `icon`, `sort`) +VALUES (2, 1, '运送清单', '/shipping/list', 'shipping/loadingOrder', 'delivery:list', 'icon-shipping', 10); + +-- 获取刚插入的菜单ID,假设为100 +SET @menu_id = LAST_INSERT_ID(); + +-- 运送清单按钮权限 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `authority`, `sort`) VALUES +(@menu_id, 2, '运送清单新增', 'delivery:add', 1), +(@menu_id, 2, '运送清单编辑', 'delivery:edit', 2), +(@menu_id, 2, '运送清单删除', 'delivery:delete', 3), +(@menu_id, 2, '运送清单查看', 'delivery:view', 4), +(@menu_id, 2, '运送清单核验', 'delivery:check', 5), +(@menu_id, 2, '设备分配', 'delivery:assign', 6), +(@menu_id, 2, '装车操作', 'delivery:load', 7); +``` + +### 5.3 为角色分配权限 + +```sql +-- 为某个角色(假设role_id=2)分配运送清单权限 +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) +SELECT 2, id FROM `sys_menu` WHERE `authority` LIKE 'delivery:%'; +``` + +--- + +## 六、测试计划 + +### 6.1 权限测试 + +#### 6.1.1 菜单权限测试 +1. **测试场景:** 不同角色登录系统 +2. **测试步骤:** + - 创建2个角色:超级管理员、普通操作员 + - 为普通操作员分配部分菜单权限(不包含某些菜单) + - 分别用两个角色的账号登录 +3. **预期结果:** + - 超级管理员能看到所有菜单 + - 普通操作员只能看到被分配的菜单 + - 未分配的菜单在侧边栏不显示 + +#### 6.1.2 按钮权限测试 +1. **测试场景:** 运送清单列表页按钮权限 +2. **测试步骤:** + - 创建角色A:有 `delivery:list` 和 `delivery:view` 权限 + - 创建角色B:有 `delivery:list`、`delivery:view`、`delivery:add`、`delivery:edit` 权限 + - 分别用两个角色的账号登录,访问运送清单页面 +3. **预期结果:** + - 角色A用户:能看到"详情"、"查看设备"按钮,看不到"新增"、"编辑"、"删除"按钮 + - 角色B用户:能看到"新增"、"编辑"、"详情"按钮 + +#### 6.1.3 接口权限测试 +1. **测试场景:** 通过Postman直接调用接口 +2. **测试步骤:** + - 使用普通操作员token(无 `delivery:add` 权限) + - 直接调用 `POST /api/delivery/create` 接口 +3. **预期结果:** + - 接口返回权限不足错误(403或自定义错误码) + - 数据库未创建记录 + +### 6.2 数据隔离测试 + +#### 6.2.1 普通用户数据隔离 +1. **测试场景:** 普通用户只能看到自己的数据 +2. **测试步骤:** + - 创建用户A(roleId=2)创建运送清单数据 + - 创建用户B(roleId=3)创建运送清单数据 + - 用户A登录查询运送清单列表 +3. **预期结果:** + - 用户A只能看到自己创建的运送清单 + - 看不到用户B创建的数据 + +#### 6.2.2 超级管理员数据访问 +1. **测试场景:** 超级管理员能看到所有数据 +2. **测试步骤:** + - 多个普通用户创建运送清单数据 + - 超级管理员登录查询运送清单列表 +3. **预期结果:** + - 超级管理员能看到所有用户创建的运送清单 + +### 6.3 运送清单新增功能测试 + +#### 6.3.1 表单校验测试 +1. **必填项校验:** + - 不填写必填项,点击提交 + - 预期:表单提示相应字段不能为空 +2. **格式校验:** + - 输入不符合格式的车牌号(如:ABC123) + - 输入不符合格式的手机号(如:12345678) + - 预期:表单提示格式错误 +3. **逻辑校验:** + - 预计到达时间早于出发时间 + - 预期:表单提示时间逻辑错误 + +#### 6.3.2 设备选择测试 +1. **测试场景:** 选择不同类型设备 +2. **测试步骤:** + - 选择主机设备 + - 选择多个耳标设备 + - 选择多个项圈设备 + - 提交表单 +3. **预期结果:** + - 表单提交成功 + - 设备关联关系正确保存 + - 可以不选择任何设备(设备可选) + +#### 6.3.3 提交成功测试 +1. **测试场景:** 正确填写所有必填项并提交 +2. **测试步骤:** + - 填写所有必填字段 + - 点击提交按钮 +3. **预期结果:** + - 弹窗关闭 + - 提示"创建成功" + - 列表自动刷新,显示新创建的记录 + - 运输单号自动生成,格式正确 + +### 6.4 集成测试 + +#### 6.4.1 完整流程测试 +1. 普通用户登录 +2. 查看运送清单列表(只显示自己的数据) +3. 点击"新增运送清单"按钮(如有权限) +4. 填写表单并提交 +5. 查看新创建的记录 +6. 编辑、删除操作(如有权限) +7. 退出登录,切换其他用户,验证数据隔离 + +#### 6.4.2 权限动态更新测试 +1. 管理员修改某个角色的菜单权限 +2. 该角色的用户重新登录(或刷新页面重新获取菜单) +3. 验证菜单和按钮权限已更新 + +--- + +## 七、实施步骤与时间估算 + +### 7.1 开发阶段 + +| 阶段 | 任务 | 预计时间 | 责任人 | +|------|------|----------|--------| +| **后端开发** | | | | +| 1 | 创建RoleConstants常量类 | 0.5小时 | 后端开发 | +| 2 | 扩展SecurityUtil工具类 | 1小时 | 后端开发 | +| 3 | 创建DataScopeUtil工具类 | 1.5小时 | 后端开发 | +| 4 | 修改LoginServiceImpl,添加权限查询和存储 | 2小时 | 后端开发 | +| 5 | 创建DeliveryCreateDto | 1小时 | 后端开发 | +| 6 | DeliveryController添加权限注解 | 1小时 | 后端开发 | +| 7 | DeliveryServiceImpl实现createDelivery方法 | 2小时 | 后端开发 | +| 8 | DeliveryServiceImpl修改pageQuery应用数据权限 | 1小时 | 后端开发 | +| 9 | 后端单元测试 | 2小时 | 后端开发 | +| **前端开发** | | | | +| 10 | 扩展User Store | 1小时 | 前端开发 | +| 11 | 修改登录页面保存权限信息 | 0.5小时 | 前端开发 | +| 12 | 添加运送清单创建API | 0.5小时 | 前端开发 | +| 13 | 创建createDeliveryDialog组件 | 4小时 | 前端开发 | +| 14 | 修改loadingOrder页面添加按钮和权限控制 | 2小时 | 前端开发 | +| 15 | 前端功能测试 | 2小时 | 前端开发 | +| **数据库** | | | | +| 16 | 添加超级管理员标识字段(可选) | 0.5小时 | DBA | +| 17 | 添加权限点数据 | 1小时 | DBA | +| 18 | 为角色分配权限 | 0.5小时 | DBA | + +**总计开发时间:约 24 小时(3个工作日)** + +### 7.2 测试阶段 + +| 阶段 | 任务 | 预计时间 | 责任人 | +|------|------|----------|--------| +| 1 | 权限测试(菜单、按钮、接口) | 3小时 | 测试工程师 | +| 2 | 数据隔离测试 | 2小时 | 测试工程师 | +| 3 | 运送清单新增功能测试 | 2小时 | 测试工程师 | +| 4 | 集成测试 | 2小时 | 测试工程师 | +| 5 | Bug修复 | 4小时 | 开发团队 | +| 6 | 回归测试 | 2小时 | 测试工程师 | + +**总计测试时间:约 15 小时(2个工作日)** + +### 7.3 部署上线 + +| 阶段 | 任务 | 预计时间 | 责任人 | +|------|------|----------|--------| +| 1 | 准备部署文档 | 1小时 | 开发团队 | +| 2 | 数据库脚本执行 | 0.5小时 | DBA | +| 3 | 后端代码部署 | 1小时 | 运维工程师 | +| 4 | 前端代码部署 | 0.5小时 | 运维工程师 | +| 5 | 生产环境验证测试 | 2小时 | 测试工程师 | + +**总计部署时间:约 5 小时(0.5个工作日)** + +--- + +## 八、技术要点与注意事项 + +### 8.1 后端要点 + +1. **Sa-Token权限注解** + - `@SaCheckPermission("xxx")` - 检查权限 + - `@SaCheckRole("xxx")` - 检查角色 + - `@SaIgnore` - 忽略登录校验(用于登录接口) + +2. **数据权限过滤** + - 在Service层而非Controller层进行数据权限过滤 + - 超级管理员不进行数据过滤 + - 考虑使用MyBatis-Plus的拦截器实现更优雅的数据权限控制 + +3. **异常处理** + - Sa-Token会抛出`NotPermissionException`,需要在全局异常处理器中捕获 + - 返回友好的错误提示给前端 + +4. **性能优化** + - 权限查询结果可以缓存到Redis中 + - 避免每次请求都查询数据库 + +### 8.2 前端要点 + +1. **权限指令使用** + - `v-hasPermi="['xxx']"` - 控制元素显示/隐藏 + - 支持数组形式,满足其一即可显示 + - 支持 `v-hasPermi="['xxx', 'yyy']"` 或运算 + +2. **状态持久化** + - 使用 `pinia-plugin-persistedstate` 持久化用户信息和权限 + - 刷新页面后权限状态不丢失 + +3. **路由守卫** + - 在路由守卫中检查token有效性 + - 动态加载路由时检查权限 + +4. **表单校验** + - 使用Element Plus的表单校验 + - 自定义校验规则处理复杂逻辑 + - 前端校验为辅,后端校验为主 + +### 8.3 安全注意事项 + +1. **防止权限绕过** + - 前端权限控制仅用于UI显示 + - 后端必须进行权限拦截 + - 所有接口都要有权限校验 + +2. **数据隔离** + - 不能只依赖前端传参 + - 后端必须根据token中的用户信息进行数据过滤 + +3. **日志审计** + - 记录权限变更操作 + - 记录敏感数据的访问日志 + +4. **Token安全** + - 设置合理的token过期时间 + - 考虑实现token自动续期 + - 重要操作需要二次验证 + +### 8.4 兼容性考虑 + +1. **浏览器兼容性** + - 测试Chrome、Edge、Firefox等主流浏览器 + - 考虑IE11兼容性(如需要) + +2. **数据库兼容性** + - SQL语句避免使用数据库特有语法 + - 注意字符集和排序规则 + +3. **版本升级** + - 保留向后兼容性 + - 考虑老版本客户端的处理 + +--- + +## 九、风险与应对措施 + +### 9.1 技术风险 + +| 风险 | 影响 | 概率 | 应对措施 | +|------|------|------|----------| +| Sa-Token权限注解失效 | 高 | 低 | 充分测试,准备手动权限校验方案 | +| 数据权限过滤遗漏 | 高 | 中 | Code Review,编写测试用例覆盖 | +| 前端权限状态丢失 | 中 | 低 | 使用持久化插件,添加错误处理 | +| 性能影响 | 中 | 中 | 权限信息缓存,数据库索引优化 | + +### 9.2 业务风险 + +| 风险 | 影响 | 概率 | 应对措施 | +|------|------|------|----------| +| 权限配置错误导致无法访问 | 高 | 中 | 提供超级管理员账号,保留后门 | +| 数据隔离影响现有业务流程 | 中 | 中 | 充分沟通业务需求,灰度发布 | +| 用户培训不足 | 低 | 高 | 准备操作手册,提供培训 | + +### 9.3 进度风险 + +| 风险 | 影响 | 概率 | 应对措施 | +|------|------|------|----------| +| 需求变更 | 中 | 中 | 预留缓冲时间,敏捷开发 | +| 测试问题较多 | 中 | 中 | 提前介入测试,增加测试资源 | +| 依赖环境问题 | 低 | 低 | 提前准备环境,做好备份 | + +--- + +## 十、交付物清单 + +### 10.1 代码文件 + +**后端:** +- `RoleConstants.java` - 角色常量类 +- `SecurityUtil.java` - 安全工具类(修改) +- `DataScopeUtil.java` - 数据权限工具类 +- `LoginServiceImpl.java` - 登录服务实现(修改) +- `DeliveryController.java` - 运送清单控制器(修改) +- `DeliveryCreateDto.java` - 运送清单创建DTO +- `DeliveryServiceImpl.java` - 运送清单服务实现(修改) +- `SysMenuMapper.java` - 菜单Mapper(修改) +- `SysMenuMapper.xml` - 菜单Mapper XML(修改) + +**前端:** +- `user.ts` - 用户状态管理(修改) +- `shipping.js` - 运送清单API(修改) +- `createDeliveryDialog.vue` - 运送清单创建弹窗(新增) +- `loadingOrder.vue` - 运送清单列表页(修改) + +### 10.2 数据库脚本 +- `permission_init.sql` - 权限初始化脚本 +- `alter_table.sql` - 表结构变更脚本(可选) + +### 10.3 文档 +- ✅ `权限管理和运送清单新增功能实施计划.md` - 本文档 +- `部署文档.md` - 部署步骤说明 +- `测试报告.md` - 测试结果报告 +- `用户操作手册.md` - 最终用户使用指南 + +### 10.4 测试用例 +- 权限测试用例Excel +- 数据隔离测试用例Excel +- 运送清单新增功能测试用例Excel + +--- + +## 十一、后续优化建议 + +### 11.1 功能增强 +1. **细粒度数据权限** + - 支持部门级、区域级数据权限 + - 支持自定义数据权限规则 + +2. **权限管理界面** + - 可视化权限配置界面 + - 权限模板快速应用 + +3. **审计日志** + - 权限变更日志 + - 敏感操作日志 + - 日志查询和导出 + +### 11.2 性能优化 +1. **权限缓存优化** + - Redis缓存用户权限 + - 缓存失效策略 + +2. **数据权限优化** + - MyBatis-Plus数据权限插件 + - SQL优化和索引优化 + +3. **前端性能优化** + - 权限指令懒加载 + - 虚拟滚动优化大列表 + +### 11.3 安全加固 +1. **双因素认证** + - 敏感操作需要短信验证码 + - 登录需要图形验证码 + +2. **会话管理** + - 异常登录检测 + - 单设备登录限制 + +3. **数据加密** + - 敏感数据加密存储 + - 传输数据加密 + +--- + +## 十二、联系方式 + +**项目负责人:** [填写] +**技术负责人:** [填写] +**项目周期:** 2025-10-11 ~ 2025-10-15 +**文档更新日期:** 2025-10-11 + +--- + +**文档结束** + diff --git a/权限管理菜单-UTF8.sql b/权限管理菜单-UTF8.sql new file mode 100644 index 0000000..77ba09b --- /dev/null +++ b/权限管理菜单-UTF8.sql @@ -0,0 +1,45 @@ +-- 设置字符集 +SET NAMES utf8mb4; +SET CHARACTER SET utf8mb4; + +-- 1. 添加权限管理父菜单 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `route_url`, `page_url`, `authority`, `icon`, `sort`, `is_delete`, `create_time`) +VALUES (0, 1, '权限管理', '/permission', null, 'permission:view', 'el-icon-lock', 20, 0, NOW()); + +SET @permission_parent_id = LAST_INSERT_ID(); + +-- 2. 添加菜单权限管理子菜单 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `route_url`, `page_url`, `authority`, `icon`, `sort`, `is_delete`, `create_time`) +VALUES (@permission_parent_id, 1, '菜单权限管理', '/permission/menu', 'permission/menuPermission', 'permission:menu:view', 'el-icon-menu', 1, 0, NOW()); + +SET @menu_permission_id = LAST_INSERT_ID(); + +-- 菜单权限管理的按钮权限 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `authority`, `sort`, `is_delete`, `create_time`) VALUES +(@menu_permission_id, 2, '菜单查询', 'permission:menu:list', 1, 0, NOW()), +(@menu_permission_id, 2, '菜单新增', 'permission:menu:add', 2, 0, NOW()), +(@menu_permission_id, 2, '菜单编辑', 'permission:menu:edit', 3, 0, NOW()), +(@menu_permission_id, 2, '菜单删除', 'permission:menu:delete', 4, 0, NOW()), +(@menu_permission_id, 2, '角色分配', 'permission:menu:assign', 5, 0, NOW()); + +-- 3. 添加操作权限管理子菜单 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `route_url`, `page_url`, `authority`, `icon`, `sort`, `is_delete`, `create_time`) +VALUES (@permission_parent_id, 1, '操作权限管理', '/permission/operation', 'permission/operationPermission', 'permission:operation:view', 'el-icon-setting', 2, 0, NOW()); + +SET @operation_permission_id = LAST_INSERT_ID(); + +-- 操作权限管理的按钮权限 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `authority`, `sort`, `is_delete`, `create_time`) VALUES +(@operation_permission_id, 2, '权限查询', 'permission:operation:list', 1, 0, NOW()), +(@operation_permission_id, 2, '权限分配', 'permission:operation:assign', 2, 0, NOW()), +(@operation_permission_id, 2, '角色管理', 'permission:operation:role', 3, 0, NOW()); + +-- 4. 为超级管理员分配所有菜单权限 +DELETE FROM `sys_role_menu` WHERE `role_id` = 1; +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) +SELECT 1, id FROM `sys_menu` WHERE `is_delete` = 0; + +-- 验证 +SELECT '菜单创建完成' as status; +SELECT id, parent_id, name, route_url FROM sys_menu WHERE id >= 17 ORDER BY id; + diff --git a/权限管理菜单-精简版.sql b/权限管理菜单-精简版.sql new file mode 100644 index 0000000..b54f79e --- /dev/null +++ b/权限管理菜单-精简版.sql @@ -0,0 +1,88 @@ +-- ============================================ +-- 权限管理菜单 - 精简版快速安装 +-- ============================================ + +-- 1. 添加权限管理父菜单 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `route_url`, `page_url`, `authority`, `icon`, `sort`, `is_delete`, `create_time`) +VALUES (0, 1, '权限管理', '/permission', null, 'permission:view', 'el-icon-lock', 20, 0, NOW()); + +-- 获取刚插入的父菜单ID +SET @permission_parent_id = LAST_INSERT_ID(); + +-- 2. 添加菜单权限管理子菜单 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `route_url`, `page_url`, `authority`, `icon`, `sort`, `is_delete`, `create_time`) +VALUES (@permission_parent_id, 1, '菜单权限管理', '/permission/menu', 'permission/menuPermission', 'permission:menu:view', 'el-icon-menu', 1, 0, NOW()); + +SET @menu_permission_id = LAST_INSERT_ID(); + +-- 菜单权限管理的按钮权限 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `authority`, `sort`, `is_delete`, `create_time`) VALUES +(@menu_permission_id, 2, '菜单查询', 'permission:menu:list', 1, 0, NOW()), +(@menu_permission_id, 2, '菜单新增', 'permission:menu:add', 2, 0, NOW()), +(@menu_permission_id, 2, '菜单编辑', 'permission:menu:edit', 3, 0, NOW()), +(@menu_permission_id, 2, '菜单删除', 'permission:menu:delete', 4, 0, NOW()), +(@menu_permission_id, 2, '角色分配', 'permission:menu:assign', 5, 0, NOW()); + +-- 3. 添加操作权限管理子菜单 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `route_url`, `page_url`, `authority`, `icon`, `sort`, `is_delete`, `create_time`) +VALUES (@permission_parent_id, 1, '操作权限管理', '/permission/operation', 'permission/operationPermission', 'permission:operation:view', 'el-icon-setting', 2, 0, NOW()); + +SET @operation_permission_id = LAST_INSERT_ID(); + +-- 操作权限管理的按钮权限 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `authority`, `sort`, `is_delete`, `create_time`) VALUES +(@operation_permission_id, 2, '权限查询', 'permission:operation:list', 1, 0, NOW()), +(@operation_permission_id, 2, '权限分配', 'permission:operation:assign', 2, 0, NOW()), +(@operation_permission_id, 2, '角色管理', 'permission:operation:role', 3, 0, NOW()); + +-- 4. 确保超级管理员角色存在 +INSERT INTO `sys_role` (`id`, `name`, `description`, `is_delete`, `create_time`) +SELECT 1, '超级管理员', '拥有系统所有权限', 0, NOW() +WHERE NOT EXISTS (SELECT 1 FROM `sys_role` WHERE `id` = 1); + +-- 5. 为超级管理员分配所有菜单权限(包括新增的) +DELETE FROM `sys_role_menu` WHERE `role_id` = 1; +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) +SELECT 1, id FROM `sys_menu` WHERE `is_delete` = 0; + +-- 6. 设置15900000000为超级管理员 +UPDATE `sys_user` +SET `role_id` = 1 +WHERE `mobile` = '15900000000' AND `is_delete` = 0; + +-- 如果用户不存在,创建超级管理员账号 +INSERT INTO `sys_user` (`mobile`, `name`, `password`, `role_id`, `status`, `user_type`, `is_delete`, `create_time`) +SELECT + '15900000000', + '超级管理员', + 'e10adc3949ba59abbe56e057f20f883e', -- 密码:123456 的MD5 + 1, + 1, + 1, + 0, + NOW() +WHERE NOT EXISTS ( + SELECT 1 FROM `sys_user` WHERE `mobile` = '15900000000' +); + +-- ============================================ +-- 验证结果 +-- ============================================ +SELECT '✅ 菜单创建完成!' as 'Status'; + +-- 查看新增的菜单 +SELECT id, parent_id, name, route_url, authority +FROM sys_menu +WHERE name LIKE '%权限%' +ORDER BY parent_id, sort; + +-- 查看超级管理员账号 +SELECT id, mobile, name, role_id, status +FROM sys_user +WHERE mobile = '15900000000'; + +-- 查看超级管理员权限数量 +SELECT COUNT(*) as '权限总数' +FROM sys_role_menu +WHERE role_id = 1; + diff --git a/检查权限分配.sql b/检查权限分配.sql new file mode 100644 index 0000000..2904c94 --- /dev/null +++ b/检查权限分配.sql @@ -0,0 +1,52 @@ +-- 检查超级管理员权限分配情况 +-- 1. 检查超级管理员用户信息 +SELECT + u.id, + u.mobile, + u.name, + u.role_id, + r.name as role_name +FROM sys_user u +LEFT JOIN sys_role r ON u.role_id = r.id +WHERE u.mobile = '15900000000'; + +-- 2. 检查 delivery:edit 权限是否存在 +SELECT + id, + name, + authority, + parent_id, + type +FROM sys_menu +WHERE authority = 'delivery:edit'; + +-- 3. 检查超级管理员是否有 delivery:edit 权限 +SELECT + u.mobile, + u.name, + r.name as role_name, + m.name as menu_name, + m.authority, + rm.role_id, + rm.menu_id +FROM sys_user u +LEFT JOIN sys_role r ON u.role_id = r.id +LEFT JOIN sys_role_menu rm ON r.id = rm.role_id +LEFT JOIN sys_menu m ON rm.menu_id = m.id +WHERE u.mobile = '15900000000' + AND m.authority = 'delivery:edit'; + +-- 4. 检查所有 delivery 相关权限 +SELECT + u.mobile, + u.name, + r.name as role_name, + m.name as menu_name, + m.authority +FROM sys_user u +LEFT JOIN sys_role r ON u.role_id = r.id +LEFT JOIN sys_role_menu rm ON r.id = rm.role_id +LEFT JOIN sys_menu m ON rm.menu_id = m.id +WHERE u.mobile = '15900000000' + AND m.authority LIKE '%delivery%' +ORDER BY m.authority; diff --git a/检查权限分配情况.sql b/检查权限分配情况.sql new file mode 100644 index 0000000..e096a26 --- /dev/null +++ b/检查权限分配情况.sql @@ -0,0 +1,66 @@ +-- 检查权限分配情况 +-- 1. 检查超级管理员用户信息 +SELECT + u.id, + u.mobile, + u.name, + u.role_id, + r.name as role_name +FROM sys_user u +LEFT JOIN sys_role r ON u.role_id = r.id +WHERE u.mobile = '15900000000'; + +-- 2. 检查 delivery:edit 权限是否存在 +SELECT + id, + name, + authority, + parent_id, + type +FROM sys_menu +WHERE authority = 'delivery:edit'; + +-- 3. 检查超级管理员是否有 delivery:edit 权限 +SELECT + u.mobile, + u.name, + r.name as role_name, + m.name as menu_name, + m.authority, + rm.role_id, + rm.menu_id +FROM sys_user u +LEFT JOIN sys_role r ON u.role_id = r.id +LEFT JOIN sys_role_menu rm ON r.id = rm.role_id +LEFT JOIN sys_menu m ON rm.menu_id = m.id +WHERE u.mobile = '15900000000' + AND m.authority = 'delivery:edit'; + +-- 4. 检查超级管理员是否有通配符权限 +SELECT + u.mobile, + u.name, + r.name as role_name, + m.name as menu_name, + m.authority +FROM sys_user u +LEFT JOIN sys_role r ON u.role_id = r.id +LEFT JOIN sys_role_menu rm ON r.id = rm.role_id +LEFT JOIN sys_menu m ON rm.menu_id = m.id +WHERE u.mobile = '15900000000' + AND m.authority = '*:*:*'; + +-- 5. 检查所有 delivery 相关权限 +SELECT + u.mobile, + u.name, + r.name as role_name, + m.name as menu_name, + m.authority +FROM sys_user u +LEFT JOIN sys_role r ON u.role_id = r.id +LEFT JOIN sys_role_menu rm ON r.id = rm.role_id +LEFT JOIN sys_menu m ON rm.menu_id = m.id +WHERE u.mobile = '15900000000' + AND m.authority LIKE '%delivery%' +ORDER BY m.authority; diff --git a/检查超级管理员权限.sql b/检查超级管理员权限.sql new file mode 100644 index 0000000..74b840c --- /dev/null +++ b/检查超级管理员权限.sql @@ -0,0 +1,14 @@ +-- 检查超级管理员权限 +SELECT + u.mobile, + u.name, + r.role_name, + m.name as menu_name, + m.authority +FROM sys_user u +LEFT JOIN sys_role r ON u.role_id = r.id +LEFT JOIN sys_role_menu rm ON r.id = rm.role_id +LEFT JOIN sys_menu m ON rm.menu_id = m.id +WHERE u.mobile = '15900000000' + AND m.authority LIKE '%delivery%' +ORDER BY m.authority; diff --git a/确保delivery_edit权限.sql b/确保delivery_edit权限.sql new file mode 100644 index 0000000..8d301ea --- /dev/null +++ b/确保delivery_edit权限.sql @@ -0,0 +1,41 @@ +-- 确保超级管理员有 delivery:edit 权限 +-- 1. 检查是否存在 delivery:edit 权限点 +SELECT id, name, authority FROM sys_menu WHERE authority = 'delivery:edit'; + +-- 2. 如果不存在,创建 delivery:edit 权限点 +INSERT INTO sys_menu (parent_id, type, name, authority, sort, is_delete, create_time) +SELECT + (SELECT id FROM sys_menu WHERE route_url LIKE '%delivery%' OR route_url LIKE '%loading%' LIMIT 1), + 2, + '运送清单编辑', + 'delivery:edit', + 3, + 0, + NOW() +WHERE NOT EXISTS (SELECT 1 FROM sys_menu WHERE authority = 'delivery:edit'); + +-- 3. 确保超级管理员角色有 delivery:edit 权限 +INSERT INTO sys_role_menu (role_id, menu_id) +SELECT + (SELECT id FROM sys_role WHERE role_name = '超级管理员' OR id = 1 LIMIT 1), + (SELECT id FROM sys_menu WHERE authority = 'delivery:edit') +WHERE NOT EXISTS ( + SELECT 1 FROM sys_role_menu rm + INNER JOIN sys_role r ON rm.role_id = r.id + INNER JOIN sys_menu m ON rm.menu_id = m.id + WHERE r.role_name = '超级管理员' AND m.authority = 'delivery:edit' +); + +-- 4. 验证权限分配 +SELECT + u.mobile, + u.name, + r.role_name, + m.name as menu_name, + m.authority +FROM sys_user u +LEFT JOIN sys_role r ON u.role_id = r.id +LEFT JOIN sys_role_menu rm ON r.id = rm.role_id +LEFT JOIN sys_menu m ON rm.menu_id = m.id +WHERE u.mobile = '15900000000' + AND m.authority = 'delivery:edit'; diff --git a/简化权限修复.sql b/简化权限修复.sql new file mode 100644 index 0000000..90e64db --- /dev/null +++ b/简化权限修复.sql @@ -0,0 +1,64 @@ +-- 简化权限检查和修复 +-- 1. 删除可能存在的重复权限 +DELETE FROM sys_role_menu WHERE role_id = 1 AND menu_id IN ( + SELECT id FROM sys_menu WHERE authority = 'delivery:edit' +); + +-- 2. 确保 delivery:edit 权限存在 +INSERT INTO sys_menu (parent_id, type, name, authority, sort, is_delete, create_time) +SELECT + (SELECT id FROM sys_menu WHERE route_url LIKE '%delivery%' OR route_url LIKE '%loading%' LIMIT 1), + 2, + '运送清单编辑', + 'delivery:edit', + 3, + 0, + NOW() +WHERE NOT EXISTS (SELECT 1 FROM sys_menu WHERE authority = 'delivery:edit'); + +-- 3. 确保超级管理员有 delivery:edit 权限 +INSERT INTO sys_role_menu (role_id, menu_id) +SELECT + 1, -- 超级管理员角色ID + (SELECT id FROM sys_menu WHERE authority = 'delivery:edit') +WHERE NOT EXISTS ( + SELECT 1 FROM sys_role_menu rm + WHERE rm.role_id = 1 AND rm.menu_id = (SELECT id FROM sys_menu WHERE authority = 'delivery:edit') +); + +-- 4. 确保超级管理员有通配符权限 +INSERT INTO sys_menu (parent_id, type, name, authority, sort, is_delete, create_time) +SELECT + 0, -- 根菜单 + 2, + '所有权限', + '*:*:*', + 999, + 0, + NOW() +WHERE NOT EXISTS (SELECT 1 FROM sys_menu WHERE authority = '*:*:*'); + +-- 5. 确保超级管理员有通配符权限 +INSERT INTO sys_role_menu (role_id, menu_id) +SELECT + 1, -- 超级管理员角色ID + (SELECT id FROM sys_menu WHERE authority = '*:*:*') +WHERE NOT EXISTS ( + SELECT 1 FROM sys_role_menu rm + WHERE rm.role_id = 1 AND rm.menu_id = (SELECT id FROM sys_menu WHERE authority = '*:*:*') +); + +-- 6. 验证权限分配 +SELECT + u.mobile, + u.name, + r.name as role_name, + m.name as menu_name, + m.authority +FROM sys_user u +LEFT JOIN sys_role r ON u.role_id = r.id +LEFT JOIN sys_role_menu rm ON r.id = rm.role_id +LEFT JOIN sys_menu m ON rm.menu_id = m.id +WHERE u.mobile = '15900000000' + AND (m.authority = 'delivery:edit' OR m.authority = '*:*:*') +ORDER BY m.authority; diff --git a/重新创建权限管理菜单.sql b/重新创建权限管理菜单.sql new file mode 100644 index 0000000..adcf6fe --- /dev/null +++ b/重新创建权限管理菜单.sql @@ -0,0 +1,67 @@ +-- ============================================ +-- 重新创建权限管理菜单(彻底解决乱码) +-- 请在 Navicat 中执行 +-- ============================================ + +SET NAMES utf8mb4; +SET CHARACTER SET utf8mb4; + +-- 1. 删除旧的乱码数据 +DELETE FROM `sys_role_menu` WHERE `menu_id` >= 28; +DELETE FROM `sys_menu` WHERE `id` >= 28; + +-- 2. 重新创建权限管理父菜单 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `route_url`, `page_url`, `authority`, `icon`, `sort`, `is_delete`, `create_time`) +VALUES (0, 1, '权限管理', '/permission', null, 'permission:view', 'el-icon-lock', 20, 0, NOW()); + +SET @permission_parent_id = LAST_INSERT_ID(); + +-- 3. 创建菜单权限管理子菜单 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `route_url`, `page_url`, `authority`, `icon`, `sort`, `is_delete`, `create_time`) +VALUES (@permission_parent_id, 1, '菜单权限管理', '/permission/menu', 'permission/menuPermission', 'permission:menu:view', 'el-icon-menu', 1, 0, NOW()); + +SET @menu_permission_id = LAST_INSERT_ID(); + +-- 4. 创建菜单权限管理的按钮 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `authority`, `sort`, `is_delete`, `create_time`) VALUES +(@menu_permission_id, 2, '菜单查询', 'permission:menu:list', 1, 0, NOW()), +(@menu_permission_id, 2, '菜单新增', 'permission:menu:add', 2, 0, NOW()), +(@menu_permission_id, 2, '菜单编辑', 'permission:menu:edit', 3, 0, NOW()), +(@menu_permission_id, 2, '菜单删除', 'permission:menu:delete', 4, 0, NOW()), +(@menu_permission_id, 2, '角色分配', 'permission:menu:assign', 5, 0, NOW()); + +-- 5. 创建操作权限管理子菜单 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `route_url`, `page_url`, `authority`, `icon`, `sort`, `is_delete`, `create_time`) +VALUES (@permission_parent_id, 1, '操作权限管理', '/permission/operation', 'permission/operationPermission', 'permission:operation:view', 'el-icon-setting', 2, 0, NOW()); + +SET @operation_permission_id = LAST_INSERT_ID(); + +-- 6. 创建操作权限管理的按钮 +INSERT INTO `sys_menu` (`parent_id`, `type`, `name`, `authority`, `sort`, `is_delete`, `create_time`) VALUES +(@operation_permission_id, 2, '权限查询', 'permission:operation:list', 1, 0, NOW()), +(@operation_permission_id, 2, '权限分配', 'permission:operation:assign', 2, 0, NOW()), +(@operation_permission_id, 2, '角色管理', 'permission:operation:role', 3, 0, NOW()); + +-- 7. 为超级管理员分配所有权限 +DELETE FROM `sys_role_menu` WHERE `role_id` = 1; +INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) +SELECT 1, `id` FROM `sys_menu` WHERE `is_delete` = 0; + +-- 8. 验证结果 +SELECT '✅ 权限管理菜单创建完成!' as status; + +SELECT + m.id, + m.parent_id, + m.type, + m.name, + m.route_url, + m.authority +FROM sys_menu m +WHERE m.id >= (SELECT MIN(id) FROM sys_menu WHERE name = '权限管理') +ORDER BY m.parent_id, m.sort, m.id; + +SELECT CONCAT('超级管理员拥有 ', COUNT(*), ' 个权限') as info +FROM sys_role_menu +WHERE role_id = 1; +