17 lines
372 B
C#
17 lines
372 B
C#
|
using MyCode.Project.Infrastructure.Enumeration;
|
|||
|
using System;
|
|||
|
|
|||
|
namespace MyCode.Project.Domain.Dtos.Common
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 行编辑
|
|||
|
/// </summary>
|
|||
|
public class RowEdit
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 行数据状态,0:无操作,1:新增,2:更新,3:删除
|
|||
|
/// </summary>
|
|||
|
public RowDataStatus RowStatus { get; set; }
|
|||
|
}
|
|||
|
}
|