48 lines
1.0 KiB
C#
48 lines
1.0 KiB
C#
|
|
|
|
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
///<summary>
|
|
///Internationalization
|
|
///</summary>
|
|
[Table("Internationalization")]
|
|
public class Internationalization : BaseFullAuditEntity
|
|
{
|
|
#region 导航属性
|
|
[JsonIgnore]
|
|
public PublishLog PublishLog { get; set; }
|
|
|
|
#endregion
|
|
public int ShowOrder { get; set; }
|
|
|
|
/// <summary>
|
|
/// 0 1 2 预翻译 已确认 废除
|
|
/// </summary>
|
|
public int State { get; set; }
|
|
|
|
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
public string Code { get; set; } = string.Empty;
|
|
|
|
public string Value { get; set; } = string.Empty;
|
|
|
|
public string ValueCN { get; set; } = string.Empty;
|
|
|
|
public int InternationalizationType { get; set; }
|
|
|
|
public string FrontType { get; set; } = string.Empty;
|
|
|
|
|
|
public string Module { get; set; } = string.Empty;
|
|
//关联版本历史记录表Id
|
|
public Guid? PublishLogId { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|