179 lines
5.3 KiB
C#
179 lines
5.3 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
using WMS.Attirubte;
|
|||
|
|
|
|||
|
|
namespace WMS.Model.CK
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
[Serializable]
|
|||
|
|
[TableClmAttribute(TableName = "T_CK_PACKWEIGHING")]
|
|||
|
|
public class PackWeighingModel
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
//快递公司单号
|
|||
|
|
private string _log_com_id = string.Empty;
|
|||
|
|
//快递公司名称
|
|||
|
|
private string _log_com_name = string.Empty;
|
|||
|
|
//当月累计快递单量
|
|||
|
|
private decimal _sumcount = 0;
|
|||
|
|
//当月累计物料重量
|
|||
|
|
private decimal _sumweight = 0;
|
|||
|
|
//称重人
|
|||
|
|
private string _weightman = string.Empty;
|
|||
|
|
//称重人名称
|
|||
|
|
private string _weightman_name = string.Empty;
|
|||
|
|
//称重月份
|
|||
|
|
private decimal _weightmonth = 0;
|
|||
|
|
//录入人
|
|||
|
|
private string _operatorid = string.Empty;
|
|||
|
|
//录入人名称
|
|||
|
|
private string _operator = string.Empty;
|
|||
|
|
//录入时间
|
|||
|
|
private DateTime _operatedate = DateTime.Parse("1900-01-01");
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 快递公司单号
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("快递公司单号")]
|
|||
|
|
[TableClmAttribute(JoinTableClmName = "LOG_COM_NAME", JoinTableClm = "LOG_COM_ID", ClmJoinTable = "T_BASE_LOGISTICSCOMINFO")]
|
|||
|
|
public string LOGCOMID
|
|||
|
|
{
|
|||
|
|
get { return _log_com_id; }
|
|||
|
|
set { _log_com_id = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private string _storage_id = string.Empty;
|
|||
|
|
private string _storage_name = string.Empty;
|
|||
|
|
private string _area_id = string.Empty;
|
|||
|
|
private string _area_name = string.Empty;
|
|||
|
|
/// <summary>
|
|||
|
|
/// 仓库
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("仓库")]
|
|||
|
|
[TableClmAttribute(ClmJoinTable = "T_BASE_STORAGEINFO", JoinTableClm = "STORAGE_ID", JoinTableClmName = "STORAGE_NAME")]
|
|||
|
|
public string STORAGE_ID
|
|||
|
|
{
|
|||
|
|
set { _storage_id = value; }
|
|||
|
|
get { return _storage_id; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 仓库
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("仓库")]
|
|||
|
|
[TableClm(NoSelect = false)]
|
|||
|
|
public string STORAGE_NAME
|
|||
|
|
{
|
|||
|
|
set { _storage_name = value; }
|
|||
|
|
get { return _storage_name; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 库区编号
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("库区")]
|
|||
|
|
[TableClmAttribute(JoinTableClmName = "STORAGE_AREA_NAME", JoinTableClm = "STORAGE_AREA_ID", ClmJoinTable = "T_BASE_STORAGE_AREA")]
|
|||
|
|
public string AREA_ID
|
|||
|
|
{
|
|||
|
|
set { _area_id = value; }
|
|||
|
|
get { return _area_id; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 库区编号
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("库区")]
|
|||
|
|
[TableClm(NoSelect = false)]
|
|||
|
|
public string AREA_NAME
|
|||
|
|
{
|
|||
|
|
set { _area_name = value; }
|
|||
|
|
get { return _area_name; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 快递公司名称
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("快递公司名称")]
|
|||
|
|
[TableClm(NoSelect = false)]
|
|||
|
|
public string LOGCOMNAME
|
|||
|
|
{
|
|||
|
|
get { return _log_com_name; }
|
|||
|
|
set { _log_com_name = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 称重日期
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("称重日期")]
|
|||
|
|
public decimal WEIGHTMONTH
|
|||
|
|
{
|
|||
|
|
get { return _weightmonth; }
|
|||
|
|
set { _weightmonth = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当月累计快递单量
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("当月累计快递单量")]
|
|||
|
|
public decimal SUMCOUNT
|
|||
|
|
{
|
|||
|
|
get { return _sumcount; }
|
|||
|
|
set { _sumcount = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当月累计物料重量
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("当月累计物料重量")]
|
|||
|
|
public decimal SUMWEIGHT
|
|||
|
|
{
|
|||
|
|
get { return _sumweight; }
|
|||
|
|
set { _sumweight = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 称重人
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("称重人")]
|
|||
|
|
[TableClmAttribute(JoinTableClmName = "NAME", JoinTableClm = "USER_ID", ClmJoinTable = "T_BASE_USERINFO")]
|
|||
|
|
public string WEIGHTMAN
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
get { return _weightman; }
|
|||
|
|
set { _weightman = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 称重人名称
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("称重人名称")]
|
|||
|
|
[TableClm(NoSelect = false)]
|
|||
|
|
public string WEIGHTMAN_NAME
|
|||
|
|
{
|
|||
|
|
get { return _weightman_name; }
|
|||
|
|
set { _weightman_name = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 操作人ID
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("录入人")]
|
|||
|
|
[TableClmAttribute(JoinTableClmName = "NAME", JoinTableClm = "USER_ID", ClmJoinTable = "T_BASE_USERINFO")]
|
|||
|
|
public string OPERATORID { get { return _operatorid; } set { _operatorid = value; } }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 操作人
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("录入人")]
|
|||
|
|
[TableClm(NoSelect = false)]
|
|||
|
|
public string OPERATORNAME { get { return _operator; } set { _operator = value; } }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 操作时间
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("录入日期")]
|
|||
|
|
public DateTime OPERATEDATE { get { return _operatedate; } set { _operatedate = value; } }
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|