You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
972 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace SlnMesnac.Model.domain
{
public class TaskInfo
{
public string TaskNo { get; set; }
public string KBarCode { get; set; }
public string RecordTime { get; set; }
public string QBarCode { get; set; }
}
public class TaskInfo1 : TaskInfo
{
public string Station1 { get; set; }
public string Station2 { get; set; }
public string Station3 { get; set; }
public string Station4 { get; set; }
public string Station5 { get; set; }
public string Station6 { get; set; }
}
public class TaskInfo2 : TaskInfo
{
public string Station1 { get; set; }
public string Station2 { get; set; }
public string Station3 { get; set; }
public string Station4 { get; set; }
}
public class TaskInfo3 : TaskInfo
{
public string Station1 { get; set; }
}
}