20 lines
648 B
C#
20 lines
648 B
C#
|
|
namespace Model.Customization._7HJ
|
|
{
|
|
public class CompanyBranchPersonData
|
|
{
|
|
|
|
public string CompanyBranchPersonId { get; set; }
|
|
public string UnitId { get; set; }
|
|
public string UnitName { get; set; }
|
|
public string PersonName { get; set; }
|
|
public string SexStr { get; set; }
|
|
public string IdentityCard { get; set; }
|
|
public string WorkPostName { get; set; }
|
|
public string Telephone { get; set; }
|
|
public bool? IsOnJob { get; set; }
|
|
public string Remark { get; set; }
|
|
public string WorkPostId { get; set; }
|
|
public bool? IsHsse { get; set; }
|
|
}
|
|
} |