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