23 lines
631 B
C#
23 lines
631 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.Model.QueryMap
|
|
{
|
|
public class HGRecordModel
|
|
{
|
|
[NotMapped]
|
|
public CSVR_HGRECORD record { get; set; }
|
|
[NotMapped]
|
|
public Nullable<decimal> MEMOCONTENTID { get; set; }
|
|
[NotMapped]
|
|
public Nullable<decimal> MEMOTYPEID { get; set; }
|
|
[NotMapped]
|
|
public Nullable<decimal> MEMOSUBTYPEID { get; set; }
|
|
[NotMapped]
|
|
public Nullable<decimal> BUSINESSID { get; set; }
|
|
[NotMapped]
|
|
public string STRCONTENT { get; set; }
|
|
}
|
|
}
|