31 lines
699 B
C#
31 lines
699 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
public partial class QC_USERSCOREDETAIL
|
|
{
|
|
}
|
|
[Serializable]
|
|
public class UserScoreDetialResult
|
|
{
|
|
[NotMapped]
|
|
public List<QC_USERSCOREDETAIL> Data { get; set; }
|
|
[NotMapped]
|
|
public bool result { get; set; }
|
|
[NotMapped]
|
|
public string retCode { get; set; }
|
|
}
|
|
public class UserKey
|
|
{
|
|
[NotMapped]
|
|
public string deptCode { get; set; }
|
|
[NotMapped]
|
|
public DateTime stime { get; set; }
|
|
[NotMapped]
|
|
public DateTime etime { get; set; }
|
|
|
|
}
|
|
}
|