22 lines
482 B
C#
22 lines
482 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YLErp.Modules.DataCompare.Dto
|
|
{
|
|
public class LiquidationTimeDto
|
|
{
|
|
/// <summary>
|
|
/// 系统清算时间
|
|
/// </summary>
|
|
public string SystemLiquidationTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 衡泰清算时间
|
|
/// </summary>
|
|
public string HengTaiLiquidationTime { get; set; }
|
|
}
|
|
}
|