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.
42 lines
916 B
C#
42 lines
916 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace DSWeb.Models
|
|
{
|
|
public class GoodsTypeEntity
|
|
{
|
|
#region 私有成员
|
|
private string _GID;
|
|
private string _GoodsTypeCode;
|
|
private string _Description;
|
|
private string _GoodsTypeNmae;
|
|
|
|
#endregion
|
|
public string GID
|
|
{
|
|
get { return _GID; }
|
|
set { _GID = value; }
|
|
}
|
|
|
|
public string GoodsTypeCode
|
|
{
|
|
get { return _GoodsTypeCode; }
|
|
set { _GoodsTypeCode = value; }
|
|
}
|
|
|
|
public string GoodsTypeNmae
|
|
{
|
|
get { return _GoodsTypeNmae; }
|
|
set { _GoodsTypeNmae = value; }
|
|
}
|
|
|
|
|
|
public string Description
|
|
{
|
|
get { return _Description; }
|
|
set { _Description = value; }
|
|
}
|
|
}
|
|
} |