We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@Data public class BizEntity<T> implements Serializable { /** * 主键 * * @ignore */ @TableId("id") private T id; /** * 更新人 * * @ignore */ @TableField(fill = FieldFill.INSERT_UPDATE) private T updatedBy; /** * 更新时间 * * @ignore */ @TableField(fill = FieldFill.INSERT_UPDATE) private LocalDateTime updatedAt; /** * 创建人 * * @ignore */ @TableField(fill = FieldFill.INSERT) private T createdBy; /** * 创建时间 * * @ignore */ @TableField(fill = FieldFill.INSERT) private LocalDateTime createdAt; } /** * 管理员表 */ @Data @EqualsAndHashCode(callSuper = true) @TableName("sys_admin") public class Admin extends BizEntity<Long> { /** * 头像地址 */ private String headUrl; }
The text was updated successfully, but these errors were encountered:
f43e480
No branches or pull requests
Your Environment
Expected Behavior
Current Behavior
Possible Solution
Steps to Reproduce
Context
The text was updated successfully, but these errors were encountered: