• This project
    • Loading...
  • Sign in

fangyeqing / xkl-interface · Files

Go to a project

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • xkl-interface
  • ..
  • model
  • CityModel.java
  • ADD:add register
    13ae166d
    by fangyeqing
    2017-02-28 00:29:55 +0800  
    Browse Files
CityModel.java 315 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.xkl.model;

import lombok.AllArgsConstructor;
import lombok.Data;

/**
 * Created by win7 on 2017/2/27.
 */
@Data
public class CityModel {
    long country = 0;//国家
    long province = 0;//省(直辖市)
    long city = 0;//市(直辖市的区)
    long county = 0;//县
    int type = 0;
}