xiaoyong931011
2023-06-08 c28ec8b80eec2c4ccc5a8e7c8ef144e9fe3f05dd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package cc.mrbird.febs.dapp.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "AKLineDto", description = "入参")
public class AKLineDto {
 
    @ApiModelProperty(value = "类型 0:实时 1:小时 2:日 3:周 4:月", example = "1")
    private int type;
 
}