ab
2024-11-04 09d882262f530ded672f1c01fb65a1fefa00d52d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.nova.sankuai.domain.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 * @create 2022/7/18
 */
@ApiModel(value = "收入配置可选对象Dto")
@Data
public class IncomeConfigItemVo {
 
    @ApiModelProperty(value = "配置对象Id")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long configRecordId;
 
    @ApiModelProperty(value = "配置对象名称")
    private String configRecordName;
 
    @ApiModelProperty(value = "配置对象编码")
    private String configRecordCode;
 
    @ApiModelProperty(value = "配置类型 0-资方列表 1-审批分流")
    private Integer type;
}