|
@@ -1,65 +1,85 @@
|
|
|
|
+/**
|
|
|
|
+ * Copyright (c) 2011-2014, hubin (jobob@qq.com).
|
|
|
|
+ *
|
|
|
|
+ * Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
+ * you may not use this file except in compliance with the License.
|
|
|
|
+ * You may obtain a copy of the License at
|
|
|
|
+ *
|
|
|
|
+ * http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
+ *
|
|
|
|
+ * Unless required by applicable law or agreed to in writing, software
|
|
|
|
+ * distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
+ * See the License for the specific language governing permissions and
|
|
|
|
+ * limitations under the License.
|
|
|
|
+ */
|
|
package com.baomidou.mybatisplus.test.mysql.entity;
|
|
package com.baomidou.mybatisplus.test.mysql.entity;
|
|
|
|
|
|
/**
|
|
/**
|
|
|
|
+ * <p>
|
|
|
|
+ * 测试手机号码
|
|
|
|
+ * </p>
|
|
|
|
+ *
|
|
* @author junyu
|
|
* @author junyu
|
|
* @Date 2016-09-09
|
|
* @Date 2016-09-09
|
|
*/
|
|
*/
|
|
-
|
|
|
|
public class PhoneNumber {
|
|
public class PhoneNumber {
|
|
- private String countryCode;
|
|
|
|
- private String stateCode;
|
|
|
|
- private String number;
|
|
|
|
|
|
+ private String countryCode;
|
|
|
|
+ private String stateCode;
|
|
|
|
+ private String number;
|
|
|
|
|
|
- public PhoneNumber() {
|
|
|
|
- }
|
|
|
|
|
|
+ public PhoneNumber() {
|
|
|
|
+ }
|
|
|
|
|
|
- public PhoneNumber(String countryCode, String stateCode, String
|
|
|
|
- number) {
|
|
|
|
- this.countryCode = countryCode;
|
|
|
|
- this.stateCode = stateCode;
|
|
|
|
- this.number = number;
|
|
|
|
- }
|
|
|
|
|
|
+ public PhoneNumber(String countryCode, String stateCode, String number) {
|
|
|
|
+ this.countryCode = countryCode;
|
|
|
|
+ this.stateCode = stateCode;
|
|
|
|
+ this.number = number;
|
|
|
|
+ }
|
|
|
|
|
|
- public PhoneNumber(String string) {
|
|
|
|
- if (string != null) {
|
|
|
|
- String[] parts = string.split("-");
|
|
|
|
- if (parts.length > 0) this.countryCode = parts[0];
|
|
|
|
- if (parts.length > 1) this.stateCode = parts[1];
|
|
|
|
- if (parts.length > 2) this.number = parts[2];
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+ public PhoneNumber(String string) {
|
|
|
|
+ if (string != null) {
|
|
|
|
+ String[] parts = string.split("-");
|
|
|
|
+ if (parts.length > 0)
|
|
|
|
+ this.countryCode = parts[0];
|
|
|
|
+ if (parts.length > 1)
|
|
|
|
+ this.stateCode = parts[1];
|
|
|
|
+ if (parts.length > 2)
|
|
|
|
+ this.number = parts[2];
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
|
|
- public String getAsString() {
|
|
|
|
- return countryCode + "-" + stateCode + "-" + number;
|
|
|
|
|
|
+ public String getAsString() {
|
|
|
|
+ return countryCode + "-" + stateCode + "-" + number;
|
|
|
|
|
|
- }
|
|
|
|
|
|
+ }
|
|
|
|
|
|
- public String getCountryCode() {
|
|
|
|
- return countryCode;
|
|
|
|
- }
|
|
|
|
|
|
+ public String getCountryCode() {
|
|
|
|
+ return countryCode;
|
|
|
|
+ }
|
|
|
|
|
|
- public void setCountryCode(String countryCode) {
|
|
|
|
- this.countryCode = countryCode;
|
|
|
|
- }
|
|
|
|
|
|
+ public void setCountryCode(String countryCode) {
|
|
|
|
+ this.countryCode = countryCode;
|
|
|
|
+ }
|
|
|
|
|
|
- public String getStateCode() {
|
|
|
|
- return stateCode;
|
|
|
|
- }
|
|
|
|
|
|
+ public String getStateCode() {
|
|
|
|
+ return stateCode;
|
|
|
|
+ }
|
|
|
|
|
|
- public void setStateCode(String stateCode) {
|
|
|
|
- this.stateCode = stateCode;
|
|
|
|
- }
|
|
|
|
|
|
+ public void setStateCode(String stateCode) {
|
|
|
|
+ this.stateCode = stateCode;
|
|
|
|
+ }
|
|
|
|
|
|
- public String getNumber() {
|
|
|
|
- return number;
|
|
|
|
- }
|
|
|
|
|
|
+ public String getNumber() {
|
|
|
|
+ return number;
|
|
|
|
+ }
|
|
|
|
|
|
- public void setNumber(String number) {
|
|
|
|
- this.number = number;
|
|
|
|
- }
|
|
|
|
|
|
+ public void setNumber(String number) {
|
|
|
|
+ this.number = number;
|
|
|
|
+ }
|
|
|
|
|
|
- @Override
|
|
|
|
- public String toString() {
|
|
|
|
- return getAsString();
|
|
|
|
- }
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public String toString() {
|
|
|
|
+ return getAsString();
|
|
|
|
+ }
|
|
}
|
|
}
|