GISSupport/src/main/java/com/c3gis/spatial/entity/IFeature.java
2017-08-08 15:49:25 +08:00

18 lines
385 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 com.c3gis.spatial.entity;
import java.lang.reflect.Field;
import java.util.List;
/**
* Created by hukekuan on 17-7-10.
*/
public interface IFeature {
/**
* @author hukekuan
* @Description 获取所有的Field前提是要有Geometry属性
* @date 2017-07-10 下午4:36
* @return 返回所有的Field
*/
public List<Field> AllFieldes();
}