完成门店管理后端接口与任务
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
using TakeoutSaaS.Domain.Stores.Enums;
|
||||
|
||||
namespace TakeoutSaaS.Application.App.Stores.Dto;
|
||||
|
||||
/// <summary>
|
||||
/// 门店资质完整性项。
|
||||
/// </summary>
|
||||
public sealed class StoreQualificationRequirementDto
|
||||
{
|
||||
/// <summary>
|
||||
/// 资质类型。
|
||||
/// </summary>
|
||||
public StoreQualificationType QualificationType { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否必需。
|
||||
/// </summary>
|
||||
public bool IsRequired { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否已上传。
|
||||
/// </summary>
|
||||
public bool IsUploaded { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否有效。
|
||||
/// </summary>
|
||||
public bool IsValid { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// 上传数量。
|
||||
/// </summary>
|
||||
public int UploadedCount { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user