20 lines
516 B
C#
20 lines
516 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RIZO.Model.Business
|
|
{
|
|
public class ProcessInfo
|
|
{
|
|
public int Id { get; set; }
|
|
public string ProcessCode { get; set; }
|
|
public string ProcessName { get; set; }
|
|
public string CreateBy { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
public string UpdateBy { get; set; }
|
|
public DateTime? UpdateTime { get; set; }
|
|
}
|
|
}
|