xiaoyong931011
2021-03-29 7b1e6c513da5799fd1e6ed478af785ee8c6b0589
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.xcong.excoin.modules.documentary.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "DocumentaryOrderSetStateVo", description = "参数返回类")
public class DocumentaryOrderSetStateVo {
    
    @ApiModelProperty("是否允许跟单的状态")
    private Boolean state;
 
}