You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
406 B
17 lines
406 B
package com.fr.design.mainframe; |
|
|
|
import com.fr.stable.CodeUtils; |
|
|
|
import java.text.SimpleDateFormat; |
|
import java.util.Calendar; |
|
|
|
/** |
|
* Created by hzzz on 2017/12/4. |
|
*/ |
|
public class SiteCenterToken { |
|
|
|
public static String generateToken() { |
|
String date = new SimpleDateFormat("yyyy-MM-dd").format(Calendar.getInstance().getTime()); |
|
return CodeUtils.md5Encode(date, "", "MD5"); |
|
} |
|
}
|
|
|