vm10.java.more2more.domainVo.vm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ucode-cms-code Show documentation
Show all versions of ucode-cms-code Show documentation
Java知识图谱之内容管理系统(CMS)代码自动生成部分
package ${packageName}.entity.vo.${MidClassName};
#foreach ($item in $importList)
${item}
#end
#if( "$!tableComment" != "" )
/** ${tableComment} */
#end
@Data
@AllArgsConstructor
public class ${leftClassName}Vo extends ${leftClassName} {
private List<${rightClassName}Bo> ${t.sc($rightClassName)}BoList;
public ${leftClassName}Vo(${leftClassName} ${t.sc($leftClassName)}) {
super(${t.sc($leftClassName)});
}
}