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.

38 lines
873 B
C#

using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
namespace DSWeb.SoftMng.Model{
//sys_b_OriginCode
public class sys_b_OriginCode
{
/// <summary>
/// Id
/// </summary>
private string _id;
public string Id
{
get{ return _id; }
set{ _id = value; }
}
/// <summary>
/// Value
/// </summary>
private string _value;
public string Value
{
get{ return _value; }
set{ _value = value; }
}
/// <summary>
/// Name
/// </summary>
private string _name;
public string Name
{
get{ return _name; }
set{ _name = value; }
}
}
}