Subversion Repository Public Repository

Aurocare_27_07_2018

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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
package com.bestray.healthcarecommonutil.vo;
// Generated Apr 16, 2013 10:57:49 AM by Hibernate Tools 3.2.1.GA
import java.util.Set;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.OneToMany;
import javax.persistence.Table;


// TODO: Auto-generated Javadoc
/**
 * The Class TCCodeType.
 */
@NamedQueries({
	@NamedQuery(
	name = "findAllCodeTypeList",
	query = "from TCCodeType order by codeTypeName asc "
	),
        @NamedQuery(
	name = "searchForCodeTypeName",
	query = "from TCCodeType tc where tc.codeTypeName = ? "
	)
})
@Entity
@Table(name="t_c_code_type")
@org.hibernate.annotations.Entity(dynamicInsert=true)
public class TCCodeType  implements java.io.Serializable {


    /** The code type id. */
    @Id
    //@GeneratedValue
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Column(name="code_type_id")
     private Integer codeTypeId;
    
    /** The code type name. */
    @Column(name="code_type_name")
     private String codeTypeName;
    
    /** The code type comment. */
    @Column(name="code_type_comment")
     private String codeTypeComment;
    
    /** The system released. */
    @Column(name="system_released")
     private String systemReleased;
     //private Set TCCodeValueses = new HashSet(0);
    /** The code values. */
     @OneToMany(mappedBy="tccodetype")
     private Set<TCCodeValues> codeValues;
    

    /**
     * Instantiates a new tC code type.
     */
    public TCCodeType() {
    }

    /*public TCCodeType(String codeTypeName) {
        this.codeTypeName = codeTypeName;
    }
    public TCCodeType(String codeTypeName, String codeTypeComment, String systemReleased, Set TCCodeValueses) {
       this.codeTypeName = codeTypeName;
       this.codeTypeComment = codeTypeComment;
       this.systemReleased = systemReleased;
       this.TCCodeValueses = TCCodeValueses;
    }*/
   
    /**
     * Gets the code type id.
     *
     * @return the code type id
     */
    public Integer getCodeTypeId() {
        return this.codeTypeId;
    }
    
    /**
     * Sets the code type id.
     *
     * @param codeTypeId the new code type id
     */
    public void setCodeTypeId(Integer codeTypeId) {
        this.codeTypeId = codeTypeId;
    }
    
    /**
     * Gets the code type name.
     *
     * @return the code type name
     */
    public String getCodeTypeName() {
        return this.codeTypeName;
    }
    
    /**
     * Sets the code type name.
     *
     * @param codeTypeName the new code type name
     */
    public void setCodeTypeName(String codeTypeName) {
        this.codeTypeName = codeTypeName;
    }
    
    /**
     * Gets the code type comment.
     *
     * @return the code type comment
     */
    public String getCodeTypeComment() {
        return this.codeTypeComment;
    }
    
    /**
     * Sets the code type comment.
     *
     * @param codeTypeComment the new code type comment
     */
    public void setCodeTypeComment(String codeTypeComment) {
        this.codeTypeComment = codeTypeComment;
    }
    
    /**
     * Gets the system released.
     *
     * @return the system released
     */
    public String getSystemReleased() {
        return this.systemReleased;
    }
    
    /**
     * Sets the system released.
     *
     * @param systemReleased the new system released
     */
    public void setSystemReleased(String systemReleased) {
        this.systemReleased = systemReleased;
    }
   /* public Set getTCCodeValueses() {
        return this.TCCodeValueses;
    }
    
    public void setTCCodeValueses(Set TCCodeValueses) {
        this.TCCodeValueses = TCCodeValueses;
    }*/
    /**
    * Gets the code values.
    *
    * @return the code values
    */
   public Set<TCCodeValues> getCodeValues() {
        return codeValues;
    }

    /**
     * Sets the employees.
     *
     * @param codeValues the new employees
     */
    public void setEmployees(Set<TCCodeValues> codeValues) {
        this.codeValues = codeValues;
    }
    
    /* (non-Javadoc)
     * @see java.lang.Object#toString()
     */
    public String toString(){
        return codeTypeName;
    }
}


Commits for Aurocare_27_07_2018/AuroCareCommonUtil/src/main/java/com/bestray/healthcarecommonutil/vo/TCCodeType.java

Diff revisions: vs.
Revision Author Commited Message
1 girijabapi picture girijabapi Fri 27 Jul, 2018 07:21:55 +0000