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

io.polaris.builder.code.config.ConfigColumn Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package io.polaris.builder.code.config;

import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
import lombok.*;

/**
 * @author Qt
 * @since 1.8
 */
@Data
@XStreamAlias("column")
@NoArgsConstructor
@AllArgsConstructor
@EqualsAndHashCode
@ToString
public class ConfigColumn {
	@XStreamAsAttribute
	@XStreamAlias("name")
	private String name;
	@XStreamAsAttribute
	@XStreamAlias("javaType")
	private String javaType; // 列的映射类型
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy