19 lines
433 B
C#
19 lines
433 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.Model.MAP
|
|
{
|
|
public class CSVR_RECORDSHARED_Extend
|
|
{
|
|
public CSVR_RECORDSHARED RecordShared { get; set; }
|
|
|
|
[NotMapped]
|
|
public decimal? PENALTY { get; set; }
|
|
|
|
[StringLength(2000)]
|
|
[NotMapped]
|
|
public string RESULT { get; set; }
|
|
}
|
|
}
|