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>
/// 是否显示操作按钮 /// 是否显示操作按钮
/// </summary> /// </summary>
[Column("ShowButton")]
public bool HasActionButton { get; set; } public bool HasActionButton { get; set; }
/// <summary> /// <summary>
/// 操作按钮文字 /// 操作按钮文字
/// </summary> /// </summary>
[Column("ButtonText")]
[MaxLength(50)] [MaxLength(50)]
public string? ActionButtonText { get; set; } public string? ActionButtonText { get; set; }
/// <summary> /// <summary>
/// 操作按钮跳转链接 /// 操作按钮跳转链接
/// </summary> /// </summary>
[Column("ButtonLink")]
[MaxLength(500)] [MaxLength(500)]
public string? ActionButtonLink { get; set; } public string? ActionButtonLink { get; set; }