37 lines
819 B
C#
37 lines
819 B
C#
using System;
|
|
using IRaCIS.Application.ViewModels;
|
|
using IRaCIS.Common.Model;
|
|
|
|
namespace IRaCIS.Application.Interfaces
|
|
{
|
|
public class AwardPriceDTO: AwardPriceCalculateDTO
|
|
{
|
|
public Guid Id { get; set; }
|
|
}
|
|
|
|
public class AwardPriceCalculateDTO
|
|
{
|
|
public double Price { get; set; }
|
|
public int Max { get; set; }
|
|
public int Min { get; set; }
|
|
}
|
|
|
|
public class AwardPriceCommand
|
|
{
|
|
public Guid Id { get; set; }
|
|
public double Price { get; set; }
|
|
public int Min { get; set; }
|
|
public int Max { get; set; }
|
|
public Guid OptUserId { get; set; }
|
|
}
|
|
|
|
public class AwardPriceQueryDTO : PageInput
|
|
{
|
|
}
|
|
|
|
public class ExchangeRateQueryDTO : PageInput
|
|
{
|
|
public DateTime? SearchMonth { get; set; }
|
|
}
|
|
|
|
} |