123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package com.ruoyi.generator.domain;
- import java.util.List;
- import javax.validation.Valid;
- import javax.validation.constraints.NotBlank;
- import org.apache.commons.lang3.ArrayUtils;
- import com.ruoyi.common.constant.GenConstants;
- import com.ruoyi.common.core.domain.BaseEntity;
- import com.ruoyi.common.utils.StringUtils;
- /**
- * 业务表 gen_table
- *
- * @author ruoyi
- */
- public class GenTable extends BaseEntity {
- /**
- * 生成包路径
- */
- @NotBlank(message = "生成包路径不能为空")
- private String packageName;
- /**
- * 其它生成选项
- */
- private String options;
- /**
- * 树编码字段
- */
- private String treeCode;
- /**
- * 树父编码字段
- */
- private String treeParentCode;
- /**
- * 树名称字段
- */
- private String treeName;
- }
|