SGGL_SHJ/SGGL/Model/ConstructionLogHSE.cs

22 lines
466 B
C#
Raw Permalink 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 ConstructionLogHSE
{
public string ConstructionLogId { get; set; }
public string HSETodaySummary { get; set; }
public string HSETodaySummaryRemark { get; set; }
public string HSETomorrowPlan { get; set; }
public string HSETomorrowPlanRemark { get; set; }
}
}