|
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; }
|
}
|
|
public class RptAccount
|
{
|
public string Spid { get; set; }
|
public string Proportion { get; set; }
|
public DateTime CreateTime { get; set; }
|
|
|
}
|
}
|