shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package com.ishop.model.vo;
 
import com.ishop.model.po.EbMerchant;
 
public class MerchantVo extends EbMerchant {
 
    public MerchantVo(EbMerchant merchant){
        this.setId(merchant.getId());
        this.setCreateId(merchant.getCreateId());
        this.setBalance(merchant.getBalance());
        this.setAdminId(merchant.getAdminId());
        this.setIsSwitch(merchant.getIsSwitch());
        this.setCreateTime(merchant.getCreateTime());
        this.setCategoryId(merchant.getCategoryId());
        this.setCopyProductNum(merchant.getCopyProductNum());
        this.setHandlingFee(merchant.getHandlingFee());
        this.setCreateType(merchant.getCreateType());
        this.setIsRecommend(merchant.getIsRecommend());
        this.setIsSelf(merchant.getIsSelf());
        this.setIsDel(merchant.getIsDel());
        this.setIsTakeTheir(merchant.getIsTakeTheir());
        this.setName(merchant.getName());
        this.setPhone(merchant.getPhone());
        this.setProductSwitch(merchant.getProductSwitch());
        this.setQualificationPicture(merchant.getQualificationPicture());
        this.setRemark(merchant.getRemark());
        this.setSort(merchant.getSort());
        this.setStarLevel(merchant.getStarLevel());
        this.setTypeId(merchant.getTypeId());
        this.setAddressDetail(merchant.getAddressDetail());
        this.setAvatar(merchant.getAvatar());
        this.setBackImage(merchant.getBackImage());
        this.setCity(merchant.getCity());
        this.setCoverImage(merchant.getCoverImage());
        this.setDistrict(merchant.getDistrict());
        this.setEmail(merchant.getEmail());
        this.setIntro(merchant.getIntro());
        this.setKeywords(merchant.getKeywords());
        this.setLatitude(merchant.getLatitude());
        this.setLongitude(merchant.getLongitude());
        this.setPcBackImage(merchant.getPcBackImage());
        this.setPcBanner(merchant.getPcBanner());
        this.setProvince(merchant.getProvince());
        this.setRealName(merchant.getRealName());
        this.setRectangleLogo(merchant.getRectangleLogo());
        this.setStreetBackImage(merchant.getStreetBackImage());
    }
 
    public String getMerCategory() {
        return merCategory;
    }
 
    public void setMerCategory(String merCategory) {
        this.merCategory = merCategory;
    }
 
    public String getMerType() {
        return merType;
    }
 
    public void setMerType(String merType) {
        this.merType = merType;
    }
 
    private String merCategory;
    private String merType;
}