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

25 lines
558 B
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace YLErp.DBModels
{
[Table("trade_custom")]
public class trade_custom : TradeExtendBase, IClonable<trade_custom>
{
[DisplayName("观察日")]
public string ObservationDates { get; set; }
public trade_custom Clone()
{
return (trade_custom)MemberwiseClone();
}
/// <summary>
/// 最近敲入观察日
/// </summary>
[NotMapped]
public DateTime? LatestObservationDate { get; set; }
}
}