40 lines
959 B
C#
40 lines
959 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace YLErp.DBModels
|
|
{
|
|
[Table("currency")]
|
|
public class Currency
|
|
{
|
|
/// <summary>
|
|
/// 货币英简
|
|
/// </summary>
|
|
[Key]
|
|
[DisplayName("货币英简")]
|
|
public string CurrencyCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 货币名称
|
|
/// </summary>
|
|
[DisplayName("货币名称")]
|
|
public string CurrencyName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 货币单位
|
|
/// </summary>
|
|
[DisplayName("货币单位")]
|
|
public string CurrencyUnit { get; set; }
|
|
|
|
/// <summary>
|
|
/// 货币符号
|
|
/// </summary>
|
|
[DisplayName("货币符号")]
|
|
public string CurrencySymbol { get; set; }
|
|
|
|
/// <summary>
|
|
/// 生效日期
|
|
/// </summary>
|
|
public DateTime? StartDate { get; set; }
|
|
}
|
|
}
|