23 lines
481 B
C#
23 lines
481 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Serializable]
|
|
public partial class QC_BASEUSERSCORE
|
|
{
|
|
}
|
|
[Serializable]
|
|
public class BaseUserCoreResult
|
|
{
|
|
[NotMapped]
|
|
public List<QC_BASEUSERSCORE> Data { get; set; }
|
|
[NotMapped]
|
|
public bool result { get; set; }
|
|
[NotMapped]
|
|
public string retCode { get; set; }
|
|
}
|
|
|
|
}
|