dd
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class CQMS_Incentive_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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class CQMS_ProjectCheckItem
|
||||
{
|
||||
public string ProjectCheckItemId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string CheckItemName
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string Url
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string SupId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public int SortIndex
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user