1
Sunshine
2024-11-05 1ec0f818f512186b3af02637906632264fe97119
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
package com.nova.sankuai.domain.vo;
 
import com.baomidou.mybatisplus.annotation.TableId;
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 9:56
 */
@Data
@ApiModel(value = "成本配置列表Vo")
public class CostConfigVo {
 
    @ApiModelProperty(value = "主键")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    @TableId
    private Long id;
 
    @ApiModelProperty(value = "渠道id")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long channelId;
 
    @ApiModelProperty(value = "渠道名称")
    private String channelName;
 
    @ApiModelProperty(value = "渠道Code")
    private Integer channelCode;
 
    @ApiModelProperty(value = "默认标识")
    private Integer defaultFlag;
 
    @ApiModelProperty(value = "关联省份+城市Id")
    private String relationCity;
 
    @ApiModelProperty(value = "关联城市Id")
    private String relationCityId;
 
    @ApiModelProperty(value = "关联城市名字")
    private String relationCityName;
 
    @ApiModelProperty(value = "UV单价,单位分")
    private Integer uvPrice;
 
    @ApiModelProperty(value = "注册单价,单位分")
    private Integer registerPrice;
 
    @ApiModelProperty(value = "完件单价,单位分")
    private Integer finishedPrice;
 
}