This commit is contained in:
zpc 2026-02-20 18:05:37 +08:00
parent bd77dc50bd
commit 07562a377b

View File

@ -33,17 +33,20 @@ public class BusinessPage
/// <summary>
/// 是否显示操作按钮
/// </summary>
[Column("ShowButton")]
public bool HasActionButton { get; set; }
/// <summary>
/// 操作按钮文字
/// </summary>
[Column("ButtonText")]
[MaxLength(50)]
public string? ActionButtonText { get; set; }
/// <summary>
/// 操作按钮跳转链接
/// </summary>
[Column("ButtonLink")]
[MaxLength(500)]
public string? ActionButtonLink { get; set; }