using BaseOUDAL; using System.ComponentModel; namespace YLErp.Model { public class VolatilityReq : BaseSearchReq { [DisplayName("波动率类型")] public string VolType { get; set; } /// /// /// public int? UnderlyingId { get; set; } /// /// 标的名 /// public string UnderlyingName { get; set; } /// /// 操作员_optid /// public int? OptId { get; set; } /// /// 操作员_optname /// public string OptName { get; set; } /// /// 报价日期 /// public DateTime? QuotationDate { get; set; } public DateTime? QuotationDateStart { get; set; } public DateTime? QuotationDateEnd { get; set; } /// /// 合约代码 /// public string ContractCode { get; set; } /// /// 用户组 /// public string UserGroup { get; set; } } }