package com.tmzn.devicelinkykc.entity.param; import lombok.Data; /** * @author xp * @date 2024/7/23 * @explain " " */ @Data public class TransCheck { private Long time; private byte[] trans; private int check_time; public TransCheck() { } public TransCheck(Long time, byte[] trans, int check_time) { this.time = time; this.trans = trans; this.check_time = check_time; } }