ComplianceServer/oldcode/Model/QueryMap/AgentUserModel.cs

15 lines
329 B
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.QueryMap
{
public class AgentUserModel
{
[NotMapped]
public string regcampainid { get; set; }
[NotMapped]
public string ctime { get; set; }
[NotMapped]
public string etime { get; set; }
}
}