Sunshine
2024-11-04 177f10973fd9bc1f0930369bb086ad9f0053440c
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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 Lilinhong
 * @Date 2022/7/13 16:24
 */
@Data
@ApiModel(value = "收入配置列表Vo")
public class IncomeConfigVo {
 
    @ApiModelProperty(value = "主键")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long id;
 
    @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;
 
    @ApiModelProperty(value = "默认标识")
    private Integer defaultFlag;
 
    @ApiModelProperty(value = "关联省份+城市Id")
    private String relationCity;
 
    @ApiModelProperty(value = "关联城市Id")
    private String relationCityId;
 
    @ApiModelProperty(value = "关联城市名字")
    private String relationCityName;
 
    @ApiModelProperty(value = "联登单价,单位分")
    private Integer collisionPrice;
 
    @ApiModelProperty(value = "资方单价,单位分")
    private Integer capitalPrice;
 
    @ApiModelProperty(value = "审批分流单价,单位分")
    private Integer auditPrice;
 
}