admin
2025-02-20 f537abe9f3646c739beaf15076246a2f71a347e9
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
package com.yeshi.buwan.dto.recommend;
 
import com.yeshi.buwan.domain.recommend.HomeRecommendSpecial;
import com.yeshi.buwan.domain.web.DetailSystemSelect;
 
import java.util.List;
 
public class HomeRecommendSpecialDTO {
 
    private HomeRecommendSpecial special;
 
    private List<DetailSystemSelect> detailSystemSelectList;
 
 
    public HomeRecommendSpecial getSpecial() {
        return special;
    }
 
    public void setSpecial(HomeRecommendSpecial special) {
        this.special = special;
    }
 
    public List<DetailSystemSelect> getDetailSystemSelectList() {
        return detailSystemSelectList;
    }
 
    public void setDetailSystemSelectList(List<DetailSystemSelect> detailSystemSelectList) {
        this.detailSystemSelectList = detailSystemSelectList;
    }
}