| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- package com.uas.entity;
- import com.alibaba.fastjson.annotation.JSONField;
- import javax.persistence.*;
- /**
- * @author koul
- * @email koul@usoftchina.com
- * @date 2020-11-02 11:18
- */
- @Entity
- @Table(name = "FBQSJL")
- public class Qsjl {
- @Id
- @SequenceGenerator(name="FBQSJL_SEQ", sequenceName="FBQSJL_SEQ", allocationSize=1)
- @GeneratedValue(strategy= GenerationType.SEQUENCE, generator="FBQSJL_SEQ")
- private Long fq_id;
- @JSONField(name = "发布时间")
- private String fq_releasetime;
- @JSONField(name = "名称")
- private String fq_name;
- @JSONField(name = "法定代表人姓名")
- private String fq_representative;
- @JSONField(name = "税务机关")
- private String fq_taxauthorities;
- @JSONField(name = "税种")
- private String fq_tax;
- @JSONField(name = "经营地址")
- private String fq_address;
- @JSONField(name = "识别号")
- private String fq_identifier;
- @JSONField(name = "金额")
- private Float fq_amount;
- @JSONField(name = "高级税务机关")
- private String fq_gjswjg;
- @JSONField(name = "统一社会信用编号")
- private String fq_tyshxycode;
- private Long fq_fbid;
- private int fq_detno;
- public int getFq_detno() {
- return fq_detno;
- }
- public void setFq_detno(int fq_detno) {
- this.fq_detno = fq_detno;
- }
- public Long getFq_fbid() {
- return fq_fbid;
- }
- public void setFq_fbid(Long fq_fbid) {
- this.fq_fbid = fq_fbid;
- }
- public Long getFq_id() {
- return fq_id;
- }
- public void setFq_id(Long fq_id) {
- this.fq_id = fq_id;
- }
- public String getFq_releasetime() {
- return fq_releasetime;
- }
- public void setFq_releasetime(String fq_releasetime) {
- this.fq_releasetime = fq_releasetime;
- }
- public String getFq_name() {
- return fq_name;
- }
- public void setFq_name(String fq_name) {
- this.fq_name = fq_name;
- }
- public String getFq_representative() {
- return fq_representative;
- }
- public void setFq_representative(String fq_representative) {
- this.fq_representative = fq_representative;
- }
- public String getFq_taxauthorities() {
- return fq_taxauthorities;
- }
- public void setFq_taxauthorities(String fq_taxauthorities) {
- this.fq_taxauthorities = fq_taxauthorities;
- }
- public String getFq_tax() {
- return fq_tax;
- }
- public void setFq_tax(String fq_tax) {
- this.fq_tax = fq_tax;
- }
- public String getFq_address() {
- return fq_address;
- }
- public void setFq_address(String fq_address) {
- this.fq_address = fq_address;
- }
- public String getFq_identifier() {
- return fq_identifier;
- }
- public void setFq_identifier(String fq_identifier) {
- this.fq_identifier = fq_identifier;
- }
- public Float getFq_amount() {
- return fq_amount;
- }
- public void setFq_amount(Float fq_amount) {
- this.fq_amount = fq_amount;
- }
- public String getFq_gjswjg() {
- return fq_gjswjg;
- }
- public void setFq_gjswjg(String fq_gjswjg) {
- this.fq_gjswjg = fq_gjswjg;
- }
- public String getFq_tyshxycode() {
- return fq_tyshxycode;
- }
- public void setFq_tyshxycode(String fq_tyshxycode) {
- this.fq_tyshxycode = fq_tyshxycode;
- }
- }
|