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

org.yes.tools.generator.model.TableAttributeModel Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package org.yes.tools.generator.model;

import io.swagger.annotations.ApiModelProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;

/**
 * @author Co.
 * @name TableAttributeModel
 * @date 2023/4/6 10:49
 */
@Data
@Schema(name = "TableAttributeModel对象", description = "表属性表")
public class TableAttributeModel {

    @Schema(description = "")
    private String id;

    @Schema(description = "菜单id")
    private String menuId;

    @Schema(description = "项目项id")
    private String projectItemId;

    @ApiModelProperty(value = "项目id")
    private String projectId;

    @ApiModelProperty(value = "表名")
    private String tableName;

    @ApiModelProperty(value = "表描述")
    private String tableDescription;

    @ApiModelProperty(value = "搜索条件(json数组)")
    private String searchCondition;

    @ApiModelProperty(value = "页面属性(json数组)")
    private String pageAttribute;

    @ApiModelProperty(value = "sql语句")
    private String sqlSentence;

    @ApiModelProperty(value = "是否设计数据表: 1=是 2=否")
    private Integer isSqlSentence;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy