21 lines
493 B
C#
21 lines
493 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.Financial
|
|
{
|
|
public class FinancialIndicatorsCreateDto
|
|
{
|
|
public DateTime StartTime { get; set; }
|
|
public DateTime EndTime { get; set; }
|
|
public decimal Money { get; set; }
|
|
}
|
|
|
|
public class FinancialIndicatorsUpdateDto: FinancialIndicatorsCreateDto
|
|
{
|
|
public long Id { get; set; }
|
|
}
|
|
}
|