DeviceManager/DeviceRepair.Models/Plan/DailyPlanCompleteStatus.cs

15 lines
300 B
C#
Raw Normal View History

2024-07-17 02:32:45 +00:00
using System;
namespace DeviceRepair.Models.Plan
{
public class DailyPlanCompleteStatus
{
public DateTime MaintenanceDay { get; set; }
/// <summary>
/// 是否完成 1 完成 0 未完成
/// </summary>
public int IsComplete { get; set; }
}
}