34 lines
699 B
C#
34 lines
699 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.QcMgr.Entities
|
|
{
|
|
public class CheckPlanInput
|
|
{
|
|
public string name { get; set; }
|
|
|
|
public string status { get; set; }
|
|
|
|
public string checktype { get; set; }
|
|
|
|
public string numtype { get; set; }
|
|
|
|
public string pagetype { get; set; }
|
|
|
|
public string writerule { get; set; }
|
|
|
|
public string remind { get; set; }
|
|
|
|
public string attachment { get; set; }
|
|
|
|
public string isaddmul { get; set; }
|
|
|
|
public string triggertype { get; set; }
|
|
|
|
public string content { get; set; }
|
|
}
|
|
}
|