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.
47 lines
1.1 KiB
C#
47 lines
1.1 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
namespace DSWeb.SoftMng.Model{
|
|
//user_userattribute
|
|
public class user_userattribute
|
|
{
|
|
/// <summary>
|
|
/// GID
|
|
/// </summary>
|
|
private string _gid;
|
|
public string GID
|
|
{
|
|
get{ return _gid; }
|
|
set{ _gid = value; }
|
|
}
|
|
/// <summary>
|
|
/// USERID
|
|
/// </summary>
|
|
private string _userid;
|
|
public string USERID
|
|
{
|
|
get{ return _userid; }
|
|
set{ _userid = value; }
|
|
}
|
|
/// <summary>
|
|
/// ATTRIBUTEID
|
|
/// </summary>
|
|
private string _attributeid;
|
|
public string ATTRIBUTEID
|
|
{
|
|
get{ return _attributeid; }
|
|
set{ _attributeid = value; }
|
|
}
|
|
/// <summary>
|
|
/// VALUE
|
|
/// </summary>
|
|
private string _value;
|
|
public string VALUE
|
|
{
|
|
get{ return _value; }
|
|
set{ _value = value; }
|
|
}
|
|
}
|
|
}
|