30 lines
575 B
C#
30 lines
575 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RoadFlow.Model
|
|
{
|
|
public partial class rf_flowtask
|
|
{
|
|
[SugarColumn(IsIgnore = true)]
|
|
public string CurrentStepName { get; set; }
|
|
|
|
public rf_flowtask Clone()
|
|
{
|
|
return (rf_flowtask)this.MemberwiseClone();
|
|
}
|
|
}
|
|
public partial class rf_flowtask_Group1
|
|
{
|
|
public string GroupId { get; set; }
|
|
public DateTime ReceiveTime { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|