All Downloads are FREE. Search and download functionalities are using the official Maven repository.

matrix.boot.jdbc.dto.EntityFieldDto Maven / Gradle / Ivy

The newest version!
package matrix.boot.jdbc.dto;

import lombok.Data;
import lombok.experimental.Accessors;

import java.io.Serializable;

/**
 * 实体字段信息
 *
 * @author wangcheng
 * 2022/4/2
 **/
@Data
@Accessors(chain = true)
public class EntityFieldDto implements Serializable {

    /**
     * 字段
     */
    private String field;

    /**
     * 字段类型
     */
    private String fieldType;

    /**
     * 字段导入类型(java.util.Date等等)
     */
    private String importFieldType;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy