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.2 KiB
C#
47 lines
1.2 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
namespace DSWeb.SoftMng.Model{
|
|
//sys_secCompany
|
|
public class sys_secCompany
|
|
{
|
|
/// <summary>
|
|
/// GID
|
|
/// </summary>
|
|
private string _gid;
|
|
public string GID
|
|
{
|
|
get{ return _gid; }
|
|
set{ _gid = value; }
|
|
}
|
|
/// <summary>
|
|
/// 公司加密参数
|
|
/// </summary>
|
|
private string _companysecretkey;
|
|
public string CompanySecretKey
|
|
{
|
|
get{ return _companysecretkey; }
|
|
set{ _companysecretkey = value; }
|
|
}
|
|
/// <summary>
|
|
/// 操作人
|
|
/// </summary>
|
|
private string _operuser;
|
|
public string OperUser
|
|
{
|
|
get{ return _operuser; }
|
|
set{ _operuser = value; }
|
|
}
|
|
/// <summary>
|
|
/// 操作时间
|
|
/// </summary>
|
|
private DateTime? _opertime;
|
|
public DateTime? OperTime
|
|
{
|
|
get{ return _opertime; }
|
|
set{ _opertime = value; }
|
|
}
|
|
}
|
|
}
|