namespace wcftest.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class TMS_Claim_Acceptance
|
{
|
[Key]
|
public int Claim_Acceptance_Id { get; set; }
|
|
public int Claim_Id { get; set; }
|
|
public DateTime? ModifyDate { get; set; }
|
|
public int? CreateID { get; set; }
|
|
[StringLength(50)]
|
public string Creator { get; set; }
|
|
public DateTime? CreateDate { get; set; }
|
|
public int? ModifyID { get; set; }
|
|
[StringLength(50)]
|
public string Modifier { get; set; }
|
|
[StringLength(50)]
|
public string ClaimAcceptanceType { get; set; }
|
|
[StringLength(1000)]
|
public string ClaimAcceptanceDesc { get; set; }
|
|
[StringLength(50)]
|
public string AcceptanceWay { get; set; }
|
|
public string ExpandFields { get; set; }
|
|
public virtual TMS_Claim TMS_Claim { get; set; }
|
}
|
}
|