Implemented crud operation for form,form-field and form-template
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package net.gepafin.tendermanagement.entities;
|
||||
|
||||
import jakarta.persistence.*;
|
||||
import lombok.Data;
|
||||
import lombok.Builder;
|
||||
|
||||
@Entity
|
||||
@Table(name = "FORM_TEMPLATE")
|
||||
@Data
|
||||
@Builder
|
||||
public class FormTemplateEntity extends BaseEntity{
|
||||
|
||||
@Column(name = "LABEL", length = 255)
|
||||
private String label;
|
||||
|
||||
@Column(name = "CONTENT", length = 255)
|
||||
private String content;
|
||||
}
|
||||
Reference in New Issue
Block a user