17 lines
372 B
C#
Raw Normal View History

2025-04-24 18:31:27 +08:00
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; }
}
}