2026-07-01 14:50:37 +08:00
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
namespace QYZH.InteractiveMagazine.Models.Entity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 上传地址管理表
|
|
|
|
|
/// </summary>
|
2026-07-08 10:37:03 +08:00
|
|
|
[SugarTable("System_UploadDomain")]
|
2026-07-01 14:50:37 +08:00
|
|
|
public partial class UploadDomain : SqlSugarBaseEntity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:上传地址
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Domain { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:已分配人数
|
|
|
|
|
/// Default:0
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int AssignedCount { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|