You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.4 KiB
64 lines
1.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Data;
|
|
using QMFrameWork.Data.Attributes;
|
|
using QMAPP.MESReport.Entity.Tables;
|
|
|
|
namespace QMAPP.MESReport.Entity.LineQTY
|
|
{
|
|
/// <summary>
|
|
/// 生产发运统计 数据MODEL
|
|
/// 于子清
|
|
/// 2017-10-13
|
|
/// </summary>
|
|
[DBTable(TableName = "T_SA_SHIPMENTCOUNT")]
|
|
public class ShipmentCountConditionModel : T_SA_LINEDAYQTYCOUNT
|
|
{
|
|
/// <summary>
|
|
/// 起始日期
|
|
/// </summary>
|
|
public string START_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束日期
|
|
/// </summary>
|
|
public string END_DATE { get; set; }
|
|
|
|
///<summary>
|
|
///商品类型
|
|
///</summary>
|
|
public string MATERIAL_CODE { get; set; }
|
|
|
|
///<summary>
|
|
///统计类型
|
|
///</summary>
|
|
public string TYPE_COUNT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 日
|
|
/// </summary>
|
|
public string TDAY { get; set; }
|
|
|
|
/// <summary>
|
|
/// 月
|
|
/// </summary>
|
|
public string TMONTH { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料名
|
|
/// </summary>
|
|
public string MATERIAL_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 日期
|
|
/// </summary>
|
|
public string SCANDATE { get; set; }
|
|
|
|
|
|
|
|
public string MaterialValue { get; set; }
|
|
|
|
}
|
|
}
|
|
|