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.
298 lines
6.7 KiB
C#
298 lines
6.7 KiB
C#
using System;
|
|
using System.Data;
|
|
|
|
namespace DSWeb.Models
|
|
{
|
|
/// <summary>
|
|
/// 企业信息表
|
|
/// </summary>
|
|
public class OpApplyEntity
|
|
{
|
|
public OpApplyEntity()
|
|
{
|
|
}
|
|
|
|
#region 读写属性
|
|
private string _gid="";
|
|
/// <summary>
|
|
/// 唯一编号
|
|
/// </summary>
|
|
public string GID
|
|
{
|
|
get{ return _gid; }
|
|
set{ _gid = value; }
|
|
}
|
|
|
|
private string _bsno="";
|
|
/// <summary>
|
|
/// 业务编号
|
|
/// </summary>
|
|
public string BSNO
|
|
{
|
|
get{ return _bsno; }
|
|
set{ _bsno = value; }
|
|
}
|
|
|
|
private string _custno="";
|
|
/// <summary>
|
|
/// 委托编号
|
|
/// </summary>
|
|
public string CUSTNO
|
|
{
|
|
get{ return _custno; }
|
|
set{ _custno = value; }
|
|
}
|
|
|
|
private DateTime _bsdate=DateTime.Now;
|
|
/// <summary>
|
|
/// 业务日期 / 接单日期
|
|
/// </summary>
|
|
public DateTime BSDATE
|
|
{
|
|
get{ return _bsdate; }
|
|
set{ _bsdate = value; }
|
|
}
|
|
|
|
private string _inspectionno="";
|
|
/// <summary>
|
|
/// 审批单号
|
|
/// </summary>
|
|
public string INSPECTIONNO
|
|
{
|
|
get{ return _inspectionno; }
|
|
set{ _inspectionno = value; }
|
|
}
|
|
|
|
private string _customtype="";
|
|
/// <summary>
|
|
/// 报关方式
|
|
/// </summary>
|
|
public string CUSTOMTYPE
|
|
{
|
|
get{ return _customtype; }
|
|
set{ _customtype = value; }
|
|
}
|
|
|
|
private string _customername="";
|
|
/// <summary>
|
|
/// 委托单位 / 货主
|
|
/// </summary>
|
|
public string CUSTOMERNAME
|
|
{
|
|
get{ return _customername; }
|
|
set{ _customername = value; }
|
|
}
|
|
|
|
private string _clientnameold="";
|
|
/// <summary>
|
|
/// 转移对象
|
|
/// </summary>
|
|
public string CLIENTNAMEOLD
|
|
{
|
|
get{ return _clientnameold; }
|
|
set{ _clientnameold = value; }
|
|
}
|
|
|
|
private string _storagename="";
|
|
/// <summary>
|
|
/// 仓库名称
|
|
/// </summary>
|
|
public string STORAGENAME
|
|
{
|
|
get{ return _storagename; }
|
|
set{ _storagename = value; }
|
|
}
|
|
|
|
private string _storagenamenew="";
|
|
/// <summary>
|
|
/// 转移仓库
|
|
/// </summary>
|
|
public string STORAGENAMENEW
|
|
{
|
|
get{ return _storagenamenew; }
|
|
set{ _storagenamenew = value; }
|
|
}
|
|
|
|
private int _pkgs=0;
|
|
/// <summary>
|
|
/// 件数
|
|
/// </summary>
|
|
public int PKGS
|
|
{
|
|
get{ return _pkgs; }
|
|
set{ _pkgs = value; }
|
|
}
|
|
|
|
private decimal _kgs=0;
|
|
/// <summary>
|
|
/// 毛重
|
|
/// </summary>
|
|
public decimal KGS
|
|
{
|
|
get{ return _kgs; }
|
|
set{ _kgs = value; }
|
|
}
|
|
|
|
private decimal _netweight=0;
|
|
/// <summary>
|
|
/// 净重
|
|
/// </summary>
|
|
public decimal NETWEIGHT
|
|
{
|
|
get{ return _netweight; }
|
|
set{ _netweight = value; }
|
|
}
|
|
|
|
private string _unitofweight="";
|
|
/// <summary>
|
|
/// 计费单位
|
|
/// </summary>
|
|
public string UNITOFWEIGHT
|
|
{
|
|
get{ return _unitofweight; }
|
|
set{ _unitofweight = value; }
|
|
}
|
|
|
|
private decimal _cbm=0;
|
|
/// <summary>
|
|
/// 立方数/尺码
|
|
/// </summary>
|
|
public decimal CBM
|
|
{
|
|
get{ return _cbm; }
|
|
set{ _cbm = value; }
|
|
}
|
|
|
|
private decimal _importvalue=0;
|
|
/// <summary>
|
|
/// 货值
|
|
/// </summary>
|
|
public decimal IMPORTVALUE
|
|
{
|
|
get{ return _importvalue; }
|
|
set{ _importvalue = value; }
|
|
}
|
|
|
|
private decimal _unitprice=0;
|
|
/// <summary>
|
|
/// 单价
|
|
/// </summary>
|
|
public decimal UNITPRICE
|
|
{
|
|
get{ return _unitprice; }
|
|
set{ _unitprice = value; }
|
|
}
|
|
|
|
private string _currency="";
|
|
/// <summary>
|
|
/// 币别
|
|
/// </summary>
|
|
public string CURRENCY
|
|
{
|
|
get{ return _currency; }
|
|
set{ _currency = value; }
|
|
}
|
|
|
|
private string _customser="";
|
|
/// <summary>
|
|
/// 报关行
|
|
/// </summary>
|
|
public string CUSTOMSER
|
|
{
|
|
get{ return _customser; }
|
|
set{ _customser = value; }
|
|
}
|
|
|
|
private string _customno="";
|
|
/// <summary>
|
|
/// 报关单号
|
|
/// </summary>
|
|
public string CUSTOMNO
|
|
{
|
|
get{ return _customno; }
|
|
set{ _customno = value; }
|
|
}
|
|
|
|
private DateTime _updatetime;
|
|
/// <summary>
|
|
/// 申报日期
|
|
/// </summary>
|
|
public DateTime UPDATETIME
|
|
{
|
|
get{ return _updatetime; }
|
|
set{ _updatetime = value; }
|
|
}
|
|
|
|
private DateTime _customdate;
|
|
/// <summary>
|
|
/// 通关日期 / 放行日期
|
|
/// </summary>
|
|
public DateTime CUSTOMDATE
|
|
{
|
|
get{ return _customdate; }
|
|
set{ _customdate = value; }
|
|
}
|
|
|
|
private string _remark="";
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string REMARK
|
|
{
|
|
get{ return _remark; }
|
|
set{ _remark = value; }
|
|
}
|
|
|
|
private string _createuser = "";
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
public string CREATEUSER
|
|
{
|
|
get { return _createuser; }
|
|
set { _createuser = value; }
|
|
}
|
|
|
|
private DateTime _createtime = DateTime.Now;
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public DateTime CREATETIME
|
|
{
|
|
get { return _createtime; }
|
|
set { _createtime = value; }
|
|
}
|
|
|
|
private string _modifieduser = "";
|
|
/// <summary>
|
|
/// 最后一次更新操作人
|
|
/// </summary>
|
|
public string MODIFIEDUSER
|
|
{
|
|
get { return _modifieduser; }
|
|
set { _modifieduser = value; }
|
|
}
|
|
|
|
private DateTime _modifiedtime = DateTime.Now;
|
|
/// <summary>
|
|
/// 最后一次更新操作时间
|
|
/// </summary>
|
|
public DateTime MODIFIEDTIME
|
|
{
|
|
get { return _modifiedtime; }
|
|
set { _modifiedtime = value; }
|
|
}
|
|
|
|
private string _accdate = "";
|
|
/// <summary>
|
|
/// 会计期间
|
|
/// </summary>
|
|
public string ACCDATE
|
|
{
|
|
get { return _accdate; }
|
|
set { _accdate = value; }
|
|
}
|
|
#endregion
|
|
}
|
|
}
|