SGGL_SGY/SUBQHSE/Model/HSSE/PageDataPersonInOutItem.cs

39 lines
592 B
C#
Raw Normal View History

2025-02-19 15:58:42 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
public class PageDataPersonInOutItem
{
public string PersonId
{
get;
set;
}
public DateTime? ChangeTime
{
get;
set;
}
public bool? IsIn
{
get;
set;
}
public string WorkPostId
{
get;
set;
}
public string PostType
{
get;
set;
}
2025-05-08 14:26:36 +08:00
}
2025-02-19 15:58:42 +08:00
}