java110
2021-12-22 c29e5eba528fd4e811c4e27bee99e5032c6fd54d
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
package com.java110.entity.merchant;
 
import com.java110.entity.DefaultAttrEntity;
 
import java.util.Date;
 
/**
 *
 * 商户 属性
 * Created by wuxw on 2017/5/20.
 */
public class MerchantAttr extends DefaultAttrEntity{
 
 
    private String merchantId;
 
 
    public String getMerchantId() {
        return merchantId;
    }
 
    public void setMerchantId(String merchantId) {
        this.merchantId = merchantId;
    }
 
 
}