Files
zszq-trs/Framework/YLErp.Core/DBModels/dicForTranslation.cs
T
2024-05-09 14:06:26 +08:00

25 lines
506 B
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace YLErp.DBModels
{
[Table("dic_for_translation")]
public class dicForTranslation
{
/// <summary>
/// 需翻译的字符串
/// </summary>
public string From { get; set; }
/// <summary>
/// 区分键
/// </summary>
public string Key { get; set; }
/// <summary>
/// 翻译结果
/// </summary>
public string To { get; set; }
}
}