Sunshine
2024-11-04 919ed870ea1def0cfdd1dff23bec204975e7f34c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.nova.sankuai.domain.dto;
 
import com.nova.sankuai.infra.utils.PageRequest;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 * @create 2022/7/18
 */
@Data
@ApiModel(value = "成本配置分页Dto")
public class CostConfigPageDto extends PageRequest {
 
    @ApiModelProperty(value = "渠道Code")
    private Integer channelCode;
 
    @ApiModelProperty(value = "关联城市Id")
    private String relationCityId;
 
}