You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
570 B

package com.azhoucode.entity;
import lombok.Data;
/**
* @description: 下拉框对象
* @author: azhou
* @create: 2021-12-24 14:37
**/
@Data
public class SelectEntity {
/**来源那张表*/
private String fromTableName;
/**类名*/
private String className;
/**类名小写*/
private String unClassName;
/**名称列*/
private String nameCol;
/**value列*/
private String valueCol;
/**该选择框属于哪一列*/
private String colName;
/**列对应的属性名称*/
private String propertyName;
}