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.
24 lines
580 B
24 lines
580 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EasyBL
|
|
{
|
|
public class CheckFlow
|
|
{
|
|
public string id { set; get; }
|
|
public string Order { set; get; }
|
|
public string SignedWay { set; get; }
|
|
public List<SignedMember> SignedMember { set; get; }
|
|
}
|
|
|
|
public class SignedMember
|
|
{
|
|
public string id { set; get; }
|
|
public string name { set; get; }
|
|
public string deptname { set; get; }
|
|
public string jobname { set; get; }
|
|
}
|
|
}
|