package com.casic.entity;

import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;

@Data
public class StandardData {

    @JSONField(name="DevID")
    private String DevID;
    @JSONField(name="DevType")
    private String DevType;
    @JSONField(name="Provider")
    private String Provider;
    @JSONField(name="Status")
    private String Status;
    @JSONField(name="LogTime")
    private String LogTime;

    public StandardData(String DevID, String DevType, String Status, String LogTime) {
        this.DevID = DevID;
        this.DevType = DevType;
        this.Provider = "Provider-ChangFeng";
        this.Status = Status;
        this.LogTime = LogTime;
    }

}
