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.
14 lines
333 B
14 lines
333 B
package com.ynxbd.common.helper.common;
|
|
|
|
/**
|
|
* @author 李进才
|
|
* @ClassName VersionHelper
|
|
* @Description 版本说明
|
|
* @date 2023/05/04 16:35:00
|
|
*/
|
|
public class VersionHelper {
|
|
private static final String APP_VERSION = "5.3.1.230516_Release";
|
|
public static String getAppVersion(){
|
|
return APP_VERSION;
|
|
}
|
|
}
|
|
|