Commit b1f63e72afb3efd0d4b0f2e91503056e21769566
1 parent
01e29e23
ci(trash-common): 新增pom依赖
Showing
3 changed files
with
23 additions
and
23 deletions
trash-common/pom.xml
| ... | ... | @@ -16,7 +16,16 @@ |
| 16 | 16 | </description> |
| 17 | 17 | |
| 18 | 18 | <dependencies> |
| 19 | - | |
| 19 | + <dependency> | |
| 20 | + <groupId>com.aliyun</groupId> | |
| 21 | + <artifactId>aliyun-java-sdk-core</artifactId> | |
| 22 | + <version>4.5.16</version> | |
| 23 | + </dependency> | |
| 24 | + <dependency> | |
| 25 | + <groupId>com.aliyun</groupId> | |
| 26 | + <artifactId>aliyun-java-sdk-dysmsapi</artifactId> | |
| 27 | + <version>2.1.0</version> | |
| 28 | + </dependency> | |
| 20 | 29 | <!-- Spring框架基本的核心工具 --> |
| 21 | 30 | <dependency> |
| 22 | 31 | <groupId>org.springframework</groupId> | ... | ... |
trash-common/src/main/java/com/trash/common/utils/util/SmsConf.java
| 1 | -锘縫ackage com.trash.common.utils.util; | |
| 1 | +package com.trash.common.utils.util; | |
| 2 | 2 | |
| 3 | 3 | import java.util.Calendar; |
| 4 | 4 | |
| 5 | 5 | public class SmsConf { |
| 6 | - //鍩虹鍦板潃 璇峰弬鏂囨。濉啓 | |
| 7 | - public static String smsSendUrl = "http://172.31.253.178:5050/ims/sms/sendSms";//鍙戦佸湴鍧 | |
| 8 | - public static String queyrbalanceUrl = "http://172.31.253.178:5050/ims/sms/queryBalance";//鏌ヨ鍙戦佽兘鍔涘湴鍧 | |
| 9 | - public static String smsMoUrl = "http://172.31.253.178:9090/ims/sms/queryMo";//鍙栦笂琛屽湴鍧 | |
| 10 | - public static String smsRptUrl = "http://172.31.253.178:9090/ims/sms/queryRpt";//鍙栧洖鎵у湴鍧 | |
| 11 | - public static String smsUserName="璐︽埛鍚";//璐︽埛鍚 | |
| 12 | - public static String smsPasswd="璐﹀彿瀵嗙爜";//璐﹀彿瀵嗙爜 | |
| 6 | + //基础地址 请参文档填写 | |
| 7 | + public static String smsSendUrl = "http://172.31.253.178:5050/ims/sms/sendSms";//发送地址 | |
| 8 | + public static String queyrbalanceUrl = "http://172.31.253.178:5050/ims/sms/queryBalance";//查询发送能力地址 | |
| 9 | + public static String smsMoUrl = "http://172.31.253.178:9090/ims/sms/queryMo";//取上行地址 | |
| 10 | + public static String smsRptUrl = "http://172.31.253.178:9090/ims/sms/queryRpt";//取回执地址 | |
| 11 | + public static String smsUserName="账户名";//账户名 | |
| 12 | + public static String smsPasswd="账号密码";//账号密码 | |
| 13 | 13 | |
| 14 | 14 | |
| 15 | 15 | ... | ... |
trash-garbage/pom.xml
| ... | ... | @@ -21,26 +21,17 @@ |
| 21 | 21 | <!-- <artifactId>trash-common</artifactId>--> |
| 22 | 22 | <!-- </dependency>--> |
| 23 | 23 | |
| 24 | - <!--二维码扫描工具包--> | |
| 25 | - <dependency> | |
| 26 | - <groupId>com.google.zxing</groupId> | |
| 27 | - <artifactId>core</artifactId> | |
| 28 | - <version>3.3.0</version> | |
| 29 | - </dependency> | |
| 30 | 24 | <dependency> |
| 31 | 25 | <groupId>com.trash</groupId> |
| 32 | 26 | <artifactId>trash-framework</artifactId> |
| 33 | 27 | </dependency> |
| 28 | + <!--二维码扫描工具包--> | |
| 34 | 29 | <dependency> |
| 35 | - <groupId>com.aliyun</groupId> | |
| 36 | - <artifactId>aliyun-java-sdk-core</artifactId> | |
| 37 | - <version>4.5.16</version> | |
| 38 | - </dependency> | |
| 39 | - <dependency> | |
| 40 | - <groupId>com.aliyun</groupId> | |
| 41 | - <artifactId>aliyun-java-sdk-dysmsapi</artifactId> | |
| 42 | - <version>2.1.0</version> | |
| 30 | + <groupId>com.google.zxing</groupId> | |
| 31 | + <artifactId>core</artifactId> | |
| 32 | + <version>3.3.0</version> | |
| 43 | 33 | </dependency> |
| 34 | + | |
| 44 | 35 | <dependency> |
| 45 | 36 | <groupId>org.projectlombok</groupId> |
| 46 | 37 | <artifactId>lombok</artifactId> | ... | ... |