-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathPlanPayment.cs
30 lines (29 loc) · 1.14 KB
/
PlanPayment.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
namespace ClaimsApi.Models {
[Table("Plan_Payment")]
public class PlanPayment {
[Column("plan_payment_id")]
public int PlanPaymentId { get; set; }
[Column("primary_payer_id")]
public string PrimaryPayerID { get; set; }
[Column("cob_service_paid_amt", TypeName = "decimal(10,2)")]
public decimal CobServicePaidAmount { get; set; }
[Column("service_code")]
public string ServiceCode { get; set; } // Procedure code
[Column("payment_date")]
public DateTime PaymentDate { get; set; }
[Column("claim_adj_grp_code")]
public string ClaimAdjGroupCode { get; set; }
[Column("claim_adj_reason_code")]
public string ClaimAdjReasonCode { get; set; }
[Column("claim_adj_amt", TypeName = "decimal(10,2)")]
public decimal ClaimAdjAmount { get; set; }
[Column("claim_adj_qty")]
public string ClaimAdjQuantity { get; set; }
[Required]
[Column("claim_id")]
public int ClaimItemId { get; set; }
}
}