using System;
using System.Collections.Generic;
using System.Text;
namespace DTO
{
public class OperationEntity
{
public OperationEntity()
{
Id = "0";
DtlId = "0";
Remark = "";
}
///
/// 提交删除等 sysid
///
public string Id { get; set; }
///
/// 提交删除等 明细ID 有可能不使用
///
public string DtlId { get; set; }
///
/// 提交删除等操作备注,有可能无值
///
public string Remark { get; set; }
}
}