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; }