Qsjl.java 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. package com.uas.entity;
  2. import com.alibaba.fastjson.annotation.JSONField;
  3. import javax.persistence.*;
  4. /**
  5. * @author koul
  6. * @email koul@usoftchina.com
  7. * @date 2020-11-02 11:18
  8. */
  9. @Entity
  10. @Table(name = "FBQSJL")
  11. public class Qsjl {
  12. @Id
  13. @SequenceGenerator(name="FBQSJL_SEQ", sequenceName="FBQSJL_SEQ", allocationSize=1)
  14. @GeneratedValue(strategy= GenerationType.SEQUENCE, generator="FBQSJL_SEQ")
  15. private Long fq_id;
  16. @JSONField(name = "发布时间")
  17. private String fq_releasetime;
  18. @JSONField(name = "名称")
  19. private String fq_name;
  20. @JSONField(name = "法定代表人姓名")
  21. private String fq_representative;
  22. @JSONField(name = "税务机关")
  23. private String fq_taxauthorities;
  24. @JSONField(name = "税种")
  25. private String fq_tax;
  26. @JSONField(name = "经营地址")
  27. private String fq_address;
  28. @JSONField(name = "识别号")
  29. private String fq_identifier;
  30. @JSONField(name = "金额")
  31. private Float fq_amount;
  32. @JSONField(name = "高级税务机关")
  33. private String fq_gjswjg;
  34. @JSONField(name = "统一社会信用编号")
  35. private String fq_tyshxycode;
  36. private Long fq_fbid;
  37. private int fq_detno;
  38. public int getFq_detno() {
  39. return fq_detno;
  40. }
  41. public void setFq_detno(int fq_detno) {
  42. this.fq_detno = fq_detno;
  43. }
  44. public Long getFq_fbid() {
  45. return fq_fbid;
  46. }
  47. public void setFq_fbid(Long fq_fbid) {
  48. this.fq_fbid = fq_fbid;
  49. }
  50. public Long getFq_id() {
  51. return fq_id;
  52. }
  53. public void setFq_id(Long fq_id) {
  54. this.fq_id = fq_id;
  55. }
  56. public String getFq_releasetime() {
  57. return fq_releasetime;
  58. }
  59. public void setFq_releasetime(String fq_releasetime) {
  60. this.fq_releasetime = fq_releasetime;
  61. }
  62. public String getFq_name() {
  63. return fq_name;
  64. }
  65. public void setFq_name(String fq_name) {
  66. this.fq_name = fq_name;
  67. }
  68. public String getFq_representative() {
  69. return fq_representative;
  70. }
  71. public void setFq_representative(String fq_representative) {
  72. this.fq_representative = fq_representative;
  73. }
  74. public String getFq_taxauthorities() {
  75. return fq_taxauthorities;
  76. }
  77. public void setFq_taxauthorities(String fq_taxauthorities) {
  78. this.fq_taxauthorities = fq_taxauthorities;
  79. }
  80. public String getFq_tax() {
  81. return fq_tax;
  82. }
  83. public void setFq_tax(String fq_tax) {
  84. this.fq_tax = fq_tax;
  85. }
  86. public String getFq_address() {
  87. return fq_address;
  88. }
  89. public void setFq_address(String fq_address) {
  90. this.fq_address = fq_address;
  91. }
  92. public String getFq_identifier() {
  93. return fq_identifier;
  94. }
  95. public void setFq_identifier(String fq_identifier) {
  96. this.fq_identifier = fq_identifier;
  97. }
  98. public Float getFq_amount() {
  99. return fq_amount;
  100. }
  101. public void setFq_amount(Float fq_amount) {
  102. this.fq_amount = fq_amount;
  103. }
  104. public String getFq_gjswjg() {
  105. return fq_gjswjg;
  106. }
  107. public void setFq_gjswjg(String fq_gjswjg) {
  108. this.fq_gjswjg = fq_gjswjg;
  109. }
  110. public String getFq_tyshxycode() {
  111. return fq_tyshxycode;
  112. }
  113. public void setFq_tyshxycode(String fq_tyshxycode) {
  114. this.fq_tyshxycode = fq_tyshxycode;
  115. }
  116. }