You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
183 lines
3.2 KiB
C#
183 lines
3.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace CommonFunc
|
|
{
|
|
public class UserInfo
|
|
{
|
|
private string _userId;
|
|
private string _userNo;
|
|
private string _userName;
|
|
private string _userKey;
|
|
private string _positionId;
|
|
private string _postName;
|
|
private string _processName;
|
|
private string _processId;
|
|
private string _teamId;
|
|
private string _teamName;
|
|
private string _lineId;
|
|
private string _lineName;
|
|
//private List<ReturnValueForm> _formList;
|
|
//private List<ReturnValueButton> _buttonList;
|
|
private string _state;
|
|
private string _info;
|
|
public string UserId
|
|
{
|
|
get
|
|
{
|
|
return _userId;
|
|
}
|
|
|
|
set
|
|
{
|
|
_userId = value;
|
|
}
|
|
}
|
|
|
|
public string UserNo
|
|
{
|
|
get
|
|
{
|
|
return _userNo;
|
|
}
|
|
|
|
set
|
|
{
|
|
_userNo = value;
|
|
}
|
|
}
|
|
|
|
public string UserName
|
|
{
|
|
get
|
|
{
|
|
return _userName;
|
|
}
|
|
|
|
set
|
|
{
|
|
_userName = value;
|
|
}
|
|
}
|
|
|
|
public string UserKey
|
|
{
|
|
get
|
|
{
|
|
return _userKey;
|
|
}
|
|
|
|
set
|
|
{
|
|
_userKey = value;
|
|
}
|
|
}
|
|
|
|
public string PositionId
|
|
{
|
|
get
|
|
{
|
|
return _positionId;
|
|
}
|
|
|
|
set
|
|
{
|
|
_positionId = value;
|
|
}
|
|
}
|
|
|
|
public string PostName
|
|
{
|
|
get
|
|
{
|
|
return _postName;
|
|
}
|
|
|
|
set
|
|
{
|
|
_postName = value;
|
|
}
|
|
}
|
|
|
|
public string ProcessName
|
|
{
|
|
get
|
|
{
|
|
return _processName;
|
|
}
|
|
|
|
set
|
|
{
|
|
_processName = value;
|
|
}
|
|
}
|
|
|
|
public string ProcessId
|
|
{
|
|
get
|
|
{
|
|
return _processId;
|
|
}
|
|
|
|
set
|
|
{
|
|
_processId = value;
|
|
}
|
|
}
|
|
|
|
public string TeamId
|
|
{
|
|
get
|
|
{
|
|
return _teamId;
|
|
}
|
|
|
|
set
|
|
{
|
|
_teamId = value;
|
|
}
|
|
}
|
|
|
|
public string TeamName
|
|
{
|
|
get
|
|
{
|
|
return _teamName;
|
|
}
|
|
|
|
set
|
|
{
|
|
_teamName = value;
|
|
}
|
|
}
|
|
|
|
public string LineId
|
|
{
|
|
get
|
|
{
|
|
return _lineId;
|
|
}
|
|
|
|
set
|
|
{
|
|
_lineId = value;
|
|
}
|
|
}
|
|
|
|
public string LineName
|
|
{
|
|
get
|
|
{
|
|
return _lineName;
|
|
}
|
|
|
|
set
|
|
{
|
|
_lineName = value;
|
|
}
|
|
}
|
|
}
|
|
}
|