Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
36152 aman 1
package com.spice.profitmandi.dao.entity.fofo;
2
 
3
import javax.persistence.*;
4
 
5
@Entity
6
@Table(name = "fofo.fin_service_document")
7
public class FinServiceDocument {
8
 
9
    @Id
10
    @Column(name = "id")
11
    @GeneratedValue(strategy = GenerationType.IDENTITY)
12
    private int id;
13
 
14
    @Column(name = "request_id")
15
    private int requestId;
16
 
17
    @Column(name = "doc_type")
18
    private String docType;
19
 
20
    @Column(name = "document_id")
21
    private int documentId;
22
 
23
    public int getId() {
24
        return id;
25
    }
26
 
27
    public void setId(int id) {
28
        this.id = id;
29
    }
30
 
31
    public int getRequestId() {
32
        return requestId;
33
    }
34
 
35
    public void setRequestId(int requestId) {
36
        this.requestId = requestId;
37
    }
38
 
39
    public String getDocType() {
40
        return docType;
41
    }
42
 
43
    public void setDocType(String docType) {
44
        this.docType = docType;
45
    }
46
 
47
    public int getDocumentId() {
48
        return documentId;
49
    }
50
 
51
    public void setDocumentId(int documentId) {
52
        this.documentId = documentId;
53
    }
54
 
55
    @Override
56
    public String toString() {
57
        return "FinServiceDocument{" +
58
                "id=" + id +
59
                ", requestId=" + requestId +
60
                ", docType='" + docType + '\'' +
61
                ", documentId=" + documentId +
62
                '}';
63
    }
64
}