YYC
2024-10-28 8c2632ab67cef38baa88dd365683610c17e08313
新增实体类
已修改4个文件
已添加7个文件
891 ■■■■■ 文件已修改
src/main/java/com/fzzy/api/data/PushProtocol.java 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/fzzy/api/entity/Api1504.java 102 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/fzzy/api/entity/Api1505.java 115 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/fzzy/api/entity/Api1506.java 111 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/fzzy/api/entity/Api1507.java 147 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/fzzy/api/entity/Api1508.java 93 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/fzzy/api/entity/Api1509.java 187 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/fzzy/api/entity/Api1510.java 124 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/fzzy/api/service/ApiTriggerService.java 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/application-pro5329.yml 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/application-pro5354.yml 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/fzzy/api/data/PushProtocol.java
@@ -13,6 +13,7 @@
    SB_SH_2021("SB_SH_2021", "上海市平台2022版"),
    SB_SC_2021("SB_SC_2021", "四川省平台2022版"),
    SB_GD_2022("SB_GD_2022", "广东省平台2022版"),
    SB_GD_2023("SB_GD_2023", "广东省平台2023版"),
    SB_GD_2020("SB_GD_2020", "广东省平台2020版"),
    SB_HN_2022("SB_HN_2022", "河南省平台2022版"),
    SB_WHJL_2023("SB_WHJL_2023", "武汉军粮平台2023版"),
src/main/java/com/fzzy/api/entity/Api1504.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,102 @@
package com.fzzy.api.entity;
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
import lombok.EqualsAndHashCode;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import java.io.Serializable;
import java.util.Date;
/**
 * è´¦å¥—信息
 *
 * @author czt
 */
@Data
@Entity
@Table(name = "API_1504")
@EqualsAndHashCode(callSuper = false)
public class Api1504 extends ApiParent implements Serializable {
    /**
     *
     */
    private static final long serialVersionUID = 1L;
    /**
     * é€šè¿‡æŽ¥å£èŽ·å–çš„å•ä½è´¦å¥—åŽï¼Œåœ¨å±€ç«¯è‡ªåŠ¨äº§ç”Ÿè´¦å¥—å·
     */
    @Id
    @JSONField(serialize = false)
    @PropertyDef(label = "账套号")
    @Column(name = "nAcctId", precision = 9)
    private Double nAcctId;
    @PropertyDef(label = "账套名称")
    @Column(name = "cAcctName", length = 256)
    private String cAcctName;
    @PropertyDef(label = "本位币")
    @Column(name = "cCurrency", length = 3)
    private String cCurrency;
    @PropertyDef(label = "会计主管")
    @Column(name = "cAcctChief", length = 20)
    private String cAcctChief;
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "启用期间")
    @Column(name = "cPeriodStart", length = 10)
    private String cPeriodStart;
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "启用日期")
    @Column(name = "cYearBmd", length = 10)
    private String cYearBmd;
    @PropertyDef(label = "期间数")
    @Column(name = "nAcctPeriodNum")
    private Double nAcctPeriodNum;
    @PropertyDef(label = "会计制度代码", description = "11:企业会计准则制度(粮食2013版)(默认代码值)")
    @Column(name = "cAccClassCode", length = 8)
    private String cAccClassCode;
    @PropertyDef(label = "科目级次", description = "4-8:默认最小值为4")
    @Column(name = "nAccGrade")
    private Double nAccGrade;
    @PropertyDef(label = "科目编码规则", description = "4222XXXX:默认前四级级长规则为4222")
    @Column(name = "cAccCodeStr", length = 40)
    private String cAccCodeStr;
    @PropertyDef(label = "单位名称")
    @Column(name = "cCropName", length = 256)
    private String cCropName;
    @PropertyDef(label = "单位代码")
    @Column(name = "cOrgCode", length = 18)
    private String cOrgCode;
    @PropertyDef(label = "统一单位编码")
    @Column(name = "xqydm", length = 20)
    private String xqydm;
    @PropertyDef(label = "统一库区编码")
    @Column(name = "xkqdm",length = 22)
    private String xkqdm;
    @PropertyDef(label = "操作标志")
    @Column(name = "czbz", length = 1)
    private String czbz;
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间")
    @Column(name = "zhgxsj")
    private Date zhgxsj;
}
src/main/java/com/fzzy/api/entity/Api1505.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,115 @@
package com.fzzy.api.entity;
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
import lombok.EqualsAndHashCode;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import java.io.Serializable;
import java.util.Date;
/**
 * ç§‘目信息
 *
 * @author czt
 */
