ZHJA_HJGL/HJGL_ZH/Model/HSSE/HSSE_IncentiveNewPerson.cs

47 lines
940 B
C#
Raw Normal View History

2024-05-08 17:17:11 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
public class HSSE_IncentiveNewPerson
{
private string personId;
public string PersonId
{
get { return personId; }
set { personId = value; }
}
private string cardNo;
public string CardNo
{
get { return cardNo; }
set { cardNo = value; }
}
private string postId;
public string PostId
{
get { return postId; }
set { postId = value; }
}
private string teamGroupId;
public string TeamGroupId
{
get { return teamGroupId; }
set { teamGroupId = value; }
}
private int money;
public int Money
{
get { return money; }
set { money = value; }
}
}
}