Commit e83f9dba by tkfftk

testing

git-svn-id: https://dev.intra.insomnia.fi/svn/trunk@40 8cf89bec-f6a3-4178-919f-364fb3449fe5
1 parent 37118c95
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
* To change this template, choose Tools | Templates * To change this template, choose Tools | Templates
* and open the template in the editor. * and open the template in the editor.
*/ */
package fi.insomnia.bortal.model; package fi.insomnia.bortal.model;
import java.io.Serializable; import java.io.Serializable;
...@@ -36,6 +35,7 @@ import javax.persistence.TemporalType; ...@@ -36,6 +35,7 @@ import javax.persistence.TemporalType;
@NamedQuery(name = "Bill.findByReferenceNumber", query = "SELECT b FROM Bill b WHERE b.referenceNumber = :referenceNumber"), @NamedQuery(name = "Bill.findByReferenceNumber", query = "SELECT b FROM Bill b WHERE b.referenceNumber = :referenceNumber"),
@NamedQuery(name = "Bill.findByNotes", query = "SELECT b FROM Bill b WHERE b.notes = :notes")}) @NamedQuery(name = "Bill.findByNotes", query = "SELECT b FROM Bill b WHERE b.notes = :notes")})
public class Bill implements Serializable { public class Bill implements Serializable {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
@Id @Id
@Basic(optional = false) @Basic(optional = false)
...@@ -155,5 +155,4 @@ public class Bill implements Serializable { ...@@ -155,5 +155,4 @@ public class Bill implements Serializable {
public String toString() { public String toString() {
return "fi.insomnia.bortal.model.Bill[billsId=" + billsId + "]"; return "fi.insomnia.bortal.model.Bill[billsId=" + billsId + "]";
} }
} }
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!