You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
987 B
38 lines
987 B
|
3 months ago
|
using ATS.NonCustodial.Domain.Shared.AggRootEntities;
|
||
|
|
using ATS.NonCustodial.Domain.Shared.Constants;
|
||
|
|
using Microsoft.EntityFrameworkCore;
|
||
|
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
|
|
||
|
|
namespace ATS.NonCustodial.Domain.Entities.Admins
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 系统备份
|
||
|
|
/// </summary>
|
||
|
|
/// Author:mxg
|
||
|
|
/// CreatedTimed:2022-05-12 16:22 PM
|
||
|
|
[Table("app_system_backup")]
|
||
|
|
[Index(nameof(Name))]
|
||
|
|
public class AppSystembackup : EntityFull
|
||
|
|
{
|
||
|
|
public AppSystembackup()
|
||
|
|
{ }
|
||
|
|
|
||
|
|
public AppSystembackup(long id)
|
||
|
|
{
|
||
|
|
Id = id;
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 名称
|
||
|
|
/// </summary>
|
||
|
|
[MaxLength(StringLengthConstants.StringLength255)]
|
||
|
|
public string? Name { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 编码
|
||
|
|
/// </summary>
|
||
|
|
[MaxLength(StringLengthConstants.StringLength255)]
|
||
|
|
public string? path { get; set; }
|
||
|
|
}
|
||
|
|
}
|