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.
52 lines
1013 B
52 lines
1013 B
using System;
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
using Volo.Abp.MultiTenancy;
|
|
using Win_in.Sfs.Shared.Domain;
|
|
|
|
namespace Win_in.Sfs.Basedata.Domain;
|
|
|
|
public class DictItem : AuditedEntity<Guid>, IMultiTenant, IRemark
|
|
{
|
|
/// <summary>
|
|
/// 主表ID
|
|
/// </summary>
|
|
public Guid MasterId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 字典项代码
|
|
/// </summary>
|
|
public string Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 字典项名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 字典项值
|
|
/// </summary>
|
|
public string Value { get; set; }
|
|
|
|
/// <summary>
|
|
/// 字典项描述
|
|
/// </summary>
|
|
public string Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否生效
|
|
/// </summary>
|
|
public bool Enabled { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string Remark { get; set; }
|
|
|
|
public Guid? TenantId { get; }
|
|
|
|
public void SetId(Guid id)
|
|
{
|
|
this.Id = id;
|
|
}
|
|
|
|
}
|
|
|