CNCEC_SUBQHSE_WUHUAN/SGGL/Model/HSSE/PageDataPersonInOutItem.cs

43 lines
677 B
C#
Raw Normal View History

2021-04-30 10:28:37 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
public class PageDataPersonInOutItem
{
public string PersonId
{
get;
set;
}
2025-03-17 15:53:00 +08:00
public string ProjectId
{
get;
set;
}
2021-04-30 10:28:37 +08:00
public DateTime? ChangeTime
{
get;
set;
}
public bool? IsIn
{
get;
set;
}
public string WorkPostId
{
get;
set;
}
public string PostType
{
get;
set;
}
}
}