| 12345678910111213141516171819 |
- package com.zksy.pole.domain.dto;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- /**
- * @author Administrator
- * @version 1.0
- * @project dh-server-micro
- * @description 设置网关时间
- * @date 2024/8/28 17:25:33
- */
- @Data
- @ApiModel(value = "设置网关时间dto")
- public class SetGatewayTimeDto extends BaseDto{
- @ApiModelProperty(value = "时间戳")
- private Integer timestamp;
- }
|