1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package com.chinacreator.videoalliance.net.bean;
- public class ProvinceInfo {
-
- private String type;
-
- private int sequence;
-
- private String province;
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public int getSequence() {
- return sequence;
- }
- public void setSequence(int sequence) {
- this.sequence = sequence;
- }
- public String getProvince() {
- return province;
- }
- public void setProvince(String province) {
- this.province = province;
- }
- @Override
- public String toString() {
- return "ProvinceInfo [type=" + type + ", sequence=" + sequence
- + ", province=" + province + "]";
- }
-
- }
|