Commit 3923ea0b by 陶光胜

代码规范

parent b81f98bc
...@@ -55,7 +55,7 @@ public enum SmsAppEnum { ...@@ -55,7 +55,7 @@ public enum SmsAppEnum {
private String code; private String code;
private String name; private String name;
// 需要权限控制 /**需要权限控制*/
private boolean isCtrl; private boolean isCtrl;
SmsAppEnum(String code, String name, boolean isCtrl) { SmsAppEnum(String code, String name, boolean isCtrl) {
......
...@@ -2,7 +2,13 @@ package com.gic.enterprise.dto; ...@@ -2,7 +2,13 @@ package com.gic.enterprise.dto;
import java.io.Serializable; import java.io.Serializable;
import java.util.Date; import java.util.Date;
/**
*
* @ClassName: BillingOrderDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:23
*/
public class BillingOrderDTO implements Serializable { public class BillingOrderDTO implements Serializable {
private static final long serialVersionUID = -2050607465329409777L; private static final long serialVersionUID = -2050607465329409777L;
......
...@@ -2,9 +2,12 @@ package com.gic.enterprise.dto; ...@@ -2,9 +2,12 @@ package com.gic.enterprise.dto;
import java.io.Serializable; import java.io.Serializable;
import java.util.Date; import java.util.Date;
/** /**
* tab_billing_sms_record *
* @ClassName: BillingSmsRecordDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:23
*/ */
public class BillingSmsRecordDTO implements Serializable { public class BillingSmsRecordDTO implements Serializable {
/** /**
......
package com.gic.enterprise.dto; package com.gic.enterprise.dto;
import java.io.Serializable; import java.io.Serializable;
/**
*
* @ClassName: CustomChatFiledDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:23
*/
public class CustomChatFiledDTO implements Serializable { public class CustomChatFiledDTO implements Serializable {
private String key; private String key;
private String value; private String value;
......
...@@ -4,7 +4,11 @@ import java.io.Serializable; ...@@ -4,7 +4,11 @@ import java.io.Serializable;
import java.util.Date; import java.util.Date;
/** /**
* tab_custom_guide *
* @ClassName: CustomGuideDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:23
*/ */
public class CustomGuideDTO implements Serializable { public class CustomGuideDTO implements Serializable {
/** /**
......
...@@ -4,7 +4,11 @@ import java.io.Serializable; ...@@ -4,7 +4,11 @@ import java.io.Serializable;
import java.util.Date; import java.util.Date;
/** /**
* tab_custom_store *
* @ClassName: CustomStoreDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:23
*/ */
public class CustomStoreDTO implements Serializable { public class CustomStoreDTO implements Serializable {
/** /**
......
...@@ -4,7 +4,11 @@ import java.io.Serializable; ...@@ -4,7 +4,11 @@ import java.io.Serializable;
import java.util.Date; import java.util.Date;
/** /**
* tab_custom_udesk_field *
* @ClassName: CustomUdeskFieldDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:24
*/ */
public class CustomUdeskFieldDTO implements Serializable { public class CustomUdeskFieldDTO implements Serializable {
private static final long serialVersionUID = 3629705521334915819L; private static final long serialVersionUID = 3629705521334915819L;
......
...@@ -4,7 +4,11 @@ import java.io.Serializable; ...@@ -4,7 +4,11 @@ import java.io.Serializable;
import java.util.List; import java.util.List;
/** /**
* tab_store_dict *
* @ClassName: DictDTO
* @Description:
* @author taogs
* @date 2020/9/16 16:53
*/ */
public class DictDTO implements Serializable { public class DictDTO implements Serializable {
...@@ -46,4 +50,14 @@ public class DictDTO implements Serializable { ...@@ -46,4 +50,14 @@ public class DictDTO implements Serializable {
public List<DictDTO> getDictList() { public List<DictDTO> getDictList() {
return dictList; return dictList;
} }
@Override
public String toString() {
return "DictDTO{" +
"value='" + value + '\'' +
", key='" + key + '\'' +
", content='" + content + '\'' +
", dictList=" + dictList +
'}';
}
} }
\ No newline at end of file
...@@ -61,7 +61,6 @@ public class DoubleCallingRecordDTO implements Serializable { ...@@ -61,7 +61,6 @@ public class DoubleCallingRecordDTO implements Serializable {
/** /**
* 被叫 * 被叫
*/ */
// @NotBlank(message = "被叫名")
private String calledName; private String calledName;
/** /**
...@@ -288,4 +287,30 @@ public class DoubleCallingRecordDTO implements Serializable { ...@@ -288,4 +287,30 @@ public class DoubleCallingRecordDTO implements Serializable {
public void setRemark(String remark) { public void setRemark(String remark) {
this.remark = remark; this.remark = remark;
} }
@Override
public String toString() {
return "DoubleCallingRecordDTO{" +
"doubleCallingRecordId=" + doubleCallingRecordId +
", paySerialNumber='" + paySerialNumber + '\'' +
", callerName='" + callerName + '\'' +
", callerPhone='" + callerPhone + '\'' +
", fee=" + fee +
", status=" + status +
", createTime=" + createTime +
", deductionTime=" + deductionTime +
", calledName='" + calledName + '\'' +
", calledPhone='" + calledPhone + '\'' +
", appCode='" + appCode + '\'' +
", appName='" + appName + '\'' +
", voiceTime='" + voiceTime + '\'' +
", enterpriseId=" + enterpriseId +
", storeId=" + storeId +
", storeName='" + storeName + '\'' +
", storeGroupId=" + storeGroupId +
", storeGroupName='" + storeGroupName + '\'' +
", callTime=" + callTime +
", remark='" + remark + '\'' +
'}';
}
} }
...@@ -205,4 +205,25 @@ public class DownloadLogDTO implements Serializable { ...@@ -205,4 +205,25 @@ public class DownloadLogDTO implements Serializable {
public void setUpdateTime(Date updateTime) { public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime; this.updateTime = updateTime;
} }
@Override
public String toString() {
return "DownloadLogDTO{" +
"downloadLogId=" + downloadLogId +
", enterpriseId=" + enterpriseId +
", reportId='" + reportId + '\'' +
", downloadReportId=" + downloadReportId +
", fileName='" + fileName + '\'' +
", dataContent='" + dataContent + '\'' +
", dataType=" + dataType +
", dataCount=" + dataCount +
", downloadUserId=" + downloadUserId +
", downloadUserName='" + downloadUserName + '\'' +
", downloadTime=" + downloadTime +
", projectCode='" + projectCode + '\'' +
", status=" + status +
", createTime=" + createTime +
", updateTime=" + updateTime +
'}';
}
} }
...@@ -326,4 +326,34 @@ public class DownloadReportDTO implements Serializable { ...@@ -326,4 +326,34 @@ public class DownloadReportDTO implements Serializable {
public void setProjectCode(String projectCode) { public void setProjectCode(String projectCode) {
this.projectCode = projectCode; this.projectCode = projectCode;
} }
@Override
public String toString() {
return "DownloadReportDTO{" +
"downloadReportId=" + downloadReportId +
", enterpriseId=" + enterpriseId +
", reportId='" + reportId + '\'' +
", applyUserId=" + applyUserId +
", applyUserName='" + applyUserName + '\'' +
", reportStartTime=" + reportStartTime +
", reportEndTime=" + reportEndTime +
", fileName='" + fileName + '\'' +
", dataContent='" + dataContent + '\'' +
", dataUrl='" + dataUrl + '\'' +
", dataType=" + dataType +
", dataCount=" + dataCount +
", projectCode='" + projectCode + '\'' +
", auditResult=" + auditResult +
", auditExpireTime=" + auditExpireTime +
", downloadUrl='" + downloadUrl + '\'' +
", status=" + status +
", createTime=" + createTime +
", updateTime=" + updateTime +
", downloadReportStatus=" + downloadReportStatus +
", auditorId=" + auditorId +
", auditorName='" + auditorName + '\'' +
", auditorPhone='" + auditorPhone + '\'' +
", auditReason='" + auditReason + '\'' +
'}';
}
} }
...@@ -318,4 +318,32 @@ public class EnterpriseDTO implements Serializable{ ...@@ -318,4 +318,32 @@ public class EnterpriseDTO implements Serializable{
this.phoneAreaCode = phoneAreaCode; this.phoneAreaCode = phoneAreaCode;
return this; return this;
} }
@Override
public String toString() {
return "EnterpriseDTO{" +
"enterpriseId=" + enterpriseId +
", enterpriseName='" + enterpriseName + '\'' +
", companyName='" + companyName + '\'' +
", logo='" + logo + '\'' +
", areaId='" + areaId + '\'' +
", address='" + address + '\'' +
", status=" + status +
", createTime=" + createTime +
", updateTime=" + updateTime +
", isInitComplete=" + isInitComplete +
", auditTime=" + auditTime +
", versionCode='" + versionCode + '\'' +
", versionName='" + versionName + '\'' +
", serviceStatus=" + serviceStatus +
", creatorId=" + creatorId +
", resourcesList=" + resourcesList +
", userName='" + userName + '\'' +
", phoneNumber='" + phoneNumber + '\'' +
", password='" + password + '\'' +
", passwordType=" + passwordType +
", confirmPassword='" + confirmPassword + '\'' +
", phoneAreaCode='" + phoneAreaCode + '\'' +
'}';
}
} }
...@@ -151,4 +151,21 @@ public class EnterpriseInitDTO implements Serializable{ ...@@ -151,4 +151,21 @@ public class EnterpriseInitDTO implements Serializable{
public void setIsInitConfig(Integer isInitConfig) { public void setIsInitConfig(Integer isInitConfig) {
this.isInitConfig = isInitConfig; this.isInitConfig = isInitConfig;
} }
@Override
public String toString() {
return "EnterpriseInitDTO{" +
"enterpriseInitId=" + enterpriseInitId +
", configName='" + configName + '\'' +
", configUrl='" + configUrl + '\'' +
", parentId=" + parentId +
", enterpriseId=" + enterpriseId +
", sort=" + sort +
", createTime=" + createTime +
", updateTime=" + updateTime +
", configCode='" + configCode + '\'' +
", level=" + level +
", isInitConfig=" + isInitConfig +
'}';
}
} }
...@@ -135,4 +135,19 @@ public class EnterpriseLicenseDTO implements Serializable{ ...@@ -135,4 +135,19 @@ public class EnterpriseLicenseDTO implements Serializable{
this.licenseCode = licenseCode; this.licenseCode = licenseCode;
return this; return this;
} }
@Override
public String toString() {
return "EnterpriseLicenseDTO{" +
"enterpriseLicenseId=" + enterpriseLicenseId +
", enterpriseId=" + enterpriseId +
", licenseId=" + licenseId +
", lowerLimit=" + lowerLimit +
", upperLimit=" + upperLimit +
", createTime=" + createTime +
", updateTime=" + updateTime +
", licenseName='" + licenseName + '\'' +
", licenseCode='" + licenseCode + '\'' +
'}';
}
} }
...@@ -166,4 +166,23 @@ public class EnterpriseListDTO implements Serializable{ ...@@ -166,4 +166,23 @@ public class EnterpriseListDTO implements Serializable{
this.goodsCount = goodsCount; this.goodsCount = goodsCount;
return this; return this;
} }
@Override
public String toString() {
return "EnterpriseListDTO{" +
"enterpriseId=" + enterpriseId +
", enterpriseName='" + enterpriseName + '\'' +
", companyName='" + companyName + '\'' +
", logo='" + logo + '\'' +
", serviceInfo='" + serviceInfo + '\'' +
", createTime=" + createTime +
", versionCode='" + versionCode + '\'' +
", versionName='" + versionName + '\'' +
", expirationTime=" + expirationTime +
", serviceStatus=" + serviceStatus +
", aboutToExpireDay=" + aboutToExpireDay +
", isInitComplete=" + isInitComplete +
", goodsCount=" + goodsCount +
'}';
}
} }
...@@ -116,4 +116,18 @@ public class EnterpriseResourceRelDTO implements Serializable{ ...@@ -116,4 +116,18 @@ public class EnterpriseResourceRelDTO implements Serializable{
public void setResourceSwitch(Integer resourceSwitch) { public void setResourceSwitch(Integer resourceSwitch) {
this.resourceSwitch = resourceSwitch; this.resourceSwitch = resourceSwitch;
} }
@Override
public String toString() {
return "EnterpriseResourceRelDTO{" +
"enterpriseResourceId=" + enterpriseResourceId +
", resourceCode='" + resourceCode + '\'' +
", resourceName='" + resourceName + '\'' +
", enterpriseId=" + enterpriseId +
", status=" + status +
", createTime=" + createTime +
", updateTime=" + updateTime +
", resourceSwitch=" + resourceSwitch +
'}';
}
} }
...@@ -4,7 +4,11 @@ import java.io.Serializable; ...@@ -4,7 +4,11 @@ import java.io.Serializable;
import java.util.Date; import java.util.Date;
/** /**
* tab_billing_enterprise_sms_package *
* @ClassName: EnterpriseSmsPackageDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:24
*/ */
public class EnterpriseSmsPackageDTO implements Serializable { public class EnterpriseSmsPackageDTO implements Serializable {
/** /**
...@@ -162,4 +166,22 @@ public class EnterpriseSmsPackageDTO implements Serializable { ...@@ -162,4 +166,22 @@ public class EnterpriseSmsPackageDTO implements Serializable {
public void setRemainAccount(Integer remainAccount) { public void setRemainAccount(Integer remainAccount) {
this.remainAccount = remainAccount; this.remainAccount = remainAccount;
} }
@Override
public String toString() {
return "EnterpriseSmsPackageDTO{" +
"enterpriseSmsPackageId=" + enterpriseSmsPackageId +
", enterpriseId=" + enterpriseId +
", status=" + status +
", createTime=" + createTime +
", updateTime=" + updateTime +
", smsPackageName='" + smsPackageName + '\'' +
", smsPackageCode='" + smsPackageCode + '\'' +
", type=" + type +
", effectiveDate=" + effectiveDate +
", billingOrderId=" + billingOrderId +
", totalAcount=" + totalAcount +
", remainAccount=" + remainAccount +
'}';
}
} }
\ No newline at end of file
...@@ -4,7 +4,11 @@ import java.io.Serializable; ...@@ -4,7 +4,11 @@ import java.io.Serializable;
import java.util.Date; import java.util.Date;
/** /**
* tab_guide_type *
* @ClassName: GuideTypeDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:24
*/ */
public class GuideTypeDTO implements Serializable { public class GuideTypeDTO implements Serializable {
/** /**
...@@ -59,4 +63,14 @@ public class GuideTypeDTO implements Serializable { ...@@ -59,4 +63,14 @@ public class GuideTypeDTO implements Serializable {
public void setPath(String path) { public void setPath(String path) {
this.path = path; this.path = path;
} }
@Override
public String toString() {
return "GuideTypeDTO{" +
"guideTypeId=" + guideTypeId +
", guideType=" + guideType +
", name='" + name + '\'' +
", path='" + path + '\'' +
'}';
}
} }
\ No newline at end of file
...@@ -4,7 +4,11 @@ import java.io.Serializable; ...@@ -4,7 +4,11 @@ import java.io.Serializable;
import java.util.Date; import java.util.Date;
/** /**
* tab_hellp_center *
* @ClassName: HelpCenterDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:25
*/ */
public class HelpCenterDTO implements Serializable { public class HelpCenterDTO implements Serializable {
/** /**
...@@ -98,4 +102,17 @@ public class HelpCenterDTO implements Serializable { ...@@ -98,4 +102,17 @@ public class HelpCenterDTO implements Serializable {
public void setIsShow(Integer isShow) { public void setIsShow(Integer isShow) {
this.isShow = isShow; this.isShow = isShow;
} }
@Override
public String toString() {
return "HelpCenterDTO{" +
"helpId=" + helpId +
", title='" + title + '\'' +
", helpUrl='" + helpUrl + '\'' +
", mode=" + mode +
", createTime=" + createTime +
", updateTime=" + updateTime +
", isShow=" + isShow +
'}';
}
} }
\ No newline at end of file
...@@ -34,4 +34,12 @@ public class HomeStatisticsDTO implements Serializable{ ...@@ -34,4 +34,12 @@ public class HomeStatisticsDTO implements Serializable{
public void setFee(Double fee) { public void setFee(Double fee) {
this.fee = fee; this.fee = fee;
} }
@Override
public String toString() {
return "HomeStatisticsDTO{" +
"statisticsDate='" + statisticsDate + '\'' +
", fee=" + fee +
'}';
}
} }
...@@ -195,4 +195,25 @@ public class IndexModuleDTO implements Serializable { ...@@ -195,4 +195,25 @@ public class IndexModuleDTO implements Serializable {
public String getModuleTemplateName() { public String getModuleTemplateName() {
return moduleTemplateName; return moduleTemplateName;
} }
@Override
public String toString() {
return "IndexModuleDTO{" +
"indexModuleId=" + indexModuleId +
", indexModuleName='" + indexModuleName + '\'' +
", indexModuleCode='" + indexModuleCode + '\'' +
", moduleType=" + moduleType +
", moduleTemplateCode='" + moduleTemplateCode + '\'' +
", isUse=" + isUse +
", createUserLoginName='" + createUserLoginName + '\'' +
", objectType=" + objectType +
", status=" + status +
", createTime=" + createTime +
", updateTime=" + updateTime +
", sort=" + sort +
", enterpriseIdList=" + enterpriseIdList +
", createUserRealName='" + createUserRealName + '\'' +
", moduleTemplateName='" + moduleTemplateName + '\'' +
'}';
}
} }
...@@ -437,4 +437,42 @@ public class InternationalSmsRecordDTO implements Serializable { ...@@ -437,4 +437,42 @@ public class InternationalSmsRecordDTO implements Serializable {
public void setNationCode(String nationCode) { public void setNationCode(String nationCode) {
this.nationCode = nationCode; this.nationCode = nationCode;
} }
@Override
public String toString() {
return "InternationalSmsRecordDTO{" +
"smsRecordId=" + smsRecordId +
", status=" + status +
", sendTime=" + sendTime +
", receivePhone='" + receivePhone + '\'' +
", nationCode='" + nationCode + '\'' +
", nationName='" + nationName + '\'' +
", payType=" + payType +
", appCode='" + appCode + '\'' +
", appName='" + appName + '\'' +
", smsType=" + smsType +
", billNumber=" + billNumber +
", fee=" + fee +
", smsContent='" + smsContent + '\'' +
", createTime=" + createTime +
", updateTime=" + updateTime +
", deductionTime=" + deductionTime +
", enterpriseId=" + enterpriseId +
", enterpriseSmsPackageId=" + enterpriseSmsPackageId +
", ecuId=" + ecuId +
", mcuId=" + mcuId +
", memberCardId=" + memberCardId +
", memberCardName='" + memberCardName + '\'' +
", memberName='" + memberName + '\'' +
", storeBrandName='" + storeBrandName + '\'' +
", storeId=" + storeId +
", storeName='" + storeName + '\'' +
", storeGroupId=" + storeGroupId +
", storeGroupName='" + storeGroupName + '\'' +
", userId=" + userId +
", userName='" + userName + '\'' +
", cacheStatus=" + cacheStatus +
", databaseStatus=" + databaseStatus +
'}';
}
} }
...@@ -155,4 +155,21 @@ public class InvoiceDTO implements Serializable{ ...@@ -155,4 +155,21 @@ public class InvoiceDTO implements Serializable{
this.businessLicense = businessLicense; this.businessLicense = businessLicense;
return this; return this;
} }
@Override
public String toString() {
return "InvoiceDTO{" +
"accountName='" + accountName + '\'' +
", taxNumber='" + taxNumber + '\'' +
", address='" + address + '\'' +
", bank='" + bank + '\'' +
", accountPhone='" + accountPhone + '\'' +
", bankAccount='" + bankAccount + '\'' +
", shippingName='" + shippingName + '\'' +
", shippingPhone='" + shippingPhone + '\'' +
", shippingAddress='" + shippingAddress + '\'' +
", email='" + email + '\'' +
", businessLicense='" + businessLicense + '\'' +
'}';
}
} }
...@@ -204,4 +204,25 @@ public class LinkDTO implements Serializable, Comparable<LinkDTO> { ...@@ -204,4 +204,25 @@ public class LinkDTO implements Serializable, Comparable<LinkDTO> {
public int compareTo(LinkDTO o) { public int compareTo(LinkDTO o) {
return (int)(this.createTime.getTime() - o.createTime.getTime()); return (int)(this.createTime.getTime() - o.createTime.getTime());
} }
@Override
public String toString() {
return "LinkDTO{" +
"linkId=" + linkId +
", createTime=" + createTime +
", updateTime=" + updateTime +
", parentId=" + parentId +
", status=" + status +
", type=" + type +
", objectType=" + objectType +
", name='" + name + '\'' +
", h5Content='" + h5Content + '\'' +
", appletContent='" + appletContent + '\'' +
", conditions=" + conditions +
", isCustom=" + isCustom +
", enterpriseType=" + enterpriseType +
", childList=" + childList +
", enterpriseList=" + enterpriseList +
'}';
}
} }
...@@ -33,7 +33,6 @@ public class OutPayDTO implements Serializable { ...@@ -33,7 +33,6 @@ public class OutPayDTO implements Serializable {
/** /**
* 计划金额 * 计划金额
*/ */
// @NotNull(message = "计划金额(应付金额)不能为空", groups = ConfirmPay.class)
private Double totalFee; private Double totalFee;
/** /**
* 订单金额(实付金额) * 订单金额(实付金额)
...@@ -53,12 +52,9 @@ public class OutPayDTO implements Serializable { ...@@ -53,12 +52,9 @@ public class OutPayDTO implements Serializable {
/** /**
* 产品类型 1:充值,2:短信套餐,3:服务,4:拓展包,5:套餐包 * 产品类型 1:充值,2:短信套餐,3:服务,4:拓展包,5:套餐包
*/ */
// @NotNull(message = "购买类型不能为空", groups = {SavePrePay.class, ConfirmPay.class})
private Integer buyType; private Integer buyType;
/* * /** 1:短信 2:短信套餐 3:应用市场 4:双向呼叫 6:语音验证码 6:语音存储*/
* 1:短信 2:短信套餐 3:应用市场 4:双向呼叫 6:语音验证码 6:语音存储
* */
@NotNull(message = "购买类型不能为空", groups = {SavePrePay.class, ConfirmPay.class}) @NotNull(message = "购买类型不能为空", groups = {SavePrePay.class, ConfirmPay.class})
private Integer buyProductType; private Integer buyProductType;
/** /**
...@@ -76,10 +72,8 @@ public class OutPayDTO implements Serializable { ...@@ -76,10 +72,8 @@ public class OutPayDTO implements Serializable {
private Integer payType; private Integer payType;
// @NotBlank(message = "随机字符串不能为空", groups = {SavePrePay.class, ConfirmPay.class})
private String nonceStr; private String nonceStr;
// @NotBlank(message = "签名不能为空", groups = {SavePrePay.class, ConfirmPay.class})
private String sign; private String sign;
@NotNull(message = "渠道来源不能为空", groups = {SavePrePay.class, ConfirmPay.class, CancelPay.class}) @NotNull(message = "渠道来源不能为空", groups = {SavePrePay.class, ConfirmPay.class, CancelPay.class})
...@@ -231,4 +225,27 @@ public class OutPayDTO implements Serializable { ...@@ -231,4 +225,27 @@ public class OutPayDTO implements Serializable {
public void setInitiatorName(String initiatorName) { public void setInitiatorName(String initiatorName) {
this.initiatorName = initiatorName; this.initiatorName = initiatorName;
} }
@Override
public String toString() {
return "OutPayDTO{" +
"enterpriseId=" + enterpriseId +
", totalFee=" + totalFee +
", totalFeePaid=" + totalFeePaid +
", productDescription='" + productDescription + '\'' +
", phone='" + phone + '\'' +
", buyType=" + buyType +
", buyProductType=" + buyProductType +
", timeStart='" + timeStart + '\'' +
", timeEnd='" + timeEnd + '\'' +
", orderSerialNumber='" + orderSerialNumber + '\'' +
", payType=" + payType +
", nonceStr='" + nonceStr + '\'' +
", sign='" + sign + '\'' +
", requestCode='" + requestCode + '\'' +
", authCode='" + authCode + '\'' +
", initiatorUser=" + initiatorUser +
", initiatorName='" + initiatorName + '\'' +
'}';
}
} }
package com.gic.enterprise.dto; package com.gic.enterprise.dto;
import java.io.Serializable; import java.io.Serializable;
/**
*
* @ClassName: PackageDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:25
*/
public class PackageDTO implements Serializable { public class PackageDTO implements Serializable {
/** /**
* 套餐包名称 * 套餐包名称
...@@ -51,4 +57,14 @@ public class PackageDTO implements Serializable { ...@@ -51,4 +57,14 @@ public class PackageDTO implements Serializable {
public void setDesc(String desc) { public void setDesc(String desc) {
this.desc = desc; this.desc = desc;
} }
@Override
public String toString() {
return "PackageDTO{" +
"packageName='" + packageName + '\'' +
", icon='" + icon + '\'' +
", type=" + type +
", desc='" + desc + '\'' +
'}';
}
} }
...@@ -2,7 +2,13 @@ package com.gic.enterprise.dto; ...@@ -2,7 +2,13 @@ package com.gic.enterprise.dto;
import java.io.Serializable; import java.io.Serializable;
import java.util.Date; import java.util.Date;
/**
*
* @ClassName: PlatformBrandDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:25
*/
public class PlatformBrandDTO implements Serializable { public class PlatformBrandDTO implements Serializable {
private static final long serialVersionUID = -6619834227070771185L; private static final long serialVersionUID = -6619834227070771185L;
...@@ -97,4 +103,18 @@ public class PlatformBrandDTO implements Serializable { ...@@ -97,4 +103,18 @@ public class PlatformBrandDTO implements Serializable {
public void setUpdateTime(Date updateTime) { public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime; this.updateTime = updateTime;
} }
@Override
public String toString() {
return "PlatformBrandDTO{" +
"platformBrandId=" + platformBrandId +
", platformBrandCategoryCode='" + platformBrandCategoryCode + '\'' +
", platformBrandCategoryName='" + platformBrandCategoryName + '\'' +
", platformBrandName='" + platformBrandName + '\'' +
", createType=" + createType +
", enterpriseBrandCount=" + enterpriseBrandCount +
", createTime=" + createTime +
", updateTime=" + updateTime +
'}';
}
} }
...@@ -2,7 +2,13 @@ package com.gic.enterprise.dto; ...@@ -2,7 +2,13 @@ package com.gic.enterprise.dto;
import java.io.Serializable; import java.io.Serializable;
import java.util.Date; import java.util.Date;
/**
*
* @ClassName: PlatformBrandRefDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:25
*/
public class PlatformBrandRefDTO implements Serializable { public class PlatformBrandRefDTO implements Serializable {
private static final long serialVersionUID = -1183766055952427246L; private static final long serialVersionUID = -1183766055952427246L;
private Integer platformBrandRefId; private Integer platformBrandRefId;
...@@ -168,4 +174,24 @@ public class PlatformBrandRefDTO implements Serializable { ...@@ -168,4 +174,24 @@ public class PlatformBrandRefDTO implements Serializable {
public void setGoodsBrandName(String goodsBrandName) { public void setGoodsBrandName(String goodsBrandName) {
this.goodsBrandName = goodsBrandName; this.goodsBrandName = goodsBrandName;
} }
@Override
public String toString() {
return "PlatformBrandRefDTO{" +
"platformBrandRefId=" + platformBrandRefId +
", platformBrandId=" + platformBrandId +
", enterpriseId=" + enterpriseId +
", enterpriseBrandId=" + enterpriseBrandId +
", enterpriseBrandName='" + enterpriseBrandName + '\'' +
", goodsBrandName='" + goodsBrandName + '\'' +
", enterpriseBrandCode='" + enterpriseBrandCode + '\'' +
", createTime=" + createTime +
", updateTime=" + updateTime +
", enterpriseName='" + enterpriseName + '\'' +
", companyName='" + companyName + '\'' +
", logo='" + logo + '\'' +
", categoryCode='" + categoryCode + '\'' +
", type=" + type +
'}';
}
} }
...@@ -108,4 +108,18 @@ public class ProjectDTO implements Serializable{ ...@@ -108,4 +108,18 @@ public class ProjectDTO implements Serializable{
public void setUpdateTime(Date updateTime) { public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime; this.updateTime = updateTime;
} }
@Override
public String toString() {
return "ProjectDTO{" +
"projectId=" + projectId +
", projectName='" + projectName + '\'' +
", createTime=" + createTime +
", updateTime=" + updateTime +
", itemList=" + itemList +
", itemTotalCount=" + itemTotalCount +
", itemUseCount=" + itemUseCount +
", seq=" + seq +
'}';
}
} }
...@@ -173,4 +173,23 @@ public class ProjectItemDTO implements Serializable { ...@@ -173,4 +173,23 @@ public class ProjectItemDTO implements Serializable {
public Integer getSeq() { public Integer getSeq() {
return seq; return seq;
} }
@Override
public String toString() {
return "ProjectItemDTO{" +
"projectItemId=" + projectItemId +
", projectItemName='" + projectItemName + '\'' +
", projectItemCode='" + projectItemCode + '\'' +
", projectItemDesc='" + projectItemDesc + '\'' +
", projectId=" + projectId +
", callbackUrl='" + callbackUrl + '\'' +
", useStatus=" + useStatus +
", createTime=" + createTime +
", updateTime=" + updateTime +
", isPlatform=" + isPlatform +
", auditExpireDuration=" + auditExpireDuration +
", auditTemplateType=" + auditTemplateType +
", seq=" + seq +
'}';
}
} }
...@@ -271,4 +271,33 @@ public class PstnCallBillDTO implements Serializable { ...@@ -271,4 +271,33 @@ public class PstnCallBillDTO implements Serializable {
public void setStoreGroupName(String storeGroupName) { public void setStoreGroupName(String storeGroupName) {
this.storeGroupName = storeGroupName; this.storeGroupName = storeGroupName;
} }
@Override
public String toString() {
return "PstnCallBillDTO{" +
"appId='" + appId + '\'' +
", callId='" + callId + '\'' +
", requestId='" + requestId + '\'' +
", src='" + src + '\'' +
", dst='" + dst + '\'' +
", startSrcCallTime='" + startSrcCallTime + '\'' +
", startSrcRingTime='" + startSrcRingTime + '\'' +
", srcAcceptTime='" + srcAcceptTime + '\'' +
", startDstCallTime='" + startDstCallTime + '\'' +
", startDstRingTime='" + startDstRingTime + '\'' +
", dstAcceptTime='" + dstAcceptTime + '\'' +
", endCallTime='" + endCallTime + '\'' +
", callEndStatus=" + callEndStatus +
", duration=" + duration +
", callType=" + callType +
", bizId='" + bizId + '\'' +
", orderId='" + orderId + '\'' +
", enterpriseId=" + enterpriseId +
", fee=" + fee +
", storeId=" + storeId +
", storeName='" + storeName + '\'' +
", storeGroupId=" + storeGroupId +
", storeGroupName='" + storeGroupName + '\'' +
'}';
}
} }
\ No newline at end of file
...@@ -4,7 +4,11 @@ import java.io.Serializable; ...@@ -4,7 +4,11 @@ import java.io.Serializable;
import java.util.Date; import java.util.Date;
/** /**
* tab_push_message *
* @ClassName: PushMessageDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:26
*/ */
public class PushMessageDTO implements Serializable { public class PushMessageDTO implements Serializable {
/** /**
...@@ -213,4 +217,26 @@ public class PushMessageDTO implements Serializable { ...@@ -213,4 +217,26 @@ public class PushMessageDTO implements Serializable {
public void setPushClassifyId(Integer pushClassifyId) { public void setPushClassifyId(Integer pushClassifyId) {
this.pushClassifyId = pushClassifyId; this.pushClassifyId = pushClassifyId;
} }
@Override
public String toString() {
return "PushMessageDTO{" +
"messageId=" + messageId +
", pushClassifyId=" + pushClassifyId +
", title='" + title + '\'' +
", content='" + content + '\'' +
", pushType=" + pushType +
", sign=" + sign +
", pushEnterpriseIds='" + pushEnterpriseIds + '\'' +
", pushTimeFlag=" + pushTimeFlag +
", pushTime=" + pushTime +
", createTime=" + createTime +
", updateTime=" + updateTime +
", status=" + status +
", creator=" + creator +
", creatorname='" + creatorname + '\'' +
", readCount=" + readCount +
", pushStatus=" + pushStatus +
'}';
}
} }
\ No newline at end of file
...@@ -4,7 +4,11 @@ import java.io.Serializable; ...@@ -4,7 +4,11 @@ import java.io.Serializable;
import java.util.Date; import java.util.Date;
/** /**
* tab_push_type *
* @ClassName: PushTypeDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:26
*/ */
public class PushTypeDTO implements Serializable { public class PushTypeDTO implements Serializable {
/** /**
...@@ -84,4 +88,16 @@ public class PushTypeDTO implements Serializable { ...@@ -84,4 +88,16 @@ public class PushTypeDTO implements Serializable {
public void setClassifyDesc(String classifyDesc) { public void setClassifyDesc(String classifyDesc) {
this.classifyDesc = classifyDesc; this.classifyDesc = classifyDesc;
} }
@Override
public String toString() {
return "PushTypeDTO{" +
"id=" + id +
", classifyName='" + classifyName + '\'' +
", classifyDesc='" + classifyDesc + '\'' +
", status=" + status +
", createTime=" + createTime +
", updateTime=" + updateTime +
'}';
}
} }
\ No newline at end of file
package com.gic.enterprise.dto; package com.gic.enterprise.dto;
import java.io.Serializable; import java.io.Serializable;
/**
*
* @ClassName: QrCodeValueDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:30
*/
public class QrCodeValueDTO implements Serializable { public class QrCodeValueDTO implements Serializable {
/**二维码类型,1门店 2导购**/ /**二维码类型,1门店 2导购**/
private Integer qrCodeType; private Integer qrCodeType;
...@@ -23,4 +29,12 @@ public class QrCodeValueDTO implements Serializable { ...@@ -23,4 +29,12 @@ public class QrCodeValueDTO implements Serializable {
public void setValue(String value) { public void setValue(String value) {
this.value = value; this.value = value;
} }
@Override
public String toString() {
return "QrCodeValueDTO{" +
"qrCodeType=" + qrCodeType +
", value='" + value + '\'' +
'}';
}
} }
...@@ -3,7 +3,13 @@ package com.gic.enterprise.dto; ...@@ -3,7 +3,13 @@ package com.gic.enterprise.dto;
import java.io.Serializable; import java.io.Serializable;
import java.util.Date; import java.util.Date;
import java.util.List; import java.util.List;
/**
*
* @ClassName: QrcodeDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:26
*/
public class QrcodeDTO implements Serializable { public class QrcodeDTO implements Serializable {
private Integer h5 = 0; private Integer h5 = 0;
private String appletIds; private String appletIds;
...@@ -125,4 +131,23 @@ public class QrcodeDTO implements Serializable { ...@@ -125,4 +131,23 @@ public class QrcodeDTO implements Serializable {
public void setQrCodeType(Integer qrCodeType) { public void setQrCodeType(Integer qrCodeType) {
this.qrCodeType = qrCodeType; this.qrCodeType = qrCodeType;
} }
@Override
public String toString() {
return "QrcodeDTO{" +
"h5=" + h5 +
", appletIds='" + appletIds + '\'' +
", fwhIds='" + fwhIds + '\'' +
", scenesValueIds='" + scenesValueIds + '\'' +
", type=" + type +
", endTime=" + endTime +
", customParams='" + customParams + '\'' +
", content='" + content + '\'' +
", enterpriseId=" + enterpriseId +
", callBackService='" + callBackService + '\'' +
", callBackMethod='" + callBackMethod + '\'' +
", fileId='" + fileId + '\'' +
", qrCodeType=" + qrCodeType +
'}';
}
} }
...@@ -4,7 +4,11 @@ import java.io.Serializable; ...@@ -4,7 +4,11 @@ import java.io.Serializable;
import java.util.Date; import java.util.Date;
/** /**
* tab_qrcode_scenes_classify *
* @ClassName: QrcodeScenesClassifyDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:26
*/ */
public class QrcodeScenesClassifyDTO implements Serializable { public class QrcodeScenesClassifyDTO implements Serializable {
/** /**
...@@ -84,4 +88,16 @@ public class QrcodeScenesClassifyDTO implements Serializable { ...@@ -84,4 +88,16 @@ public class QrcodeScenesClassifyDTO implements Serializable {
public void setStatus(Integer status) { public void setStatus(Integer status) {
this.status = status; this.status = status;
} }
@Override
public String toString() {
return "QrcodeScenesClassifyDTO{" +
"id=" + id +
", classifyName='" + classifyName + '\'' +
", enterpriseId=" + enterpriseId +
", createTime=" + createTime +
", updateTime=" + updateTime +
", status=" + status +
'}';
}
} }
\ No newline at end of file
...@@ -4,7 +4,11 @@ import java.io.Serializable; ...@@ -4,7 +4,11 @@ import java.io.Serializable;
import java.util.Date; import java.util.Date;
/** /**
* tab_qrcode_scenes *
* @ClassName: QrcodeScenesDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:27
*/ */
public class QrcodeScenesDTO implements Serializable { public class QrcodeScenesDTO implements Serializable {
/** /**
...@@ -120,4 +124,19 @@ public class QrcodeScenesDTO implements Serializable { ...@@ -120,4 +124,19 @@ public class QrcodeScenesDTO implements Serializable {
public void setScenesClassifyName(String scenesClassifyName) { public void setScenesClassifyName(String scenesClassifyName) {
this.scenesClassifyName = scenesClassifyName; this.scenesClassifyName = scenesClassifyName;
} }
@Override
public String toString() {
return "QrcodeScenesDTO{" +
"scenesId=" + scenesId +
", enterpriseId=" + enterpriseId +
", scenesName='" + scenesName + '\'' +
", scenesClassifyId=" + scenesClassifyId +
", scenesClassifyName='" + scenesClassifyName + '\'' +
", scenesDesc='" + scenesDesc + '\'' +
", createTime=" + createTime +
", updateTime=" + updateTime +
", status=" + status +
'}';
}
} }
\ No newline at end of file
...@@ -4,7 +4,11 @@ import java.io.Serializable; ...@@ -4,7 +4,11 @@ import java.io.Serializable;
import java.util.Date; import java.util.Date;
/** /**
* tab_qrcode_scenes_value *
* @ClassName: QrcodeScenesValueDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:28
*/ */
public class QrcodeScenesValueDTO implements Serializable { public class QrcodeScenesValueDTO implements Serializable {
/** /**
...@@ -110,4 +114,18 @@ public class QrcodeScenesValueDTO implements Serializable { ...@@ -110,4 +114,18 @@ public class QrcodeScenesValueDTO implements Serializable {
public void setUpdateTime(Date updateTime) { public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime; this.updateTime = updateTime;
} }
@Override
public String toString() {
return "QrcodeScenesValueDTO{" +
"valueId=" + valueId +
", scenesId=" + scenesId +
", enterpriseId=" + enterpriseId +
", code='" + code + '\'' +
", name='" + name + '\'' +
", status=" + status +
", createTime=" + createTime +
", updateTime=" + updateTime +
'}';
}
} }
\ No newline at end of file
...@@ -257,4 +257,28 @@ public class RecordingStorageRecordDTO implements Serializable { ...@@ -257,4 +257,28 @@ public class RecordingStorageRecordDTO implements Serializable {
public void setRemark(String remark) { public void setRemark(String remark) {
this.remark = remark; this.remark = remark;
} }
@Override
public String toString() {
return "RecordingStorageRecordDTO{" +
"recordingStorageRecordId=" + recordingStorageRecordId +
", callerName='" + callerName + '\'' +
", callerPhone='" + callerPhone + '\'' +
", fee=" + fee +
", status=" + status +
", createTime=" + createTime +
", deductionTime=" + deductionTime +
", calledPhone='" + calledPhone + '\'' +
", appCode='" + appCode + '\'' +
", appName='" + appName + '\'' +
", voiceTime='" + voiceTime + '\'' +
", enterpriseId=" + enterpriseId +
", paySerialNumber='" + paySerialNumber + '\'' +
", storageDuration='" + storageDuration + '\'' +
", storeName='" + storeName + '\'' +
", storeGroupName='" + storeGroupName + '\'' +
", callTime=" + callTime +
", remark='" + remark + '\'' +
'}';
}
} }
\ No newline at end of file
...@@ -36,7 +36,6 @@ public class RefundDTO implements Serializable { ...@@ -36,7 +36,6 @@ public class RefundDTO implements Serializable {
/** /**
* 订单金额 * 订单金额
*/ */
// @NotNull(message = "订单金额不能为空", groups = RefundValid.class)
private Double orderFee; private Double orderFee;
/** /**
* 退款金额 * 退款金额
...@@ -137,4 +136,20 @@ public class RefundDTO implements Serializable { ...@@ -137,4 +136,20 @@ public class RefundDTO implements Serializable {
public void setBuyProductType(Integer buyProductType) { public void setBuyProductType(Integer buyProductType) {
this.buyProductType = buyProductType; this.buyProductType = buyProductType;
} }
@Override
public String toString() {
return "RefundDTO{" +
"enterpriseId=" + enterpriseId +
", orderSerialNumber='" + orderSerialNumber + '\'' +
", refundSerialNumber='" + refundSerialNumber + '\'' +
", orderFee=" + orderFee +
", refundFee=" + refundFee +
", refundReason='" + refundReason + '\'' +
", requestCode='" + requestCode + '\'' +
", buyProductType=" + buyProductType +
", refundPayNumber='" + refundPayNumber + '\'' +
", timeEnd=" + timeEnd +
'}';
}
} }
...@@ -96,4 +96,17 @@ public class RefundReturnDTO implements Serializable { ...@@ -96,4 +96,17 @@ public class RefundReturnDTO implements Serializable {
public Date getDeductionTime() { public Date getDeductionTime() {
return deductionTime; return deductionTime;
} }
@Override
public String toString() {
return "RefundReturnDTO{" +
"enterpriseId=" + enterpriseId +
", requestCode='" + requestCode + '\'' +
", orderSerialNumber='" + orderSerialNumber + '\'' +
", refundSerialNumber='" + refundSerialNumber + '\'' +
", refundPaySerialNumber='" + refundPaySerialNumber + '\'' +
", refundFee=" + refundFee +
", deductionTime=" + deductionTime +
'}';
}
} }
package com.gic.enterprise.dto; package com.gic.enterprise.dto;
import java.io.Serializable; import java.io.Serializable;
/**
*
* @ClassName: SmsPackageDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:33
*/
public class SmsPackageDTO implements Serializable { public class SmsPackageDTO implements Serializable {
private String smsPackageName; private String smsPackageName;
private Integer itemCount; private Integer itemCount;
...@@ -39,4 +45,14 @@ public class SmsPackageDTO implements Serializable { ...@@ -39,4 +45,14 @@ public class SmsPackageDTO implements Serializable {
public void setSmsPackageCode(String smsPackageCode) { public void setSmsPackageCode(String smsPackageCode) {
this.smsPackageCode = smsPackageCode; this.smsPackageCode = smsPackageCode;
} }
@Override
public String toString() {
return "SmsPackageDTO{" +
"smsPackageName='" + smsPackageName + '\'' +
", itemCount=" + itemCount +
", itemFee=" + itemFee +
", smsPackageCode='" + smsPackageCode + '\'' +
'}';
}
} }
...@@ -105,4 +105,18 @@ public class SmsPackageOrderItemDTO implements Serializable { ...@@ -105,4 +105,18 @@ public class SmsPackageOrderItemDTO implements Serializable {
public Date getEffectiveDate() { public Date getEffectiveDate() {
return effectiveDate; return effectiveDate;
} }
@Override
public String toString() {
return "SmsPackageOrderItemDTO{" +
"code='" + code + '\'' +
", smsAmount=" + smsAmount +
", cost=" + cost +
", packageLength=" + packageLength +
", packageHours='" + packageHours + '\'' +
", buyCount=" + buyCount +
", smsPackageName='" + smsPackageName + '\'' +
", effectiveDate=" + effectiveDate +
'}';
}
} }
...@@ -238,4 +238,28 @@ public class SmsPackageRecordDTO implements Serializable { ...@@ -238,4 +238,28 @@ public class SmsPackageRecordDTO implements Serializable {
public void setOperatorName(String operatorName) { public void setOperatorName(String operatorName) {
this.operatorName = operatorName; this.operatorName = operatorName;
} }
@Override
public String toString() {
return "SmsPackageRecordDTO{" +
"smsPackageRecordId=" + smsPackageRecordId +
", productName='" + productName + '\'' +
", itemCount=" + itemCount +
", itemFee=" + itemFee +
", totalFee=" + totalFee +
", payType=" + payType +
", status=" + status +
", createTime=" + createTime +
", orderId=" + orderId +
", deductionTime=" + deductionTime +
", enterpriseId=" + enterpriseId +
", discountType=" + discountType +
", discountTypeName='" + discountTypeName + '\'' +
", cardName='" + cardName + '\'' +
", cardAmount=" + cardAmount +
", paidFee=" + paidFee +
", operatorId=" + operatorId +
", operatorName='" + operatorName + '\'' +
'}';
}
} }
...@@ -106,7 +106,6 @@ public class SmsRecordDTO implements Serializable { ...@@ -106,7 +106,6 @@ public class SmsRecordDTO implements Serializable {
/** /**
* 会员ecuId * 会员ecuId
*/ */
// @NotNull(message = "会员ecuId不能为空", groups = SmsRecordValid.class)
private Long ecuId; private Long ecuId;
/** /**
...@@ -448,4 +447,43 @@ public class SmsRecordDTO implements Serializable { ...@@ -448,4 +447,43 @@ public class SmsRecordDTO implements Serializable {
public void setNoticeCode(String noticeCode) { public void setNoticeCode(String noticeCode) {
this.noticeCode = noticeCode; this.noticeCode = noticeCode;
} }
@Override
public String toString() {
return "SmsRecordDTO{" +
"smsRecordId=" + smsRecordId +
", status=" + status +
", sendTime=" + sendTime +
", receivePhone='" + receivePhone + '\'' +
", payType=" + payType +
", appCode='" + appCode + '\'' +
", appName='" + appName + '\'' +
", smsType=" + smsType +
", billNumber=" + billNumber +
", fee=" + fee +
", smsContent='" + smsContent + '\'' +
", createTime=" + createTime +
", updateTime=" + updateTime +
", deductionTime=" + deductionTime +
", enterpriseId=" + enterpriseId +
", enterpriseSmsPackageId=" + enterpriseSmsPackageId +
", ecuId=" + ecuId +
", mcuId=" + mcuId +
", memberCardId=" + memberCardId +
", noticeCode='" + noticeCode + '\'' +
", nationCode='" + nationCode + '\'' +
", nationName='" + nationName + '\'' +
", memberCardName='" + memberCardName + '\'' +
", memberName='" + memberName + '\'' +
", storeBrandName='" + storeBrandName + '\'' +
", storeId=" + storeId +
", storeName='" + storeName + '\'' +
", storeGroupId=" + storeGroupId +
", storeGroupName='" + storeGroupName + '\'' +
", userId=" + userId +
", userName='" + userName + '\'' +
", cacheStatus=" + cacheStatus +
", databaseStatus=" + databaseStatus +
'}';
}
} }
...@@ -174,4 +174,22 @@ public class TodoItemDTO implements Serializable { ...@@ -174,4 +174,22 @@ public class TodoItemDTO implements Serializable {
public void setItemInfoUrl(String itemInfoUrl) { public void setItemInfoUrl(String itemInfoUrl) {
this.itemInfoUrl = itemInfoUrl; this.itemInfoUrl = itemInfoUrl;
} }
@Override
public String toString() {
return "TodoItemDTO{" +
"todoItemId=" + todoItemId +
", enterpriseId=" + enterpriseId +
", userId=" + userId +
", itemContent='" + itemContent + '\'' +
", finish=" + finish +
", itemType='" + itemType + '\'' +
", finishTime=" + finishTime +
", createTime=" + createTime +
", updateTime=" + updateTime +
", status=" + status +
", itemInfoUrl='" + itemInfoUrl + '\'' +
", itemTypeName='" + itemTypeName + '\'' +
'}';
}
} }
...@@ -2,7 +2,13 @@ package com.gic.enterprise.dto; ...@@ -2,7 +2,13 @@ package com.gic.enterprise.dto;
import java.io.Serializable; import java.io.Serializable;
import java.util.Date; import java.util.Date;
/**
*
* @ClassName: UserMessageDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:33
*/
public class UserMessageDTO implements Serializable { public class UserMessageDTO implements Serializable {
private Integer messageId; private Integer messageId;
private String classify; private String classify;
...@@ -67,4 +73,17 @@ public class UserMessageDTO implements Serializable { ...@@ -67,4 +73,17 @@ public class UserMessageDTO implements Serializable {
public void setSign(Integer sign) { public void setSign(Integer sign) {
this.sign = sign; this.sign = sign;
} }
@Override
public String toString() {
return "UserMessageDTO{" +
"messageId=" + messageId +
", classify='" + classify + '\'' +
", title='" + title + '\'' +
", content='" + content + '\'' +
", createTime=" + createTime +
", status=" + status +
", sign=" + sign +
'}';
}
} }
...@@ -247,4 +247,28 @@ public class VoiceCodeRecordDTO implements Serializable { ...@@ -247,4 +247,28 @@ public class VoiceCodeRecordDTO implements Serializable {
public void setStoreGroupName(String storeGroupName) { public void setStoreGroupName(String storeGroupName) {
this.storeGroupName = storeGroupName; this.storeGroupName = storeGroupName;
} }
@Override
public String toString() {
return "VoiceCodeRecordDTO{" +
"voiceCodeRecordId=" + voiceCodeRecordId +
", paySerialNumber='" + paySerialNumber + '\'' +
", status=" + status +
", sendTime=" + sendTime +
", receivePhone='" + receivePhone + '\'' +
", voiceTime='" + voiceTime + '\'' +
", appCode='" + appCode + '\'' +
", appName='" + appName + '\'' +
", fee=" + fee +
", createTime=" + createTime +
", updateTime=" + updateTime +
", enterpriseId=" + enterpriseId +
", deductionTime=" + deductionTime +
", memberName='" + memberName + '\'' +
", storeId=" + storeId +
", storeName='" + storeName + '\'' +
", storeGroupId=" + storeGroupId +
", storeGroupName='" + storeGroupName + '\'' +
'}';
}
} }
...@@ -84,4 +84,17 @@ public class WeChatMenuDTO implements Serializable{ ...@@ -84,4 +84,17 @@ public class WeChatMenuDTO implements Serializable{
public void setSubButton(List<WeChatMenuDTO> subButton) { public void setSubButton(List<WeChatMenuDTO> subButton) {
this.subButton = subButton; this.subButton = subButton;
} }
@Override
public String toString() {
return "WeChatMenuDTO{" +
"type='" + type + '\'' +
", name='" + name + '\'' +
", key='" + key + '\'' +
", url='" + url + '\'' +
", appid='" + appid + '\'' +
", pagepath='" + pagepath + '\'' +
", subButton=" + subButton +
'}';
}
} }
...@@ -50,7 +50,7 @@ public class LicenseDTO implements Serializable{ ...@@ -50,7 +50,7 @@ public class LicenseDTO implements Serializable{
*/ */
private String payDetail; private String payDetail;
// 购买数量 /**购买数量*/
private Integer serveQuantity; private Integer serveQuantity;
private String skuId; private String skuId;
private String skuVersion; private String skuVersion;
...@@ -58,9 +58,7 @@ public class LicenseDTO implements Serializable{ ...@@ -58,9 +58,7 @@ public class LicenseDTO implements Serializable{
private Integer skuPeriodDay; private Integer skuPeriodDay;
private String skuInfo; private String skuInfo;
private String licenseUnit; private String licenseUnit;
/** /**已购买数量*/
* 已购买数量
*/
private Integer alreadyBuyQuantity; private Integer alreadyBuyQuantity;
private ServeLicenseDTO licenseDetail; private ServeLicenseDTO licenseDetail;
...@@ -212,4 +210,28 @@ public class LicenseDTO implements Serializable{ ...@@ -212,4 +210,28 @@ public class LicenseDTO implements Serializable{
this.licenseDetail = licenseDetail; this.licenseDetail = licenseDetail;
return this; return this;
} }
@Override
public String toString() {
return "LicenseDTO{" +
"serveId='" + serveId + '\'' +
", serveName='" + serveName + '\'' +
", serveInfo='" + serveInfo + '\'' +
", totalAmount=" + totalAmount +
", saleAmount=" + saleAmount +
", payAmount=" + payAmount +
", discountDetail='" + discountDetail + '\'' +
", payDetail='" + payDetail + '\'' +
", serveQuantity=" + serveQuantity +
", skuId='" + skuId + '\'' +
", skuVersion='" + skuVersion + '\'' +
", skuPeriod='" + skuPeriod + '\'' +
", skuPeriodDay=" + skuPeriodDay +
", skuInfo='" + skuInfo + '\'' +
", licenseUnit='" + licenseUnit + '\'' +
", alreadyBuyQuantity=" + alreadyBuyQuantity +
", licenseDetail=" + licenseDetail +
", licenseEditFlag=" + licenseEditFlag +
'}';
}
} }
...@@ -24,10 +24,10 @@ public class MarketServiceDTO implements Serializable{ ...@@ -24,10 +24,10 @@ public class MarketServiceDTO implements Serializable{
* 服务商id * 服务商id
*/ */
private String isvId; private String isvId;
//服务ID /**服务ID*/
private String appServeId; private String appServeId;
//是否可以购买 0不能购买 1购买 2续费 3升级 4扩容 /**是否可以购买 0不能购买 1购买 2续费 3升级 4扩容*/
private Integer canBuy = 1; private Integer canBuy = 1;
/** /**
* 优惠id * 优惠id
...@@ -50,7 +50,7 @@ public class MarketServiceDTO implements Serializable{ ...@@ -50,7 +50,7 @@ public class MarketServiceDTO implements Serializable{
*/ */
private String discountDetail; private String discountDetail;
private String discountFee; private String discountFee;
//返回页面购买的金额 /**返回页面购买的金额*/
private BigDecimal price; private BigDecimal price;
/** /**
* 到期时间 * 到期时间
...@@ -235,4 +235,27 @@ public class MarketServiceDTO implements Serializable{ ...@@ -235,4 +235,27 @@ public class MarketServiceDTO implements Serializable{
} }
return map; return map;
} }
@Override
public String toString() {
return "MarketServiceDTO{" +
"isvId='" + isvId + '\'' +
", appServeId='" + appServeId + '\'' +
", canBuy=" + canBuy +
", couponId='" + couponId + '\'' +
", verifyCode='" + verifyCode + '\'' +
", couponCheckAmount=" + couponCheckAmount +
", discountAmount=" + discountAmount +
", discountDetail='" + discountDetail + '\'' +
", discountFee='" + discountFee + '\'' +
", price=" + price +
", endDate=" + endDate +
", auditTime=" + auditTime +
", skuList=" + skuList +
", skuMapList=" + skuMapList +
", skuCodeMapId=" + skuCodeMapId +
", basicService=" + basicService +
", licenseList=" + licenseList +
'}';
}
} }
...@@ -53,4 +53,14 @@ public class OrderBuyLicenseDTO implements Serializable{ ...@@ -53,4 +53,14 @@ public class OrderBuyLicenseDTO implements Serializable{
public void setLicenseName(String licenseName) { public void setLicenseName(String licenseName) {
this.licenseName = licenseName; this.licenseName = licenseName;
} }
@Override
public String toString() {
return "OrderBuyLicenseDTO{" +
"licenseId=" + licenseId +
", num=" + num +
", licenseEditFlag=" + licenseEditFlag +
", licenseName='" + licenseName + '\'' +
'}';
}
} }
...@@ -149,4 +149,22 @@ public class OrderGicDTO implements Serializable{ ...@@ -149,4 +149,22 @@ public class OrderGicDTO implements Serializable{
public void setOperName(String operName) { public void setOperName(String operName) {
this.operName = operName; this.operName = operName;
} }
@Override
public String toString() {
return "OrderGicDTO{" +
"orderId=" + orderId +
", orderNum='" + orderNum + '\'' +
", enterpriseId=" + enterpriseId +
", enterpriseName='" + enterpriseName + '\'' +
", orderType=" + orderType +
", status=" + status +
", badAmount=" + badAmount +
", imageUrl='" + imageUrl + '\'' +
", serveName='" + serveName + '\'' +
", createTime=" + createTime +
", operType=" + operType +
", operName='" + operName + '\'' +
'}';
}
} }
...@@ -150,13 +150,13 @@ public class ServeLicenseDTO implements Serializable{ ...@@ -150,13 +150,13 @@ public class ServeLicenseDTO implements Serializable{
*/ */
private String serveImageUrl; private String serveImageUrl;
//购买数量 /**购买数量*/
private Integer buyQuantity; private Integer buyQuantity;
//购买价格 /**购买价格*/
private BigDecimal buyPrice; private BigDecimal buyPrice;
// 是否已购买 /**是否已购*/
private Boolean isBuy = false; private Boolean isBuy = false;
// 已购数量 /**已购数量*/
private Integer validQuantity = 0; private Integer validQuantity = 0;
public Long getLicenseId() { public Long getLicenseId() {
......
...@@ -78,4 +78,15 @@ public class SkuDTO implements Serializable{ ...@@ -78,4 +78,15 @@ public class SkuDTO implements Serializable{
public String getSkuDetailJson() { public String getSkuDetailJson() {
return skuDetailJson; return skuDetailJson;
} }
@Override
public String toString() {
return "SkuDTO{" +
"skuId='" + skuId + '\'' +
", skuDetailJson='" + skuDetailJson + '\'' +
", price=" + price +
", versionCode='" + versionCode + '\'' +
", periodCode='" + periodCode + '\'' +
'}';
}
} }
...@@ -2,7 +2,13 @@ package com.gic.enterprise.dto.rule; ...@@ -2,7 +2,13 @@ package com.gic.enterprise.dto.rule;
import java.io.Serializable; import java.io.Serializable;
import java.util.Date; import java.util.Date;
/**
*
* @ClassName: ConfigRuleDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:23
*/
public class ConfigRuleDTO implements Serializable{ public class ConfigRuleDTO implements Serializable{
private static final long serialVersionUID = -2992133298716031459L; private static final long serialVersionUID = -2992133298716031459L;
......
package com.gic.enterprise.dto.rule; package com.gic.enterprise.dto.rule;
import java.io.Serializable; import java.io.Serializable;
/**
*
* @ClassName: EnterpriseListDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:24
*/
public class EnterpriseListDTO implements Serializable{ public class EnterpriseListDTO implements Serializable{
private static final long serialVersionUID = -1472209420502006016L; private static final long serialVersionUID = -1472209420502006016L;
...@@ -72,4 +78,15 @@ public class EnterpriseListDTO implements Serializable{ ...@@ -72,4 +78,15 @@ public class EnterpriseListDTO implements Serializable{
this.ruleName = ruleName; this.ruleName = ruleName;
return this; return this;
} }
@Override
public String toString() {
return "EnterpriseListDTO{" +
"enterpriseId=" + enterpriseId +
", enterpriseName='" + enterpriseName + '\'' +
", companyName='" + companyName + '\'' +
", logo='" + logo + '\'' +
", ruleName='" + ruleName + '\'' +
'}';
}
} }
...@@ -82,4 +82,15 @@ public class EnterpriseRuleDetailDTO implements Serializable{ ...@@ -82,4 +82,15 @@ public class EnterpriseRuleDetailDTO implements Serializable{
this.enterpriseList = enterpriseList; this.enterpriseList = enterpriseList;
return this; return this;
} }
@Override
public String toString() {
return "EnterpriseRuleDetailDTO{" +
"ruleList=" + ruleList +
", enterpriseRuleId=" + enterpriseRuleId +
", ruleName='" + ruleName + '\'' +
", enterpriseType=" + enterpriseType +
", enterpriseList=" + enterpriseList +
'}';
}
} }
...@@ -166,4 +166,21 @@ public class RuleClassifyDTO implements Serializable{ ...@@ -166,4 +166,21 @@ public class RuleClassifyDTO implements Serializable{
this.updateTime = updateTime; this.updateTime = updateTime;
return this; return this;
} }
@Override
public String toString() {
return "RuleClassifyDTO{" +
"ruleId=" + ruleId +
", ruleName='" + ruleName + '\'' +
", classifyIcon='" + classifyIcon + '\'' +
", ruleDesc='" + ruleDesc + '\'' +
", remark='" + remark + '\'' +
", parentRuleId=" + parentRuleId +
", ruleLevel=" + ruleLevel +
", ruleChain='" + ruleChain + '\'' +
", status=" + status +
", createTime=" + createTime +
", updateTime=" + updateTime +
'}';
}
} }
...@@ -112,4 +112,17 @@ public class RuleClassifyListDTO implements Serializable{ ...@@ -112,4 +112,17 @@ public class RuleClassifyListDTO implements Serializable{
this.ruleClassifySceneList = ruleClassifySceneList; this.ruleClassifySceneList = ruleClassifySceneList;
return this; return this;
} }
@Override
public String toString() {
return "RuleClassifyListDTO{" +
"ruleId=" + ruleId +
", ruleName='" + ruleName + '\'' +
", classifyIcon='" + classifyIcon + '\'' +
", ruleDesc='" + ruleDesc + '\'' +
", remark='" + remark + '\'' +
", select=" + select +
", ruleClassifySceneList=" + ruleClassifySceneList +
'}';
}
} }
...@@ -194,4 +194,23 @@ public class RuleClassifySceneDTO implements Serializable{ ...@@ -194,4 +194,23 @@ public class RuleClassifySceneDTO implements Serializable{
this.marketName = marketName; this.marketName = marketName;
return this; return this;
} }
@Override
public String toString() {
return "RuleClassifySceneDTO{" +
"ruleId=" + ruleId +
", ruleName='" + ruleName + '\'' +
", ruleDesc='" + ruleDesc + '\'' +
", remark='" + remark + '\'' +
", marketName='" + marketName + '\'' +
", marketScene='" + marketScene + '\'' +
", marketObject=" + marketObject +
", parentRuleId=" + parentRuleId +
", ruleLevel=" + ruleLevel +
", ruleChain='" + ruleChain + '\'' +
", status=" + status +
", createTime=" + createTime +
", updateTime=" + updateTime +
'}';
}
} }
...@@ -127,4 +127,18 @@ public class RuleClassifySceneListDTO implements Serializable{ ...@@ -127,4 +127,18 @@ public class RuleClassifySceneListDTO implements Serializable{
this.marketName = marketName; this.marketName = marketName;
return this; return this;
} }
@Override
public String toString() {
return "RuleClassifySceneListDTO{" +
"ruleId=" + ruleId +
", ruleName='" + ruleName + '\'' +
", ruleDesc='" + ruleDesc + '\'' +
", remark='" + remark + '\'' +
", marketName='" + marketName + '\'' +
", marketScene='" + marketScene + '\'' +
", marketObject=" + marketObject +
", select=" + select +
'}';
}
} }
...@@ -152,4 +152,20 @@ public class RuleDTO implements Serializable{ ...@@ -152,4 +152,20 @@ public class RuleDTO implements Serializable{
this.updateTime = updateTime; this.updateTime = updateTime;
return this; return this;
} }
@Override
public String toString() {
return "RuleDTO{" +
"ruleId=" + ruleId +
", ruleName='" + ruleName + '\'' +
", appName='" + appName + '\'' +
", appCode='" + appCode + '\'' +
", parentRuleId=" + parentRuleId +
", ruleLevel=" + ruleLevel +
", ruleChain='" + ruleChain + '\'' +
", status=" + status +
", createTime=" + createTime +
", updateTime=" + updateTime +
'}';
}
} }
...@@ -208,4 +208,24 @@ public class RuleEnterpriseDTO implements Serializable{ ...@@ -208,4 +208,24 @@ public class RuleEnterpriseDTO implements Serializable{
this.enterpriseIdList = enterpriseIdList; this.enterpriseIdList = enterpriseIdList;
return this; return this;
} }
@Override
public String toString() {
return "RuleEnterpriseDTO{" +
"enterpriseRuleId=" + enterpriseRuleId +
", ruleName='" + ruleName + '\'' +
", enterpriseType=" + enterpriseType +
", status=" + status +
", createTime=" + createTime +
", updateTime=" + updateTime +
", enterpriseIds='" + enterpriseIds + '\'' +
", ruleIds='" + ruleIds + '\'' +
", enterpriseIdList=" + enterpriseIdList +
", countEnterpriseId=" + countEnterpriseId +
", enterpriseId=" + enterpriseId +
", enterpriseName='" + enterpriseName + '\'' +
", companyName='" + companyName + '\'' +
", logo='" + logo + '\'' +
'}';
}
} }
...@@ -96,4 +96,16 @@ public class RuleEnterpriseRelDTO implements Serializable{ ...@@ -96,4 +96,16 @@ public class RuleEnterpriseRelDTO implements Serializable{
this.updateTime = updateTime; this.updateTime = updateTime;
return this; return this;
} }
@Override
public String toString() {
return "RuleEnterpriseRelDTO{" +
"enterpriseRelId=" + enterpriseRelId +
", enterpriseRuleId=" + enterpriseRuleId +
", enterpriseId=" + enterpriseId +
", status=" + status +
", createTime=" + createTime +
", updateTime=" + updateTime +
'}';
}
} }
...@@ -96,4 +96,16 @@ public class RuleListDTO implements Serializable{ ...@@ -96,4 +96,16 @@ public class RuleListDTO implements Serializable{
this.ruleClassifyList = ruleClassifyList; this.ruleClassifyList = ruleClassifyList;
return this; return this;
} }
@Override
public String toString() {
return "RuleListDTO{" +
"ruleId=" + ruleId +
", ruleName='" + ruleName + '\'' +
", appName='" + appName + '\'' +
", appCode='" + appCode + '\'' +
", select=" + select +
", ruleClassifyList=" + ruleClassifyList +
'}';
}
} }
...@@ -96,4 +96,16 @@ public class RuleRelDTO implements Serializable{ ...@@ -96,4 +96,16 @@ public class RuleRelDTO implements Serializable{
this.updateTime = updateTime; this.updateTime = updateTime;
return this; return this;
} }
@Override
public String toString() {
return "RuleRelDTO{" +
"ruleRelId=" + ruleRelId +
", enterpriseRuleId=" + enterpriseRuleId +
", ruleId=" + ruleId +
", status=" + status +
", createTime=" + createTime +
", updateTime=" + updateTime +
'}';
}
} }
...@@ -23,7 +23,7 @@ public class AuditLogQO extends PageQO { ...@@ -23,7 +23,7 @@ public class AuditLogQO extends PageQO {
@NotNull(message = "审核id不能为空", groups = AuditView.class) @NotNull(message = "审核id不能为空", groups = AuditView.class)
private Integer auditLogId; private Integer auditLogId;
// @NotBlank(message = "审核人openid不能为空", groups = AuditView.class) /**@NotBlank(message = "审核人openid不能为空", groups = AuditView.class)*/
private String openid; private String openid;
@NotNull(message = "审核结果不能为空", groups = AuditView.class) @NotNull(message = "审核结果不能为空", groups = AuditView.class)
private Integer auditResult; private Integer auditResult;
......
...@@ -17,7 +17,7 @@ public class BuyForGicQO extends PageQO{ ...@@ -17,7 +17,7 @@ public class BuyForGicQO extends PageQO{
private Long enterpriseId; private Long enterpriseId;
//返回页面购买的金额 /**返回页面购买的金额*/
private BigDecimal price; private BigDecimal price;
/** /**
......
...@@ -26,12 +26,9 @@ public class DownloadReportQO extends PageQO { ...@@ -26,12 +26,9 @@ public class DownloadReportQO extends PageQO {
@Min(value = 0, message = "不存在该状态", groups = SelectValidView.class) @Min(value = 0, message = "不存在该状态", groups = SelectValidView.class)
@Max(value = 5, message = "不存在该状态", groups = SelectValidView.class) @Max(value = 5, message = "不存在该状态", groups = SelectValidView.class)
private Integer downloadReportStatus; private Integer downloadReportStatus;
// @Min(value = 1, message = "不存在该查询项", groups = SelectValidView.class)
// @Max(value = 3, message = "不存在该查询项", groups = SelectValidView.class)
// private Integer searchType;
private String searchValue; private String searchValue;
// private String searchName;
private Integer auditResult; private Integer auditResult;
private Date auditExpireTime; private Date auditExpireTime;
private Date ltAuditExpireTime; private Date ltAuditExpireTime;
......
...@@ -37,7 +37,6 @@ public class LinkQO extends PageQO { ...@@ -37,7 +37,6 @@ public class LinkQO extends PageQO {
private Integer parentId; private Integer parentId;
@NotNull(message = "id不能为空", groups = LinkUpdateValid.class) @NotNull(message = "id不能为空", groups = LinkUpdateValid.class)
private Integer linkId; private Integer linkId;
// @NotNull(message = "适用对象不能为空", groups = LinkSaveValid.class)
private Integer objectType; private Integer objectType;
@NotBlank(message = "名称不能为空", groups = LinkSaveValid.class) @NotBlank(message = "名称不能为空", groups = LinkSaveValid.class)
private String name; private String name;
......
...@@ -78,10 +78,12 @@ public interface BillingAccountApiService { ...@@ -78,10 +78,12 @@ public interface BillingAccountApiService {
ServiceResponse<Void> updateAccountAfterRecharge(double totalFee, Integer enterpriseId); ServiceResponse<Void> updateAccountAfterRecharge(double totalFee, Integer enterpriseId);
/** /**
* 支付完成后对余额扣费 * deductAccount
* @Title: deductAccount * @Title: deductAccount
* @Description: * @Description:
* @author zhiwj * @author taogs
* @param totalFee
* @param enterpriseId
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer> * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws * @throws
*/ */
......
...@@ -16,11 +16,12 @@ import com.gic.enterprise.dto.SmsPackageOrderItemDTO; ...@@ -16,11 +16,12 @@ import com.gic.enterprise.dto.SmsPackageOrderItemDTO;
public interface BillingOrderApiService { public interface BillingOrderApiService {
/** /**
* 添加一个订单,立即购买功能 * saveSmsOrderBuyNow
* @Title: addOrder * @Title: saveSmsOrderBuyNow
* @Description: * @Description:
* @author zhiwj * @author taogs
* @param billingOrderDTO * @param billingOrderDTO
* @param smsPackageOrderItemDTO
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer> * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws * @throws
*/ */
...@@ -42,14 +43,17 @@ public interface BillingOrderApiService { ...@@ -42,14 +43,17 @@ public interface BillingOrderApiService {
ServiceResponse<BillingPayInfoDTO> paySmsPackageOrder(Integer enterpriseId, Integer orderId, Integer payType, String authCode, String userName, Integer userId); ServiceResponse<BillingPayInfoDTO> paySmsPackageOrder(Integer enterpriseId, Integer orderId, Integer payType, String authCode, String userName, Integer userId);
/** /**
* 条件分页查询订单状态 * listOrder
* @Title: listOrder * @Title: listOrder
* @Description: * @Description:
* @author zhiwj * @author taogs
* @param startTime 开始时间 * @param startTime
* @param endTime 结束时间 * @param endTime
* @param orderStatus 订单状态 * @param orderStatus
* @param search 订单信息 * @param search
* @param pageNum
* @param pageSize
* @param enterpriseId
* @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.enterprise.dto.BillingOrderDTO>> * @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.enterprise.dto.BillingOrderDTO>>
* @throws * @throws
*/ */
......
...@@ -14,19 +14,21 @@ import com.gic.enterprise.qo.RechargeRecordQO; ...@@ -14,19 +14,21 @@ import com.gic.enterprise.qo.RechargeRecordQO;
public interface BillingRechargeRecordApiService { public interface BillingRechargeRecordApiService {
/** /**
* listRechargeRecord
* @Title: listRechargeRecord * @Title: listRechargeRecord
* @Description: * @Description:
* @author zhiwj * @author taogs
* @param rechargeRecordQO * @param rechargeRecordQO
* @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.BillingRechargeRecordDTO> * @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.enterprise.dto.BillingRechargeRecordDTO>>
* @throws * @throws
*/ */
ServiceResponse<Page<BillingRechargeRecordDTO>> listRechargeRecord(RechargeRecordQO rechargeRecordQO); ServiceResponse<Page<BillingRechargeRecordDTO>> listRechargeRecord(RechargeRecordQO rechargeRecordQO);
/** /**
* getRechargeRecord
* @Title: getRechargeRecord * @Title: getRechargeRecord
* @Description: * @Description:
* @author zhiwj * @author taogs
* @param rechargeRecordId * @param rechargeRecordId
* @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.BillingRechargeRecordDTO> * @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.BillingRechargeRecordDTO>
* @throws * @throws
...@@ -34,10 +36,10 @@ public interface BillingRechargeRecordApiService { ...@@ -34,10 +36,10 @@ public interface BillingRechargeRecordApiService {
ServiceResponse<BillingRechargeRecordDTO> getRechargeRecord(Integer rechargeRecordId); ServiceResponse<BillingRechargeRecordDTO> getRechargeRecord(Integer rechargeRecordId);
/** /**
* * getRechargeRecordForApproval
* @Title: getRechargeRecordForApproval * @Title: getRechargeRecordForApproval
* @Description: * @Description:
* @author zhiwj * @author taogs
* @param serialNumber * @param serialNumber
* @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.BillingRechargeRecordDTO> * @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.BillingRechargeRecordDTO>
* @throws * @throws
......
...@@ -3,7 +3,13 @@ package com.gic.enterprise.service; ...@@ -3,7 +3,13 @@ package com.gic.enterprise.service;
import com.gic.api.base.commons.Page; import com.gic.api.base.commons.Page;
import com.gic.api.base.commons.ServiceResponse; import com.gic.api.base.commons.ServiceResponse;
import com.gic.enterprise.dto.BillingSmsRecordDTO; import com.gic.enterprise.dto.BillingSmsRecordDTO;
/**
*
* @ClassName: BillingSmsRecordApiService
* @Description:
* @author taogs
* @date 2020/9/17 16:23
*/
public interface BillingSmsRecordApiService { public interface BillingSmsRecordApiService {
/** /**
* pageSmspackageRecord * pageSmspackageRecord
......
...@@ -186,13 +186,15 @@ public interface ConfigRuleApiService { ...@@ -186,13 +186,15 @@ public interface ConfigRuleApiService {
ServiceResponse<EnterpriseRuleDetailDTO> getEnterpriseRuleDetail(Integer enterpriseRuleId); ServiceResponse<EnterpriseRuleDetailDTO> getEnterpriseRuleDetail(Integer enterpriseRuleId);
/** /**
* 商户列表 * getEnterpriseList
* @Title: getEnterpriseList
 * @Title: getEnterpriseList
* @Description: * @Description:

* @author guojuxing * @author taogs
* @param search
公司名称/商户名称 * @param search
* @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.rule.EnterpriseListDTO>>
 * @param enterpriseIdList

*/ * @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.rule.EnterpriseListDTO>>
* @throws
*/
ServiceResponse<List<EnterpriseListDTO>> getEnterpriseList(String search, List<Integer> enterpriseIdList); ServiceResponse<List<EnterpriseListDTO>> getEnterpriseList(String search, List<Integer> enterpriseIdList);
/** /**
...@@ -207,13 +209,15 @@ public interface ConfigRuleApiService { ...@@ -207,13 +209,15 @@ public interface ConfigRuleApiService {
/***************对接其他组*******************/ /***************对接其他组*******************/
/** /**
* 应用code查询下面分类列表 * listRuleClassifyByAppCode
* @Title: listRuleClassifyByAppCode * @Title: listRuleClassifyByAppCode
* @Description: * @Description:

* @author guojuxing * @author taogs
* @param appCode
应用code * @param appCode
* @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.rule.RuleClassifyListDTO>>
 * @param enterpriseId

*/ * @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.rule.RuleClassifyListDTO>>
* @throws
*/
ServiceResponse<List<RuleClassifyListDTO>> listRuleClassifyByAppCode(String appCode, Integer enterpriseId); ServiceResponse<List<RuleClassifyListDTO>> listRuleClassifyByAppCode(String appCode, Integer enterpriseId);
/** /**
......
...@@ -5,7 +5,13 @@ import com.gic.api.base.commons.ServiceResponse; ...@@ -5,7 +5,13 @@ import com.gic.api.base.commons.ServiceResponse;
import com.gic.enterprise.dto.rule.RuleEnterpriseDTO; import com.gic.enterprise.dto.rule.RuleEnterpriseDTO;
import java.util.List; import java.util.List;
/**
*
* @ClassName: ConfigRuleEnterpriseApiService
* @Description:
* @author taogs
* @date 2020/9/17 16:23
*/
public interface ConfigRuleEnterpriseApiService { public interface ConfigRuleEnterpriseApiService {
/** /**
......
...@@ -6,7 +6,13 @@ import com.gic.enterprise.dto.GuideTypeDTO; ...@@ -6,7 +6,13 @@ import com.gic.enterprise.dto.GuideTypeDTO;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
/**
*
* @ClassName: CustomGuideApiService
* @Description:
* @author taogs
* @date 2020/9/17 16:23
*/
public interface CustomGuideApiService { public interface CustomGuideApiService {
/** /**
* getMaxVersion * getMaxVersion
......
...@@ -3,23 +3,110 @@ package com.gic.enterprise.service; ...@@ -3,23 +3,110 @@ package com.gic.enterprise.service;
import com.gic.api.base.commons.Page; import com.gic.api.base.commons.Page;
import com.gic.api.base.commons.ServiceResponse; import com.gic.api.base.commons.ServiceResponse;
import com.gic.enterprise.dto.CustomStoreDTO; import com.gic.enterprise.dto.CustomStoreDTO;
/**
*
* @ClassName: CustomStoreApiService
* @Description:
* @author taogs
* @date 2020/9/17 16:23
*/
public interface CustomStoreApiService { public interface CustomStoreApiService {
/**
* saveCustomStore
* @Title: saveCustomStore
* @Description:
* @author taogs
* @param customStoreDTO
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws
*/
ServiceResponse<Integer> saveCustomStore(CustomStoreDTO customStoreDTO); ServiceResponse<Integer> saveCustomStore(CustomStoreDTO customStoreDTO);
/**
* pageCustomStore
* @Title: pageCustomStore
* @Description:
* @author taogs
* @param enterpriseId
* @param search
* @param appid
* @param pageNum
* @param pageSize
* @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.enterprise.dto.CustomStoreDTO>>
* @throws
*/
ServiceResponse<Page<CustomStoreDTO>> pageCustomStore(Integer enterpriseId, String search, String appid, Integer pageNum, Integer pageSize); ServiceResponse<Page<CustomStoreDTO>> pageCustomStore(Integer enterpriseId, String search, String appid, Integer pageNum, Integer pageSize);
/**
* deleteCustomStore
* @Title: deleteCustomStore
* @Description:
* @author taogs
* @param customStoreId
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws
*/
ServiceResponse<Integer> deleteCustomStore(Integer customStoreId); ServiceResponse<Integer> deleteCustomStore(Integer customStoreId);
/**
* getCustomStore
* @Title: getCustomStore
* @Description:
* @author taogs
* @param customStoreId
* @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.CustomStoreDTO>
* @throws
*/
ServiceResponse<CustomStoreDTO> getCustomStore(Integer customStoreId); ServiceResponse<CustomStoreDTO> getCustomStore(Integer customStoreId);
/**
* openCustomStore
* @Title: openCustomStore
* @Description:
* @author taogs
* @param enterpriseId
* @param appid
* @param customStoreId
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws
*/
ServiceResponse<Integer> openCustomStore(Integer enterpriseId, String appid, Integer customStoreId); ServiceResponse<Integer> openCustomStore(Integer enterpriseId, String appid, Integer customStoreId);
/**
* closeCustomStore
* @Title: closeCustomStore
* @Description:
* @author taogs
* @param enterpriseId
* @param appid
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws
*/
ServiceResponse<Integer> closeCustomStore(Integer enterpriseId, String appid); ServiceResponse<Integer> closeCustomStore(Integer enterpriseId, String appid);
/**
* closeCustomStore
* @Title: closeCustomStore
* @Description:
* @author taogs
* @param customStoreId
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws
*/
ServiceResponse<Integer> closeCustomStore(Integer customStoreId); ServiceResponse<Integer> closeCustomStore(Integer customStoreId);
/**
* getCustomStore
* @Title: getCustomStore
* @Description:
* @author taogs
* @param enterpriseId
* @param appid
* @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.CustomStoreDTO>
* @throws
*/
ServiceResponse<CustomStoreDTO> getCustomStore(Integer enterpriseId, String appid); ServiceResponse<CustomStoreDTO> getCustomStore(Integer enterpriseId, String appid);
/**
* customSettingHasCommpleted
* @Title: customSettingHasCommpleted
* @Description:
* @author taogs
* @param enterpriseId
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>
* @throws
*/
ServiceResponse<Void> customSettingHasCommpleted(Integer enterpriseId); ServiceResponse<Void> customSettingHasCommpleted(Integer enterpriseId);
} }
package com.gic.enterprise.service; package com.gic.enterprise.service;
import com.gic.api.base.commons.ServiceResponse; import com.gic.api.base.commons.ServiceResponse;
/**
*
* @ClassName: CustomThemeApiService
* @Description:
* @author taogs
* @date 2020/9/17 16:24
*/
public interface CustomThemeApiService { public interface CustomThemeApiService {
/**
* saveTheme
* @Title: saveTheme
* @Description:
* @author taogs
* @param enterpriseId
* @param appid
* @param theme
* @param type
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws
*/
ServiceResponse<Integer> saveTheme(Integer enterpriseId, String appid, Integer theme, Integer type); ServiceResponse<Integer> saveTheme(Integer enterpriseId, String appid, Integer theme, Integer type);
/**
* getTheme
* @Title: getTheme
* @Description:
* @author taogs
* @param enterpriseId
* @param appid
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws
*/
ServiceResponse<Integer> getTheme(Integer enterpriseId, String appid); ServiceResponse<Integer> getTheme(Integer enterpriseId, String appid);
/**
* getTheme
* @Title: getTheme
* @Description:
* @author taogs
* @param theme
* @return com.gic.api.base.commons.ServiceResponse<java.lang.String>
* @throws
*/
ServiceResponse<String> getTheme(Integer theme); ServiceResponse<String> getTheme(Integer theme);
} }
...@@ -5,59 +5,101 @@ import com.gic.enterprise.dto.CustomChatFiledDTO; ...@@ -5,59 +5,101 @@ import com.gic.enterprise.dto.CustomChatFiledDTO;
import com.gic.enterprise.dto.CustomUdeskFieldDTO; import com.gic.enterprise.dto.CustomUdeskFieldDTO;
import java.util.List; import java.util.List;
/**
*
* @ClassName: CustomUdeskFieldApiService
* @Description:
* @author taogs
* @date 2020/9/17 16:24
*/
public interface CustomUdeskFieldApiService { public interface CustomUdeskFieldApiService {
/** @Description: 查询初始化的所有字段 /**
* listAllField
* @Title: listAllField
* @Description:
* @author taogs * @author taogs
* @Date 11:09 2019/12/2 * @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.CustomChatFiledDTO>>
* @Param * @throws
* @return
*/ */
ServiceResponse<List<CustomChatFiledDTO>> listAllField(); ServiceResponse<List<CustomChatFiledDTO>> listAllField();
/** @Description: 保存字段 /**
* saveEnterpriseField
* @Title: saveEnterpriseField
* @Description:
* @author taogs * @author taogs
* @Date 11:11 2019/12/2 * @param dto
* @Param * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @return * @throws
*/ */
ServiceResponse<Integer> saveEnterpriseField(CustomUdeskFieldDTO dto); ServiceResponse<Integer> saveEnterpriseField(CustomUdeskFieldDTO dto);
/**
* editEnterpriseField
* @Title: editEnterpriseField
* @Description:
* @author taogs
* @param dto
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws
*/
ServiceResponse<Integer> editEnterpriseField(CustomUdeskFieldDTO dto); ServiceResponse<Integer> editEnterpriseField(CustomUdeskFieldDTO dto);
/** @Description: 查询企业配置的字段 /**
* listEnterpriseField
* @Title: listEnterpriseField
* @Description:
* @author taogs * @author taogs
* @Date 11:11 2019/12/2 * @param enterpriseId
* @Param * @param appId
* @return * @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.CustomUdeskFieldDTO>>
* @throws
*/ */
ServiceResponse<List<CustomUdeskFieldDTO>> listEnterpriseField(Integer enterpriseId, String appId); ServiceResponse<List<CustomUdeskFieldDTO>> listEnterpriseField(Integer enterpriseId, String appId);
/**
* listEnableEnterpriseField
* @Title: listEnableEnterpriseField
* @Description:
* @author taogs
* @param enterpriseId
* @param appId
* @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.CustomUdeskFieldDTO>>
* @throws
*/
ServiceResponse<List<CustomUdeskFieldDTO>> listEnableEnterpriseField(Integer enterpriseId, String appId); ServiceResponse<List<CustomUdeskFieldDTO>> listEnableEnterpriseField(Integer enterpriseId, String appId);
/** @Description: 获取字段配置详情 /**
* getDetail
* @Title: getDetail
* @Description:
* @author taogs * @author taogs
* @Date 11:12 2019/12/2 * @param id
* @Param * @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.CustomUdeskFieldDTO>
* @return * @throws
*/ */
ServiceResponse<CustomUdeskFieldDTO> getDetail(Integer id); ServiceResponse<CustomUdeskFieldDTO> getDetail(Integer id);
/** @Description: 删除配置 /**
* deleteField
* @Title: deleteField
* @Description:
* @author taogs * @author taogs
* @Date 11:23 2019/12/2 * @param id
* @Param * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @return * @throws
*/ */
ServiceResponse<Integer> deleteField(Integer id); ServiceResponse<Integer> deleteField(Integer id);
/** @Description: 更新开启状态 /**
* updateStatus
* @Title: updateStatus
* @Description:
* @author taogs * @author taogs
* @Date 15:16 2019/12/2 * @param id
* @Param * @param status
* @return * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws
*/ */
ServiceResponse<Integer> updateStatus(Integer id, Integer status); ServiceResponse<Integer> updateStatus(Integer id, Integer status);
} }
...@@ -15,27 +15,30 @@ import java.util.List; ...@@ -15,27 +15,30 @@ import java.util.List;
public interface DictApiService { public interface DictApiService {
/** /**
* listBusinessCategory
* @Title: listBusinessCategory * @Title: listBusinessCategory
* @Description: * @Description:
* @author zhiwj * @author taogs
* @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.DictDTO>> * @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.DictDTO>>
* @throws * @throws
*/ */
ServiceResponse<List<DictDTO>> listBusinessCategory(); ServiceResponse<List<DictDTO>> listBusinessCategory();
/** /**
* listRiskModeDuration
* @Title: listRiskModeDuration * @Title: listRiskModeDuration
* @Description: * @Description:
* @author zhiwj * @author taogs
* @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.DictDTO>> * @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.DictDTO>>
* @throws * @throws
*/ */
ServiceResponse<List<DictDTO>> listRiskModeDuration(); ServiceResponse<List<DictDTO>> listRiskModeDuration();
/** /**
* getDict
* @Title: getDict * @Title: getDict
* @Description: * @Description:
* @author zhiwj * @author taogs
* @param categoryCode * @param categoryCode
* @param code * @param code
* @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.DictDTO> * @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.DictDTO>
...@@ -44,9 +47,10 @@ public interface DictApiService { ...@@ -44,9 +47,10 @@ public interface DictApiService {
ServiceResponse<DictDTO> getDict(String categoryCode, String code); ServiceResponse<DictDTO> getDict(String categoryCode, String code);
/** /**
* getDictOriginal
* @Title: getDictOriginal * @Title: getDictOriginal
* @Description: * @Description:
* @author zhiwj * @author taogs
* @param categoryCode * @param categoryCode
* @param code * @param code
* @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.DictDTO> * @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.DictDTO>
...@@ -55,20 +59,20 @@ public interface DictApiService { ...@@ -55,20 +59,20 @@ public interface DictApiService {
ServiceResponse<DictDTO> getDictOriginal(String categoryCode, String code); ServiceResponse<DictDTO> getDictOriginal(String categoryCode, String code);
/** /**
* 首页组件设计模板 * listModuleTemplateCode
* @Title: listModuleTemplateCode * @Title: listModuleTemplateCode
* @Description: * @Description:
* @author zhiwj * @author taogs
* @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.DictDTO>> * @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.DictDTO>>
* @throws * @throws
*/ */
ServiceResponse<List<DictDTO>> listModuleTemplateCode(); ServiceResponse<List<DictDTO>> listModuleTemplateCode();
/** /**
* 短信明细中的应用类型 * listSmsAppType
* @Title: listSmsAppType * @Title: listSmsAppType
* @Description: * @Description:
* @author zhiwj * @author taogs
* @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.DictDTO>> * @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.DictDTO>>
* @throws * @throws
*/ */
...@@ -85,10 +89,10 @@ public interface DictApiService { ...@@ -85,10 +89,10 @@ public interface DictApiService {
ServiceResponse<List<DictDTO>> listTodoItemType(); ServiceResponse<List<DictDTO>> listTodoItemType();
/** /**
* * listRequestCode
* @Title: listRequestCode * @Title: listRequestCode
* @Description: * @Description:
* @author zhiwj * @author taogs
* @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.DictDTO>> * @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.DictDTO>>
* @throws * @throws
*/ */
......
...@@ -13,10 +13,11 @@ import com.gic.enterprise.dto.PstnCallBillDTO; ...@@ -13,10 +13,11 @@ import com.gic.enterprise.dto.PstnCallBillDTO;
public interface DoubleCallingApiService { public interface DoubleCallingApiService {
/** /**
* 双向呼叫计费 * saveDoubleCalling
* @Title: saveDoubleCalling * @Title: saveDoubleCalling
* @Description: * @Description:
* @author zhiwj * @author taogs
* @param enterpriseId
* @param pstnCallBillDTO * @param pstnCallBillDTO
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Void> * @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>
* @throws * @throws
...@@ -24,7 +25,7 @@ public interface DoubleCallingApiService { ...@@ -24,7 +25,7 @@ public interface DoubleCallingApiService {
ServiceResponse<Void> saveDoubleCalling(Integer enterpriseId, PstnCallBillDTO pstnCallBillDTO); ServiceResponse<Void> saveDoubleCalling(Integer enterpriseId, PstnCallBillDTO pstnCallBillDTO);
/** /**
* * saveDoubleCalling
* @Title: saveDoubleCalling * @Title: saveDoubleCalling
* @Description: * @Description:
* @author zhiwj * @author zhiwj
...@@ -35,9 +36,10 @@ public interface DoubleCallingApiService { ...@@ -35,9 +36,10 @@ public interface DoubleCallingApiService {
ServiceResponse<Void> saveDoubleCalling(DoubleCallingRecordDTO doubleCallingRecordDTO); ServiceResponse<Void> saveDoubleCalling(DoubleCallingRecordDTO doubleCallingRecordDTO);
/** /**
* run
* @Title: run * @Title: run
* @Description: * @Description:
* @author zhiwj * @author taogs
* @param arg * @param arg
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Void> * @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>
* @throws * @throws
...@@ -45,9 +47,10 @@ public interface DoubleCallingApiService { ...@@ -45,9 +47,10 @@ public interface DoubleCallingApiService {
ServiceResponse<Void> run(String arg); ServiceResponse<Void> run(String arg);
/** /**
* executeDatabase
* @Title: executeDatabase * @Title: executeDatabase
* @Description: * @Description:
* @author zhiwj * @author taogs
* @param arg * @param arg
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Void> * @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>
* @throws * @throws
......
...@@ -15,12 +15,12 @@ import com.gic.enterprise.qo.DownloadLogQO; ...@@ -15,12 +15,12 @@ import com.gic.enterprise.qo.DownloadLogQO;
public interface DownloadLogApiService { public interface DownloadLogApiService {
/** /**
* * listDownload
* @Title: listDownloadDTO * @Title: listDownload
* @Description: * @Description:
* @author zhiwj * @author taogs
* @param downloadLogQO * @param downloadLogQO
* @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.DownloadLogDTO> * @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.enterprise.dto.DownloadLogDTO>>
* @throws * @throws
*/ */
ServiceResponse<Page<DownloadLogDTO>> listDownload(DownloadLogQO downloadLogQO); ServiceResponse<Page<DownloadLogDTO>> listDownload(DownloadLogQO downloadLogQO);
......
...@@ -82,11 +82,12 @@ public interface DownloadReportApiService { ...@@ -82,11 +82,12 @@ public interface DownloadReportApiService {
ServiceResponse<Void> auditCallBack(String json); ServiceResponse<Void> auditCallBack(String json);
/** /**
* * saveDownloadLogReturnDownloadUrl
* @Title: getDownloadUrl * @Title: saveDownloadLogReturnDownloadUrl
* @Description: * @Description:
* @author zhiwj * @author taogs
* @param downloadReportId * @param downloadReportId
* @param loginUserId
* @return com.gic.api.base.commons.ServiceResponse<java.lang.String> * @return com.gic.api.base.commons.ServiceResponse<java.lang.String>
* @throws * @throws
*/ */
......
...@@ -45,7 +45,16 @@ public interface EnterpriseApiService { ...@@ -45,7 +45,16 @@ public interface EnterpriseApiService {
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
 * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>


 */ 
 */
ServiceResponse<Integer> editEnterprise(EnterpriseDTO enterpriseDTO); ServiceResponse<Integer> editEnterprise(EnterpriseDTO enterpriseDTO);
/**
* editResourceSwitch
* @Title: editResourceSwitch
* @Description:
* @author taogs
* @param enterpriseId
* @param resources
* @return com.gic.api.base.commons.ServiceResponse<java.lang.String>
* @throws
*/
ServiceResponse<String> editResourceSwitch(Integer enterpriseId, String resources); ServiceResponse<String> editResourceSwitch(Integer enterpriseId, String resources);
/** /**
...@@ -172,20 +181,46 @@ public interface EnterpriseApiService { ...@@ -172,20 +181,46 @@ public interface EnterpriseApiService {
* @return com.gic.api.base.commons.ServiceResponse
 * @return com.gic.api.base.commons.ServiceResponse


 */ 
 */
ServiceResponse initEnterprise(Integer enterpriseId); ServiceResponse initEnterprise(Integer enterpriseId);
/**
* listEnterpriseByIds
* @Title: listEnterpriseByIds
* @Description:
* @author taogs
* @param enterpriseIdList
* @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.EnterpriseDTO>>
* @throws
*/
ServiceResponse<List<EnterpriseDTO>> listEnterpriseByIds(List<Integer> enterpriseIdList); ServiceResponse<List<EnterpriseDTO>> listEnterpriseByIds(List<Integer> enterpriseIdList);
/**
* getEnterpriseByName
* @Title: getEnterpriseByName
* @Description:
* @author taogs
* @param enterpriseName
* @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.EnterpriseDTO>
* @throws
*/
ServiceResponse<EnterpriseDTO> getEnterpriseByName(String enterpriseName); ServiceResponse<EnterpriseDTO> getEnterpriseByName(String enterpriseName);
/**
* listEnterpriseByPhoneNumber
* @Title: listEnterpriseByPhoneNumber
* @Description:
* @author taogs
* @param phoneNumber
* @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.EnterpriseDTO>>
* @throws
*/
ServiceResponse<List<EnterpriseDTO>> listEnterpriseByPhoneNumber(String phoneNumber); ServiceResponse<List<EnterpriseDTO>> listEnterpriseByPhoneNumber(String phoneNumber);
/** /**
* @Title: buyForGicForNew
 * buyForGicForNew
* @Description: 服务订购 * @Title: buyForGicForNew

 * @author guojuxing * @Description:
* @author taogs
* @param basicParams * @param basicParams
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>
 * @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.market.MarketServiceDTO>

 */ * @throws
*/
ServiceResponse<MarketServiceDTO> buyForGicForNew(BuyForGicQO basicParams); ServiceResponse<MarketServiceDTO> buyForGicForNew(BuyForGicQO basicParams);
/** /**
...@@ -241,11 +276,14 @@ public interface EnterpriseApiService { ...@@ -241,11 +276,14 @@ public interface EnterpriseApiService {
ServiceResponse<Void> buyServiceSuccess(Integer enterpriseId, String json); ServiceResponse<Void> buyServiceSuccess(Integer enterpriseId, String json);
/** @Description: 商户过期提醒 /**
* overdueReminder
* @Title: overdueReminder
* @Description:
* @author taogs * @author taogs
* @Date 17:13 2020/3/9 * @param param
* @Param * @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>
* @return * @throws
*/ */
ServiceResponse<Void> overdueReminder(String param); ServiceResponse<Void> overdueReminder(String param);
......
...@@ -5,15 +5,64 @@ import com.gic.api.base.commons.ServiceResponse; ...@@ -5,15 +5,64 @@ import com.gic.api.base.commons.ServiceResponse;
import com.gic.enterprise.dto.HelpCenterDTO; import com.gic.enterprise.dto.HelpCenterDTO;
import java.util.List; import java.util.List;
/**
*
* @ClassName: HelpCenterApiService
* @Description:
* @author taogs
* @date 2020/9/17 16:24
*/
public interface HelpCenterApiService { public interface HelpCenterApiService {
/**
* pageHelpCenter
* @Title: pageHelpCenter
* @Description:
* @author taogs
* @param search
* @param mode
* @param pageNum
* @param pageSize
* @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.enterprise.dto.HelpCenterDTO>>
* @throws
*/
ServiceResponse<Page<HelpCenterDTO>> pageHelpCenter(String search, Integer mode, int pageNum, int pageSize); ServiceResponse<Page<HelpCenterDTO>> pageHelpCenter(String search, Integer mode, int pageNum, int pageSize);
/**
* saveHelpCenter
* @Title: saveHelpCenter
* @Description:
* @author taogs
* @param helpCenterDTO
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws
*/
ServiceResponse<Integer> saveHelpCenter(HelpCenterDTO helpCenterDTO); ServiceResponse<Integer> saveHelpCenter(HelpCenterDTO helpCenterDTO);
/**
* delHelpCenter
* @Title: delHelpCenter
* @Description:
* @author taogs
* @param helpId
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws
*/
ServiceResponse<Integer> delHelpCenter(Integer helpId); ServiceResponse<Integer> delHelpCenter(Integer helpId);
/**
* getHelpCenterById
* @Title: getHelpCenterById
* @Description:
* @author taogs
* @param helpId
* @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.HelpCenterDTO>
* @throws
*/
ServiceResponse<HelpCenterDTO> getHelpCenterById(Integer helpId); ServiceResponse<HelpCenterDTO> getHelpCenterById(Integer helpId);
/**
* listHelpCenter
* @Title: listHelpCenter
* @Description:
* @author taogs
* @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.HelpCenterDTO>>
* @throws
*/
ServiceResponse<List<HelpCenterDTO>> listHelpCenter(); ServiceResponse<List<HelpCenterDTO>> listHelpCenter();
} }
...@@ -36,9 +36,10 @@ public interface IndexModuleApiService { ...@@ -36,9 +36,10 @@ public interface IndexModuleApiService {
ServiceResponse<Void> delIndexModule(Integer indexModuleId); ServiceResponse<Void> delIndexModule(Integer indexModuleId);
/** /**
* getIndexModule
* @Title: getIndexModule * @Title: getIndexModule
* @Description: * @Description:
* @author zhiwj * @author taogs
* @param indexModuleId * @param indexModuleId
* @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.IndexModuleDTO> * @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.IndexModuleDTO>
* @throws * @throws
...@@ -68,10 +69,11 @@ public interface IndexModuleApiService { ...@@ -68,10 +69,11 @@ public interface IndexModuleApiService {
ServiceResponse<Void> sortIndexModule(Integer indexModuleId, Integer seq); ServiceResponse<Void> sortIndexModule(Integer indexModuleId, Integer seq);
/** /**
* * listIndexModuleEnterprise
* @Title: listIndexModuleEnterprise * @Title: listIndexModuleEnterprise
* @Description: * @Description:
* @author zhiwj * @author taogs
* @param enterpriseId
* @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.IndexModuleDTO>> * @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.IndexModuleDTO>>
* @throws * @throws
*/ */
......
...@@ -22,7 +22,7 @@ public interface InternationalSmsRecordApiService { ...@@ -22,7 +22,7 @@ public interface InternationalSmsRecordApiService {
*/ */
ServiceResponse<Void> saveInternationalSmsRecord(InternationalSmsRecordDTO internationalSmsRecordDTO); ServiceResponse<Void> saveInternationalSmsRecord(InternationalSmsRecordDTO internationalSmsRecordDTO);
/** /** run
* @Title: run * @Title: run
* @Description: * @Description:
* @author zhiwj * @author zhiwj
...@@ -32,7 +32,7 @@ public interface InternationalSmsRecordApiService { ...@@ -32,7 +32,7 @@ public interface InternationalSmsRecordApiService {
*/ */
ServiceResponse<Void> run(String arg); ServiceResponse<Void> run(String arg);
/** /** executeDatabase
* @Title: executeDatabase * @Title: executeDatabase
* @Description: * @Description:
* @author zhiwj * @author zhiwj
......
...@@ -22,18 +22,20 @@ public interface LinkApiService { ...@@ -22,18 +22,20 @@ public interface LinkApiService {
* @Description: * @Description:
* @author zhiwj * @author zhiwj
* @param name * @param name
* @param type
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Void> * @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>
* @throws * @throws
*/ */
ServiceResponse<Void> saveLinkType(String name, Integer type); ServiceResponse<Void> saveLinkType(String name, Integer type);
/** /**
* 更新类型 * updateLinkType
* @Title: updateLinkType * @Title: updateLinkType
* @Description: * @Description:
* @author zhiwj * @author taogs
* @param linkId * @param linkId
* @param name * @param name
* @param type
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Void> * @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>
* @throws * @throws
*/ */
...@@ -107,10 +109,11 @@ public interface LinkApiService { ...@@ -107,10 +109,11 @@ public interface LinkApiService {
ServiceResponse<List<LinkDTO>> listLinkType(); ServiceResponse<List<LinkDTO>> listLinkType();
/** /**
* 查询链接菜单 * listLinkMenu
* @Title: listLinkMenu * @Title: listLinkMenu
* @Description: * @Description:
* @author zhiwj * @author taogs
* @param linkQO
* @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.enterprise.dto.LinkDTO>> * @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.enterprise.dto.LinkDTO>>
* @throws * @throws
*/ */
...@@ -128,11 +131,12 @@ public interface LinkApiService { ...@@ -128,11 +131,12 @@ public interface LinkApiService {
ServiceResponse<LinkDTO> getLink(Integer linkId); ServiceResponse<LinkDTO> getLink(Integer linkId);
/** /**
* 编辑适用商户 * editLinkEnterprise
* @Title: editLinkEnterprise * @Title: editLinkEnterprise
* @Description: * @Description:
* @author zhiwj * @author taogs
* @param linkId * @param linkId
* @param enterpriseType
* @param enterpriseIdList * @param enterpriseIdList
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Void> * @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>
* @throws * @throws
...@@ -140,10 +144,10 @@ public interface LinkApiService { ...@@ -140,10 +144,10 @@ public interface LinkApiService {
ServiceResponse<Void> editLinkEnterprise(Integer linkId, Integer enterpriseType, List<Integer> enterpriseIdList); ServiceResponse<Void> editLinkEnterprise(Integer linkId, Integer enterpriseType, List<Integer> enterpriseIdList);
/** /**
* * listByGic
* @Title: listByGic * @Title: listByGic
* @Description: * @Description:
* @author zhiwj * @author taogs
* @param enterpriseId * @param enterpriseId
* @param parentId * @param parentId
* @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.LinkDTO>> * @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.LinkDTO>>
...@@ -152,11 +156,12 @@ public interface LinkApiService { ...@@ -152,11 +156,12 @@ public interface LinkApiService {
ServiceResponse<List<LinkDTO>> listByGic(Integer enterpriseId, Integer parentId); ServiceResponse<List<LinkDTO>> listByGic(Integer enterpriseId, Integer parentId);
/** /**
* * treeByGic
* @Title: treeByGic * @Title: treeByGic
* @Description: * @Description:
* @author zhiwj * @author taogs
* @param enterpriseId * @param enterpriseId
* @param objectType
* @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.LinkDTO>> * @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.LinkDTO>>
* @throws * @throws
*/ */
......
...@@ -9,43 +9,63 @@ import com.gic.enterprise.dto.SmsPackageDTO; ...@@ -9,43 +9,63 @@ import com.gic.enterprise.dto.SmsPackageDTO;
import java.text.ParseException; import java.text.ParseException;
import java.util.List; import java.util.List;
/**
*
* @ClassName: PackageApiService
* @Description:
* @author taogs
* @date 2020/9/17 16:25
*/
public interface PackageApiService { public interface PackageApiService {
/** @Description: 查询所有套餐包 /**
* listAllPackage
* @Title: listAllPackage
* @Description:
* @author taogs * @author taogs
* @Date 14:46 2019/8/16 * @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.PackageDTO>>
* @Param * @throws
* @return
*/ */
ServiceResponse<List<PackageDTO>> listAllPackage(); ServiceResponse<List<PackageDTO>> listAllPackage();
/** @Description: 查询所有短信套餐包 /**
* listAllSmsPackage
* @Title: listAllSmsPackage
* @Description:
* @author taogs * @author taogs
* @Date 15:56 2019/8/16 * @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.SmsPackageDTO>>
* @Param * @throws
* @return
*/ */
ServiceResponse<List<SmsPackageDTO>> listAllSmsPackage(); ServiceResponse<List<SmsPackageDTO>> listAllSmsPackage();
/** @Description: 查询企业下短信套餐包 /**
* pageEnterpriseSmsPackage
* @Title: pageEnterpriseSmsPackage
* @Description:
* @author taogs * @author taogs
* @Date 15:58 2019/8/16 * @param enterpriseId
* @Param * @param search
* @return * @param status
* @param startDate
* @param endDate
* @param currentPage
* @param pageSize
* @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.enterprise.dto.EnterpriseSmsPackageDTO>>
* @throws
*/ */
ServiceResponse<Page<EnterpriseSmsPackageDTO>> pageEnterpriseSmsPackage(Integer enterpriseId, String search, Integer status, ServiceResponse<Page<EnterpriseSmsPackageDTO>> pageEnterpriseSmsPackage(Integer enterpriseId, String search, Integer status,
String startDate, String endDate, int currentPage, int pageSize); String startDate, String endDate, int currentPage, int pageSize);
/** /**
* 自动续订短信套餐包前提条件 * listAutoRechargeSmsPackage
* @Title: listAutoRechargeSmsPackage * @Title: listAutoRechargeSmsPackage
* @Description: * @Description:

 * @author guojuxing 
 * @author taogs
* @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.AutoRechargeSmsPackageDTO>>
 * @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.AutoRechargeSmsPackageDTO>>

 */ * @throws
*/
ServiceResponse<List<AutoRechargeSmsPackageDTO>> listAutoRechargeSmsPackage(); ServiceResponse<List<AutoRechargeSmsPackageDTO>> listAutoRechargeSmsPackage();
} }
...@@ -55,12 +55,15 @@ public interface PlatformBrandApiService { ...@@ -55,12 +55,15 @@ public interface PlatformBrandApiService {
* @Description: * @Description:
* @author zhiwj * @author zhiwj
* @param platformBrandDTO * @param platformBrandDTO
* @param pageNum
* @param pageSize
* @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.enterprise.dto.PlatformBrandDTO>> * @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.enterprise.dto.PlatformBrandDTO>>
* @throws * @throws
*/ */
ServiceResponse<Page<PlatformBrandDTO>> listPlatformBrand(PlatformBrandDTO platformBrandDTO, Integer pageNum, Integer pageSize); ServiceResponse<Page<PlatformBrandDTO>> listPlatformBrand(PlatformBrandDTO platformBrandDTO, Integer pageNum, Integer pageSize);
/** /**
* listPlatformBrand
* @Title: listPlatformBrand * @Title: listPlatformBrand
* @Description: * @Description:
* @author zhiwj * @author zhiwj
...@@ -105,6 +108,7 @@ public interface PlatformBrandApiService { ...@@ -105,6 +108,7 @@ public interface PlatformBrandApiService {
* @Title: delRef * @Title: delRef
* @Description: 删除一个关联关系 * @Description: 删除一个关联关系
* @author zhiwj * @author zhiwj
* @param enterpriseId
* @param enterpriseBrandId * @param enterpriseBrandId
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer> * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws * @throws
...@@ -116,6 +120,7 @@ public interface PlatformBrandApiService { ...@@ -116,6 +120,7 @@ public interface PlatformBrandApiService {
* @Title: delRef * @Title: delRef
* @Description: 删除一个关联关系 * @Description: 删除一个关联关系
* @author zhiwj * @author zhiwj
* @param enterpriseId
* @param enterpriseBrandId * @param enterpriseBrandId
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer> * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws * @throws
...@@ -126,6 +131,8 @@ public interface PlatformBrandApiService { ...@@ -126,6 +131,8 @@ public interface PlatformBrandApiService {
* 删除一个关联关系 * 删除一个关联关系
* @Title: delRef * @Title: delRef
* @Description: 删除一个关联关系 * @Description: 删除一个关联关系
* @param enterpriseId
* @param enterpriseBrandIds
* @author zhiwj * @author zhiwj
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer> * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws * @throws
...@@ -191,6 +198,8 @@ public interface PlatformBrandApiService { ...@@ -191,6 +198,8 @@ public interface PlatformBrandApiService {
* @Description: * @Description:
* @author zhiwj * @author zhiwj
* @param brandName * @param brandName
* @param pageNum
* @param pageSize
* @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.enterprise.dto.PlatformBrandRefDTO>> * @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.enterprise.dto.PlatformBrandRefDTO>>
* @throws * @throws
*/ */
......
...@@ -43,6 +43,8 @@ public interface ProjectApiService { ...@@ -43,6 +43,8 @@ public interface ProjectApiService {
* @Description: * @Description:
* @author zhiwj * @author zhiwj
* @param projectDTO * @param projectDTO
* @param pageNum
* @param pageSize
* @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.enterprise.dto.ProjectDTO>> * @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.enterprise.dto.ProjectDTO>>
* @throws * @throws
*/ */
...@@ -59,6 +61,7 @@ public interface ProjectApiService { ...@@ -59,6 +61,7 @@ public interface ProjectApiService {
ServiceResponse<List<ProjectDTO>> listAllProject(); ServiceResponse<List<ProjectDTO>> listAllProject();
/** /**
* setProjectSort
* @Title: setProjectSort * @Title: setProjectSort
* @Description: * @Description:
* @author zhiwj * @author zhiwj
...@@ -70,6 +73,7 @@ public interface ProjectApiService { ...@@ -70,6 +73,7 @@ public interface ProjectApiService {
ServiceResponse<Void> setProjectSort(Integer projectId, Integer seq); ServiceResponse<Void> setProjectSort(Integer projectId, Integer seq);
/** /**
* setProjectItemSort
* @Title: setProjectItemSort * @Title: setProjectItemSort
* @Description: * @Description:
* @author zhiwj * @author zhiwj
......
...@@ -57,7 +57,7 @@ public interface ProjectItemApiService { ...@@ -57,7 +57,7 @@ public interface ProjectItemApiService {
*/ */
ServiceResponse<ProjectItemDTO> getById(Integer projectItemId); ServiceResponse<ProjectItemDTO> getById(Integer projectItemId);
/** /** getByProjectItemCode
* @Title: getByProjectItemCode * @Title: getByProjectItemCode
* @Description: * @Description:
* @author zhiwj * @author zhiwj
......
...@@ -7,155 +7,248 @@ import com.gic.enterprise.dto.PushTypeDTO; ...@@ -7,155 +7,248 @@ import com.gic.enterprise.dto.PushTypeDTO;
import com.gic.enterprise.dto.UserMessageDTO; import com.gic.enterprise.dto.UserMessageDTO;
import java.util.Date; import java.util.Date;
/**
*
* @ClassName: PushMessageApiService
* @Description:
* @author taogs
* @date 2020/9/17 16:25
*/
public interface PushMessageApiService { public interface PushMessageApiService {
/** @Description: 保存通知类型 /**
* 保存通知类型
* @Title: 保存通知类型
* @Description:
* @author taogs * @author taogs
* @Date 16:52 2019/11/27 * @param pushTypeDTO
* @Param * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @return * @throws
*/ */
ServiceResponse<Integer> savePushType(PushTypeDTO pushTypeDTO); ServiceResponse<Integer> savePushType(PushTypeDTO pushTypeDTO);
/** @Description: 分页查询通知类型 /**
* 分页查询
* @Title: 分页查询
* @Description:
* @author taogs * @author taogs
* @Date 16:52 2019/11/27 * @param search
* @Param * @param pageNum
* @return * @param pageSize
* @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.enterprise.dto.PushTypeDTO>>
* @throws
*/ */
ServiceResponse<Page<PushTypeDTO>> pagePushType(String search, int pageNum, int pageSize); ServiceResponse<Page<PushTypeDTO>> pagePushType(String search, int pageNum, int pageSize);
/** @Description: 通过id获取通知类型 /**
* getPushTypeById
* @Title: getPushTypeById
* @Description:
* @author taogs * @author taogs
* @Date 16:53 2019/11/27 * @param pushTypeId
* @Param * @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.PushTypeDTO>
* @return * @throws
*/ */
ServiceResponse<PushTypeDTO> getPushTypeById(Integer pushTypeId); ServiceResponse<PushTypeDTO> getPushTypeById(Integer pushTypeId);
/** @Description: 删除通知类型 /**
* deletePushType
* @Title: deletePushType
* @Description:
* @author taogs * @author taogs
* @Date 16:53 2019/11/27 * @param pushTypeId
* @Param * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @return * @throws
*/ */
ServiceResponse<Integer> deletePushType(Integer pushTypeId); ServiceResponse<Integer> deletePushType(Integer pushTypeId);
/** @Description: 保存通知消息 /**
* savePushMessage
* @Title: savePushMessage
* @Description:
* @author taogs * @author taogs
* @Date 16:53 2019/11/27 * @param pushMessageDTO
* @Param * @param saveType
* @return * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws
*/ */
ServiceResponse<Integer> savePushMessage(PushMessageDTO pushMessageDTO, int saveType); ServiceResponse<Integer> savePushMessage(PushMessageDTO pushMessageDTO, int saveType);
/** @Description: 分页查询通知消息 /**
* @author taogs * pagePushMessage
* @Date 16:53 2019/11/27 * @Title: pagePushMessage
* @Param * @Description:
* @return * @author taogs
* @param search
* @param pushStatus
* @param startTime
* @param endTime
* @param pageNum
* @param pageSize
* @param pushClassifyId
* @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.enterprise.dto.PushMessageDTO>>
* @throws
*/ */
ServiceResponse<Page<PushMessageDTO>> pagePushMessage(String search, Integer pushStatus, Date startTime, ServiceResponse<Page<PushMessageDTO>> pagePushMessage(String search, Integer pushStatus, Date startTime,
Date endTime, Integer pageNum, Integer pageSize, Integer pushClassifyId); Date endTime, Integer pageNum, Integer pageSize, Integer pushClassifyId);
/** @Description: 获取通知详情 /**
* getPushMessageById
* @Title: getPushMessageById
* @Description:
* @author taogs * @author taogs
* @Date 16:54 2019/11/27 * @param messageId
* @Param * @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.PushMessageDTO>
* @return * @throws
*/ */
ServiceResponse<PushMessageDTO> getPushMessageById(Integer messageId); ServiceResponse<PushMessageDTO> getPushMessageById(Integer messageId);
/**
* getUserMessageDetail
* @Title: getUserMessageDetail
* @Description:
* @author taogs
* @param messageId
* @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.UserMessageDTO>
* @throws
*/
ServiceResponse<UserMessageDTO> getUserMessageDetail(Integer messageId); ServiceResponse<UserMessageDTO> getUserMessageDetail(Integer messageId);
/** @Description: 删除通知消息 /**
* deletePushMessage
* @Title: deletePushMessage
* @Description:
* @author taogs * @author taogs
* @Date 16:54 2019/11/27 * @param messageId
* @Param * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @return * @throws
*/ */
ServiceResponse<Integer> deletePushMessage(Integer messageId); ServiceResponse<Integer> deletePushMessage(Integer messageId);
/** @Description: 定时器消息发送 /**
* pushMessageTask
* @Title: pushMessageTask
* @Description:
* @author taogs * @author taogs
* @Date 16:54 2019/11/27 * @param param
* @Param * @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>
* @return * @throws
*/ */
ServiceResponse<Void> pushMessageTask(String param); ServiceResponse<Void> pushMessageTask(String param);
/** @Description: 队列任务消费 /**
* consumeMessageTask
* @Title: consumeMessageTask
* @Description:
* @author taogs * @author taogs
* @Date 16:55 2019/11/27 * @param param
* @Param * @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>
* @return * @throws
*/ */
ServiceResponse<Void> consumeMessageTask(String param); ServiceResponse<Void> consumeMessageTask(String param);
/** @Description: 查询我的消息 /**
* @author taogs * pageUserMessage
* @Date 16:55 2019/11/27 * @Title: pageUserMessage
* @Param * @Description:
* @return * @author taogs
* @param userId
* @param search
* @param status
* @param startTime
* @param endTime
* @param pushClassifyId
* @param pageNum
* @param pageSize
* @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.enterprise.dto.UserMessageDTO>>
* @throws
*/ */
ServiceResponse<Page<UserMessageDTO>> pageUserMessage(Integer userId, String search, Integer status, ServiceResponse<Page<UserMessageDTO>> pageUserMessage(Integer userId, String search, Integer status,
Date startTime, Date endTime, Integer pushClassifyId, Date startTime, Date endTime, Integer pushClassifyId,
Integer pageNum, Integer pageSize); Integer pageNum, Integer pageSize);
/** @Description: 撤销通知 /**
* 撤销消息
* @Title: 撤销消息
* @Description:
* @author taogs * @author taogs
* @Date 17:00 2019/11/27 * @param messageId
* @Param * @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>
* @return * @throws
*/ */
ServiceResponse<Void> recallMessage(Integer messageId); ServiceResponse<Void> recallMessage(Integer messageId);
/** @Description: 消息总数 /**
* 消息总数
* @Title: 消息总数
* @Description:
* @author taogs * @author taogs
* @Date 17:00 2019/11/27 * @param userId
* @Param * @param search
* @return * @param status
* @param startTime
* @param endTime
* @param pushClassifyId
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws
*/ */
ServiceResponse<Integer> totalUserMessage(Integer userId, String search, Integer status, ServiceResponse<Integer> totalUserMessage(Integer userId, String search, Integer status,
Date startTime, Date endTime, Integer pushClassifyId); Date startTime, Date endTime, Integer pushClassifyId);
/** @Description: 推送消息接口 /**
* 消息推送接口
* @Title: 消息推送接口
* @Description:
* @author taogs * @author taogs
* @Date 17:00 2019/11/27 * @param enterpriseId
* @Param * @param userId
* @return * @param classify
* @param title
* @param content
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws
*/ */
ServiceResponse<Integer> pushUserMessage(Integer enterpriseId, Integer userId, String classify, String title, String content); ServiceResponse<Integer> pushUserMessage(Integer enterpriseId, Integer userId, String classify, String title, String content);
/** @Description: 商户下所有管理员推送消息 /**
* 商户下所有管理员推送
* @Title: 商户下所有管理员推送
* @Description:
* @author taogs * @author taogs
* @Date 15:23 2020/3/9 * @param enterpriseId
* @Param * @param classify
* @return * @param title
* @param content
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws
*/ */
ServiceResponse<Integer> pushMessage(Integer enterpriseId, String classify, String title, String content); ServiceResponse<Integer> pushMessage(Integer enterpriseId, String classify, String title, String content);
/** @Description: 所有标记为已读 /**
* 标记为已读
* @Title: 标记为已读
* @Description:
* @author taogs * @author taogs
* @Date 17:01 2019/11/27 * @param userId
* @Param * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @return * @throws
*/ */
ServiceResponse<Integer> readAll(Integer userId); ServiceResponse<Integer> readAll(Integer userId);
/** @Description: 设置消息为已读 /**
* readMessage
* @Title: readMessage
* @Description:
* @author taogs * @author taogs
* @Date 19:00 2019/11/27 * @param messageId
* @Param * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @return * @throws
*/ */
ServiceResponse<Integer> readMessage(Integer messageId); ServiceResponse<Integer> readMessage(Integer messageId);
......
...@@ -5,105 +5,185 @@ import com.gic.api.base.commons.ServiceResponse; ...@@ -5,105 +5,185 @@ import com.gic.api.base.commons.ServiceResponse;
import com.gic.enterprise.dto.*; import com.gic.enterprise.dto.*;
import java.util.List; import java.util.List;
/**
*
* @ClassName: QrCodeApiService
* @Description:
* @author taogs
* @date 2020/9/17 16:26
*/
public interface QrCodeApiService { public interface QrCodeApiService {
/** @Description: 二维码场景分类查询 /**
* listQrCodeScenesClassify
* @Title: listQrCodeScenesClassify
* @Description:
* @author taogs * @author taogs
* @Date 10:43 2019/11/1 * @param enterpriseId
* @Param * @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.enterprise.dto.QrcodeScenesClassifyDTO>>
* @return * @throws
*/ */
ServiceResponse<List<QrcodeScenesClassifyDTO>> listQrCodeScenesClassify(Integer enterpriseId); ServiceResponse<List<QrcodeScenesClassifyDTO>> listQrCodeScenesClassify(Integer enterpriseId);
/**
/** @Description: 二维码场景值分类保存 * saveQrCodeScenesClassify
* @Title: saveQrCodeScenesClassify
* @Description:
* @author taogs * @author taogs
* @Date 10:44 2019/11/1 * @param classifyDTO
* @Param * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @return * @throws
*/ */
ServiceResponse<Integer> saveQrCodeScenesClassify(QrcodeScenesClassifyDTO classifyDTO); ServiceResponse<Integer> saveQrCodeScenesClassify(QrcodeScenesClassifyDTO classifyDTO);
/**
* getQrcodeScenesClassify
* @Title: getQrcodeScenesClassify
* @Description:
* @author taogs
* @param id
* @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.QrcodeScenesClassifyDTO>
* @throws
*/
ServiceResponse<QrcodeScenesClassifyDTO> getQrcodeScenesClassify(Integer id); ServiceResponse<QrcodeScenesClassifyDTO> getQrcodeScenesClassify(Integer id);
/**
* deleteQrcodeScenesClassify
* @Title: deleteQrcodeScenesClassify
* @Description:
* @author taogs
* @param id
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws
*/
ServiceResponse<Integer> deleteQrcodeScenesClassify(Integer id); ServiceResponse<Integer> deleteQrcodeScenesClassify(Integer id);
/** @Description: 保存二维码场景 /**
* saveQrCodeScenes
* @Title: saveQrCodeScenes
* @Description:
* @author taogs * @author taogs
* @Date 10:49 2019/11/1 * @param qrcodeScenesDTO
* @Param * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @return * @throws
*/ */
ServiceResponse<Integer> saveQrCodeScenes(QrcodeScenesDTO qrcodeScenesDTO); ServiceResponse<Integer> saveQrCodeScenes(QrcodeScenesDTO qrcodeScenesDTO);
/**
* pageQrCodeScenes
/** @Description: 分页查询二维码场景 * @Title: pageQrCodeScenes
* @Description:
* @author taogs * @author taogs
* @Date 10:49 2019/11/1 * @param enterpriseId
* @Param * @param search
* @return * @param classifyId
* @param pageNum
* @param pageSize
* @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.enterprise.dto.QrcodeScenesDTO>>
* @throws
*/ */
ServiceResponse<Page<QrcodeScenesDTO>> pageQrCodeScenes(Integer enterpriseId, String search, ServiceResponse<Page<QrcodeScenesDTO>> pageQrCodeScenes(Integer enterpriseId, String search,
Integer classifyId, int pageNum, int pageSize); Integer classifyId, int pageNum, int pageSize);
/**
* getQrcodeScenesById
* @Title: getQrcodeScenesById
* @Description:
* @author taogs
* @param scenedId
* @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.QrcodeScenesDTO>
* @throws
*/
ServiceResponse<QrcodeScenesDTO> getQrcodeScenesById(Integer scenedId); ServiceResponse<QrcodeScenesDTO> getQrcodeScenesById(Integer scenedId);
/**
/** @Description: 更改场景值状态 * openScenesStatus
* @Title: openScenesStatus
* @Description:
* @author taogs * @author taogs
* @Date 10:53 2019/11/1 * @param scenesId
* @Param * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @return * @throws
*/ */
ServiceResponse<Integer> openScenesStatus(Integer scenesId); ServiceResponse<Integer> openScenesStatus(Integer scenesId);
/**
* closeScenesStatus
/** @Description: 更改场景值状态 * @Title: closeScenesStatus
* @Description:
* @author taogs * @author taogs
* @Date 10:53 2019/11/1 * @param scenesId
* @Param * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @return * @throws
*/ */
ServiceResponse<Integer> closeScenesStatus(Integer scenesId); ServiceResponse<Integer> closeScenesStatus(Integer scenesId);
/**
* deleteScenes
* @Title: deleteScenes
/** @Description: 删除场景值 * @Description:
* @author taogs * @author taogs
* @Date 10:53 2019/11/1 * @param scenesId
* @Param * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @return * @throws
*/ */
ServiceResponse<Integer> deleteScenes(Integer scenesId); ServiceResponse<Integer> deleteScenes(Integer scenesId);
/**
/** @Description: 保存场景值 * saveScenesValue
* @Title: saveScenesValue
* @Description:
* @author taogs * @author taogs
* @Date 10:54 2019/11/1 * @param qrcodeScenesValueDTO
* @Param * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @return * @throws
*/ */
ServiceResponse<Integer> saveScenesValue(QrcodeScenesValueDTO qrcodeScenesValueDTO); ServiceResponse<Integer> saveScenesValue(QrcodeScenesValueDTO qrcodeScenesValueDTO);
/**
/** @Description: 二维码场景值查询 * pageQrCodeScenesValue
* @Title: pageQrCodeScenesValue
* @Description:
* @author taogs * @author taogs
* @Date 11:21 2019/11/1 * @param search
* @Param * @param scenesId
* @return * @param enterpriseId
* @param pageNum
* @param pageSize
* @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.enterprise.dto.QrcodeScenesValueDTO>>
* @throws
*/ */
ServiceResponse<Page<QrcodeScenesValueDTO>> pageQrCodeScenesValue(String search, Integer scenesId, ServiceResponse<Page<QrcodeScenesValueDTO>> pageQrCodeScenesValue(String search, Integer scenesId,
Integer enterpriseId, int pageNum, int pageSize); Integer enterpriseId, int pageNum, int pageSize);
/**
/** @Description: * deleteQrcodeScenesValue
* @Title: deleteQrcodeScenesValue
* @Description:
* @author taogs * @author taogs
* @Date 9:44 2019/11/4 * @param valueId
* @Param * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @return * @throws
*/ */
ServiceResponse<Integer> deleteQrcodeScenesValue(Integer valueId); ServiceResponse<Integer> deleteQrcodeScenesValue(Integer valueId);
/**
* saveQrcodeDownload
* @Title: saveQrcodeDownload
* @Description:
* @author taogs
* @param qrcodeDTO
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws
*/
ServiceResponse<Integer> saveQrcodeDownload(QrcodeDTO qrcodeDTO); ServiceResponse<Integer> saveQrcodeDownload(QrcodeDTO qrcodeDTO);
/**
* getQrcodeDownload
* @Title: getQrcodeDownload
* @Description:
* @author taogs
* @param id
* @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.QrcodeDTO>
* @throws
*/
ServiceResponse<QrcodeDTO> getQrcodeDownload(Integer id); ServiceResponse<QrcodeDTO> getQrcodeDownload(Integer id);
/**
* getQrCodeValueById
* @Title: getQrCodeValueById
* @Description:
* @author taogs
* @param id
* @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.QrCodeValueDTO>
* @throws
*/
ServiceResponse<QrCodeValueDTO> getQrCodeValueById(String id); ServiceResponse<QrCodeValueDTO> getQrCodeValueById(String id);
} }
...@@ -22,7 +22,7 @@ public interface RecordingStorageRecordApiService { ...@@ -22,7 +22,7 @@ public interface RecordingStorageRecordApiService {
*/ */
ServiceResponse<Void> saveRecordingStorageRecord(RecordingStorageRecordDTO recordingStorageRecordDTO); ServiceResponse<Void> saveRecordingStorageRecord(RecordingStorageRecordDTO recordingStorageRecordDTO);
/** /** run
* @Title: run * @Title: run
* @Description: * @Description:
* @author zhiwj * @author zhiwj
...@@ -32,7 +32,7 @@ public interface RecordingStorageRecordApiService { ...@@ -32,7 +32,7 @@ public interface RecordingStorageRecordApiService {
*/ */
ServiceResponse<Void> run(String arg); ServiceResponse<Void> run(String arg);
/** /**executeDatabase
* @Title: executeDatabase * @Title: executeDatabase
* @Description: * @Description:
* @author zhiwj * @author zhiwj
......
...@@ -53,6 +53,7 @@ public interface RiskModeApiService { ...@@ -53,6 +53,7 @@ public interface RiskModeApiService {
* @param enterpriseId * @param enterpriseId
* @param userId * @param userId
* @param duration * @param duration
* @param applyReason
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer> * @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws * @throws
*/ */
......
...@@ -12,6 +12,7 @@ import com.gic.enterprise.dto.SmsRecordDTO; ...@@ -12,6 +12,7 @@ import com.gic.enterprise.dto.SmsRecordDTO;
public interface SmsRecordApiService { public interface SmsRecordApiService {
/** /**
* 校验商户能否发送短信
* @Title: verifySendSms * @Title: verifySendSms
* @Description: 校验商户能否发送短信 * @Description: 校验商户能否发送短信
* @author zhiwj * @author zhiwj
...@@ -34,7 +35,7 @@ public interface SmsRecordApiService { ...@@ -34,7 +35,7 @@ public interface SmsRecordApiService {
*/ */
ServiceResponse<Void> saveSmsRecord(SmsRecordDTO smsRecordDTO); ServiceResponse<Void> saveSmsRecord(SmsRecordDTO smsRecordDTO);
/** /** run
* @Title: run * @Title: run
* @Description: * @Description:
* @author zhiwj * @author zhiwj
...@@ -44,7 +45,7 @@ public interface SmsRecordApiService { ...@@ -44,7 +45,7 @@ public interface SmsRecordApiService {
*/ */
ServiceResponse<Void> run(String arg); ServiceResponse<Void> run(String arg);
/** /** run
* @Title: executeDatabase * @Title: executeDatabase
* @Description: * @Description:
* @author zhiwj * @author zhiwj
......
...@@ -23,7 +23,7 @@ public interface VoiceCodeRecordApiService { ...@@ -23,7 +23,7 @@ public interface VoiceCodeRecordApiService {
*/ */
ServiceResponse<Void> saveVoiceCodeRecord(VoiceCodeRecordDTO voiceCodeRecordDTO); ServiceResponse<Void> saveVoiceCodeRecord(VoiceCodeRecordDTO voiceCodeRecordDTO);
/** /** run
* @Title: run * @Title: run
* @Description: * @Description:
* @author zhiwj * @author zhiwj
...@@ -34,6 +34,7 @@ public interface VoiceCodeRecordApiService { ...@@ -34,6 +34,7 @@ public interface VoiceCodeRecordApiService {
ServiceResponse<Void> run(String arg); ServiceResponse<Void> run(String arg);
/** /**
* executeDatabase
* @Title: executeDatabase * @Title: executeDatabase
* @Description: * @Description:
* @author zhiwj * @author zhiwj
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment