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.

56 lines
1.5 KiB
C#

using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
namespace DSWeb.SoftMng.Model{
//t_sys_country_code
public class t_sys_country_code
{
/// <summary>
/// c_code_id
/// </summary>
private int _c_code_id;
public int c_code_id
{
get{ return _c_code_id; }
set{ _c_code_id = value; }
}
/// <summary>
/// c_country_name
/// </summary>
private string _c_country_name;
public string c_country_name
{
get{ return _c_country_name; }
set{ _c_country_name = value; }
}
/// <summary>
/// c_country_ename
/// </summary>
private string _c_country_ename;
public string c_country_ename
{
get{ return _c_country_ename; }
set{ _c_country_ename = value; }
}
/// <summary>
/// c_country_code
/// </summary>
private string _c_country_code;
public string c_country_code
{
get{ return _c_country_code; }
set{ _c_country_code = value; }
}
/// <summary>
/// c_enterprise_codetype
/// </summary>
private string _c_enterprise_codetype;
public string c_enterprise_codetype
{
get{ return _c_enterprise_codetype; }
set{ _c_enterprise_codetype = value; }
}
}
}