2025-11-18 15:25:59 +08:00

26 lines
506 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package chihane.jdaddressselector;
/**
* Created by dun on 17/2/9.
*/
public interface ISelectAble {
/**
* 显示在栏目上的名字
* */
public String getName();
/**
* 用户设定的id根据这个id可以获取级栏目或者指定为最终栏目的id
* */
public int getId();
public String getUuid();
/**
* 自定义类型对象。
* */
public String county_name();
public String city_name();
public String prov_name();;
}