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.
21 lines
575 B
21 lines
575 B
1 year ago
|
using System;
|
||
|
using Volo.Abp.Domain.Entities.Auditing;
|
||
|
|
||
|
namespace Win.Sfs.Shared.DomainBase
|
||
|
{
|
||
|
public abstract class CreationAuditedEntityBase<TKey> : CreationAuditedEntity<TKey>, IBranch<TKey>, IRemark
|
||
|
{
|
||
|
protected CreationAuditedEntityBase() { }
|
||
|
public CreationAuditedEntityBase(TKey id) : base(id) { }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 分支ID
|
||
|
/// </summary>
|
||
|
public TKey BranchId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备注
|
||
|
/// </summary>
|
||
|
public string Remark { get; set; }
|
||
|
}
|
||
|
}
|