hjl
2024-07-26 f8cc44e926fd22f9d1d864dc684c827f6960270b
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
package com.ruoyi.admin.request;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
 
import java.math.BigDecimal;
 
/**
 * <p>
 * 回收服务对应回收价格及所在城市
 * </p>
 *
 * @author hjl
 * @since 2024-05-29
 */
@Getter
@Setter
@ApiModel(value = "RecoveryServePrice对象", description = "回收服务对应回收价格及所在城市")
public class RecoveryServePriceRequest {
 
    @ApiModelProperty("回收价格")
    private BigDecimal recoveryPrice;
 
    @ApiModelProperty("对应城市")
    private String city;
 
    @ApiModelProperty("对应城市code")
    private String cityCode;
 
}