1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.java110.entity.user;
|
| import com.java110.entity.DefaultAttrEntity;
|
| /**
| * 客户属性
| * Created by wuxw on 2016/12/27.
| */
| public class CustAttr extends DefaultAttrEntity{
|
| private String custId;
|
| public String getCustId() {
| return custId;
| }
|
| public void setCustId(String custId) {
| this.custId = custId;
| }
|
| }
|
|