105 lines
1.7 KiB
C#
105 lines
1.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model
|
|
{
|
|
public class DigDataCQMSDataCollectItem
|
|
{
|
|
public string CQMSDataCollectItemId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string CQMSDataCollectId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public int SortIndex
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string CQMSContent
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string MeasureUnit
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string Month1
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string Month2
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string Month3
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string Month4
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string Month5
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string Month6
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string Month7
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string Month8
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string Month9
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string Month10
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string Month11
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string Month12
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string MonthSum
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|