25 lines
558 B
C#
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; }
|
|
}
|
|
}
|