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.

47 lines
1.1 KiB
C#

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