liujie
2025-07-21 87f979fb201a82ebad5926735ed6dfa75ca004d3
ruoyi-common/src/main/java/com/ruoyi/common/utils/AliSmsUtil.java
@@ -22,6 +22,8 @@
    // 模板
    private static final String TEMPLATE_CODE = "SMS_489660108";
    private static final String TEMPLATE_CODE_SELLER = "SMS_491135055";
    public static void sendSuccessMessage(String phone,String code) {
        Map<String, String> param = new HashMap<>(3);
@@ -29,8 +31,14 @@
        sendSms(phone,SIGN_NAME,TEMPLATE_CODE,param);
    }
    // 提醒卖家
    public static void sendSuccessMessageSeller(String phone) {
        Map<String, String> param = new HashMap<>(3);
        sendSms(phone,SIGN_NAME,TEMPLATE_CODE_SELLER,param);
    }
    public static void main(String[] args) {
        sendSuccessMessage("17828262728","123456");
        sendSuccessMessageSeller("17828262728");
    }
    /**