using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
namespace DSWeb.SoftMng.Model{
//DecFreeTx
public class DecFreeTx
{
///
/// GID
///
private string _gid;
public string GID
{
get{ return _gid; }
set{ _gid = value; }
}
///
/// 监管仓库
///
private string _bonno;
public string BonNo
{
get{ return _bonno; }
set{ _bonno = value; }
}
///
/// 货场代码
///
private string _cusfie;
public string CusFie
{
get{ return _cusfie; }
set{ _cusfie = value; }
}
///
/// 报关员联系方式
///
private string _decbpno;
public string DecBpNo
{
get{ return _decbpno; }
set{ _decbpno = value; }
}
///
/// 申报人员证号
///
private string _decno;
public string DecNo
{
get{ return _decno; }
set{ _decno = value; }
}
///
/// 关联报关单号
///
private string _relid;
public string RelId
{
get{ return _relid; }
set{ _relid = value; }
}
///
/// 关联备案号
///
private string _relmanno;
public string RelManNo
{
get{ return _relmanno; }
set{ _relmanno = value; }
}
///
/// 航次号
///
private string _voyno;
public string VoyNo
{
get{ return _voyno; }
set{ _voyno = value; }
}
///
/// PID
///
private string _pid;
public string PID
{
get { return _pid; }
set { _pid = value; }
}
}
}