53 lines
1.3 KiB
C#
53 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using YieldChain.Security;
|
|
using YLErp.DBModels.Base;
|
|
|
|
namespace YLErp.DBModels
|
|
{
|
|
[Table("swap_rate_log")]
|
|
public class SwapRateLog : DBModelBaseV3
|
|
{
|
|
/// <summary>
|
|
/// 费率id
|
|
/// </summary>
|
|
[DisplayName("费率id")]
|
|
[Column("rate_id")]
|
|
public int RateId { get; set; }
|
|
/// <summary>
|
|
/// 费率类型 0-固定,1-浮动
|
|
/// </summary>
|
|
|
|
[DisplayName("费率类型")]
|
|
[Column("rate_type")]
|
|
public int RateType { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 操作类型
|
|
/// </summary>
|
|
[DisplayName("操作类型")]
|
|
[Column("opt_type")]
|
|
public string OptType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 变更信息
|
|
/// </summary>
|
|
[DisplayName("变更信息")]
|
|
[Column("changes")]
|
|
public string Changes { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[DisplayName("备注")]
|
|
[Column("remark")]
|
|
public string Remark { get; set; }
|
|
}
|
|
}
|