yzh
2022-05-11 be55e632a9a5367d9ae186cc29f43cf345004525
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 
using System;
 
namespace Dao
{
  public class RptCode
  {
    public string NewCode { get; set; }
 
    public string OldCode { get; set; }
 
    public DateTime CreateTime { get; set; }
 
    public string Remark { get; set; }
  }
}