17 lines
368 B
C#
17 lines
368 B
C#
using BaseOUDAL;
|
|
|
|
namespace YLErp.Model
|
|
{
|
|
public class Underlying_basiscurveReq : BaseSearchReq
|
|
{
|
|
/// <summary>
|
|
/// 标的资产码
|
|
/// </summary>
|
|
public string UnderlyingCode { get; set; }
|
|
/// <summary>
|
|
/// 品种
|
|
/// </summary>
|
|
public IEnumerable<int> UnderlyingTypeId { get; set; }
|
|
}
|
|
}
|