@Data
@Entity
@Table(name = "API_1505")
@EqualsAndHashCode(callSuper = false)
public class Api1505 extends ApiParent implements Serializable {
    /**
     *
     */
    private static final long serialVersionUID = 1L;
    /**
     * é€šè¿‡æŽ¥å£èŽ·å–çš„å•ä½è´¦å¥—åŽï¼Œåœ¨å±€ç«¯è‡ªåŠ¨äº§ç”Ÿè´¦å¥—å·
     */
    @Id
    @JSONField(serialize = false)
    @PropertyDef(label = "账套号")
    @Column(name = "nAcctId", length = 9)
    private Double nAcctId;
    @JSONField(serialize = false)
    @PropertyDef(label = "年度")
    @Column(name = "cYear", length = 4)
    private Double cYear;
    @PropertyDef(label = "科目编码")
    @Column(name = "cCode", length = 80)
    private String cCode;
    @PropertyDef(label = "科目名称")
    @Column(name = "cName", length = 256)
    private String cName;
    @PropertyDef(label = "科目全称")
    @Column(name = "cAllName", length = 65536)
    private String cAllName;
    /**
     * 1:资产类
     * 2:负债类
     * 3:共同类
     * 4:所有者权益类
     * 5:成本费用类
     * 6:损益类
     */
    @PropertyDef(label = "科目类别")
    @Column(name = "nClass", length = 9)
    private String nClass;
    /**
     * (-1)-贷方;1-借方
     */
    @PropertyDef(label = "余额方向")
    @Column(name = "cDc", length = 3)
    private Double cDc;
    @PropertyDef(label = "末级科目")
    @Column(name = "bL")
    private Double bL;
    @PropertyDef(label = "科目级次")
    @Column(name = "nGrade", length = 8)
    private Double nGrade;
    @PropertyDef(label = "数量科目")
    @Column(name = "bQ")
    private Double bQ;
    @PropertyDef(label = "数量单位")
    @Column(name = "cQUnit")
    private Double cQUnit;
    @PropertyDef(label = "现金类科目")
    @Column(name = "bCash")
    private Double bCash;
    @PropertyDef(label = "银行类科目")
    @Column(name = "bBank")
    private Double bBank;
    @PropertyDef(label = "现金流量类科目")
    @Column(name = "bXjll")
    private Double bXjll;
    @PropertyDef(label = "冻结")
    @Column(name = "bF")
    private String bF;
    @PropertyDef(label = "操作标志")
    @Column(name = "czbz", length = 1)
    private String czbz;
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间")
    @Column(name = "zhgxsj")
    private Date zhgxsj;
}
src/main/java/com/fzzy/api/entity/Api1506.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,111 @@
package com.fzzy.api.entity;
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
import lombok.EqualsAndHashCode;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import java.io.Serializable;
import java.util.Date;
/**
 * ç§‘目余额表
 *
 * @author czt
 */
@Data
@Entity
@Table(name = "API_1506")
@EqualsAndHashCode(callSuper = false)
public class Api1506 extends ApiParent implements Serializable {
    /**
     *
     */
    private static final long serialVersionUID = 1L;
    /**
     * é€šè¿‡æŽ¥å£èŽ·å–çš„å•ä½è´¦å¥—åŽï¼Œåœ¨å±€ç«¯è‡ªåŠ¨äº§ç”Ÿè´¦å¥—å·
     */
    @Id
    @JSONField(serialize = false)
    @PropertyDef(label = "账套号")
    @Column(name = "nAcctId", length = 9)
    private Double nAcctId;
    @PropertyDef(label = "期间")
    @Column(name = "cYear", length = 3)
    private Double cYear;
    @PropertyDef(label = "年度")
    @Column(name = "nNo", length = 4)
    private Double nNo;
    @PropertyDef(label = "期初本位币余额")
    @Column(name = "bM", precision = 20, scale = 4)
    private Double bM;
    @PropertyDef(label = "期末本位币余额")
    @Column(name = "eM", precision = 20, scale = 4)
    private Double eM;
    @PropertyDef(label = "期初数量")
    @Column(name = "bQty", precision = 20, scale = 4)
    private Double bQty;
    @PropertyDef(label = "期末数量")
    @Column(name = "eQty", precision = 20, scale = 4)
    private Double eQty;
    /**
     * 1:借方
     * -1:贷方
     */
    @PropertyDef(label = "余额方向")
    @Column(name = "cDc", length = 3)
    private Double cDc;
    @PropertyDef(label = "借方本位币发生额")
    @Column(name = "dM", precision = 20, scale = 4)
    private Double dM;
    @PropertyDef(label = "贷方本位币发生额")
    @Column(name = "cM", precision = 20, scale = 4)
    private Double cM;
    @PropertyDef(label = "借方发生数量")
    @Column(name = "dQ", precision = 20, scale = 4)
    private Double dQ;
    @PropertyDef(label = "贷方发生数量")
    @Column(name = "cQ", precision = 20, scale = 4)
    private Double cQ;
    @PropertyDef(label = "期初外币余额")
    @Column(name = "bFm", precision = 20, scale = 4)
    private Double bFm;
    @PropertyDef(label = "期末外币余额")
    @Column(name = "eFm", precision = 20, scale = 4)
    private Double eFm;
    @PropertyDef(label = "借方外币发生额")
    @Column(name = "dFm", precision = 20, scale = 4)
    private Double dFm;
    @PropertyDef(label = "贷方外币发生额")
    @Column(name = "cFm", precision = 20, scale = 4)
    private Double cFm;
    @PropertyDef(label = "操作标志")
    @Column(name = "czbz", length = 1)
    private String czbz;
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间")
    @Column(name = "zhgxsj")
    private Date zhgxsj;
}
src/main/java/com/fzzy/api/entity/Api1507.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,147 @@
package com.fzzy.api.entity;
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
import lombok.EqualsAndHashCode;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import java.io.Serializable;
import java.util.Date;
/**
 * ä¼šè®¡å‡­è¯ä¿¡æ¯
 *
 * @author czt
 */
