| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537 |
- package com.uas.entity;
- import com.alibaba.fastjson.annotation.JSONField;
- import javax.persistence.*;
- import java.util.Date;
- /**
- * @author koul
- * @email koul@usoftchina.com
- * @date 2020-10-26 9:20
- * 工商资料
- */
- @Entity
- @Table(name = "FBBUSINESS")
- public class Business {
- @Id
- @SequenceGenerator(name="FBBUSINESS_SEQ", sequenceName="FBBUSINESS_SEQ", allocationSize=1)
- @GeneratedValue(strategy= GenerationType.SEQUENCE, generator="FBBUSINESS_SEQ")
- private Long fb_id;
- @JSONField(name = "A级纳税人评价年度")
- private String fb_evaluation;
- @JSONField(name = "业务主管单位")
- private String fb_organizer;
- @JSONField(name = "原注册号")
- private String fb_oldcode;
- @JSONField(name = "发照日期")
- private String fb_issuedate;
- @JSONField(name = "发证机关")
- private String fb_issueorgan;
- @JSONField(name = "吊销原因")
- private String fb_dxreason;
- @JSONField(name = "吊销日期")
- private String fb_dxdate;
- @JSONField(name = "名称")
- private String fb_name;
- @JSONField(name = "地址")
- private String fb_address;
- @JSONField(name = "多证合一")
- private String fb_dzhy;
- @JSONField(name = "实收资本")
- private String fb_paidamount;
- @JSONField(name = "成立日期")
- private String fb_cldate;
- @JSONField(name = "执行事务合伙人")
- private String fb_zxswhhr;
- @JSONField(name = "执行事务合伙人(委派代表)")
- private String fb_zxswhhrdb;
- @JSONField(name = "投资人")
- private String fb_investors;
- @JSONField(name = "曾用名")
- private String fb_oldname;
- @JSONField(name = "标准化名称")
- private String fb_bzhname;
- @JSONField(name = "核准日期")
- private String fb_approveddate;
- @JSONField(name = "法代/执行")
- private String fb_execution;
- @JSONField(name = "法定代表人")
- private String fb_legalrepresentative;
- @JSONField(name = "注册号")
- private String fb_code;
- @JSONField(name = "注册日期")
- private String fb_date;
- @JSONField(name = "注册资本币种")
- private String fb_currency;
- @JSONField(name = "注册资本(万元)")
- private Float fb_amount;
- @JSONField(name = "注吊销日期")
- private String fb_zdxdate;
- @JSONField(name = "注销原因")
- private String fb_zxreason;
- @JSONField(name = "注销日期")
- private String fb_zxdate;
- @JSONField(name = "派出企业名称")
- private String fb_companyname;
- @JSONField(name = "电子邮箱")
- private String fb_email;
- @JSONField(name = "登记时间")
- private String fb_djdate;
- @JSONField(name = "登记机关")
- private String fb_djorgan;
- @JSONField(name = "登记状态")
- private String fb_djstatus;
- @JSONField(name = "省市")
- private String fb_province;
- @JSONField(name = "类型")
- private String fb_type;
- @JSONField(name = "类型代码")
- private String fb_typecode;
- @JSONField(name = "组成形式")
- private String fb_formation;
- @JSONField(name = "经济性质")
- private String fb_economicnature;
- @JSONField(name = "经营场所")
- private String fb_place;
- @JSONField(name = "经营期限自")
- private String fb_jyqxfrom;
- @JSONField(name = "经营期限至")
- private String fb_jyqxto;
- @JSONField(name = "经营者")
- private String fb_operators;
- @JSONField(name = "经营范围")
- private String fb_businessscope;
- @JSONField(name = "统一社会信用代码")
- private String fb_tyshxycode;
- @JSONField(name = "联系电话")
- private String fb_contactnumber;
- @JSONField(name = "设备价款")
- private String fb_equipmentamount;
- @JSONField(name = "评估等级")
- private String fb_level;
- @JSONField(name = "负责人")
- private String fb_principal;
- @JSONField(name = "迁入地工商局")
- private String fb_qrdgsj;
- @JSONField(name = "首席代表")
- private String fb_chiefrepresentative;
- private String fb_gzstatus;
- private Date fb_gxdate;
- public Date getFb_gxdate() {
- return fb_gxdate;
- }
- public void setFb_gxdate(Date fb_gxdate) {
- this.fb_gxdate = fb_gxdate;
- }
- public String getFb_gzstatus() {
- return fb_gzstatus;
- }
- public void setFb_gzstatus(String fb_gzstatus) {
- this.fb_gzstatus = fb_gzstatus;
- }
- public Long getFb_id() {
- return fb_id;
- }
- public void setFb_id(Long fb_id) {
- this.fb_id = fb_id;
- }
- public String getFb_evaluation() {
- return fb_evaluation;
- }
- public void setFb_evaluation(String fb_evaluation) {
- this.fb_evaluation = fb_evaluation;
- }
- public String getFb_organizer() {
- return fb_organizer;
- }
- public void setFb_organizer(String fb_organizer) {
- this.fb_organizer = fb_organizer;
- }
- public String getFb_oldcode() {
- return fb_oldcode;
- }
- public void setFb_oldcode(String fb_oldcode) {
- this.fb_oldcode = fb_oldcode;
- }
- public String getFb_issuedate() {
- return fb_issuedate;
- }
- public void setFb_issuedate(String fb_issuedate) {
- this.fb_issuedate = fb_issuedate;
- }
- public String getFb_issueorgan() {
- return fb_issueorgan;
- }
- public void setFb_issueorgan(String fb_issueorgan) {
- this.fb_issueorgan = fb_issueorgan;
- }
- public String getFb_dxreason() {
- return fb_dxreason;
- }
- public void setFb_dxreason(String fb_dxreason) {
- this.fb_dxreason = fb_dxreason;
- }
- public String getFb_dxdate() {
- return fb_dxdate;
- }
- public void setFb_dxdate(String fb_dxdate) {
- this.fb_dxdate = fb_dxdate;
- }
- public String getFb_name() {
- return fb_name;
- }
- public void setFb_name(String fb_name) {
- this.fb_name = fb_name;
- }
- public String getFb_address() {
- return fb_address;
- }
- public void setFb_address(String fb_address) {
- this.fb_address = fb_address;
- }
- public String getFb_dzhy() {
- return fb_dzhy;
- }
- public void setFb_dzhy(String fb_dzhy) {
- this.fb_dzhy = fb_dzhy;
- }
- public String getFb_paidamount() {
- return fb_paidamount;
- }
- public void setFb_paidamount(String fb_paidamount) {
- this.fb_paidamount = fb_paidamount;
- }
- public String getFb_cldate() {
- return fb_cldate;
- }
- public void setFb_cldate(String fb_cldate) {
- this.fb_cldate = fb_cldate;
- }
- public String getFb_zxswhhr() {
- return fb_zxswhhr;
- }
- public void setFb_zxswhhr(String fb_zxswhhr) {
- this.fb_zxswhhr = fb_zxswhhr;
- }
- public String getFb_zxswhhrdb() {
- return fb_zxswhhrdb;
- }
- public void setFb_zxswhhrdb(String fb_zxswhhrdb) {
- this.fb_zxswhhrdb = fb_zxswhhrdb;
- }
- public String getFb_investors() {
- return fb_investors;
- }
- public void setFb_investors(String fb_investors) {
- this.fb_investors = fb_investors;
- }
- public String getFb_oldname() {
- return fb_oldname;
- }
- public void setFb_oldname(String fb_oldname) {
- this.fb_oldname = fb_oldname;
- }
- public String getFb_bzhname() {
- return fb_bzhname;
- }
- public void setFb_bzhname(String fb_bzhname) {
- this.fb_bzhname = fb_bzhname;
- }
- public String getFb_approveddate() {
- return fb_approveddate;
- }
- public void setFb_approveddate(String fb_approveddate) {
- this.fb_approveddate = fb_approveddate;
- }
- public String getFb_execution() {
- return fb_execution;
- }
- public void setFb_execution(String fb_execution) {
- this.fb_execution = fb_execution;
- }
- public String getFb_legalrepresentative() {
- return fb_legalrepresentative;
- }
- public void setFb_legalrepresentative(String fb_legalrepresentative) {
- this.fb_legalrepresentative = fb_legalrepresentative;
- }
- public String getFb_code() {
- return fb_code;
- }
- public void setFb_code(String fb_code) {
- this.fb_code = fb_code;
- }
- public String getFb_date() {
- return fb_date;
- }
- public void setFb_date(String fb_date) {
- this.fb_date = fb_date;
- }
- public String getFb_currency() {
- return fb_currency;
- }
- public void setFb_currency(String fb_currency) {
- this.fb_currency = fb_currency;
- }
- public Float getFb_amount() {
- return fb_amount;
- }
- public void setFb_amount(Float fb_amount) {
- this.fb_amount = fb_amount;
- }
- public String getFb_zdxdate() {
- return fb_zdxdate;
- }
- public void setFb_zdxdate(String fb_zdxdate) {
- this.fb_zdxdate = fb_zdxdate;
- }
- public String getFb_zxreason() {
- return fb_zxreason;
- }
- public void setFb_zxreason(String fb_zxreason) {
- this.fb_zxreason = fb_zxreason;
- }
- public String getFb_zxdate() {
- return fb_zxdate;
- }
- public void setFb_zxdate(String fb_zxdate) {
- this.fb_zxdate = fb_zxdate;
- }
- public String getFb_companyname() {
- return fb_companyname;
- }
- public void setFb_companyname(String fb_companyname) {
- this.fb_companyname = fb_companyname;
- }
- public String getFb_email() {
- return fb_email;
- }
- public void setFb_email(String fb_email) {
- this.fb_email = fb_email;
- }
- public String getFb_djdate() {
- return fb_djdate;
- }
- public void setFb_djdate(String fb_djdate) {
- this.fb_djdate = fb_djdate;
- }
- public String getFb_djorgan() {
- return fb_djorgan;
- }
- public void setFb_djorgan(String fb_djorgan) {
- this.fb_djorgan = fb_djorgan;
- }
- public String getFb_djstatus() {
- return fb_djstatus;
- }
- public void setFb_djstatus(String fb_djstatus) {
- this.fb_djstatus = fb_djstatus;
- }
- public String getFb_province() {
- return fb_province;
- }
- public void setFb_province(String fb_province) {
- this.fb_province = fb_province;
- }
- public String getFb_type() {
- return fb_type;
- }
- public void setFb_type(String fb_type) {
- this.fb_type = fb_type;
- }
- public String getFb_typecode() {
- return fb_typecode;
- }
- public void setFb_typecode(String fb_typecode) {
- this.fb_typecode = fb_typecode;
- }
- public String getFb_formation() {
- return fb_formation;
- }
- public void setFb_formation(String fb_formation) {
- this.fb_formation = fb_formation;
- }
- public String getFb_economicnature() {
- return fb_economicnature;
- }
- public void setFb_economicnature(String fb_economicnature) {
- this.fb_economicnature = fb_economicnature;
- }
- public String getFb_place() {
- return fb_place;
- }
- public void setFb_place(String fb_place) {
- this.fb_place = fb_place;
- }
- public String getFb_jyqxfrom() {
- return fb_jyqxfrom;
- }
- public void setFb_jyqxfrom(String fb_jyqxfrom) {
- this.fb_jyqxfrom = fb_jyqxfrom;
- }
- public String getFb_jyqxto() {
- return fb_jyqxto;
- }
- public void setFb_jyqxto(String fb_jyqxto) {
- this.fb_jyqxto = fb_jyqxto;
- }
- public String getFb_operators() {
- return fb_operators;
- }
- public void setFb_operators(String fb_operators) {
- this.fb_operators = fb_operators;
- }
- public String getFb_businessscope() {
- return fb_businessscope;
- }
- public void setFb_businessscope(String fb_businessscope) {
- this.fb_businessscope = fb_businessscope;
- }
- public String getFb_tyshxycode() {
- return fb_tyshxycode;
- }
- public void setFb_tyshxycode(String fb_tyshxycode) {
- this.fb_tyshxycode = fb_tyshxycode;
- }
- public String getFb_contactnumber() {
- return fb_contactnumber;
- }
- public void setFb_contactnumber(String fb_contactnumber) {
- this.fb_contactnumber = fb_contactnumber;
- }
- public String getFb_equipmentamount() {
- return fb_equipmentamount;
- }
- public void setFb_equipmentamount(String fb_equipmentamount) {
- this.fb_equipmentamount = fb_equipmentamount;
- }
- public String getFb_level() {
- return fb_level;
- }
- public void setFb_level(String fb_level) {
- this.fb_level = fb_level;
- }
- public String getFb_principal() {
- return fb_principal;
- }
- public void setFb_principal(String fb_principal) {
- this.fb_principal = fb_principal;
- }
- public String getFb_qrdgsj() {
- return fb_qrdgsj;
- }
- public void setFb_qrdgsj(String fb_qrdgsj) {
- this.fb_qrdgsj = fb_qrdgsj;
- }
- public String getFb_chiefrepresentative() {
- return fb_chiefrepresentative;
- }
- public void setFb_chiefrepresentative(String fb_chiefrepresentative) {
- this.fb_chiefrepresentative = fb_chiefrepresentative;
- }
- }
|