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; } } } }