liukangdong
2024-09-29 b2d360d9113b6955287108ca9e90d76a1f3c1419
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
package com.doumee.dao.web.response;
 
import com.doumee.dao.business.model.BjParam;
import com.doumee.dao.business.model.Member;
import com.doumee.dao.business.model.Users;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2023/3/23 9:25
 */
@Data
@ApiModel("报价配置信息")
public class BjParamConfigResponse implements Serializable {
 
    @ApiModelProperty(value = "毛坯配置")
    private List<BjParam> roughList;
 
    @ApiModelProperty(value = "精装配置")
    private List<BjParam> exquisiteList;
 
}