13 lines
395 B
C#
13 lines
395 B
C#
namespace Tnb.EquipMgr.Entities.Dto
|
|
{
|
|
public class EqpSpotReportOutput
|
|
{
|
|
public string id { get; set; }
|
|
public string code { get; set; }
|
|
public string name { get; set; }
|
|
public string workshop_name { get; set; }
|
|
public string month { get; set; }
|
|
public int execute_num { get; set; }
|
|
public int unqualified_num { get; set; }
|
|
}
|
|
} |