Newer
Older
smartwell_demos / src / main / java / com / casic / util / VerifyConstantUtil.java
chaizhuang on 24 Sep 2022 267 bytes 硫化氢新增
package com.casic.util;

public class VerifyConstantUtil {

    public final static String DEVICE_TYPES = "22,23,24";

    public static Boolean checkDeviceType(String devcieType) {
        return DEVICE_TYPES.contains(devcieType) ? true : false;
    }

}