TG.WXCRM.V4/Model/crmModel/ActivityResModel.cs

50 lines
1.7 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WX.CRM.Model.crmModel
{
public class ActivityResModel
{
public decimal? logId { get; set; }
public decimal? inneruserid { get; set; }
public decimal resourceType { get; set; }
public string resourceTypeName { get; set; }
public decimal activityid { get; set; }
public string activitytype { get; set; }
public string remark { get; set; }
public DateTime? ctime { get; set; }
public string resid { get; set; }
public string resname { get; set; }
public string add { get; set; }
public string eidInfo { get; set; }
public decimal? eid { get; set; }
public string name { get; set; }
public decimal? gid { get; set; }
public string gname { get; set; }
public decimal? deptid { get; set; }
public string deptName { get; set; }
public string sourcetype { get; set; }
}
public class ActiveQueryModel
{
public string resId { get; set; }
public decimal? resourceType { get; set; }
public string cmbActive { get; set; }
public string actname { get; set; }
public string extxml { get; set; }
public DateTime? xstime { get; set; } = DateTime.Now.AddDays(-1);
public DateTime? xetime { get; set; } = DateTime.Now;
public string eid { get; set; }
public decimal? txt_companyId { get; set; }
public string txt_deptId { get; set; }
public string txt_groupIds { get; set; }
public string txt_userId { get; set; }
public int? IsBound { get; set; }
public int? deptlineid { get; set; }
}
}