You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
165 B
15 lines
165 B
3 years ago
|
|
||
|
class Customer{
|
||
|
city = "";
|
||
|
//客户需求
|
||
|
demand = "";
|
||
|
///客户行业
|
||
|
industry = "";
|
||
|
|
||
|
name = "";
|
||
|
///跟进状态
|
||
|
status = 0;
|
||
|
}
|
||
|
export default{
|
||
|
Customer
|
||
|
}
|