• R/O
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision2419 (tree)
Time2022-10-05 20:52:42
Authort_nakayama1971

Log Message

(empty log message)

Change Summary

Incremental Difference

--- trunk/framework/pjDb/src/main/java/project/db/model/FooMaster.java (revision 2418)
+++ trunk/framework/pjDb/src/main/java/project/db/model/FooMaster.java (revision 2419)
@@ -14,7 +14,7 @@
1414 */
1515 @org.hibernate.annotations.DynamicInsert
1616 @Entity
17-@Table(name="foo_master"
17+@Table(name = "foo_master"
1818 )
1919 public class FooMaster implements java.io.Serializable {
2020
@@ -31,10 +31,10 @@
3131 private String updateId;
3232 private Timestamp updateDatetime;
3333
34- @SequenceGenerator(name="project.db.model.FooMasterIdGenerator", sequenceName="generator", allocationSize=1)
34+ @SequenceGenerator(name = "project.db.model.FooMasterIdGenerator", sequenceName = "generator", allocationSize = 1)
3535 @Id
36- @GeneratedValue(strategy=SEQUENCE, generator="project.db.model.FooMasterIdGenerator")
37- @Column(name="id", unique=true, nullable=false)
36+ @GeneratedValue(strategy = SEQUENCE, generator = "project.db.model.FooMasterIdGenerator")
37+ @Column(name = "id", unique = true, nullable = false)
3838 public Long getId() {
3939 return this.id;
4040 }
@@ -43,7 +43,7 @@
4343 this.id = id;
4444 }
4545
46- @Column(name="foo_id", nullable=false, length=32)
46+ @Column(name = "foo_id", nullable = false, length = 32)
4747 public String getFooId() {
4848 return this.fooId;
4949 }
@@ -52,7 +52,7 @@
5252 this.fooId = fooId;
5353 }
5454
55- @Column(name="hoo_id", nullable=false, length=64)
55+ @Column(name = "hoo_id", nullable = false, length = 64)
5656 public String getHooId() {
5757 return this.hooId;
5858 }
@@ -61,7 +61,7 @@
6161 this.hooId = hooId;
6262 }
6363
64- @Column(name="toroku_datetime", nullable=false, length=29)
64+ @Column(name = "toroku_datetime", nullable = false, length = 29)
6565 public Timestamp getTorokuDatetime() {
6666 return this.torokuDatetime;
6767 }
@@ -70,7 +70,7 @@
7070 this.torokuDatetime = torokuDatetime;
7171 }
7272
73- @Column(name="foo_name", nullable=false, length=128)
73+ @Column(name = "foo_name", nullable = false, length = 128)
7474 public String getFooName() {
7575 return this.fooName;
7676 }
@@ -79,7 +79,7 @@
7979 this.fooName = fooName;
8080 }
8181
82- @Column(name="foo_address", length=256)
82+ @Column(name = "foo_address", length = 256)
8383 public String getFooAddress() {
8484 return this.fooAddress;
8585 }
@@ -88,7 +88,7 @@
8888 this.fooAddress = fooAddress;
8989 }
9090
91- @Column(name="foo_phone", length=128)
91+ @Column(name = "foo_phone", length = 128)
9292 public String getFooPhone() {
9393 return this.fooPhone;
9494 }
@@ -97,7 +97,7 @@
9797 this.fooPhone = fooPhone;
9898 }
9999
100- @Column(name="version", nullable=false)
100+ @Column(name = "version", nullable = false)
101101 public int getVersion() {
102102 return this.version;
103103 }
@@ -106,7 +106,7 @@
106106 this.version = version;
107107 }
108108
109- @Column(name="insert_id", nullable=false, length=32)
109+ @Column(name = "insert_id", nullable = false, length = 32)
110110 public String getInsertId() {
111111 return this.insertId;
112112 }
@@ -115,7 +115,7 @@
115115 this.insertId = insertId;
116116 }
117117
118- @Column(name="insert_datetime", nullable=false, length=29)
118+ @Column(name = "insert_datetime", nullable = false, length = 29)
119119 public Timestamp getInsertDatetime() {
120120 return this.insertDatetime;
121121 }
@@ -124,7 +124,7 @@
124124 this.insertDatetime = insertDatetime;
125125 }
126126
127- @Column(name="update_id", nullable=false, length=32)
127+ @Column(name = "update_id", nullable = false, length = 32)
128128 public String getUpdateId() {
129129 return this.updateId;
130130 }
@@ -133,7 +133,7 @@
133133 this.updateId = updateId;
134134 }
135135
136- @Column(name="update_datetime", nullable=false, length=29)
136+ @Column(name = "update_datetime", nullable = false, length = 29)
137137 public Timestamp getUpdateDatetime() {
138138 return this.updateDatetime;
139139 }