46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.QueryMap
|
|
{
|
|
public class GroupByActivity
|
|
{
|
|
[NotMapped]
|
|
public decimal ResTypeId { get; set; }
|
|
[NotMapped]
|
|
public string ResTypeCode { get; set; }
|
|
[NotMapped]
|
|
public string TypeName { get; set; }
|
|
[NotMapped]
|
|
public decimal ActivityId { get; set; }
|
|
[NotMapped]
|
|
public string ActivityName { get; set; }
|
|
[NotMapped]
|
|
public decimal ActivityCountByCurDay { get; set; }
|
|
[NotMapped]
|
|
public decimal ActivityCountByTime { get; set; }
|
|
[NotMapped]
|
|
public DateTime ActivityApplyTime { get; set; }
|
|
[NotMapped]
|
|
public string strategyname { get; set; }
|
|
[NotMapped]
|
|
public string strategymemo { get; set; }
|
|
[NotMapped]
|
|
public string kword { get; set; }
|
|
|
|
[NotMapped]
|
|
public decimal? dept { get; set; }
|
|
}
|
|
|
|
public class GroupByActivity_Export
|
|
{
|
|
public string ActivityName { get; set; }
|
|
|
|
public string ActivityCountByCurDay { get; set; }
|
|
|
|
public string ActivityCountByTime { get; set; }
|
|
|
|
public string StrategyName { get; set; }
|
|
}
|
|
}
|