using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
namespace DSWeb.SoftMng.Model{
//user_company
public class user_company
{
///
/// GID
///
private string _gid;
public string GID
{
get{ return _gid; }
set{ _gid = value; }
}
///
/// COMPANYID
///
private string _companyid;
public string COMPANYID
{
get{ return _companyid; }
set{ _companyid = value; }
}
///
/// USERID
///
private string _userid;
public string USERID
{
get{ return _userid; }
set{ _userid = value; }
}
}
}