File tree Expand file tree Collapse file tree
com/acminds/acuteauto/persistence/entities Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ public abstract class AbstractClient extends
2626
2727 private Integer clientId ;
2828 private String clientName ;
29+ private String caption ;
2930 private String clientDesc ;
3031 private Integer yearEstd ;
3132 private String registeredName ;
@@ -52,6 +53,15 @@ public void setClientName(String clientName) {
5253 this .clientName = clientName ;
5354 }
5455
56+ @ Column (name = "CAPTION" , length = 100 )
57+ public String getCaption () {
58+ return this .caption ;
59+ }
60+
61+ public void setCaption (String caption ) {
62+ this .caption = caption ;
63+ }
64+
5565 @ Column (name = "CLIENT_DESC" , length = 200 )
5666 public String getClientDesc () {
5767 return this .clientDesc ;
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ DROP TABLE CLIENT;
5252CREATE TABLE CLIENT (
5353CLIENT_ID INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
5454CLIENT_NAME VARCHAR (60 ) NOT NULL ,
55+ CAPTION VARCHAR (100 ),
5556CLIENT_DESC VARCHAR (200 ),
5657YEAR_ESTD INT (4 ),
5758REGISTERED_NAME VARCHAR (60 )
You can’t perform that action at this time.
0 commit comments