UNPKG

wallet-generate

Version:
21 lines (17 loc) 497 B
package com.yl.wallet.{{ServerName}}.entity; import com.yl.wallet.common.annotation.ExcelField; import com.alibaba.fastjson.annotation.JSONField; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import javax.persistence.*; import java.util.Date; /** * {{EntityDesc}} */ @Entity @Table(name = "{{TableName}}") @Data @ApiModel(value = "{{EntityName}}", description = "{{EntityDesc}}") public class {{EntityName}} { {{EntityColumns}} }