Tshangpin.java 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. package com.post.model;
  2. import java.util.HashSet;
  3. import java.util.Set;
  4. import javax.persistence.CascadeType;
  5. import javax.persistence.Column;
  6. import javax.persistence.Entity;
  7. import javax.persistence.FetchType;
  8. import javax.persistence.Id;
  9. import javax.persistence.OneToMany;
  10. import javax.persistence.Table;
  11. /**
  12. * Tshangpin entity. @author MyEclipse Persistence Tools
  13. */
  14. @Entity
  15. @Table(name = "tshangpin", catalog = "cwfx")
  16. public class Tshangpin implements java.io.Serializable {
  17. // Fields
  18. private String cid;
  19. private String cname;
  20. private Set<Tcost> tcosts = new HashSet<Tcost>(0);
  21. // Constructors
  22. /** default constructor */
  23. public Tshangpin() {
  24. }
  25. /** minimal constructor */
  26. public Tshangpin(String cid) {
  27. this.cid = cid;
  28. }
  29. /** full constructor */
  30. public Tshangpin(String cid, String cname, Set<Tcost> tcosts) {
  31. this.cid = cid;
  32. this.cname = cname;
  33. this.tcosts = tcosts;
  34. }
  35. // Property accessors
  36. @Id
  37. @Column(name = "CID", unique = true, nullable = false, length = 36)
  38. public String getCid() {
  39. return this.cid;
  40. }
  41. public void setCid(String cid) {
  42. this.cid = cid;
  43. }
  44. @Column(name = "CNAME", length = 50)
  45. public String getCname() {
  46. return this.cname;
  47. }
  48. public void setCname(String cname) {
  49. this.cname = cname;
  50. }
  51. @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY, mappedBy = "tshangpin")
  52. public Set<Tcost> getTcosts() {
  53. return this.tcosts;
  54. }
  55. public void setTcosts(Set<Tcost> tcosts) {
  56. this.tcosts = tcosts;
  57. }
  58. }