| 123456789101112131415161718192021222324252627282930 |
- package com.its.vms.domain;
- import com.its.vms.domain.enums.eVmsReqBoardPower;
- import lombok.Data;
- import java.io.Serializable;
- /**
- * DTO Class
- */
- @Data
- public class VmsModule implements Serializable {
- private static final long serialVersionUID = 1L;
- private boolean isOnOff;
- private int reqOnOff;
- private int curOnOff;
- private String powerOnTime; /* ON TIME */
- private String powerOffTime; /* OFF TIME */
- private int retry;
- public VmsModule() {
- this.isOnOff = true;
- this.reqOnOff = eVmsReqBoardPower.vms_req_board_power_on.getValue(); // 0x00 : 꺼짐, 0x01 : 켜짐,
- this.curOnOff = eVmsReqBoardPower.vms_req_board_power_off.getValue(); // 0x00 : 꺼짐, 0x01 : 켜짐,
- this.powerOnTime = "";
- this.powerOffTime = "";
- this.retry = 1;
- }
- }
|