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
{
///
/// c_code_id
///
private int _c_code_id;
public int c_code_id
{
get{ return _c_code_id; }
set{ _c_code_id = value; }
}
///
/// c_country_name
///
private string _c_country_name;
public string c_country_name
{
get{ return _c_country_name; }
set{ _c_country_name = value; }
}
///
/// c_country_ename
///
private string _c_country_ename;
public string c_country_ename
{
get{ return _c_country_ename; }
set{ _c_country_ename = value; }
}
///
/// c_country_code
///
private string _c_country_code;
public string c_country_code
{
get{ return _c_country_code; }
set{ _c_country_code = value; }
}
///
/// c_enterprise_codetype
///
private string _c_enterprise_codetype;
public string c_enterprise_codetype
{
get{ return _c_enterprise_codetype; }
set{ _c_enterprise_codetype = value; }
}
}
}