Files
zszq-trs/YLErpDAL/Model/MatchRateRequest.cs
T
2024-05-09 14:06:26 +08:00

17 lines
380 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.Model
{
public class MatchRateRequest
{
public int clientId { get; set; }
public string underlyingCode { get; set; }
public DateTime startDate { get; set; }
public DateTime? endDate { get; set; }
}
}