package org.jeecg.modules.mdc.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
|
@Data
|
public class MdcTorqueConfigVo {
|
/*设备名称*/
|
private String equipmentName;
|
/*设备组*/
|
private String equipmentIds;
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date torqueDate;
|
private float torqueValue;
|
private String notes;
|
}
|