using System; using System.Text; using System.Collections.Generic; using System.Data; namespace DSWeb.SoftMng.Model{ //DecOtherPack public class DecOtherPack { /// /// GID /// private string _gid; public string GID { get{ return _gid; } set{ _gid = value; } } /// /// 包装件数 /// private string _packqty; public string PackQty { get{ return _packqty; } set{ _packqty = value; } } /// /// 包装材料种类 /// private string _packtype; public string PackType { get{ return _packtype; } set{ _packtype = value; } } /// /// 关联DecHead GID /// private string _pid; public string PID { get{ return _pid; } set{ _pid = value; } } } }