package com.yeshi.buwan.util;
|
|
import com.yeshi.buwan.domain.DetailSystem;
|
|
public class SystemUtil {
|
|
public static long getDetailSystemId() {
|
return 44L;
|
}
|
|
public static DetailSystem getDetailSystem() {
|
return new DetailSystem(44 + "");
|
}
|
|
/**
|
* 获取默认版本
|
*
|
* @return
|
*/
|
public static int getDefaultVersion() {
|
return 1;
|
}
|
|
}
|