parent
172ca427ff
commit
14adbf45ba
@ -0,0 +1,48 @@ |
|||||||
|
package com.hai.model; |
||||||
|
|
||||||
|
public class OutTelModel { |
||||||
|
|
||||||
|
// 地区
|
||||||
|
private String province; |
||||||
|
|
||||||
|
// 城市
|
||||||
|
private String city; |
||||||
|
|
||||||
|
// 运营商
|
||||||
|
private String company; |
||||||
|
|
||||||
|
// 运营商识别码
|
||||||
|
private String cardtype; |
||||||
|
|
||||||
|
public String getProvince() { |
||||||
|
return province; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProvince(String province) { |
||||||
|
this.province = province; |
||||||
|
} |
||||||
|
|
||||||
|
public String getCity() { |
||||||
|
return city; |
||||||
|
} |
||||||
|
|
||||||
|
public void setCity(String city) { |
||||||
|
this.city = city; |
||||||
|
} |
||||||
|
|
||||||
|
public String getCompany() { |
||||||
|
return company; |
||||||
|
} |
||||||
|
|
||||||
|
public void setCompany(String company) { |
||||||
|
this.company = company; |
||||||
|
} |
||||||
|
|
||||||
|
public String getCardtype() { |
||||||
|
return cardtype; |
||||||
|
} |
||||||
|
|
||||||
|
public void setCardtype(String cardtype) { |
||||||
|
this.cardtype = cardtype; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue