| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- package com.goafanti.common.model;
- import com.fasterxml.jackson.annotation.JsonIgnore;
- public class OrgFinance {
- private String id;
- private String uid;
- /**
- * 主营业务收入
(万元)
- */
- private Integer mainBusinessIncome;
- /**
- * 管理费用(万元)
- */
- private Integer managementCost;
- /**
- * 营业利润(万元)
- */
- private Integer operatingProfit;
- /**
- * 支付的各项税费(万元)
- */
- private Integer variousTax;
- /**
- * 流动资产
- */
- private Integer currentAsset;
- /**
- * 固定资产净额
(万元)
- */
- private Integer netFixedAsset;
- /**
- * 资产总额(万元)
- */
- private Integer totalAsset;
- /**
- * 所有者权益合计(万元)
- */
- private Integer netAsset;
- /**
- * 利润总额(万元)
- */
- private Integer grossProfit;
- /**
- * 净利润(万元)
- */
- private Integer netProfit;
- /**
- * 销售收入(万元)
- */
- private Integer salesRevenue;
-
- /**
- * 年份
- */
- private Integer year;
- /**
- * 财务报表URL
- */
- private String financeUrl;
-
- /**
- * 删除标记
- */
- private Integer deletedSign;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getUid() {
- return uid;
- }
- public void setUid(String uid) {
- this.uid = uid;
- }
- public Integer getMainBusinessIncome() {
- return mainBusinessIncome;
- }
- public void setMainBusinessIncome(Integer mainBusinessIncome) {
- this.mainBusinessIncome = mainBusinessIncome;
- }
- public Integer getManagementCost() {
- return managementCost;
- }
- public void setManagementCost(Integer managementCost) {
- this.managementCost = managementCost;
- }
- public Integer getOperatingProfit() {
- return operatingProfit;
- }
- public void setOperatingProfit(Integer operatingProfit) {
- this.operatingProfit = operatingProfit;
- }
- public Integer getVariousTax() {
- return variousTax;
- }
- public void setVariousTax(Integer variousTax) {
- this.variousTax = variousTax;
- }
- public Integer getCurrentAsset() {
- return currentAsset;
- }
- public void setCurrentAsset(Integer currentAsset) {
- this.currentAsset = currentAsset;
- }
- public Integer getNetFixedAsset() {
- return netFixedAsset;
- }
- public void setNetFixedAsset(Integer netFixedAsset) {
- this.netFixedAsset = netFixedAsset;
- }
- public Integer getTotalAsset() {
- return totalAsset;
- }
- public void setTotalAsset(Integer totalAsset) {
- this.totalAsset = totalAsset;
- }
- public Integer getNetAsset() {
- return netAsset;
- }
- public void setNetAsset(Integer netAsset) {
- this.netAsset = netAsset;
- }
- public Integer getGrossProfit() {
- return grossProfit;
- }
- public void setGrossProfit(Integer grossProfit) {
- this.grossProfit = grossProfit;
- }
- public Integer getNetProfit() {
- return netProfit;
- }
- public void setNetProfit(Integer netProfit) {
- this.netProfit = netProfit;
- }
- public Integer getSalesRevenue() {
- return salesRevenue;
- }
- public void setSalesRevenue(Integer salesRevenue) {
- this.salesRevenue = salesRevenue;
- }
- public String getFinanceUrl() {
- return financeUrl;
- }
- public void setFinanceUrl(String financeUrl) {
- this.financeUrl = financeUrl;
- }
-
- @JsonIgnore
- public Integer getDeletedSign() {
- return deletedSign;
- }
- public void setDeletedSign(Integer deletedSign) {
- this.deletedSign = deletedSign;
- }
- public Integer getYear() {
- return year;
- }
- public void setYear(Integer year) {
- this.year = year;
- }
-
-
-
-
- }
|