往来单位
This commit is contained in:
parent
d4aa1d9351
commit
a083af8a79
|
@ -0,0 +1,29 @@
|
|||
package com.hzya.frame.grpU8.nxproof.pubkszl.dao;
|
||||
|
||||
import com.hzya.frame.grpU8.nxproof.pubkszl.entity.PubkszlEntity;
|
||||
import com.hzya.frame.basedao.dao.IBaseDao;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* (PUBKSZL: table)表数据库访问层
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-08-27 15:56:53
|
||||
*/
|
||||
public interface IPubkszlDao extends IBaseDao<PubkszlEntity, String> {
|
||||
|
||||
//查询往来单位数据
|
||||
List<PubkszlEntity> queryPubkszlEntity(PubkszlEntity pubkszlEntity);
|
||||
|
||||
//新增往来单位数据
|
||||
PubkszlEntity savePubkszlEntity(PubkszlEntity pubkszlEntity);
|
||||
|
||||
//修改往来单位数据
|
||||
PubkszlEntity updatePubkszlEntity(PubkszlEntity pubkszlEntity);
|
||||
|
||||
//删除往来单位数据
|
||||
Integer deletePubkszlEntity(PubkszlEntity pubkszlEntity);
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
package com.hzya.frame.grpU8.nxproof.pubkszl.dao.impl;
|
||||
|
||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||
import com.hzya.frame.grpU8.nxproof.pubkszl.entity.PubkszlEntity;
|
||||
import com.hzya.frame.grpU8.nxproof.pubkszl.dao.IPubkszlDao;
|
||||
import org.springframework.stereotype.Repository;
|
||||
import com.hzya.frame.basedao.dao.MybatisGenericDao;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* (Pubkszl)表数据库访问层
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-08-27 15:56:53
|
||||
*/
|
||||
@Repository(value = "PubkszlDaoImpl")
|
||||
public class PubkszlDaoImpl extends MybatisGenericDao<PubkszlEntity, String> implements IPubkszlDao{
|
||||
|
||||
@DS("#pubkszlEntity.dataSourceCode")
|
||||
@Override
|
||||
public List<PubkszlEntity> queryPubkszlEntity(PubkszlEntity pubkszlEntity) {
|
||||
return super.queryByLike(pubkszlEntity);
|
||||
}
|
||||
|
||||
@DS("#pubkszlEntity.dataSourceCode")
|
||||
@Override
|
||||
public PubkszlEntity savePubkszlEntity(PubkszlEntity pubkszlEntity) {
|
||||
return super.save(pubkszlEntity);
|
||||
}
|
||||
|
||||
@DS("#pubkszlEntity.dataSourceCode")
|
||||
@Override
|
||||
public PubkszlEntity updatePubkszlEntity(PubkszlEntity pubkszlEntity) {
|
||||
return super.update(pubkszlEntity);
|
||||
}
|
||||
|
||||
@DS("#pubkszlEntity.dataSourceCode")
|
||||
@Override
|
||||
public Integer deletePubkszlEntity(PubkszlEntity pubkszlEntity) {
|
||||
return super.delete("PubkszlEntity_delete_kszl",pubkszlEntity);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,834 @@
|
|||
package com.hzya.frame.grpU8.nxproof.pubkszl.entity;
|
||||
|
||||
import com.hzya.frame.web.entity.BaseEntity;
|
||||
/**
|
||||
* (Pubkszl)实体类
|
||||
*往来单位(客商资料)表
|
||||
* @author makejava
|
||||
* @since 2024-08-27 15:56:53
|
||||
*/
|
||||
public class PubkszlEntity extends BaseEntity {
|
||||
|
||||
private String gsdm;
|
||||
private String kjnd;
|
||||
private String dwdm;
|
||||
private String dwmc;
|
||||
private String jym;
|
||||
private String dwqc;
|
||||
private String dqdm;
|
||||
private String txdz;
|
||||
private String yb;
|
||||
private String lxrxm;
|
||||
private String tel;
|
||||
private String fax;
|
||||
private String email;
|
||||
private String http;
|
||||
private String sjdwdm;
|
||||
private String zzsh;
|
||||
private String yyzh;
|
||||
private String frdbxm;
|
||||
private String jyfw;
|
||||
private String khyh;
|
||||
private String zh;
|
||||
private String yszkkmdm;
|
||||
private String yfzkkmdm;
|
||||
private String dwwb;
|
||||
private String bizh;
|
||||
private Integer xyts;
|
||||
private Integer xyed;
|
||||
private String sftzjy;
|
||||
private String sfxykz;
|
||||
private String sfkh;
|
||||
private String sfcj;
|
||||
private String sfgys;
|
||||
private String sfjtndw;
|
||||
private String syzt;
|
||||
private String bz;
|
||||
private Integer jlrId;
|
||||
private String jlRq;
|
||||
private Integer xgrId;
|
||||
private String xgRq;
|
||||
private String sjly;
|
||||
private String dyzwzth;
|
||||
private String dyzwztmc;
|
||||
private String dysjk;
|
||||
private String dyzwztckkm;
|
||||
private String dyckkm;
|
||||
private String dyckzh;
|
||||
private String dyyhckzh;
|
||||
private String dyyhxjzh;
|
||||
private String bzly;
|
||||
private String bzsyzt;
|
||||
private String bzbz1;
|
||||
private String bzbz2;
|
||||
private String bzbz3;
|
||||
private String bzbz4;
|
||||
private String bzbz5;
|
||||
private String bzbz6;
|
||||
private String bzbz7;
|
||||
private String sfysdw;
|
||||
private String dwxz;
|
||||
private String sh;
|
||||
private String dwfzr;
|
||||
private String cwfzr;
|
||||
private String dwjbr;
|
||||
private String dwgbm;
|
||||
private String sfmx;
|
||||
private String yhbm;
|
||||
private String mqkpbz;
|
||||
private String hkfs;
|
||||
private String pjmaxsl;
|
||||
private String dwjb;
|
||||
private String gkjzzf;
|
||||
private String webmemberid;
|
||||
private String sjlbdm;
|
||||
private String bemDwjb;
|
||||
private String yuszkkmdm;
|
||||
private String yufzkkmdm;
|
||||
private String maxrsqje;
|
||||
private String maxdjsqje;
|
||||
private String maxsqjebl;
|
||||
private String unittype;
|
||||
private String zjyhdm;
|
||||
private String zjyhmc;
|
||||
private String sqyhdm;
|
||||
private String sqyhmc;
|
||||
private String yqguid;
|
||||
private String nsrsbh;
|
||||
private String orgcode;
|
||||
private String dwsx;
|
||||
private String dycwckkm;
|
||||
private String wbdwdm;
|
||||
private String wbdwmc;
|
||||
|
||||
|
||||
public String getGsdm() {
|
||||
return gsdm;
|
||||
}
|
||||
|
||||
public void setGsdm(String gsdm) {
|
||||
this.gsdm = gsdm;
|
||||
}
|
||||
|
||||
public String getKjnd() {
|
||||
return kjnd;
|
||||
}
|
||||
|
||||
public void setKjnd(String kjnd) {
|
||||
this.kjnd = kjnd;
|
||||
}
|
||||
|
||||
public String getDwdm() {
|
||||
return dwdm;
|
||||
}
|
||||
|
||||
public void setDwdm(String dwdm) {
|
||||
this.dwdm = dwdm;
|
||||
}
|
||||
|
||||
public String getDwmc() {
|
||||
return dwmc;
|
||||
}
|
||||
|
||||
public void setDwmc(String dwmc) {
|
||||
this.dwmc = dwmc;
|
||||
}
|
||||
|
||||
public String getJym() {
|
||||
return jym;
|
||||
}
|
||||
|
||||
public void setJym(String jym) {
|
||||
this.jym = jym;
|
||||
}
|
||||
|
||||
public String getDwqc() {
|
||||
return dwqc;
|
||||
}
|
||||
|
||||
public void setDwqc(String dwqc) {
|
||||
this.dwqc = dwqc;
|
||||
}
|
||||
|
||||
public String getDqdm() {
|
||||
return dqdm;
|
||||
}
|
||||
|
||||
public void setDqdm(String dqdm) {
|
||||
this.dqdm = dqdm;
|
||||
}
|
||||
|
||||
public String getTxdz() {
|
||||
return txdz;
|
||||
}
|
||||
|
||||
public void setTxdz(String txdz) {
|
||||
this.txdz = txdz;
|
||||
}
|
||||
|
||||
public String getYb() {
|
||||
return yb;
|
||||
}
|
||||
|
||||
public void setYb(String yb) {
|
||||
this.yb = yb;
|
||||
}
|
||||
|
||||
public String getLxrxm() {
|
||||
return lxrxm;
|
||||
}
|
||||
|
||||
public void setLxrxm(String lxrxm) {
|
||||
this.lxrxm = lxrxm;
|
||||
}
|
||||
|
||||
public String getTel() {
|
||||
return tel;
|
||||
}
|
||||
|
||||
public void setTel(String tel) {
|
||||
this.tel = tel;
|
||||
}
|
||||
|
||||
public String getFax() {
|
||||
return fax;
|
||||
}
|
||||
|
||||
public void setFax(String fax) {
|
||||
this.fax = fax;
|
||||
}
|
||||
|
||||
public String getEmail() {
|
||||
return email;
|
||||
}
|
||||
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public String getHttp() {
|
||||
return http;
|
||||
}
|
||||
|
||||
public void setHttp(String http) {
|
||||
this.http = http;
|
||||
}
|
||||
|
||||
public String getSjdwdm() {
|
||||
return sjdwdm;
|
||||
}
|
||||
|
||||
public void setSjdwdm(String sjdwdm) {
|
||||
this.sjdwdm = sjdwdm;
|
||||
}
|
||||
|
||||
public String getZzsh() {
|
||||
return zzsh;
|
||||
}
|
||||
|
||||
public void setZzsh(String zzsh) {
|
||||
this.zzsh = zzsh;
|
||||
}
|
||||
|
||||
public String getYyzh() {
|
||||
return yyzh;
|
||||
}
|
||||
|
||||
public void setYyzh(String yyzh) {
|
||||
this.yyzh = yyzh;
|
||||
}
|
||||
|
||||
public String getFrdbxm() {
|
||||
return frdbxm;
|
||||
}
|
||||
|
||||
public void setFrdbxm(String frdbxm) {
|
||||
this.frdbxm = frdbxm;
|
||||
}
|
||||
|
||||
public String getJyfw() {
|
||||
return jyfw;
|
||||
}
|
||||
|
||||
public void setJyfw(String jyfw) {
|
||||
this.jyfw = jyfw;
|
||||
}
|
||||
|
||||
public String getKhyh() {
|
||||
return khyh;
|
||||
}
|
||||
|
||||
public void setKhyh(String khyh) {
|
||||
this.khyh = khyh;
|
||||
}
|
||||
|
||||
public String getZh() {
|
||||
return zh;
|
||||
}
|
||||
|
||||
public void setZh(String zh) {
|
||||
this.zh = zh;
|
||||
}
|
||||
|
||||
public String getYszkkmdm() {
|
||||
return yszkkmdm;
|
||||
}
|
||||
|
||||
public void setYszkkmdm(String yszkkmdm) {
|
||||
this.yszkkmdm = yszkkmdm;
|
||||
}
|
||||
|
||||
public String getYfzkkmdm() {
|
||||
return yfzkkmdm;
|
||||
}
|
||||
|
||||
public void setYfzkkmdm(String yfzkkmdm) {
|
||||
this.yfzkkmdm = yfzkkmdm;
|
||||
}
|
||||
|
||||
public String getDwwb() {
|
||||
return dwwb;
|
||||
}
|
||||
|
||||
public void setDwwb(String dwwb) {
|
||||
this.dwwb = dwwb;
|
||||
}
|
||||
|
||||
public String getBizh() {
|
||||
return bizh;
|
||||
}
|
||||
|
||||
public void setBizh(String bizh) {
|
||||
this.bizh = bizh;
|
||||
}
|
||||
|
||||
public Integer getXyts() {
|
||||
return xyts;
|
||||
}
|
||||
|
||||
public void setXyts(Integer xyts) {
|
||||
this.xyts = xyts;
|
||||
}
|
||||
|
||||
public Integer getXyed() {
|
||||
return xyed;
|
||||
}
|
||||
|
||||
public void setXyed(Integer xyed) {
|
||||
this.xyed = xyed;
|
||||
}
|
||||
|
||||
public String getSftzjy() {
|
||||
return sftzjy;
|
||||
}
|
||||
|
||||
public void setSftzjy(String sftzjy) {
|
||||
this.sftzjy = sftzjy;
|
||||
}
|
||||
|
||||
public String getSfxykz() {
|
||||
return sfxykz;
|
||||
}
|
||||
|
||||
public void setSfxykz(String sfxykz) {
|
||||
this.sfxykz = sfxykz;
|
||||
}
|
||||
|
||||
public String getSfkh() {
|
||||
return sfkh;
|
||||
}
|
||||
|
||||
public void setSfkh(String sfkh) {
|
||||
this.sfkh = sfkh;
|
||||
}
|
||||
|
||||
public String getSfcj() {
|
||||
return sfcj;
|
||||
}
|
||||
|
||||
public void setSfcj(String sfcj) {
|
||||
this.sfcj = sfcj;
|
||||
}
|
||||
|
||||
public String getSfgys() {
|
||||
return sfgys;
|
||||
}
|
||||
|
||||
public void setSfgys(String sfgys) {
|
||||
this.sfgys = sfgys;
|
||||
}
|
||||
|
||||
public String getSfjtndw() {
|
||||
return sfjtndw;
|
||||
}
|
||||
|
||||
public void setSfjtndw(String sfjtndw) {
|
||||
this.sfjtndw = sfjtndw;
|
||||
}
|
||||
|
||||
public String getSyzt() {
|
||||
return syzt;
|
||||
}
|
||||
|
||||
public void setSyzt(String syzt) {
|
||||
this.syzt = syzt;
|
||||
}
|
||||
|
||||
public String getBz() {
|
||||
return bz;
|
||||
}
|
||||
|
||||
public void setBz(String bz) {
|
||||
this.bz = bz;
|
||||
}
|
||||
|
||||
public Integer getJlrId() {
|
||||
return jlrId;
|
||||
}
|
||||
|
||||
public void setJlrId(Integer jlrId) {
|
||||
this.jlrId = jlrId;
|
||||
}
|
||||
|
||||
public String getJlRq() {
|
||||
return jlRq;
|
||||
}
|
||||
|
||||
public void setJlRq(String jlRq) {
|
||||
this.jlRq = jlRq;
|
||||
}
|
||||
|
||||
public Integer getXgrId() {
|
||||
return xgrId;
|
||||
}
|
||||
|
||||
public void setXgrId(Integer xgrId) {
|
||||
this.xgrId = xgrId;
|
||||
}
|
||||
|
||||
public String getXgRq() {
|
||||
return xgRq;
|
||||
}
|
||||
|
||||
public void setXgRq(String xgRq) {
|
||||
this.xgRq = xgRq;
|
||||
}
|
||||
|
||||
public String getSjly() {
|
||||
return sjly;
|
||||
}
|
||||
|
||||
public void setSjly(String sjly) {
|
||||
this.sjly = sjly;
|
||||
}
|
||||
|
||||
public String getDyzwzth() {
|
||||
return dyzwzth;
|
||||
}
|
||||
|
||||
public void setDyzwzth(String dyzwzth) {
|
||||
this.dyzwzth = dyzwzth;
|
||||
}
|
||||
|
||||
public String getDyzwztmc() {
|
||||
return dyzwztmc;
|
||||
}
|
||||
|
||||
public void setDyzwztmc(String dyzwztmc) {
|
||||
this.dyzwztmc = dyzwztmc;
|
||||
}
|
||||
|
||||
public String getDysjk() {
|
||||
return dysjk;
|
||||
}
|
||||
|
||||
public void setDysjk(String dysjk) {
|
||||
this.dysjk = dysjk;
|
||||
}
|
||||
|
||||
public String getDyzwztckkm() {
|
||||
return dyzwztckkm;
|
||||
}
|
||||
|
||||
public void setDyzwztckkm(String dyzwztckkm) {
|
||||
this.dyzwztckkm = dyzwztckkm;
|
||||
}
|
||||
|
||||
public String getDyckkm() {
|
||||
return dyckkm;
|
||||
}
|
||||
|
||||
public void setDyckkm(String dyckkm) {
|
||||
this.dyckkm = dyckkm;
|
||||
}
|
||||
|
||||
public String getDyckzh() {
|
||||
return dyckzh;
|
||||
}
|
||||
|
||||
public void setDyckzh(String dyckzh) {
|
||||
this.dyckzh = dyckzh;
|
||||
}
|
||||
|
||||
public String getDyyhckzh() {
|
||||
return dyyhckzh;
|
||||
}
|
||||
|
||||
public void setDyyhckzh(String dyyhckzh) {
|
||||
this.dyyhckzh = dyyhckzh;
|
||||
}
|
||||
|
||||
public String getDyyhxjzh() {
|
||||
return dyyhxjzh;
|
||||
}
|
||||
|
||||
public void setDyyhxjzh(String dyyhxjzh) {
|
||||
this.dyyhxjzh = dyyhxjzh;
|
||||
}
|
||||
|
||||
public String getBzly() {
|
||||
return bzly;
|
||||
}
|
||||
|
||||
public void setBzly(String bzly) {
|
||||
this.bzly = bzly;
|
||||
}
|
||||
|
||||
public String getBzsyzt() {
|
||||
return bzsyzt;
|
||||
}
|
||||
|
||||
public void setBzsyzt(String bzsyzt) {
|
||||
this.bzsyzt = bzsyzt;
|
||||
}
|
||||
|
||||
public String getBzbz1() {
|
||||
return bzbz1;
|
||||
}
|
||||
|
||||
public void setBzbz1(String bzbz1) {
|
||||
this.bzbz1 = bzbz1;
|
||||
}
|
||||
|
||||
public String getBzbz2() {
|
||||
return bzbz2;
|
||||
}
|
||||
|
||||
public void setBzbz2(String bzbz2) {
|
||||
this.bzbz2 = bzbz2;
|
||||
}
|
||||
|
||||
public String getBzbz3() {
|
||||
return bzbz3;
|
||||
}
|
||||
|
||||
public void setBzbz3(String bzbz3) {
|
||||
this.bzbz3 = bzbz3;
|
||||
}
|
||||
|
||||
public String getBzbz4() {
|
||||
return bzbz4;
|
||||
}
|
||||
|
||||
public void setBzbz4(String bzbz4) {
|
||||
this.bzbz4 = bzbz4;
|
||||
}
|
||||
|
||||
public String getBzbz5() {
|
||||
return bzbz5;
|
||||
}
|
||||
|
||||
public void setBzbz5(String bzbz5) {
|
||||
this.bzbz5 = bzbz5;
|
||||
}
|
||||
|
||||
public String getBzbz6() {
|
||||
return bzbz6;
|
||||
}
|
||||
|
||||
public void setBzbz6(String bzbz6) {
|
||||
this.bzbz6 = bzbz6;
|
||||
}
|
||||
|
||||
public String getBzbz7() {
|
||||
return bzbz7;
|
||||
}
|
||||
|
||||
public void setBzbz7(String bzbz7) {
|
||||
this.bzbz7 = bzbz7;
|
||||
}
|
||||
|
||||
public String getSfysdw() {
|
||||
return sfysdw;
|
||||
}
|
||||
|
||||
public void setSfysdw(String sfysdw) {
|
||||
this.sfysdw = sfysdw;
|
||||
}
|
||||
|
||||
public String getDwxz() {
|
||||
return dwxz;
|
||||
}
|
||||
|
||||
public void setDwxz(String dwxz) {
|
||||
this.dwxz = dwxz;
|
||||
}
|
||||
|
||||
public String getSh() {
|
||||
return sh;
|
||||
}
|
||||
|
||||
public void setSh(String sh) {
|
||||
this.sh = sh;
|
||||
}
|
||||
|
||||
public String getDwfzr() {
|
||||
return dwfzr;
|
||||
}
|
||||
|
||||
public void setDwfzr(String dwfzr) {
|
||||
this.dwfzr = dwfzr;
|
||||
}
|
||||
|
||||
public String getCwfzr() {
|
||||
return cwfzr;
|
||||
}
|
||||
|
||||
public void setCwfzr(String cwfzr) {
|
||||
this.cwfzr = cwfzr;
|
||||
}
|
||||
|
||||
public String getDwjbr() {
|
||||
return dwjbr;
|
||||
}
|
||||
|
||||
public void setDwjbr(String dwjbr) {
|
||||
this.dwjbr = dwjbr;
|
||||
}
|
||||
|
||||
public String getDwgbm() {
|
||||
return dwgbm;
|
||||
}
|
||||
|
||||
public void setDwgbm(String dwgbm) {
|
||||
this.dwgbm = dwgbm;
|
||||
}
|
||||
|
||||
public String getSfmx() {
|
||||
return sfmx;
|
||||
}
|
||||
|
||||
public void setSfmx(String sfmx) {
|
||||
this.sfmx = sfmx;
|
||||
}
|
||||
|
||||
public String getYhbm() {
|
||||
return yhbm;
|
||||
}
|
||||
|
||||
public void setYhbm(String yhbm) {
|
||||
this.yhbm = yhbm;
|
||||
}
|
||||
|
||||
public String getMqkpbz() {
|
||||
return mqkpbz;
|
||||
}
|
||||
|
||||
public void setMqkpbz(String mqkpbz) {
|
||||
this.mqkpbz = mqkpbz;
|
||||
}
|
||||
|
||||
public String getHkfs() {
|
||||
return hkfs;
|
||||
}
|
||||
|
||||
public void setHkfs(String hkfs) {
|
||||
this.hkfs = hkfs;
|
||||
}
|
||||
|
||||
public String getPjmaxsl() {
|
||||
return pjmaxsl;
|
||||
}
|
||||
|
||||
public void setPjmaxsl(String pjmaxsl) {
|
||||
this.pjmaxsl = pjmaxsl;
|
||||
}
|
||||
|
||||
public String getDwjb() {
|
||||
return dwjb;
|
||||
}
|
||||
|
||||
public void setDwjb(String dwjb) {
|
||||
this.dwjb = dwjb;
|
||||
}
|
||||
|
||||
public String getGkjzzf() {
|
||||
return gkjzzf;
|
||||
}
|
||||
|
||||
public void setGkjzzf(String gkjzzf) {
|
||||
this.gkjzzf = gkjzzf;
|
||||
}
|
||||
|
||||
public String getWebmemberid() {
|
||||
return webmemberid;
|
||||
}
|
||||
|
||||
public void setWebmemberid(String webmemberid) {
|
||||
this.webmemberid = webmemberid;
|
||||
}
|
||||
|
||||
public String getSjlbdm() {
|
||||
return sjlbdm;
|
||||
}
|
||||
|
||||
public void setSjlbdm(String sjlbdm) {
|
||||
this.sjlbdm = sjlbdm;
|
||||
}
|
||||
|
||||
public String getBemDwjb() {
|
||||
return bemDwjb;
|
||||
}
|
||||
|
||||
public void setBemDwjb(String bemDwjb) {
|
||||
this.bemDwjb = bemDwjb;
|
||||
}
|
||||
|
||||
public String getYuszkkmdm() {
|
||||
return yuszkkmdm;
|
||||
}
|
||||
|
||||
public void setYuszkkmdm(String yuszkkmdm) {
|
||||
this.yuszkkmdm = yuszkkmdm;
|
||||
}
|
||||
|
||||
public String getYufzkkmdm() {
|
||||
return yufzkkmdm;
|
||||
}
|
||||
|
||||
public void setYufzkkmdm(String yufzkkmdm) {
|
||||
this.yufzkkmdm = yufzkkmdm;
|
||||
}
|
||||
|
||||
public String getMaxrsqje() {
|
||||
return maxrsqje;
|
||||
}
|
||||
|
||||
public void setMaxrsqje(String maxrsqje) {
|
||||
this.maxrsqje = maxrsqje;
|
||||
}
|
||||
|
||||
public String getMaxdjsqje() {
|
||||
return maxdjsqje;
|
||||
}
|
||||
|
||||
public void setMaxdjsqje(String maxdjsqje) {
|
||||
this.maxdjsqje = maxdjsqje;
|
||||
}
|
||||
|
||||
public String getMaxsqjebl() {
|
||||
return maxsqjebl;
|
||||
}
|
||||
|
||||
public void setMaxsqjebl(String maxsqjebl) {
|
||||
this.maxsqjebl = maxsqjebl;
|
||||
}
|
||||
|
||||
public String getUnittype() {
|
||||
return unittype;
|
||||
}
|
||||
|
||||
public void setUnittype(String unittype) {
|
||||
this.unittype = unittype;
|
||||
}
|
||||
|
||||
public String getZjyhdm() {
|
||||
return zjyhdm;
|
||||
}
|
||||
|
||||
public void setZjyhdm(String zjyhdm) {
|
||||
this.zjyhdm = zjyhdm;
|
||||
}
|
||||
|
||||
public String getZjyhmc() {
|
||||
return zjyhmc;
|
||||
}
|
||||
|
||||
public void setZjyhmc(String zjyhmc) {
|
||||
this.zjyhmc = zjyhmc;
|
||||
}
|
||||
|
||||
public String getSqyhdm() {
|
||||
return sqyhdm;
|
||||
}
|
||||
|
||||
public void setSqyhdm(String sqyhdm) {
|
||||
this.sqyhdm = sqyhdm;
|
||||
}
|
||||
|
||||
public String getSqyhmc() {
|
||||
return sqyhmc;
|
||||
}
|
||||
|
||||
public void setSqyhmc(String sqyhmc) {
|
||||
this.sqyhmc = sqyhmc;
|
||||
}
|
||||
|
||||
public String getYqguid() {
|
||||
return yqguid;
|
||||
}
|
||||
|
||||
public void setYqguid(String yqguid) {
|
||||
this.yqguid = yqguid;
|
||||
}
|
||||
|
||||
public String getNsrsbh() {
|
||||
return nsrsbh;
|
||||
}
|
||||
|
||||
public void setNsrsbh(String nsrsbh) {
|
||||
this.nsrsbh = nsrsbh;
|
||||
}
|
||||
|
||||
public String getOrgcode() {
|
||||
return orgcode;
|
||||
}
|
||||
|
||||
public void setOrgcode(String orgcode) {
|
||||
this.orgcode = orgcode;
|
||||
}
|
||||
|
||||
public String getDwsx() {
|
||||
return dwsx;
|
||||
}
|
||||
|
||||
public void setDwsx(String dwsx) {
|
||||
this.dwsx = dwsx;
|
||||
}
|
||||
|
||||
public String getDycwckkm() {
|
||||
return dycwckkm;
|
||||
}
|
||||
|
||||
public void setDycwckkm(String dycwckkm) {
|
||||
this.dycwckkm = dycwckkm;
|
||||
}
|
||||
|
||||
public String getWbdwdm() {
|
||||
return wbdwdm;
|
||||
}
|
||||
|
||||
public void setWbdwdm(String wbdwdm) {
|
||||
this.wbdwdm = wbdwdm;
|
||||
}
|
||||
|
||||
public String getWbdwmc() {
|
||||
return wbdwmc;
|
||||
}
|
||||
|
||||
public void setWbdwmc(String wbdwmc) {
|
||||
this.wbdwmc = wbdwmc;
|
||||
}
|
||||
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,53 @@
|
|||
package com.hzya.frame.grpU8.nxproof.pubkszl.service;
|
||||
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.hzya.frame.grpU8.nxproof.pubkszl.entity.PubkszlEntity;
|
||||
import com.hzya.frame.basedao.service.IBaseService;
|
||||
/**
|
||||
* (Pubkszl)表服务接口
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-08-27 15:56:54
|
||||
*/
|
||||
public interface IPubkszlService extends IBaseService<PubkszlEntity, String>{
|
||||
|
||||
/**
|
||||
*
|
||||
* @content 分页查询往来单位(客商资料)数据
|
||||
* @Param
|
||||
* @Return
|
||||
* @Author hecan
|
||||
* @Date 2024/8/27 16:23
|
||||
* **/
|
||||
Object queryEntityPage(JSONObject json);
|
||||
|
||||
/**
|
||||
*
|
||||
* @content 新增往来单位(客商资料)数据
|
||||
* @Param
|
||||
* @Return
|
||||
* @Author hecan
|
||||
* @Date 2024/8/27 17:45
|
||||
* **/
|
||||
Object saveEntity(JSONObject json);
|
||||
|
||||
/**
|
||||
*
|
||||
* @content 更新往来单位(客商资料)数据
|
||||
* @Param
|
||||
* @Return
|
||||
* @Author hecan
|
||||
* @Date 2024/8/27 17:45
|
||||
* **/
|
||||
Object updateEntity(JSONObject json);
|
||||
|
||||
/**
|
||||
*
|
||||
* @content 删除往来单位(客商资料)数据
|
||||
* @Param
|
||||
* @Return
|
||||
* @Author hecan
|
||||
* @Date 2024/8/27 17:45
|
||||
* **/
|
||||
Object deleteEntity(JSONObject json);
|
||||
}
|
|
@ -0,0 +1,74 @@
|
|||
package com.hzya.frame.grpU8.nxproof.pubkszl.service.impl;
|
||||
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.github.pagehelper.PageInfo;
|
||||
import com.hzya.frame.grpU8.nxproof.glxjllxm.entity.GlXjllxmEntity;
|
||||
import com.hzya.frame.grpU8.nxproof.pubkszl.entity.PubkszlEntity;
|
||||
import com.hzya.frame.grpU8.nxproof.pubkszl.dao.IPubkszlDao;
|
||||
import com.hzya.frame.grpU8.nxproof.pubkszl.service.IPubkszlService;
|
||||
import com.hzya.frame.web.entity.BaseResult;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import javax.annotation.Resource;
|
||||
import com.hzya.frame.basedao.service.impl.BaseService;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* (Pubkszl)表服务实现类
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-08-27 15:56:54
|
||||
*/
|
||||
@Service(value = "PubkszlServiceImpl")
|
||||
public class PubkszlServiceImpl extends BaseService<PubkszlEntity, String> implements IPubkszlService {
|
||||
|
||||
private IPubkszlDao pubkszlDao;
|
||||
|
||||
@Autowired
|
||||
public void setPubkszlDao(IPubkszlDao dao) {
|
||||
this.pubkszlDao = dao;
|
||||
this.dao = dao;
|
||||
}
|
||||
|
||||
//分页查询往来单位数据
|
||||
@Override
|
||||
public Object queryEntityPage(JSONObject json) {
|
||||
JSONObject jsonObject = json.getJSONObject("jsonStr");
|
||||
PubkszlEntity pubkszlEntity = jsonObject.toJavaObject(PubkszlEntity.class);
|
||||
if(!checkStr(jsonObject.getString("kjnd"))){
|
||||
logger.info("========查询往来单位传递得会计年度为空==========");
|
||||
return BaseResult.getFailureMessageEntity("会计年度为空");
|
||||
}
|
||||
if(!checkStr(jsonObject.getString("gsdm"))){
|
||||
logger.info("========查询往来单位传递得公司代码为空==========");
|
||||
return BaseResult.getFailureMessageEntity("公司代码为空");
|
||||
}
|
||||
try {
|
||||
List<PubkszlEntity> pubkszlEntities = pubkszlDao.queryPubkszlEntity(pubkszlEntity);
|
||||
PageInfo pageInfo=new PageInfo(pubkszlEntities);
|
||||
JSONObject object=new JSONObject();
|
||||
object.put("pageInfo",pageInfo);
|
||||
object.put("status","200");
|
||||
return object;
|
||||
}catch (Exception e){
|
||||
logger.info("=======根据会计年度:{},公司代码:{}查询往来单位失败======",jsonObject.getString("kjnd"),jsonObject.getString("gsdm"),e.getMessage());
|
||||
return BaseResult.getFailureMessageEntity("查询往来单位失败");
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object saveEntity(JSONObject json) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object updateEntity(JSONObject json) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object deleteEntity(JSONObject json) {
|
||||
return null;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue