using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
namespace DSWeb.SoftMng.Model{
//sys_secCompany
public class sys_secCompany
{
///
/// GID
///
private string _gid;
public string GID
{
get{ return _gid; }
set{ _gid = value; }
}
///
/// 公司加密参数
///
private string _companysecretkey;
public string CompanySecretKey
{
get{ return _companysecretkey; }
set{ _companysecretkey = value; }
}
///
/// 操作人
///
private string _operuser;
public string OperUser
{
get{ return _operuser; }
set{ _operuser = value; }
}
///
/// 操作时间
///
private DateTime? _opertime;
public DateTime? OperTime
{
get{ return _opertime; }
set{ _opertime = value; }
}
}
}