31 lines
1.1 KiB
C#
31 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WX.CRM.Model.DTO
|
|
{
|
|
public class MyActivityResDto
|
|
{
|
|
public decimal? logId { get; set; }
|
|
public decimal? ResourceTypeId { get; set; }
|
|
public string ResourceTypeName { get; set; }
|
|
public string ResourceTag { get; set; }
|
|
public string ActivityName { get; set; }
|
|
public decimal Activityid { get; set; }
|
|
public string ActivityRemark { get; set; }
|
|
public DateTime? CTime { get; set; }
|
|
public string ResId { get; set; }
|
|
public string CName { get; set; }
|
|
public string IsBound { get; set; }
|
|
public string FollowInfo { get; set; }
|
|
public DateTime? FollowTime { get; set; }
|
|
public string Group { get; set; }
|
|
public decimal? InnerUserId { get; set; }
|
|
public string gname { get; set; }
|
|
public string eidInfo { get; set; }
|
|
public int? DeptId { get; set; }
|
|
public string DeptName { get; set; }
|
|
}
|
|
} |