1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.SystemView
- {
- public class ArrayentitysetView
- {
-
-
-
- public string InstanceID { get; set; }
-
-
-
- public string InstanceProcessID { get; set; }
-
-
-
- public string AppID { get; set; }
-
-
-
- public string AppName { get; set; }
-
-
-
- public string InstanceName { get; set; }
- public int PID { get; set; }
- public string PendingUserType { get; set; }
-
-
-
- public string PendingUsers { get; set; }
- public DateTime PendingTime { get; set; }
- public string PName { get; set; }
- public string WorkBy { get; set; }
- public DateTime WorkTime { get; set; }
-
-
-
- public string Comment { get; set; }
- public string Url_Form { get; set; }
- public string Url_Query { get; set; }
- public string Url_Setting { get; set; }
- public string CreateBy { get; set; }
- public DateTime CreateTime { get; set; }
- public int dostate { get; set; }
- public string status { get; set; }
- public string msg1 { get; set; }
- }
- }
|