SGGL_SHJ/SGGL/Model/ConstructionLogCQMS.cs

22 lines
471 B
C#
Raw Normal View History

2023-09-25 19:20:08 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class ConstructionLogCQMS
{
public string ConstructionLogId { get; set; }
public string CQMSTodaySummary { get; set; }
public string CQMSTodaySummaryRemark { get; set; }
public string CQMSTomorrowPlan { get; set; }
public string CQMSTomorrowPlanRemark { get; set; }
}
}