22 lines
316 B
C#
22 lines
316 B
C#
|
|
namespace Model
|
||
|
|
{
|
||
|
|
public class ApproveManModel
|
||
|
|
{
|
||
|
|
public int Number
|
||
|
|
{
|
||
|
|
get;
|
||
|
|
set;
|
||
|
|
}
|
||
|
|
public string userid
|
||
|
|
{
|
||
|
|
get;
|
||
|
|
set;
|
||
|
|
}
|
||
|
|
public string Rolename
|
||
|
|
{
|
||
|
|
get;
|
||
|
|
set;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|