|
|
|
@ -17,15 +17,15 @@ public interface IEnterpriseInformationService |
|
|
|
* @param id 企业信息登记ID |
|
|
|
* @return 企业信息登记 |
|
|
|
*/ |
|
|
|
public EnterpriseInformation selectEnterpriseInformationById(String id); |
|
|
|
public EnterpriseInformation selectEnterpriseInformationByNum(String num); |
|
|
|
EnterpriseInformation selectEnterpriseInformationById(String id); |
|
|
|
EnterpriseInformation selectEnterpriseInformationByNum(String num); |
|
|
|
|
|
|
|
/** |
|
|
|
* 查询企业信息 |
|
|
|
* @param salt 通过盐加密之后的企业统一信用代码 |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
public EnterpriseInformation selectEnterpriseInformationBySalt(String salt); |
|
|
|
EnterpriseInformation selectEnterpriseInformationBySalt(String salt); |
|
|
|
|
|
|
|
/** |
|
|
|
* 查询企业信息登记列表 |
|
|
|
@ -33,7 +33,14 @@ public interface IEnterpriseInformationService |
|
|
|
* @param enterpriseInformation 企业信息登记 |
|
|
|
* @return 企业信息登记集合 |
|
|
|
*/ |
|
|
|
public List<EnterpriseInformation> selectEnterpriseInformationList(EnterpriseInformation enterpriseInformation); |
|
|
|
List<EnterpriseInformation> selectEnterpriseInformationList(EnterpriseInformation enterpriseInformation); |
|
|
|
/** |
|
|
|
* 查询企业信息登记列表 |
|
|
|
* |
|
|
|
* @param enterpriseInformation 企业信息登记 |
|
|
|
* @return 企业信息登记集合 |
|
|
|
*/ |
|
|
|
List<EnterpriseInformation> selectEnterpriseInformationAndQrInfo(EnterpriseInformation enterpriseInformation); |
|
|
|
|
|
|
|
/** |
|
|
|
* 新增企业信息登记 |
|
|
|
@ -41,7 +48,7 @@ public interface IEnterpriseInformationService |
|
|
|
* @param enterpriseInformation 企业信息登记 |
|
|
|
* @return 结果 |
|
|
|
*/ |
|
|
|
public int insertEnterpriseInformation(EnterpriseInformation enterpriseInformation); |
|
|
|
int insertEnterpriseInformation(EnterpriseInformation enterpriseInformation); |
|
|
|
|
|
|
|
/** |
|
|
|
* 修改企业信息登记 |
|
|
|
@ -49,7 +56,7 @@ public interface IEnterpriseInformationService |
|
|
|
* @param enterpriseInformation 企业信息登记 |
|
|
|
* @return 结果 |
|
|
|
*/ |
|
|
|
public int updateEnterpriseInformation(EnterpriseInformation enterpriseInformation); |
|
|
|
int updateEnterpriseInformation(EnterpriseInformation enterpriseInformation); |
|
|
|
|
|
|
|
/** |
|
|
|
* 修改企业信息登记 |
|
|
|
@ -57,7 +64,7 @@ public interface IEnterpriseInformationService |
|
|
|
* @param enterpriseInformation 企业信息登记 |
|
|
|
* @return 结果 |
|
|
|
*/ |
|
|
|
public int update(EnterpriseInformation enterpriseInformation); |
|
|
|
int update(EnterpriseInformation enterpriseInformation); |
|
|
|
|
|
|
|
/** |
|
|
|
* 批量删除企业信息登记 |
|
|
|
@ -65,14 +72,14 @@ public interface IEnterpriseInformationService |
|
|
|
* @param ids 需要删除的数据ID |
|
|
|
* @return 结果 |
|
|
|
*/ |
|
|
|
public int deleteEnterpriseInformationByIds(String ids); |
|
|
|
int deleteEnterpriseInformationByIds(String ids); |
|
|
|
|
|
|
|
/** |
|
|
|
* 二维码生成 |
|
|
|
* @param enterpriseNumber |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
public int generateQrCode(String enterpriseNumber); |
|
|
|
int generateQrCode(String enterpriseNumber); |
|
|
|
|
|
|
|
/** |
|
|
|
* 删除企业信息登记信息 |
|
|
|
@ -80,13 +87,13 @@ public interface IEnterpriseInformationService |
|
|
|
* @param id 企业信息登记ID |
|
|
|
* @return 结果 |
|
|
|
*/ |
|
|
|
public int deleteEnterpriseInformationById(String id); |
|
|
|
int deleteEnterpriseInformationById(String id); |
|
|
|
|
|
|
|
/** |
|
|
|
* 下载图片 |
|
|
|
* @param fileUrl |
|
|
|
*/ |
|
|
|
public void downloadQrCodeImage(String fileUrl); |
|
|
|
void downloadQrCodeImage(String fileUrl); |
|
|
|
|
|
|
|
/** |
|
|
|
* 生成新的二维码 |
|
|
|
|