Subversion Repository Public Repository

Satyam

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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.bestray.healthcareemr.Vo;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;

/**
 *
 * @author user3
 */
@Entity
@Table(name="t_global")
public class TGlobal implements java.io.Serializable{
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Column(name="id")
    private Long id;
    
    @Column(name="conception_period")
    private Long conceptionPeriod;

    @Column(name="lmt_period")
    private Long lmtPeriod;
    
    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public Long getLmtPeriod() {
        return lmtPeriod;
    }

    public void setLmtPeriod(Long lmtPeriod) {
        this.lmtPeriod = lmtPeriod;
    }

    public Long getConceptionPeriod() {
        return conceptionPeriod;
    }

    public void setConceptionPeriod(Long conceptionPeriod) {
        this.conceptionPeriod = conceptionPeriod;
    }
    
    
        
}

Commits for Satyam/AuroCareEMR/src/main/java/com/bestray/healthcareemr/Vo/TGlobal.java

Diff revisions: vs.
Revision Author Commited Message
1 girijabapi picture girijabapi Fri 20 Jul, 2018 05:59:17 +0000