添加路线备注字段

This commit is contained in:
温文静WWW 2025-08-06 16:03:14 +08:00
parent 373be83307
commit f7579da0c4
2 changed files with 6 additions and 0 deletions

View File

@ -64,6 +64,9 @@ public class CpRoute {
@TableField("`show`")
private String show;
@ApiModelProperty(value = "备注")
private String remark;
@ApiModelProperty(value = "创建者默认null")
private String createBy;

View File

@ -40,4 +40,7 @@ public class CpRouteDTO {
@ApiModelProperty(value = "是否展示在用户列表“1”展示“0”不展示")
@TableField("`show`")
private String show;
@ApiModelProperty(value = "备注")
private String remark;
}