@Data
@Entity
@Table(name = "API_1507")
@EqualsAndHashCode(callSuper = false)
public class Api1507 extends ApiParent implements Serializable {
    /**
     *
     */
    private static final long serialVersionUID = 1L;
    /**
     * é€šè¿‡æŽ¥å£èŽ·å–çš„å•ä½è´¦å¥—åŽï¼Œåœ¨å±€ç«¯è‡ªåŠ¨äº§ç”Ÿè´¦å¥—å·
     */
    @Id
    @JSONField(serialize = false)
    @PropertyDef(label = "账套号")
    @Column(name = "nAcctId", length = 9)
    private Double nAcctId;
    @PropertyDef(label = "凭证类型")
    @Column(name = "cVKind", length = 9)
    private String cVKind;
    @PropertyDef(label = "期间")
    @Column(name = "cMon", length = 3)
    private Double cMon;
    @PropertyDef(label = "年度")
    @Column(name = "cYear", length = 4)
    private Double cYear;
    @PropertyDef(label = "凭证号")
    @Column(name = "nVNo", length = 9)
    private Double nVNo;
    @PropertyDef(label = "分录序号")
    @Column(name = "nNo", precision = 9)
    private Double nNo;
    @PropertyDef(label = "凭证分类")
    @Column(name = "bTmp", precision = 3)
    private Double bTmp;
    @PropertyDef(label = "摘要")
    @Column(name = "Digest", length = 256)
    private String Digest;
    @PropertyDef(label = "科目编码")
    @Column(name = "cCode", length = 80)
    private Double cCode;
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "凭证日期")
    @Column(name = "cVSmallDatetime", length = 10)
    private String cVSmallDatetime;
    @PropertyDef(label = "制单人")
    @Column(name = "cMaker", length = 32)
    private String cMaker;
    /**
     * 1:借方
     * -1:贷方
     */
    @PropertyDef(label = "方向")
    @Column(name = "cDc", precision = 3)
    private Double cDc;
    @PropertyDef(label = "审核人")
    @Column(name = "cCkEr", length = 32)
    private String cCkEr;
    @PropertyDef(label = "记账人")
    @Column(name = "cPtEr", length = 32)
    private String cPtEr;
    /**
     * 0:否
     * 1:是
     */
    @PropertyDef(label = "记账标志")
    @Column(name = "bPt", precision = 3)
    private Double bPt;
    @PropertyDef(label = "附件张数")
    @Column(name = "nANum", precision = 9)
    private Double nANum;
    @PropertyDef(label = "金额")
    @Column(name = "nM", precision = 20, scale = 4)
    private Double nM;
    @PropertyDef(label = "数量")
    @Column(name = "nQty", precision = 20, scale = 4)
    private Double nQty;
    @PropertyDef(label = "单价")
    @Column(name = "nPrice", precision = 20, scale = 4)
    private Double nPrice;
    @PropertyDef(label = "结算号")
    @Column(name = "cSettleNo", length = 40)
    private String cSettleNo;
    @PropertyDef(label = "出纳")
    @Column(name = "cCashier", length = 32)
    private String cCashier;
    @PropertyDef(label = "汇率")
    @Column(name = "rate",  precision = 20, scale = 4)
    private Double rate;
    @PropertyDef(label = "外币金额")
    @Column(name = "nFm",  precision = 20, scale = 4)
    private Double nFm;
    @PropertyDef(label = "计量单位",description = "计量单位汉字")
    @Column(name = "meterUnitId", length = 32)
    private String meterUnitId;
    @PropertyDef(label = "操作标志")
    @Column(name = "czbz", length = 1)
    private String czbz;
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间")
    @Column(name = "zhgxsj")
    private Date zhgxsj;
}
src/main/java/com/fzzy/api/entity/Api1508.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,93 @@
package com.fzzy.api.entity;
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
import lombok.EqualsAndHashCode;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import java.io.Serializable;
import java.util.Date;
/**
 * çŽ°é‡‘æµé‡åˆ†é…ä¿¡æ¯
 *
 * @author czt
 */
@Data
@Entity
@Table(name = "API_1508")
@EqualsAndHashCode(callSuper = false)
public class Api1508 extends ApiParent implements Serializable {
    /**
     *
     */
    private static final long serialVersionUID = 1L;
    /**
     * é€šè¿‡æŽ¥å£èŽ·å–çš„å•ä½è´¦å¥—åŽï¼Œåœ¨å±€ç«¯è‡ªåŠ¨äº§ç”Ÿè´¦å¥—å·
     */
    @Id
    @JSONField(serialize = false)
    @PropertyDef(label = "账套号")
    @Column(name = "nAcctId", length = 9)
    private Double nAcctId;
    @PropertyDef(label = "凭证类型")
    @Column(name = "cVKind", length = 10)
    private String cVKind;
    @PropertyDef(label = "期间")
    @Column(name = "cMon", length = 3)
    private Double cMon;
    @PropertyDef(label = "年度")
    @Column(name = "cYear", length = 4)
    private Double cYear;
    @PropertyDef(label = "凭证号")
    @Column(name = "nVNo", length = 9)
    private Double nVNo;
    @PropertyDef(label = "科目编码")
    @Column(name = "cCode", length = 80)
    private String cCode;
    @PropertyDef(label = "对方科目编码")
    @Column(name = "cDFCode", length = 80)
    private String cDFCode;
    @PropertyDef(label = "现金流量项目代码")
    @Column(name = "cCashCode", length = 80)
    private String cCashCode;
    @PropertyDef(label = "分录序号")
    @Column(name = "nNo", precision = 9)
    private Double nNo;
    @PropertyDef(label = "金额")
    @Column(name = "nM", precision = 20,scale = 4)
    private Double nM;
    /**
     * 1:流入
     * -1:流出
     */
    @PropertyDef(label = "方向")
    @Column(name = "cDc", length = 3)
    private String cDc;
    @PropertyDef(label = "操作标志")
    @Column(name = "czbz", length = 1)
    private String czbz;
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间")
    @Column(name = "zhgxsj")
    private Date zhgxsj;
}
src/main/java/com/fzzy/api/entity/Api1509.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,187 @@
package com.fzzy.api.entity;
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
import lombok.EqualsAndHashCode;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import java.io.Serializable;
import java.util.Date;
/**
 * å›ºå®šèµ„产卡片信息
 *
 * @author czt
 */
