commit 7788419b458fe2819843c5e19258f49d93df2844 Author: xuqiuyun <1113560936@qq.com> Date: Sat Oct 11 10:43:53 2025 +0800 Initial commit: cattle transportation system 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 new file mode 100644 index 0000000..3a7d82e --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/application-demo.yml @@ -0,0 +1,114 @@ +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 new file mode 100644 index 0000000..078a439 --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/application-dev.yml @@ -0,0 +1,113 @@ +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 new file mode 100644 index 0000000..8fb7ab1 --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/application-prod.yml @@ -0,0 +1,112 @@ +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 new file mode 100644 index 0000000..758c1b9 --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/application.yml @@ -0,0 +1,109 @@ +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 new file mode 100644 index 0000000..1d1e227 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/AiotagroCattleTradeApplication.class 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 new file mode 100644 index 0000000..587c9a1 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/CommonControl.class 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 new file mode 100644 index 0000000..a63d5c0 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/DeliveryController.class 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 new file mode 100644 index 0000000..efca6ed Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/DeliveryDeviceController.class 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 new file mode 100644 index 0000000..81cd615 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/JbqClientController.class 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 new file mode 100644 index 0000000..2e81327 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/JbqClientLogController.class 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 new file mode 100644 index 0000000..6b23275 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/JbqServerController.class 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 new file mode 100644 index 0000000..22567ab Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/JbqServerLogController.class 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 new file mode 100644 index 0000000..dce3f40 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/LoginControl.class 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 new file mode 100644 index 0000000..00e62c1 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/MemberController.class 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 new file mode 100644 index 0000000..f303244 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/PayFundControl.class 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 new file mode 100644 index 0000000..a933b26 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/PayPurchaserControl.class 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 new file mode 100644 index 0000000..74be602 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/SysRoleController.class 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 new file mode 100644 index 0000000..b08dc42 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/SysTenantController.class 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 new file mode 100644 index 0000000..f290492 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/SysUserController.class 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 new file mode 100644 index 0000000..c350212 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/WarningLogController.class 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 new file mode 100644 index 0000000..92b2084 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/WechatDeliveryControlller.class 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 new file mode 100644 index 0000000..549f207 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/XqClientController.class 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 new file mode 100644 index 0000000..4d17ea6 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/controller/XqClientLogController.class 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 new file mode 100644 index 0000000..26fe864 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/AllotDeviceDto.class 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 new file mode 100644 index 0000000..145fe53 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/AllotListDto.class 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 new file mode 100644 index 0000000..f00b57a Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/ArrangeDeviceDto.class 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 new file mode 100644 index 0000000..1d889e1 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/ArrangeJbqDto.class 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 new file mode 100644 index 0000000..3351c86 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/BaseDto.class 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 new file mode 100644 index 0000000..c55d39f Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/CarLoadDto.class 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 new file mode 100644 index 0000000..44630aa Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeliverListDto.class 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 new file mode 100644 index 0000000..0597ed3 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeliveryAddDto.class 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 new file mode 100644 index 0000000..90e7fc2 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeliveryDeviceDto.class 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 new file mode 100644 index 0000000..48199b1 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeliveryOrderAddDto.class 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 new file mode 100644 index 0000000..03ab170 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeliveryQueryDto.class 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 new file mode 100644 index 0000000..47dd2fa Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DeviceDto.class 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 new file mode 100644 index 0000000..4e33533 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/DriverDto.class 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 new file mode 100644 index 0000000..52ef22b Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/FileDto.class 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 new file mode 100644 index 0000000..2e8d67a Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/JbqLogDto.class 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 new file mode 100644 index 0000000..f572cbb Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/LoginDto.class 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 new file mode 100644 index 0000000..fbb999e Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/ServerLocationDto.class 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 new file mode 100644 index 0000000..1e9ffd7 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/SysRoleDto.class 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 new file mode 100644 index 0000000..213911d Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/SysTenantDto.class 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 new file mode 100644 index 0000000..19eb185 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/SysUserDto.class 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 new file mode 100644 index 0000000..8950287 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/UpdateDeviceDto.class 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 new file mode 100644 index 0000000..32643e8 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/UserDto.class 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 new file mode 100644 index 0000000..474fb20 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/WarningDetailDto.class 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 new file mode 100644 index 0000000..389b139 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/WechatLoginInDto.class 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 new file mode 100644 index 0000000..670b97e Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/XqLocationDto.class 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 new file mode 100644 index 0000000..8952814 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/pay/PayCallbackDto.class 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 new file mode 100644 index 0000000..9488207 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/pay/PayFundPrepayDto.class 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 new file mode 100644 index 0000000..be72781 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/dto/pay/PayPurchaserPrepayDto.class 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 new file mode 100644 index 0000000..40ff80a Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/Delivery.class 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 new file mode 100644 index 0000000..3dbafae Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/DeliveryDevice.class 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 new file mode 100644 index 0000000..d96f75d Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/JbqClient.class 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 new file mode 100644 index 0000000..8cd18e4 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/JbqClientLog.class 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 new file mode 100644 index 0000000..be5cd94 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/JbqServer.class 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 new file mode 100644 index 0000000..91e7596 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/JbqServerLog.class 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 new file mode 100644 index 0000000..8507faa Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/Member.class 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 new file mode 100644 index 0000000..c7e5795 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/MemberDriver.class 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 new file mode 100644 index 0000000..b42b05b Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/MemberUser.class 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 new file mode 100644 index 0000000..ff98e06 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/PayOrder.class 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 new file mode 100644 index 0000000..5a528f4 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/PayOrderItem.class 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 new file mode 100644 index 0000000..029f407 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/SysMenu.class 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 new file mode 100644 index 0000000..10e6a54 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/SysRole.class 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 new file mode 100644 index 0000000..9066491 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/SysRoleMenu.class 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 new file mode 100644 index 0000000..386909a Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/SysTenant.class 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 new file mode 100644 index 0000000..081875c Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/SysUser.class 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 new file mode 100644 index 0000000..be3ef0f Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/WarningLog.class 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 new file mode 100644 index 0000000..bec46ad Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/XqClient.class 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 new file mode 100644 index 0000000..1406cd6 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/entity/XqClientLog.class 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 new file mode 100644 index 0000000..2fcca07 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/DeliveryDeviceMapper.class 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 new file mode 100644 index 0000000..5c23608 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/DeliveryMapper.class 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 new file mode 100644 index 0000000..f809220 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/JbqClientLogMapper.class 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 new file mode 100644 index 0000000..3f4b017 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/JbqClientMapper.class 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 new file mode 100644 index 0000000..0a527b7 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/JbqServerLogMapper.class 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 new file mode 100644 index 0000000..c5771f4 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/JbqServerMapper.class 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 new file mode 100644 index 0000000..ef936f8 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/MemberDriverMapper.class 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 new file mode 100644 index 0000000..8a6c8cd Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/MemberMapper.class 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 new file mode 100644 index 0000000..c579f48 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/MemberUserMapper.class 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 new file mode 100644 index 0000000..7ba943e Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/PayOrderItemMapper.class 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 new file mode 100644 index 0000000..8577bca Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/PayOrderMapper.class 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 new file mode 100644 index 0000000..bce2c1c Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/SysMenuMapper.class 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 new file mode 100644 index 0000000..76a1de6 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/SysRoleMapper.class 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 new file mode 100644 index 0000000..2c4a05b Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/SysRoleMenuMapper.class 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 new file mode 100644 index 0000000..b1a30a8 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/SysTenantMapper.class 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 new file mode 100644 index 0000000..81a1f5f Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/SysUserMapper.class 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 new file mode 100644 index 0000000..900d2ca Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/WarningLogMapper.class 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 new file mode 100644 index 0000000..7c78c1e Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/XqClientLogMapper.class 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 new file mode 100644 index 0000000..8f8c01d Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/mapper/XqClientMapper.class 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 new file mode 100644 index 0000000..ba5fdd8 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IDeliveryDeviceService.class 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 new file mode 100644 index 0000000..24c2346 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IDeliveryService.class 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 new file mode 100644 index 0000000..a053904 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IJbqClientLogService.class 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 new file mode 100644 index 0000000..b04f975 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IJbqClientService.class 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 new file mode 100644 index 0000000..44f37be Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IJbqServerLogService.class 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 new file mode 100644 index 0000000..e1f5850 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IJbqServerService.class 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 new file mode 100644 index 0000000..9d7022d Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IMemberService.class 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 new file mode 100644 index 0000000..c74aacc Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/ISysRoleService.class 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 new file mode 100644 index 0000000..e3163c7 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/ISysTenantService.class 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 new file mode 100644 index 0000000..4f1b1c6 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/ISysUserService.class 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 new file mode 100644 index 0000000..3944383 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IWarningLogService.class 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 new file mode 100644 index 0000000..deaff11 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IXqClientLogService.class 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 new file mode 100644 index 0000000..9601710 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/IXqClientService.class 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 new file mode 100644 index 0000000..627f9ff Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/LoginService.class 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 new file mode 100644 index 0000000..e260020 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/PayFundService.class 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 new file mode 100644 index 0000000..c671c27 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/PayPurchaserService.class 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 new file mode 100644 index 0000000..d15374e Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/TencentSmsCodeService.class 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 new file mode 100644 index 0000000..7b9bf50 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/DeliveryDeviceServiceImpl.class 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 new file mode 100644 index 0000000..fcda5b5 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/DeliveryServiceImpl.class 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 new file mode 100644 index 0000000..c345634 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/JbqClientLogServiceImpl.class 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 new file mode 100644 index 0000000..4784c01 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/JbqClientServiceImpl.class 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 new file mode 100644 index 0000000..7506d35 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/JbqServerLogServiceImpl.class 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 new file mode 100644 index 0000000..477d89b Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/JbqServerServiceImpl.class 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 new file mode 100644 index 0000000..4eeab41 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/LoginServiceImpl.class 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 new file mode 100644 index 0000000..7a09f5b Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/MemberServiceImpl.class 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 new file mode 100644 index 0000000..4339a31 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayCbkOrderCashierService.class 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 new file mode 100644 index 0000000..56a6173 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayCbkOrderPrepayService$Result.class 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 new file mode 100644 index 0000000..b325910 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayCbkOrderPrepayService.class 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 new file mode 100644 index 0000000..09cb515 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayCbkOrderSaveService$Result.class 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 new file mode 100644 index 0000000..0342072 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayCbkOrderSaveService.class 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 new file mode 100644 index 0000000..dd2b497 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayFundServiceImpl.class 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 new file mode 100644 index 0000000..f966837 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/PayPurchaserServiceImpl.class 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 new file mode 100644 index 0000000..7627373 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/SysRoleServiceImpl.class 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 new file mode 100644 index 0000000..b08ba7e Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/SysTenantServiceImpl.class 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 new file mode 100644 index 0000000..70e5f7a Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/SysUserServiceImpl.class 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 new file mode 100644 index 0000000..3258cb9 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/TencentSmsCodeServiceImpl.class 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 new file mode 100644 index 0000000..a60083a Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/WarningLogServiceImpl.class 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 new file mode 100644 index 0000000..a01cb61 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/XqClientLogServiceImpl.class 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 new file mode 100644 index 0000000..7635284 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/service/impl/XqClientServiceImpl.class 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 new file mode 100644 index 0000000..817e6b5 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/CarLoadVo.class 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 new file mode 100644 index 0000000..fdff03d Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/DeliveryDetailVo.class 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 new file mode 100644 index 0000000..2e1e95b Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/DeliveryLogVo.class 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 new file mode 100644 index 0000000..50171be Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/DeliveryOrderVo.class 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 new file mode 100644 index 0000000..60dbc0b Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/DeliveryVo.class 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 new file mode 100644 index 0000000..a9b0fbd Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/DriverVo.class 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 new file mode 100644 index 0000000..522fa6a Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/JbqClientVo.class 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 new file mode 100644 index 0000000..7608c1c Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/ServerClientVo.class 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 new file mode 100644 index 0000000..e44358c Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/ServerLocationVo.class 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 new file mode 100644 index 0000000..bc2df0e Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/UserVo.class 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 new file mode 100644 index 0000000..7eb9443 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/business/vo/XqClientVo.class 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 new file mode 100644 index 0000000..17ff6f5 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/config/DruidDataSourceConfig.class 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 new file mode 100644 index 0000000..e6a7ce9 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/config/LogRecordConfiguration.class 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 new file mode 100644 index 0000000..137eeac Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/config/MybatisPlusConfig.class 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 new file mode 100644 index 0000000..ffe0ab9 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/config/SaTokenConfigure.class 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 new file mode 100644 index 0000000..cd57d2e Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/config/XxlJobConfig.class 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 new file mode 100644 index 0000000..9c0e243 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/constant/DeliveryStatusEnum.class 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 new file mode 100644 index 0000000..074072e Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/constant/HttpStatus.class 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 new file mode 100644 index 0000000..6f6a110 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/constant/SaobeiConstant.class 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 new file mode 100644 index 0000000..a58731e Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/constant/WarningStatusAdminEnum.class 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 new file mode 100644 index 0000000..3f6130b Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/constant/WarningStatusEnum.class 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 new file mode 100644 index 0000000..ecd3252 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/exception/GlobalException.class 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 new file mode 100644 index 0000000..179ff37 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/generater/FastCodeGenerator$1.class 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 new file mode 100644 index 0000000..00e47f6 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/generater/FastCodeGenerator.class 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 new file mode 100644 index 0000000..6ca6fea Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/job/AutoNumWarningJob.class 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 new file mode 100644 index 0000000..b046083 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/properties/PlatformExpensesProperties.class 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 new file mode 100644 index 0000000..4f97321 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/properties/TenantConfigProperties.class 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 new file mode 100644 index 0000000..f2d1ce4 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/properties/TenantProperties.class 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 new file mode 100644 index 0000000..bc09fd0 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/TestApi.class 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 new file mode 100644 index 0000000..c6444fb Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayBizOrderApi$BizOrderDto.class 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 new file mode 100644 index 0000000..0f9a830 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayBizOrderApi$BizOrderItemDto.class 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 new file mode 100644 index 0000000..affe468 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayBizOrderApi.class 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 new file mode 100644 index 0000000..71c2576 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkCashierApi$PayCashierLinkDto.class 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 new file mode 100644 index 0000000..50ffb2c Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkCashierApi$PayCashierLinkResp.class 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 new file mode 100644 index 0000000..5e17842 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkCashierApi.class 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 new file mode 100644 index 0000000..0e75086 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkOrderApi$CbkPayOrderDto.class 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 new file mode 100644 index 0000000..f478d0d Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkOrderApi$CbkPayOrderItemResp.class 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 new file mode 100644 index 0000000..39a2369 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkOrderApi$CbkPayOrderResp.class 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 new file mode 100644 index 0000000..02d249f Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayCbkOrderApi.class 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 new file mode 100644 index 0000000..c900b7c Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayResponse.class 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 new file mode 100644 index 0000000..7ef4f85 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayUserApi$UserDto.class 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 new file mode 100644 index 0000000..ab46aea Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayUserApi.class 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 new file mode 100644 index 0000000..1d01a82 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayUserCBKApi$PayMchCreateAccountDto.class 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 new file mode 100644 index 0000000..66f866f Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayUserCBKApi$PayMchCustInfoDto.class 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 new file mode 100644 index 0000000..9b37ea1 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/remote/pay/PayUserCBKApi.class 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 new file mode 100644 index 0000000..3054ad4 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/com/aiotagro/cattletrade/tenanthandler/MultiTenantHandler.class 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 new file mode 100644 index 0000000..c910f10 --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/DeliveryDeviceMapper.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + id, delivery_id, device_id, device_type,device_user,is_ware,front_img,side_img,hip_img,bind_time,create_time,bind_weight + + + + + 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 new file mode 100644 index 0000000..a38c8c9 --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/DeliveryMapper.xml @@ -0,0 +1,173 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + + + + + + + + + + + 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 new file mode 100644 index 0000000..a7e6ef7 --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/JbqClientLogMapper.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + + 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 new file mode 100644 index 0000000..dd2bc00 --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/JbqClientMapper.xml @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + + + + + + 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 new file mode 100644 index 0000000..2928b46 --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/JbqServerLogMapper.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + id, device_id, device_voltage, device_temp, latitude, longitude, walk_steps, y_walk_steps, create_time, create_by, update_time, update_by + + + + 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 new file mode 100644 index 0000000..df2527c --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/JbqServerMapper.xml @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + id, device_id, device_voltage, device_temp, latitude, longitude, walk_steps, y_walk_steps, create_time, create_by, update_time, update_by, source_id + + + + + + + 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 new file mode 100644 index 0000000..8553781 --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/MemberMapper.xml @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + 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 new file mode 100644 index 0000000..d30e9a4 --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/PayOrderItemMapper.xml @@ -0,0 +1,4 @@ + + + + \ 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 new file mode 100644 index 0000000..aa12925 --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/PayOrderMapper.xml @@ -0,0 +1,4 @@ + + + + \ 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 new file mode 100644 index 0000000..c75d0b5 --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/SysMenuMapper.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + id, parent_id, type, icon, name, sort, route_url, page_url, authority, create_time, update_time, is_delete + + + + + + 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 new file mode 100644 index 0000000..cc94612 --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/SysRoleMapper.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + 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 new file mode 100644 index 0000000..28274cd --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/SysRoleMenuMapper.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + 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 new file mode 100644 index 0000000..cc00e70 --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/SysTenantMapper.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + 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 new file mode 100644 index 0000000..bdd1f3f --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/SysUserMapper.xml @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + + + + + + 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 new file mode 100644 index 0000000..1f911f3 --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/WarningLogMapper.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + id, delivery_id, warning_type, inventory_jbq_count, expected_distance, actual_distance, warning_time + + + + + 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 new file mode 100644 index 0000000..f16ce5a --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/XqClientLogMapper.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + + + 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 new file mode 100644 index 0000000..93f3065 --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mapper/XqClientMapper.xml @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + + + + 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 new file mode 100644 index 0000000..10cf6b0 --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classes/mybatis/mybatis-config.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + diff --git a/aiotagro-cattletrade-1.0.1/BOOT-INF/classpath.idx b/aiotagro-cattletrade-1.0.1/BOOT-INF/classpath.idx new file mode 100644 index 0000000..1580c3c --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/classpath.idx @@ -0,0 +1,154 @@ +- "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 new file mode 100644 index 0000000..a1af61f --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/BOOT-INF/layers.idx @@ -0,0 +1,163 @@ +- "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 new file mode 100644 index 0000000..f328920 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/HikariCP-4.0.3.jar 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 new file mode 100644 index 0000000..bdb6771 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/SparseBitSet-1.2.jar 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 new file mode 100644 index 0000000..af85eb6 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/UserAgentUtils-1.21.jar 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 new file mode 100644 index 0000000..3cc59af Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/aiotagro-core-1.0.1.jar 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 new file mode 100644 index 0000000..044f4aa Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/aiotagro-redis-1.0.1.jar 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 new file mode 100644 index 0000000..ca35d0e Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/annotations-3.0.1.jar 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 new file mode 100644 index 0000000..94aae29 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/bcprov-jdk15on-1.67.jar 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 new file mode 100644 index 0000000..505545b Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/bizlog-sdk-3.0.6.jar 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 new file mode 100644 index 0000000..819f5ea Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/classmate-1.5.1.jar 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 new file mode 100644 index 0000000..6728154 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-beanutils-1.9.3.jar 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 new file mode 100644 index 0000000..f14985a Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-codec-1.15.jar 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 new file mode 100644 index 0000000..fa5df82 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-collections-3.2.2.jar 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 new file mode 100644 index 0000000..da06c3e Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-collections4-4.4.jar 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 new file mode 100644 index 0000000..5c9f52a Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-compress-1.19.jar 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 new file mode 100644 index 0000000..127c5a2 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-csv-1.8.jar 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 new file mode 100644 index 0000000..eb316f4 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-io-2.13.0.jar 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 new file mode 100644 index 0000000..4d434a2 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-lang3-3.12.0.jar 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 new file mode 100644 index 0000000..93a3b9f Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-logging-1.2.jar 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 new file mode 100644 index 0000000..0ff582c Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-math3-3.6.1.jar 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 new file mode 100644 index 0000000..8da8a82 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/commons-pool2-2.11.1.jar 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 new file mode 100644 index 0000000..0c1d461 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/converter-jackson-2.9.0.jar 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 new file mode 100644 index 0000000..6ba50ae Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/cos_api-5.6.89.jar 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 new file mode 100644 index 0000000..800ab9b Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/curvesapi-1.06.jar 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 new file mode 100644 index 0000000..fd9e2cc Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/dom4j-2.0.0.jar 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 new file mode 100644 index 0000000..d069f17 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/druid-1.2.20.jar 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 new file mode 100644 index 0000000..35e500f Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/easyexcel-3.1.0.jar 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 new file mode 100644 index 0000000..533ec02 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/easyexcel-core-3.1.0.jar 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 new file mode 100644 index 0000000..895a522 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/easyexcel-support-3.1.0.jar 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 new file mode 100644 index 0000000..52382d0 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/ehcache-3.9.10.jar 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 new file mode 100644 index 0000000..eeff2f5 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/fastdfs-client-1.27.2.jar 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 new file mode 100644 index 0000000..4c4ccbd Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/fastjson2-2.0.43.jar 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 new file mode 100644 index 0000000..8fb169b Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/freemarker-2.3.31.jar 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 new file mode 100644 index 0000000..9e5540d Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/groovy-4.0.21.jar 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 new file mode 100644 index 0000000..3351867 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/gson-2.8.9.jar 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 new file mode 100644 index 0000000..632772f Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/guava-20.0.jar 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 new file mode 100644 index 0000000..1199abf Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hibernate-validator-6.2.5.Final.jar 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 new file mode 100644 index 0000000..218ee25 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/httpclient-4.5.13.jar 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 new file mode 100644 index 0000000..dc4b9fc Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/httpcore-4.4.15.jar 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 new file mode 100644 index 0000000..cc52f44 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/httpmime-4.5.13.jar 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 new file mode 100644 index 0000000..c0d7831 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hutool-all-5.8.25.jar 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 new file mode 100644 index 0000000..5d77d5f Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hutool-core-5.8.20.jar 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 new file mode 100644 index 0000000..360c2db Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hutool-crypto-5.8.20.jar 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 new file mode 100644 index 0000000..ec6c2ee Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hutool-json-5.8.20.jar 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 new file mode 100644 index 0000000..2efc0e4 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/hutool-jwt-5.8.20.jar 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 new file mode 100644 index 0000000..499f0af Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/ini4j-0.5.4.jar 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 new file mode 100644 index 0000000..0c5e9c1 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-annotations-2.13.4.jar 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 new file mode 100644 index 0000000..0cb7a37 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-core-2.13.4.jar 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 new file mode 100644 index 0000000..5b653d6 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-databind-2.13.4.2.jar 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 new file mode 100644 index 0000000..e98483e Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-datatype-jdk8-2.13.4.jar 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 new file mode 100644 index 0000000..102cf12 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-datatype-jsr310-2.13.4.jar 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 new file mode 100644 index 0000000..d3da4de Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jackson-module-parameter-names-2.13.4.jar 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 new file mode 100644 index 0000000..606d992 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jakarta.annotation-api-1.3.5.jar 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 new file mode 100644 index 0000000..d68c9f7 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jakarta.validation-api-2.0.2.jar 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 new file mode 100644 index 0000000..38557ce Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/java-object-diff-0.95.jar 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 new file mode 100644 index 0000000..986c365 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/javax.activation-api-1.2.0.jar 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 new file mode 100644 index 0000000..a8a470a Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/javax.annotation-api-1.3.2.jar 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 new file mode 100644 index 0000000..844ec7f Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/javax.servlet-api-4.0.1.jar 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 new file mode 100644 index 0000000..4565865 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jaxb-api-2.3.1.jar 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 new file mode 100644 index 0000000..c819d63 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jaxen-1.2.0.jar 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 new file mode 100644 index 0000000..31d55c6 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jboss-logging-3.4.3.Final.jar 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 new file mode 100644 index 0000000..06e9066 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jcip-annotations-1.0.jar 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 new file mode 100644 index 0000000..3ecd7d5 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jcl-over-slf4j-1.7.36.jar 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 new file mode 100644 index 0000000..905c80e Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jjwt-0.9.1.jar 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 new file mode 100644 index 0000000..e27f9c5 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jna-5.14.0.jar 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 new file mode 100644 index 0000000..05984f7 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jna-platform-5.14.0.jar 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 new file mode 100644 index 0000000..b3080c4 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/joda-time-2.9.9.jar 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 new file mode 100644 index 0000000..5033f66 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/json-20170516.jar 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 new file mode 100644 index 0000000..afd93c0 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jsqlparser-4.5.jar 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 new file mode 100644 index 0000000..021df89 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jsr305-3.0.1.jar 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 new file mode 100644 index 0000000..ae8f815 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/jul-to-slf4j-1.7.36.jar 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 new file mode 100644 index 0000000..9eb39b3 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/lettuce-core-6.1.10.RELEASE.jar 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 new file mode 100644 index 0000000..16d9061 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/log4j-api-2.17.2.jar 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 new file mode 100644 index 0000000..d6c35f4 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/log4j-to-slf4j-2.17.2.jar 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 new file mode 100644 index 0000000..b70c0e6 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/logback-classic-1.2.11.jar 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 new file mode 100644 index 0000000..e3038da Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/logback-core-1.2.11.jar 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 new file mode 100644 index 0000000..444a41f Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/logging-interceptor-2.7.5.jar 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 new file mode 100644 index 0000000..2f020f4 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/logging-interceptor-3.14.9.jar 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 new file mode 100644 index 0000000..3a985fe Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/lombok-1.18.24.jar 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 new file mode 100644 index 0000000..c93a218 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-3.5.13.jar 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 new file mode 100644 index 0000000..e818b3d Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-3.5.3.2.jar 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 new file mode 100644 index 0000000..f0c43a3 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-annotation-3.5.3.2.jar 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 new file mode 100644 index 0000000..5610042 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-boot-starter-3.5.3.2.jar 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 new file mode 100644 index 0000000..bfb1ea0 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-core-3.5.3.2.jar 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 new file mode 100644 index 0000000..9b60247 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-extension-3.5.3.2.jar 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 new file mode 100644 index 0000000..73173e3 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-plus-generator-3.5.1.jar 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 new file mode 100644 index 0000000..690550a Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-spring-2.1.1.jar 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 new file mode 100644 index 0000000..e47b2a2 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-spring-boot-autoconfigure-2.3.1.jar 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 new file mode 100644 index 0000000..36e3db3 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mybatis-spring-boot-starter-2.3.1.jar 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 new file mode 100644 index 0000000..8294fe0 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/mysql-connector-j-8.4.0.jar 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 new file mode 100644 index 0000000..38a3bf8 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-buffer-4.1.84.Final.jar 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 new file mode 100644 index 0000000..40a531e Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-codec-4.1.84.Final.jar 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 new file mode 100644 index 0000000..4f03143 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-codec-http-4.1.84.Final.jar 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 new file mode 100644 index 0000000..4f860db Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-common-4.1.84.Final.jar 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 new file mode 100644 index 0000000..83b7e1d Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-handler-4.1.84.Final.jar 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 new file mode 100644 index 0000000..0df2ffc Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-resolver-4.1.84.Final.jar 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 new file mode 100644 index 0000000..f261d88 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-transport-4.1.84.Final.jar 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 new file mode 100644 index 0000000..84d4070 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/netty-transport-native-unix-common-4.1.84.Final.jar 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 new file mode 100644 index 0000000..e6df064 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/okhttp-2.7.5.jar 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 new file mode 100644 index 0000000..52c046c Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/okhttp-3.14.9.jar 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 new file mode 100644 index 0000000..fb3ddd9 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/okio-1.17.5.jar 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 new file mode 100644 index 0000000..eb47bdb Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/oshi-core-6.4.11.jar 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 new file mode 100644 index 0000000..92e0977 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/pagehelper-5.3.3.jar 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 new file mode 100644 index 0000000..94be723 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/pagehelper-spring-boot-autoconfigure-1.4.7.jar 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 new file mode 100644 index 0000000..264cfb8 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/pagehelper-spring-boot-starter-1.4.7.jar 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 new file mode 100644 index 0000000..3803353 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/poi-4.1.2.jar 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 new file mode 100644 index 0000000..6038a51 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/poi-ooxml-4.1.2.jar 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 new file mode 100644 index 0000000..74d3cd5 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/poi-ooxml-schemas-4.1.2.jar 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 new file mode 100644 index 0000000..aee50b7 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/qcloudsms-1.0.6.jar 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 new file mode 100644 index 0000000..e58c483 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/reactive-streams-1.0.4.jar 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 new file mode 100644 index 0000000..3333cd9 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/reactor-core-3.4.24.jar 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 new file mode 100644 index 0000000..b899846 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/retrofit-2.9.0.jar 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 new file mode 100644 index 0000000..854831a Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/retrofit-spring-boot-starter-2.2.18.jar 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 new file mode 100644 index 0000000..cdce611 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-core-1.37.0.jar 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 new file mode 100644 index 0000000..156b640 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-jwt-1.37.0.jar 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 new file mode 100644 index 0000000..35b6928 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-redis-jackson-1.37.0.jar 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 new file mode 100644 index 0000000..d239a57 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-servlet-1.37.0.jar 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 new file mode 100644 index 0000000..c1a4ff7 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-spring-boot-autoconfig-1.37.0.jar 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 new file mode 100644 index 0000000..d278c89 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/sa-token-spring-boot-starter-1.37.0.jar 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 new file mode 100644 index 0000000..7d3ce68 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/slf4j-api-1.7.36.jar 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 new file mode 100644 index 0000000..b7db248 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/snakeyaml-1.29.jar 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 new file mode 100644 index 0000000..c7ee78d Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-aop-5.3.23.jar 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 new file mode 100644 index 0000000..fcc7cfd Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-beans-5.3.23.jar 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 new file mode 100644 index 0000000..527e48f Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-boot-2.6.13.jar 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 new file mode 100644 index 0000000..e07146e Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-boot-autoconfigure-2.6.13.jar 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 new file mode 100644 index 0000000..832940a Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-boot-jarmode-layertools-2.6.13.jar 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 new file mode 100644 index 0000000..e80b5da Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-context-5.3.23.jar 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 new file mode 100644 index 0000000..b290e9a Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-context-support-5.3.23.jar 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 new file mode 100644 index 0000000..78ff1ca Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-core-5.3.23.jar 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 new file mode 100644 index 0000000..dc4b4b2 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-data-commons-2.6.9.jar 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 new file mode 100644 index 0000000..93929e6 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-data-keyvalue-2.6.9.jar 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 new file mode 100644 index 0000000..0541d90 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-data-redis-2.6.9.jar 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 new file mode 100644 index 0000000..3d10ece Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-expression-5.3.23.jar 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 new file mode 100644 index 0000000..98da8e2 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-jcl-5.3.23.jar 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 new file mode 100644 index 0000000..2322be7 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-jdbc-5.3.23.jar 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 new file mode 100644 index 0000000..1495a0b Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-oxm-5.3.23.jar 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 new file mode 100644 index 0000000..3bdc3d7 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-test-5.3.23.jar 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 new file mode 100644 index 0000000..aad7465 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-tx-5.3.23.jar 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 new file mode 100644 index 0000000..790d148 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-web-5.3.23.jar 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 new file mode 100644 index 0000000..9a29a87 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/spring-webmvc-5.3.23.jar 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 new file mode 100644 index 0000000..1c5721b Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tencentcloud-sdk-java-3.1.423.jar 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 new file mode 100644 index 0000000..09919b1 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tencentcloud-sdk-java-common-3.1.213.jar 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 new file mode 100644 index 0000000..6d58b77 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tencentcloud-sdk-java-kms-3.1.213.jar 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 new file mode 100644 index 0000000..25e593b Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/thumbnailator-0.4.8.jar 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 new file mode 100644 index 0000000..87dd471 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tomcat-embed-core-9.0.68.jar 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 new file mode 100644 index 0000000..967746f Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tomcat-embed-el-9.0.68.jar 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 new file mode 100644 index 0000000..38230eb Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/tomcat-embed-websocket-9.0.68.jar 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 new file mode 100644 index 0000000..d9f2a2f Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/transmittable-thread-local-2.14.4.jar 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 new file mode 100644 index 0000000..fd47ef6 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/weixin-java-common-3.3.0.jar 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 new file mode 100644 index 0000000..3a9a801 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/weixin-java-miniapp-3.3.0.jar 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 new file mode 100644 index 0000000..18e568f Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/xmlbeans-3.1.0.jar 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 new file mode 100644 index 0000000..cbc149d Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/xmlpull-1.1.3.1.jar 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 new file mode 100644 index 0000000..813a9a8 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/xpp3_min-1.1.4c.jar 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 new file mode 100644 index 0000000..4d7c5d0 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/xstream-1.4.10.jar 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 new file mode 100644 index 0000000..4a20c6e Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/BOOT-INF/lib/xxl-job-core-2.4.1.jar differ diff --git a/aiotagro-cattletrade-1.0.1/META-INF/MANIFEST.MF b/aiotagro-cattletrade-1.0.1/META-INF/MANIFEST.MF new file mode 100644 index 0000000..e29ad4f --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/META-INF/MANIFEST.MF @@ -0,0 +1,13 @@ +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 new file mode 100644 index 0000000..23f8818 --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/META-INF/maven/com.aiotagro/aiotagro-cattletrade/pom.properties @@ -0,0 +1,5 @@ +#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 new file mode 100644 index 0000000..8b31452 --- /dev/null +++ b/aiotagro-cattletrade-1.0.1/META-INF/maven/com.aiotagro/aiotagro-cattletrade/pom.xml @@ -0,0 +1,264 @@ + + + 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 new file mode 100644 index 0000000..6ab9fcc Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/ClassPathIndexFile.class 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 new file mode 100644 index 0000000..9ec9e1f Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/ExecutableArchiveLauncher.class 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 new file mode 100644 index 0000000..51e4302 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/JarLauncher.class 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 new file mode 100644 index 0000000..a91b025 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/LaunchedURLClassLoader$DefinePackageCallType.class 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 new file mode 100644 index 0000000..91cc6d7 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/LaunchedURLClassLoader$UseFastConnectionExceptionsEnumeration.class 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 new file mode 100644 index 0000000..c955c98 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/LaunchedURLClassLoader.class 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 new file mode 100644 index 0000000..25b4377 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/Launcher.class 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 new file mode 100644 index 0000000..c027630 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/MainMethodRunner.class 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 new file mode 100644 index 0000000..60e3d55 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/PropertiesLauncher$1.class 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 new file mode 100644 index 0000000..610f1a2 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/PropertiesLauncher$ArchiveEntryFilter.class 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 new file mode 100644 index 0000000..845c344 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/PropertiesLauncher$ClassPathArchives.class 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 new file mode 100644 index 0000000..62b73de Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/PropertiesLauncher$PrefixMatchingArchiveFilter.class 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 new file mode 100644 index 0000000..9d7f6b9 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/PropertiesLauncher.class 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 new file mode 100644 index 0000000..42f8078 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/WarLauncher.class 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 new file mode 100644 index 0000000..b713375 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/Archive$Entry.class 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 new file mode 100644 index 0000000..32429b6 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/Archive$EntryFilter.class 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 new file mode 100644 index 0000000..8bede6e Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/Archive.class 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 new file mode 100644 index 0000000..ca5bbcc Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive$AbstractIterator.class 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 new file mode 100644 index 0000000..1e48eee Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive$ArchiveIterator.class 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 new file mode 100644 index 0000000..5e4f1aa Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive$EntryIterator.class 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 new file mode 100644 index 0000000..713f2b2 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive$FileEntry.class 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 new file mode 100644 index 0000000..caa9484 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive$SimpleJarFileArchive.class 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 new file mode 100644 index 0000000..de340e1 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/ExplodedArchive.class 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 new file mode 100644 index 0000000..dec0ba2 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/JarFileArchive$AbstractIterator.class 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 new file mode 100644 index 0000000..402aaff Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/JarFileArchive$EntryIterator.class 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 new file mode 100644 index 0000000..021dd66 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/JarFileArchive$JarFileEntry.class 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 new file mode 100644 index 0000000..b10913a Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/JarFileArchive$NestedArchiveIterator.class 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 new file mode 100644 index 0000000..74d27dd Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/archive/JarFileArchive.class 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 new file mode 100644 index 0000000..35beeb1 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/data/RandomAccessData.class 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 new file mode 100644 index 0000000..da81192 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/data/RandomAccessDataFile$1.class 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 new file mode 100644 index 0000000..133c1ce Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/data/RandomAccessDataFile$DataInputStream.class 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 new file mode 100644 index 0000000..232927c Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/data/RandomAccessDataFile$FileAccess.class 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 new file mode 100644 index 0000000..76df54e Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/data/RandomAccessDataFile.class 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 new file mode 100644 index 0000000..7162c8f Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/AbstractJarFile$JarFileType.class 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 new file mode 100644 index 0000000..e598e45 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/AbstractJarFile.class 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 new file mode 100644 index 0000000..f1b13e5 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/AsciiBytes.class 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 new file mode 100644 index 0000000..89f254f Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/Bytes.class 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 new file mode 100644 index 0000000..b37a7a8 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryEndRecord$1.class 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 new file mode 100644 index 0000000..6fd20d2 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryEndRecord$Zip64End.class 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 new file mode 100644 index 0000000..71e645a Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryEndRecord$Zip64Locator.class 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 new file mode 100644 index 0000000..8529cc6 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryEndRecord.class 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 new file mode 100644 index 0000000..6153ca3 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryFileHeader.class 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 new file mode 100644 index 0000000..2dd7b04 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryParser.class 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 new file mode 100644 index 0000000..d55cf11 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/CentralDirectoryVisitor.class 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 new file mode 100644 index 0000000..be87e3e Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/FileHeader.class 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 new file mode 100644 index 0000000..a58135d Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/Handler.class 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 new file mode 100644 index 0000000..854ddb0 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarEntry.class 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 new file mode 100644 index 0000000..0e6ce95 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarEntryCertification.class 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 new file mode 100644 index 0000000..6b57cef Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarEntryFilter.class 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 new file mode 100644 index 0000000..53a69db Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFile$1.class 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 new file mode 100644 index 0000000..e472a0e Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFile$JarEntryEnumeration.class 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 new file mode 100644 index 0000000..4509514 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFile.class 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 new file mode 100644 index 0000000..3f4f053 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries$1.class 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 new file mode 100644 index 0000000..4ae1f70 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries$EntryIterator.class 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 new file mode 100644 index 0000000..209ebad Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries$Offsets.class 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 new file mode 100644 index 0000000..17493a3 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries$Zip64Offsets.class 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 new file mode 100644 index 0000000..2774473 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries$ZipOffsets.class 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 new file mode 100644 index 0000000..958784c Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileEntries.class 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 new file mode 100644 index 0000000..6e90f13 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarFileWrapper.class 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 new file mode 100644 index 0000000..985c789 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarURLConnection$1.class 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 new file mode 100644 index 0000000..4a4ba21 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarURLConnection$JarEntryName.class 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 new file mode 100644 index 0000000..8c8ac6a Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/JarURLConnection.class 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 new file mode 100644 index 0000000..4c20a60 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/StringSequence.class 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 new file mode 100644 index 0000000..0cf74dc Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jar/ZipInflaterInputStream.class 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 new file mode 100644 index 0000000..8bf0f87 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jarmode/JarMode.class 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 new file mode 100644 index 0000000..073e07d Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jarmode/JarModeLauncher.class 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 new file mode 100644 index 0000000..35e6baf Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/jarmode/TestJarMode.class 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 new file mode 100644 index 0000000..cb0c0b8 Binary files /dev/null and b/aiotagro-cattletrade-1.0.1/org/springframework/boot/loader/util/SystemPropertyUtils.class differ diff --git a/pc-cattle-transportation b/pc-cattle-transportation new file mode 160000 index 0000000..995d4bf --- /dev/null +++ b/pc-cattle-transportation @@ -0,0 +1 @@ +Subproject commit 995d4bfc67455901ba1a3cada07ca43f20712176 diff --git a/牛只运输功能模块整理.md b/牛只运输功能模块整理.md new file mode 100644 index 0000000..087881e --- /dev/null +++ b/牛只运输功能模块整理.md @@ -0,0 +1,154 @@ +# 牛只运输功能模块整理 + +本文档基于当前工作区两个文件夹(pc-cattle-transportation 前端、tradeCattle 后端)的代码与文档,梳理“活牛运输”相关的现有功能模块、接口与前后端对接情况,并提出后续完善建议。 + +更新日期:2025-10-10 + +## 1. 范围说明 +- 前端:pc-cattle-transportation/src +- 后端:tradeCattle/aiotagro-cattle-trade、aiotagro-core + +## 2. 前端已有模块(活牛运输相关) + +2.1 运送清单/运单管理 +- 页面与交互 + - views/entry/details.vue:运单详情页,展示基础信息(运单号、订单标题、资金方、采购商、车牌号、司机、起始地/目的地、预计送达时间、创建时间等),支持主机定位弹窗、轨迹回放、耳标/项圈日志查看。 + - 状态注释:1 境外预检;2 已入境待隔离(检疫成功);3 已入隔离场;4 隔离场出场。 +- 核心接口(api/abroad.js) + - /delivery/pageQueryList(后台运送清单-分页)inspectionList + - /delivery/detail(后台运单详情)waybillDetail + - /delivery/downloadZip(下载运单打包文件)downloadZip + - /jbqServer/serverLocation(主机定位)hostLocation + - /jbqServer/serverTrack(主机轨迹)hostTrack + - /jbqClientLog/jbqLogList(耳标运单期间日志)earLogList + - /xqClient/pageXqListByDeliveryId、/xqClientLog/xqLogList(项圈相关接口:前端已定义,后端当前仓库未检索到对应实现) + +2.2 运输/装车管理(装车订单) +- 核心接口(api/shipping.js) + - /delivery/pageDeliveryOrderList(装车订单列表)orderList + - /delivery/addDeliveryOrder(新增装车订单)orderAdd + - /delivery/deleteDelivery(删除)orderDel + - /delivery/updateDeliveryInfo(编辑)orderEdit + - /deliveryDevice/pageJbqList(查看耳标设备)deviceEarList + - /jbqClient/pageQuery(分配设备列表)deviceList + - /delivery/arrangeJbq(分配耳标设备)deviceAssign + - /delivery/viewDeliveryOrder(订单详情)orderDetail + - /wechatDelivery/carLoadInfo(装车详情)orderLoadDetail + - /wechatDelivery/updateLoadInfo(装车保存)orderLoadSave + - 说明:上述多数接口在后端当前仓库未发现同名 Controller/方法,疑似旧版接口或后端尚未接入该命名;需与后端统一命名或补齐实现。 + +2.3 入境检疫/核验与扫码记录(数据录入) +- 核心接口(api/isolationQuarantine.js) + - /inspection/submit(运单管理-确定入场)waybillSubmit + - /inspection/logList(入/出场扫描记录)scanList + - /inspection/sheepList(隔离场羊只信息列表)sheepList + - /device/serverTrack(主机轨迹)hostTrack(与 /jbqServer/serverTrack 存在路由差异) + - 说明:/inspection/* 相关接口在后端当前仓库未检索到对应 Controller,可能在其他项目或待实现。 + +2.4 设备定位与轨迹可视化 +- views/entry/details.vue:主机定位弹窗与轨迹回放。 +- 接口:api/abroad.js 的 hostLocation、hostTrack。 + +2.5 耳标/项圈设备与日志 +- 接口:api/abroad.js 的 earList(耳标运单期间列表)、earLogList(耳标日志)、collarList、collarLogList(项圈相关)。 +- 说明:耳标日志已在后端对应实现;项圈相关接口未在后端当前仓库检索到。 + +2.6 用户与司机管理(运输支撑) +- 接口:api/userManage.js(司机管理)driverList、driverAdd、driverEdit。 +- 页面:views/userManage/driverDetailDialog.vue(司机证件/备案码等详情展示)。 + +2.7 菜单与权限(支撑运输模块) +- store/permission.js:动态路由与侧边菜单生成(import.meta.glob 方式加载 views)。 +- components/layout/component/left-menu.vue:左侧菜单(标题“牛只运输跟踪系统”)。 +- router/index.ts:基础路由(login、entry/details、system/post 等)。 + +## 3. 后端已有模块(活牛运输相关) + +3.1 运送清单(Delivery) +- Controller:DeliveryController(/delivery) + - POST /pageQuery(小程序运送清单-分页) + - GET /view(小程序运送清单-查询详情) + - POST /submitCheck(小程序运送清单-核验提交) + - POST /pageQueryList(后台系统运送清单-分页) + - GET /detail(后台运单详情) +- Service:IDeliveryService、DeliveryServiceImpl(含 pageQuery、detail、pageQueryListLog 等)。 +- Entity:Delivery(字段包括 delivery_number、license_plate、start/end_location、estimated_delivery_time、driver_name、registered_jbq_count 等)。 +- Mapper:DeliveryMapper.xml(字段映射)。 + +3.2 主机设备(JbqServer) +- Controller:JbqServerController(/jbqServer) + - POST /serverLocation(主机单个定位) + - POST /serverTrack(主机轨迹) +- Service:IJbqServerService、JbqServerServiceImpl(含经纬度转换与时间窗过滤)。 +- 日志:JbqServerLogController(类存在但未提供接口方法)。 + +3.3 耳标设备与日志(JbqClient、JbqClientLog) +- Controller:JbqClientController(/jbqClient) + - POST /list(耳标列表分页) +- Controller:JbqClientLogController(/jbqClientLog) + - POST /jbqLogList(耳标日志分页,按运单时间窗查询) +- Service:IJbqClientService、IJbqClientLogService(含实现)。 + +3.4 运单预警(Warning) +- Controller:WarningLogController + - /warningCount(预警统计) + - POST /queryList(预警记录-分页) + - GET /warningDetail(预警记录详情) + - POST /pageQuery(后台系统预警记录-分页,委托 deliveryService.pageQueryList) +- Job:AutoNumWarningJob(自动盘点与预警计算,基于耳标与主机日志)。 + +3.5 运单设备绑定(DeliveryDevice) +- Controller:DeliveryDeviceController(类存在,未实现接口)。 +- Mapper/Service:DeliveryDeviceMapper、IDeliveryDeviceService(接口存在,未见具体实现方法)。 + +## 4. 前后端接口对接一览 + +4.1 已对接一致(可工作) +- 前端 api/abroad.js → 后端 DeliveryController + - /delivery/pageQueryList → DeliveryController.pageQueryList + - /delivery/detail → DeliveryController.detail +- 前端 api/abroad.js → 后端 JbqServerController + - /jbqServer/serverLocation → JbqServerController.serverLocation + - /jbqServer/serverTrack → JbqServerController.serverTrack +- 前端 api/abroad.js → 后端 JbqClientLogController + - /jbqClientLog/jbqLogList → JbqClientLogController.jbqLogList +- 后端预警接口已具备(前端视图未在本次检索中明确列出,但可按需接入)。 + +4.2 存在缺口或命名不一致(需统一或补齐) +- 前端 api/shipping.js(装车订单与设备分配)与后端当前仓库接口不一致: + - /delivery/addDeliveryOrder、/delivery/pageDeliveryOrderList、/delivery/arrangeJbq、/delivery/viewDeliveryOrder 等后端未找到对应实现。 + - /jbqClient/pageQuery(前端使用)后端当前为 /jbqClient/list(命名不一致)。 +- 前端 api/abroad.js 的项圈相关接口: + - /xqClient/pageXqListByDeliveryId、/xqClientLog/xqLogList 后端未检索到对应 Controller。 +- 前端 api/isolationQuarantine.js 的检疫模块: + - /inspection/*(submit、logList、sheepList)后端当前仓库未检索到对应实现。 +- 前端 api/isolationQuarantine.js 的主机轨迹: + - /device/serverTrack 与后端 /jbqServer/serverTrack 路由不一致(需统一)。 +- 后端 DeliveryDevice(运单设备绑定) + - Controller/Service 已存在,但缺少分配、查询等具体 API,难以支撑前端“分配耳标设备”“查看耳标设备”等功能。 + +## 5. 现状结论 +- 已具备的运输核心功能(端到端可联通) + - 后台运送清单分页与详情查询。 + - 主机设备定位与运单时间窗内轨迹回放。 + - 耳标日志按运单时间窗查询。 + - 预警统计与预警记录(后端已具备接口)。 +- 运输相关支撑模块(前端已具备) + - 用户与司机管理、菜单与权限(动态路由与侧边栏)。 +- 主要缺口 + - 装车订单与设备分配(shipping.js)后端接口未对齐或缺失。 + - 检疫模块(inspection)与项圈模块(xqClient/xqClientLog)后端接口缺失,需补齐或统一。 + - 运单设备绑定(DeliveryDevice)需要提供具体分配/查询 API。 + +## 6. 建议与后续工作 +1) 接口命名统一:统一 /jbqClient/pageQuery → /jbqClient/list;/device/serverTrack → /jbqServer/serverTrack。 +2) 补齐装车订单与设备分配接口:在后端新增或对齐 /delivery/addDeliveryOrder、/delivery/pageDeliveryOrderList、/delivery/viewDeliveryOrder、/deliveryDevice/pageJbqList、/delivery/arrangeJbq 等。 +3) 检疫模块落库:实现 /inspection/submit、/inspection/logList、/inspection/sheepList 等 Controller 与 Service。 +4) 项圈模块落库:实现 /xqClient/pageXqListByDeliveryId、/xqClientLog/xqLogList 的 Controller 与 Service。 +5) 运单设备绑定完善:补充 DeliveryDevice Controller 的分配、查询、解绑等 API,以支持前端设备绑定流程。 +6) 文档化对接清单:在后端生成 Swagger 文档或在前端维护“接口对接表”,确保多端一致性与联调效率。 + +## 7. 附录:参考文件 +- 前端文档:pc-cattle-transportation/README.md、REQUIREMENTS.md、DEVELOPMENT_PLAN.md、DATA_STRUCTURE.md、ARCHITECTURE.md +- 前端关键代码:api/abroad.js、api/shipping.js、api/isolationQuarantine.js、views/entry/details.vue、store/permission.js、router/index.ts +- 后端关键代码:DeliveryController、JbqServerController、JbqClientController、JbqClientLogController、WarningLogController、AutoNumWarningJob、DeliveryDeviceController \ No newline at end of file diff --git a/需求文档.md b/需求文档.md new file mode 100644 index 0000000..e4fecb8 --- /dev/null +++ b/需求文档.md @@ -0,0 +1,146 @@ +牛只运输管理系统需求文档(V1.0) + +一、项目概述 +- 目标:为牛只运输与检疫业务提供从账号权限、运单管理、设备定位与轨迹、隔离检疫、告警日志到司机与用户管理的全流程管理平台。 +- 形态:前端 Web(Vue3 + Vite + Pinia + Element Plus),后端 Spring Boot(MyBatis-Plus + Sa-Token),MySQL 数据库,Redis 缓存,第三方短信(腾讯云),地图(百度地图)。 + +二、系统架构与部署 +- 前端 + - 技术栈:Vue3、TypeScript、Pinia、Vue Router、Element Plus、Axios、Vite。 + - 路由:静态路由(登录/首页等)+ 动态路由(通过后端菜单驱动)。 + - 权限:路由守卫 + 自定义指令(按钮级权限),依赖用户权限集与角色集。 + - 开发服务:Vite 启动端口 8080,代理 /api 到 http://127.0.0.1:16200(vite.config.ts)。 +- 后端 + - 技术栈:Java 1.8、Spring Boot 2.6.13、MyBatis-Plus、Sa-Token。 + - 应用参数:端口 16200,Context Path /api,dev profile。 + - 数据源:MySQL 129.211.213.226:3306/cattletrade(root/Aiotagro@741)。 + - 缓存:Redis 129.211.213.226:6379(Aiotagro@741)。 + - 短信:腾讯云(代码存在常量类与集成)。 + +三、用户角色与权限 +- 角色(需确认):司机、货源方、采购方、系统管理员、资金方(原文称“四个角色”,但列出了五类,待业务确认)。 +- 其他潜在角色:企业管理员/普通操作员、检疫人员。 +- 权限模型:基于 sys_user、sys_role、sys_menu 三表,支持路由级与按钮级权限控制。 +- 前端控制: + - 路由守卫:白名单 login;无 token 跳登录;已登录拉取菜单后动态生成路由。 + - 指令权限:hasPermi/hasRole 系列,控制页面元素显示与操作。 + +【新增需求】权限与数据可见性 +- 菜单权限管理:由 sys_menu 维护菜单树与权限点;后端依据用户身份返回可见菜单;前端仅渲染可见节点。菜单权限调整后需支持动态生效(用户重新获取菜单即可生效)。 +- 操作权限管理:基于权限码(permKey)控制页面按钮与接口访问;前端通过指令/工具(hasPermi/hasRole)进行显隐与禁用;后端控制器或网关层进行权限拦截与校验,避免越权调用。 +- 登录识别 role_id 与数据范围:登录成功后读取 sys_user.role_id,并以此作为数据作用域依据;普通角色仅能访问本角色范围内的数据(列表、详情、统计等)。 +- 超级管理员权限:超级管理员拥有最高权限与全数据可见性,可管理所有角色与菜单;建议以固定角色编码(如 ROLE_SUPER_ADMIN)或配置标识控制。 + +四、主要功能模块 +1)登录与认证 + - 密码登录与验证码登录(LoginDto.loginType 0/1)。 + - Token 统一在请求拦截器注入 Authorization;401/650 触发重新登录。 + +2)运单管理与入场核验(Entry) + - 检疫列表与查询:inspectionList(attestation.vue)。 + - 详情:waybillDetail(details.vue),展示运单基本信息、预警信息、关联设备。 + - 视频:页面预留“核验装车过磅视频”展示位。 + - 下载:支持文件直链下载。 + - 【新增功能】新增运送清单:在“运送清单/列表页”增加“新增”按钮,打开运送清单表单对话框,支持创建运输单。 + - 权限要求:仅具备相应操作权限的角色可见与可操作(例如 hasPermi('delivery:add'))。 + - 表单字段(建议):运单号、发货方、采购方、车牌号、司机信息、设备绑定(主机/耳标/项圈)、预计出发/到达时间、起点/目的地、牛只数量/重量、检疫信息(可选)、备注。 + - 校验规则:必填项校验、手机号/车牌/时间合法性校验、设备选择合法性校验。 + - 提交与反馈:提交至后端创建接口(POST /api/delivery/create 或同类接口,具体以后端为准),成功后刷新列表并提示;失败给出明确错误信息。 + +3)硬件设备与定位/轨迹(Hardware) + - 主机定位:hostLocation → 地图标注经纬度与时间(locationDialog.vue / details.vue)。 + - 运动轨迹:hostTrack → 展示 polyline 与时间点集合(details.vue)。 + - 设备台账:设备编号、类型(主机/耳标/项圈)、所属用户、佩戴状态等(shipping/lookDialog.vue)。 + +4)隔离检疫(Isolation/Quarantine) + - 隔离厂列表与管理(src/api/quarantine.js、isolationQuarantine.js)。 + - 入场检疫与详情与运单联动(inspectionList、waybillDetail)。 + +5)预警日志(WarningLog) + - 列表与详情、分页查询与过滤。 + +6)用户与司机管理 + - 用户账户与状态管理(src/api/sys.js)。 + - 司机信息采集:姓名、手机号、车牌、驾驶证/行驶证/备案码、车头车身照片,表单校验与上传(userManage/driverDialog.vue)。 + +7)系统管理 + - 岗位管理(/system/post 路由存在)。 + - 菜单与权限管理(后端返回菜单驱动动态路由)。 + +8)支付与订单(如有) + - pay_order 表存在,具体功能启用情况待确认。 + +9)数据导出/下载与多媒体 + - 文件下载直链。 + - 视频播放组件位(过磅视频等)。 + +五、核心数据实体(初步) +- 系统与权限:sys_user、sys_role、sys_menu。 +- 运单与运输:delivery、delivery_device(运单设备关联)。 +- 硬件与定位:jbq_server、jbq_client、jbq_log;xq_client、xq_log;warning_log。 +- 成员与司机:member_user、member_driver(需确认具体表名)。 +- 支付与订单:pay_order(需确认是否启用)。 + +六、关键业务流程 +1)登录流程 + - 未登录访问非白名单路由 → 跳转登录。 + - 登录成功 → 拉取菜单 → 生成动态路由 → 进入首页。 + +2)运单入场核验流程 + - 检索检疫列表 inspectionList → 查看详情 waybillDetail → 查看主机定位 hostLocation 与轨迹 hostTrack → 下载/打印 → 返回列表。 + +3)设备定位与轨迹 + - 选择设备 serverDeviceId → 后端返回经纬度与时间 → 前端在百度地图组件展示。 + +4)司机信息采集与审核 + - 表单录入与资质图片上传 → 校验 → 提交 → 列表展示与状态维护。 + +5)权限菜单变更 + - 后端更新菜单权限 → 前端用户登录拉取最新菜单 → 动态路由更新。 + +七、第三方与集成 +- Redis:登录态与验证码缓存。 +- 腾讯云短信:验证码登录或通知。 +- 百度地图:vue-baidu-map-3x 与 BMap API。 +- 视频播放:页面内嵌