天津投入产出系统后端
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.
 
 
 
 
 
 

43 lines
962 B

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>
/// 设备用电分析
/// 于子清
/// 2017-10-24
/// </summary>
public class WasteRateCountDModel : T_SA_LINEQTYCOUNT
{
/// <summary>
/// 起始日期
/// </summary>
public string START_DATE { get; set; }
/// <summary>
/// 结束日期
/// </summary>
public string END_DATE { get; set; }
/// <summary>
/// 废品率
/// </summary>
public string FLV { get; set; }
/// <summary>
/// 日期
/// </summary>
public string TDAY { get; set; }
/// <summary>
/// 日期类型
/// </summary>
public string TYPE_COUNT { get; set; }
}
}