@Data
@Entity
@Table(name = "API_1509")
@EqualsAndHashCode(callSuper = false)
public class Api1509 extends ApiParent implements Serializable {
    /**
     *
     */
    private static final long serialVersionUID = 1L;
    /**
     * é€šè¿‡æŽ¥å£èŽ·å–çš„å•ä½è´¦å¥—åŽï¼Œåœ¨å±€ç«¯è‡ªåŠ¨äº§ç”Ÿè´¦å¥—å·
     */
    @Id
    @JSONField(serialize = false)
    @PropertyDef(label = "账套号")
    @Column(name = "nAcctId", length = 9)
    private Double nAcctId;
    @PropertyDef(label = "固定资产编码")
    @Column(name = "fixAssetCode", length = 20)
    private String fixAssetCode;
    @PropertyDef(label = "固定资产自编码")
    @Column(name = "origFixAssetCode", length = 20)
    private String origFixAssetCode;
    @PropertyDef(label = "资产类别编码")
    @Column(name = "groupCode", length = 20)
    private String groupCode;
    @PropertyDef(label = "固定资产名称")
    @Column(name = "fixAssetName", length = 80)
    private String fixAssetName;
    @PropertyDef(label = "计量单位名称")
    @Column(name = "unitName", length = 20)
    private String unitName;
    @PropertyDef(label = "原值")
    @Column(name = "valueOrg", length = 20, scale = 4)
    private Double valueOrg;
    @PropertyDef(label = "当前原值")
    @Column(name = "dresentValueOrg", length = 20, scale = 4)
    private Double dresentValueOrg;
    /**
     * 1:不提折旧法
     * 2:平均年限法
     * 3:动态平均年限法
     * 4:工作量法
     * 5:年数总和法
     * 6:双倍余额递减法
     */
    @PropertyDef(label = "折旧方法")
    @Column(name = "deprMethodId", length = 20, scale = 4)
    private Double deprMethodId;
    @PropertyDef(label = "固定资产来源")
    @Column(name = "sourceid", length = 12)
    private Double sourceid;
    /**
     * 1:投资
     * 2:自建
     * 3:è´­ä¹°
     * 4:融资租赁
     * 5:经营租入
     * 6:无偿调入
     * 7:捐赠
     * 8:换入
     */
    @PropertyDef(label = "对方科目编码")
    @Column(name = "cDFCode", length = 80)
    private String cDFCode;
    @PropertyDef(label = "型号")
    @Column(name = "model", length = 40)
    private String model;
    @PropertyDef(label = "规格")
    @Column(name = "specs", length = 40)
    private String specs;
    @PropertyDef(label = "制造商")
    @Column(name = "manufacturer", length = 60)
    private String manufacturer;
    @PropertyDef(label = "产地")
    @Column(name = "makingPlace", length = 40)
    private String makingPlace;
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "进单位日期")
    @Column(name = "enterDay", length = 10)
    private String enterDay;
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "开始使用日期")
    @Column(name = "beginUseDay", length = 10)
    private String beginUseDay;
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "建卡日期")
    @Column(name = "makinDay", length = 10)
    private String makinDay;
    @PropertyDef(label = "管理人")
    @Column(name = "keeper", length = 20)
    private String keeper;
    @PropertyDef(label = "建卡人")
    @Column(name = "maker", length = 20)
    private String maker;
    @PropertyDef(label = "预计使用期间数")
    @Column(name = "usingPeriods", precision = 12)
    private Double usingPeriods;
    @PropertyDef(label = "预计净残值")
    @Column(name = "expecRemain", precision = 20, scale = 4)
    private Double expecRemain;
    @PropertyDef(label = "固定资产对应科目编码")
    @Column(name = "assetAcctCode", length = 20)
    private String assetAcctCode;
    @PropertyDef(label = "累计折旧对应科目编码")
    @Column(name = "deprAcctCode", length = 20)
    private String deprAcctCode;
    @PropertyDef(label = "累计折旧")
    @Column(name = "accumulateDepr", precision = 20, scale = 4)
    private Double accumulateDepr;
    /**
     * 0:否
     * 1:是
     */
    @PropertyDef(label = "是否报废清理")
    @Column(name = "abadoned", length = 20)
    private String abadoned;
    /**
     * 1:在使用
     * 2:未使用
     * 3:停用
     * 4:出售
     * 5:报损
     * 6:盘亏
     */
    @PropertyDef(label = "当前使用状态名称")
    @Column(name = "presentStatus", length = 20)
    private String presentStatus;
    @PropertyDef(label = "备注")
    @Column(name = "notes", length = 512)
    private String notes;
    @PropertyDef(label = "操作标志")
    @Column(name = "czbz", length = 1)
    private String czbz;
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间")
    @Column(name = "zhgxsj")
    private Date zhgxsj;
}
src/main/java/com/fzzy/api/entity/Api1510.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,124 @@
package com.fzzy.api.entity;
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
import lombok.EqualsAndHashCode;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import java.io.Serializable;
import java.util.Date;
/**
 * èµ„产折旧信息
 *
 * @author czt
 */
