package com.sy.model;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
@Component
@ConfigurationProperties(prefix = "g2")
@Data
public class G2Bean {
private Boolean onoff;
}