fix:增加海水系统和自建台站beta的系统类型

This commit is contained in:
xiaoguangbin 2024-06-26 15:42:08 +08:00
parent 80985a74d7
commit ebdf8d863a

View File

@ -15,9 +15,13 @@ public enum SystemType {
*/ */
GAMMA("G"), GAMMA("G"),
/** /**
* 自建台站 * 自建台站 β-γ
*/ */
SELFSTATION("C"); SELFSTATION("C"),
/**
* 海水系统 γ
*/
WATER("W");
private String type; private String type;