1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| using System;
| using System.Collections.Generic;
| using System.Text;
|
| namespace DTO
| {
|
| public class OperationEntity
| {
| public OperationEntity()
| {
| Id = "0";
| DtlId = "0";
| Remark = "";
| }
| /// <summary>
| /// 提交删除等 sysid
| /// </summary>
| public string Id { get; set; }
| /// <summary>
| /// 提交删除等 明细ID 有可能不使用
| /// </summary>
| public string DtlId { get; set; }
| /// <summary>
| /// 提交删除等操作备注,有可能无值
| /// </summary>
| public string Remark { get; set; }
| }
| }
|
|