ComplianceServer/oldcode/Core.DTO/Ord/ComplainDto.cs

68 lines
1.5 KiB
C#

using System;
namespace CRM.Core.DTO.Ord
{
public class ComplainDto
{
public decimal pkid { get; set; }
public string resid { get; set; }
public decimal salesid { get; set; }
public string reason { get; set; }
public decimal status { get; set; }
public string fromtype { get; set; }
public string complainlevel { get; set; }
public DateTime? ctime { get; set; }
public DateTime? utime { get; set; }
public string serverid { get; set; }
public string filename { get; set; }
public decimal? recordid { get; set; }
public DateTime? recorddate { get; set; }
public string tradecode { get; set; }
public decimal? deptauditpkid { get; set; }
public string complianguid { get; set; }
public DateTime unhandlewarntime { get; set; }
public DateTime handlewarntime { get; set; }
public string companycode { get; set; }
}
public class ComplainDetialDto
{
public decimal pkid { get; set; }
public decimal? complainid { get; set; }
public string memoid { get; set; }
public string recomplainlevel { get; set; }
public decimal? inneruserid { get; set; }
public string memo { get; set; }
public DateTime? ctime { get; set; }
public string recordid { get; set; }
}
public class ComplainStatusDto
{
public decimal pkid { get; set; }
public decimal status { get; set; }
}
}