19 lines
459 B
C#
19 lines
459 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.QueryMap
|
|
{
|
|
public class CheckMonth
|
|
{
|
|
//checkType,checkValue,checkDate,remark
|
|
[NotMapped]
|
|
public string checkType { get; set; }
|
|
[NotMapped]
|
|
public string checkValue { get; set; }
|
|
[NotMapped]
|
|
public DateTime? checkDate { get; set; }
|
|
[NotMapped]
|
|
public string remark { get; set; }
|
|
}
|
|
}
|