1 /* 2 * Copyright (c) 2021 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 package ohos.devtools.views.trace.bean; 17 18 import ohos.devtools.views.trace.DField; 19 20 /** 21 * Wakeup Time data 22 * 23 * @since 2021/5/14 15:52 24 */ 25 public class WakeupTime { 26 @DField(name = "wakeTs") 27 private Long wakeTs; 28 @DField(name = "start_ts") 29 private Long startTs; 30 @DField(name = "preRow") 31 private Long preRow; 32 33 /** 34 * Gets the value of wakeTs . 35 * 36 * @return the value of wakeTs . 37 */ getWakeTs()38 public Long getWakeTs() { 39 return wakeTs; 40 } 41 42 /** 43 * Sets the wakeTs . 44 * <p>You can use getWakeTs() to get the value of wakeTs.</p> 45 * 46 * @param param . 47 */ setWakeTs(final Long param)48 public void setWakeTs(final Long param) { 49 this.wakeTs = param; 50 } 51 52 /** 53 * Gets the value of startTs . 54 * 55 * @return the value of startTs . 56 */ getStartTs()57 public Long getStartTs() { 58 return startTs; 59 } 60 61 /** 62 * Sets the startTs . 63 * <p>You can use getStartTs() to get the value of startTs.</p> 64 * 65 * @param param . 66 */ setStartTs(final Long param)67 public void setStartTs(final Long param) { 68 this.startTs = param; 69 } 70 71 /** 72 * Gets the value of preRow . 73 * 74 * @return the value of preRow . 75 */ getPreRow()76 public Long getPreRow() { 77 return preRow; 78 } 79 80 /** 81 * Sets the preRow . 82 * <p>You can use getPreRow() to get the value of preRow.</p> 83 * 84 * @param param . 85 */ setPreRow(final Long param)86 public void setPreRow(final Long param) { 87 this.preRow = param; 88 } 89 } 90