@Data
@Entity
@Table(name = "API_1510")
@EqualsAndHashCode(callSuper = false)
public class Api1510 extends ApiParent implements Serializable {
    /**
     *
     */
    private static final long serialVersionUID = 1L;
    /**
     * é€šè¿‡æŽ¥å£èŽ·å–çš„å•ä½è´¦å¥—åŽï¼Œåœ¨å±€ç«¯è‡ªåŠ¨äº§ç”Ÿè´¦å¥—å·
     */
    @Id
    @JSONField(serialize = false)
    @PropertyDef(label = "账套号")
    @Column(name = "nAcctId", length = 9)
    private Double nAcctId;
    @PropertyDef(label = "固定资产编码")
    @Column(name = "fixAssetCode", length = 20)
    private String fixAssetCode;
    @PropertyDef(label = "期间")
    @Column(name = "period", precision = 4)
    private Double period;
    @PropertyDef(label = "年度")
    @Column(name = "AcctYear", precision = 4)
    private Double AcctYear;
    @PropertyDef(label = "期初原值")
    @Column(name = "bValueOrg", precision = 20, scale = 4)
    private Double bValueOrg;
    @PropertyDef(label = "累计折旧")
    @Column(name = "bAccumDepr", precision = 20, scale = 4)
    private Double bAccumDepr;
    @PropertyDef(label = "本期计提折旧")
    @Column(name = "deprAmmount", precision = 20, scale = 4)
    private Double deprAmmount;
    @PropertyDef(label = "本年累计计提折旧")
    @Column(name = "yAccumDepr", precision = 20, scale = 4)
    private Double yAccumDepr;
    @PropertyDef(label = "本期数量增加")
    @Column(name = "qtyAdd", precision = 20, scale = 4)
    private Double qtyAdd;
    @PropertyDef(label = "本期数量减少")
    @Column(name = "qtyDecrease", precision = 20, scale = 4)
    private Double qtyDecrease;
    @PropertyDef(label = "本期原值增加")
    @Column(name = "valueOrgAdd", precision = 20, scale = 4)
    private Double valueOrgAdd;
    @PropertyDef(label = "本期原值减少")
    @Column(name = "valueOrgDerease", precision = 20, scale = 4)
    private Double valueOrgDerease;
    @PropertyDef(label = "本期累计折旧调增")
    @Column(name = "accuDeprAdjustAdd", precision = 20, scale = 4)
    private Double accuDeprAdjustAdd;
    @PropertyDef(label = "本期累计折旧调减")
    @Column(name = "accuDeprAdjustDec", precision = 20, scale = 4)
    private Double accuDeprAdjustDec;
    @PropertyDef(label = "本年累计数量增加")
    @Column(name = "yQtyIncrease", precision = 20, scale = 4)
    private Double yQtyIncrease;
    @PropertyDef(label = "本年累计数量减少")
    @Column(name = "yQtyDecrease", precision = 20, scale = 4)
    private Double yQtyDecrease;
    @PropertyDef(label = "本年原值累计增加")
    @Column(name = "yValueIncrease", precision = 20, scale = 4)
    private Double yValueIncrease;
    @PropertyDef(label = "本年原值累计减少")
    @Column(name = "yValueDecrease", precision = 20, scale = 4)
    private Double yValueDecrease;
    @PropertyDef(label = "本年累计折旧调增")
    @Column(name = "yAccuDeprIncrease", precision = 20, scale = 4)
    private Double yAccuDeprIncrease;
    @PropertyDef(label = "本年累计折旧调减")
    @Column(name = "YAccuDeprDecrease", precision = 20, scale = 4)
    private Double YAccuDeprDecrease;
    @PropertyDef(label = "操作标志")
    @Column(name = "czbz", length = 1)
    private String czbz;
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间")
    @Column(name = "zhgxsj")
    private Date zhgxsj;
}
src/main/java/com/fzzy/api/service/ApiTriggerService.java
@@ -183,6 +183,7 @@
        list.add(new ApiTrigger(PushProtocol.SB_SH_2021.getCode(), PushProtocol.SB_SH_2021.getName()));
        list.add(new ApiTrigger(PushProtocol.SB_SC_2021.getCode(), PushProtocol.SB_SC_2021.getName()));
        list.add(new ApiTrigger(PushProtocol.SB_GD_2022.getCode(), PushProtocol.SB_GD_2022.getName()));
        list.add(new ApiTrigger(PushProtocol.SB_GD_2023.getCode(), PushProtocol.SB_GD_2023.getName()));
        list.add(new ApiTrigger(PushProtocol.SB_GD_2020.getCode(), PushProtocol.SB_GD_2020.getName()));
        list.add(new ApiTrigger(PushProtocol.SB_HN_2022.getCode(), PushProtocol.SB_HN_2022.getName()));
        list.add(new ApiTrigger(PushProtocol.SB_WHJL_2023.getCode(), PushProtocol.SB_WHJL_2023.getName()));
src/main/resources/application-pro5329.yml
@@ -1,6 +1,6 @@
##########################  å¹¿ä¸œä½›å±±ç¦…城区   ##########################
server:
  port: 8095
  port: 8208
  jetty:
    max-http-post-size: 209715200
  tomcat:
@@ -51,7 +51,7 @@
      timeout: 6000
igds:
  default:
    companyId: 5317
    companyId: 5329
  file-path: D:/IGDS-API/FILE/
  img-path: D:/IGDS/FILE/
  file-path: C:/IGDS-API/FILE/
  img-path: C:/IGDS/FILE/
src/main/resources/application-pro5354.yml
@@ -51,7 +51,7 @@
      timeout: 6000
igds:
  default:
    companyId: 5352
    companyId: 5354
  file-path: D:/IGDS-API/FILE/
  img-path: D:/IGDS/FILE/