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.
35 lines
721 B
35 lines
721 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace QMAPP.MESReport.Web.Models
|
|
{
|
|
public class TestEChartModel
|
|
{
|
|
public string Cate { set; get; }
|
|
|
|
public string SubCate { set; get; }
|
|
|
|
public string Week { set; get; }
|
|
|
|
public string Max { set; get; }
|
|
|
|
public string Min { set; get; }
|
|
|
|
public string TypeValue { set; get; }
|
|
|
|
public string Value { set; get; }
|
|
|
|
public string StackValue { set; get; }
|
|
|
|
public string Name { set; get; }
|
|
|
|
public double PersonHeight { set; get; }
|
|
|
|
public double PersonWeight { set; get; }
|
|
|
|
public double Diameter { set; get; }
|
|
|
|
}
|
|
}
|
|
|