Commit 3923ea0b by 陶光胜

代码规范

parent b81f98bc
......@@ -55,7 +55,7 @@ public enum SmsAppEnum {
private String code;
private String name;
// 需要权限控制
/**需要权限控制*/
private boolean isCtrl;
SmsAppEnum(String code, String name, boolean isCtrl) {
......
......@@ -2,7 +2,13 @@ package com.gic.enterprise.dto;
import java.io.Serializable;
import java.util.Date;
/**
*
* @ClassName: BillingOrderDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:23
*/
public class BillingOrderDTO implements Serializable {
private static final long serialVersionUID = -2050607465329409777L;
......
......@@ -2,9 +2,12 @@ package com.gic.enterprise.dto;
import java.io.Serializable;
import java.util.Date;
/**
* tab_billing_sms_record
*
* @ClassName: BillingSmsRecordDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:23
*/
public class BillingSmsRecordDTO implements Serializable {
/**
......
package com.gic.enterprise.dto;
import java.io.Serializable;
/**
*
* @ClassName: CustomChatFiledDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:23
*/
public class CustomChatFiledDTO implements Serializable {
private String key;
private String value;
......
......@@ -4,7 +4,11 @@ import java.io.Serializable;
import java.util.Date;
/**
* tab_custom_guide
*
* @ClassName: CustomGuideDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:23
*/
public class CustomGuideDTO implements Serializable {
/**
......
......@@ -4,7 +4,11 @@ import java.io.Serializable;
import java.util.Date;
/**
* tab_custom_store
*
* @ClassName: CustomStoreDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:23
*/
public class CustomStoreDTO implements Serializable {
/**
......
......@@ -4,7 +4,11 @@ import java.io.Serializable;
import java.util.Date;
/**
* tab_custom_udesk_field
*
* @ClassName: CustomUdeskFieldDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:24
*/
public class CustomUdeskFieldDTO implements Serializable {
private static final long serialVersionUID = 3629705521334915819L;
......
......@@ -4,7 +4,11 @@ import java.io.Serializable;
import java.util.List;
/**
* tab_store_dict
*
* @ClassName: DictDTO
* @Description:
* @author taogs
* @date 2020/9/16 16:53
*/
public class DictDTO implements Serializable {
......@@ -46,4 +50,14 @@ public class DictDTO implements Serializable {
public List<DictDTO> getDictList() {
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 {
/**
* 被叫
*/
// @NotBlank(message = "被叫名")
private String calledName;
/**
......@@ -288,4 +287,30 @@ public class DoubleCallingRecordDTO implements Serializable {
public void setRemark(String 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 {
public void setUpdateTime(Date 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 {
public void setProjectCode(String 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{
this.phoneAreaCode = phoneAreaCode;
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{
public void setIsInitConfig(Integer 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{
this.licenseCode = licenseCode;
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{
this.goodsCount = goodsCount;
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{
public void setResourceSwitch(Integer 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;
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 {
/**
......@@ -162,4 +166,22 @@ public class EnterpriseSmsPackageDTO implements Serializable {
public void setRemainAccount(Integer 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;
import java.util.Date;
/**
* tab_guide_type
*
* @ClassName: GuideTypeDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:24
*/
public class GuideTypeDTO implements Serializable {
/**
......@@ -59,4 +63,14 @@ public class GuideTypeDTO implements Serializable {
public void setPath(String 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;
import java.util.Date;
/**
* tab_hellp_center
*
* @ClassName: HelpCenterDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:25
*/
public class HelpCenterDTO implements Serializable {
/**
......@@ -98,4 +102,17 @@ public class HelpCenterDTO implements Serializable {
public void setIsShow(Integer 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{
public void setFee(Double fee) {
this.fee = fee;
}
@Override
public String toString() {
return "HomeStatisticsDTO{" +
"statisticsDate='" + statisticsDate + '\'' +
", fee=" + fee +
'}';
}
}
......@@ -195,4 +195,25 @@ public class IndexModuleDTO implements Serializable {
public String getModuleTemplateName() {
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 {
public void setNationCode(String 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{
this.businessLicense = businessLicense;
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> {
public int compareTo(LinkDTO o) {
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 {
/**
* 计划金额
*/
// @NotNull(message = "计划金额(应付金额)不能为空", groups = ConfirmPay.class)
private Double totalFee;
/**
* 订单金额(实付金额)
......@@ -53,12 +52,9 @@ public class OutPayDTO implements Serializable {
/**
* 产品类型 1:充值,2:短信套餐,3:服务,4:拓展包,5:套餐包
*/
// @NotNull(message = "购买类型不能为空", groups = {SavePrePay.class, ConfirmPay.class})
private Integer buyType;
/* *
* 1:短信 2:短信套餐 3:应用市场 4:双向呼叫 6:语音验证码 6:语音存储
* */
/** 1:短信 2:短信套餐 3:应用市场 4:双向呼叫 6:语音验证码 6:语音存储*/
@NotNull(message = "购买类型不能为空", groups = {SavePrePay.class, ConfirmPay.class})
private Integer buyProductType;
/**
......@@ -76,10 +72,8 @@ public class OutPayDTO implements Serializable {
private Integer payType;
// @NotBlank(message = "随机字符串不能为空", groups = {SavePrePay.class, ConfirmPay.class})
private String nonceStr;
// @NotBlank(message = "签名不能为空", groups = {SavePrePay.class, ConfirmPay.class})
private String sign;
@NotNull(message = "渠道来源不能为空", groups = {SavePrePay.class, ConfirmPay.class, CancelPay.class})
......@@ -231,4 +225,27 @@ public class OutPayDTO implements Serializable {
public void setInitiatorName(String 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;
import java.io.Serializable;
/**
*
* @ClassName: PackageDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:25
*/
public class PackageDTO implements Serializable {
/**
* 套餐包名称
......@@ -51,4 +57,14 @@ public class PackageDTO implements Serializable {
public void setDesc(String 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;
import java.io.Serializable;
import java.util.Date;
/**
*
* @ClassName: PlatformBrandDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:25
*/
public class PlatformBrandDTO implements Serializable {
private static final long serialVersionUID = -6619834227070771185L;
......@@ -97,4 +103,18 @@ public class PlatformBrandDTO implements Serializable {
public void setUpdateTime(Date 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;
import java.io.Serializable;
import java.util.Date;
/**
*
* @ClassName: PlatformBrandRefDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:25
*/
public class PlatformBrandRefDTO implements Serializable {
private static final long serialVersionUID = -1183766055952427246L;
private Integer platformBrandRefId;
......@@ -168,4 +174,24 @@ public class PlatformBrandRefDTO implements Serializable {
public void setGoodsBrandName(String 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{
public void setUpdateTime(Date 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 {
public Integer getSeq() {
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 {
public void setStoreGroupName(String 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;
import java.util.Date;
/**
* tab_push_message
*
* @ClassName: PushMessageDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:26
*/
public class PushMessageDTO implements Serializable {
/**
......@@ -213,4 +217,26 @@ public class PushMessageDTO implements Serializable {
public void setPushClassifyId(Integer 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;
import java.util.Date;
/**
* tab_push_type
*
* @ClassName: PushTypeDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:26
*/
public class PushTypeDTO implements Serializable {
/**
......@@ -84,4 +88,16 @@ public class PushTypeDTO implements Serializable {
public void setClassifyDesc(String 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;
import java.io.Serializable;
/**
*
* @ClassName: QrCodeValueDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:30
*/
public class QrCodeValueDTO implements Serializable {
/**二维码类型,1门店 2导购**/
private Integer qrCodeType;
......@@ -23,4 +29,12 @@ public class QrCodeValueDTO implements Serializable {
public void setValue(String value) {
this.value = value;
}
@Override
public String toString() {
return "QrCodeValueDTO{" +
"qrCodeType=" + qrCodeType +
", value='" + value + '\'' +
'}';
}
}
......@@ -3,7 +3,13 @@ package com.gic.enterprise.dto;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
/**
*
* @ClassName: QrcodeDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:26
*/
public class QrcodeDTO implements Serializable {
private Integer h5 = 0;
private String appletIds;
......@@ -125,4 +131,23 @@ public class QrcodeDTO implements Serializable {
public void setQrCodeType(Integer 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;
import java.util.Date;
/**
* tab_qrcode_scenes_classify
*
* @ClassName: QrcodeScenesClassifyDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:26
*/
public class QrcodeScenesClassifyDTO implements Serializable {
/**
......@@ -84,4 +88,16 @@ public class QrcodeScenesClassifyDTO implements Serializable {
public void setStatus(Integer 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;
import java.util.Date;
/**
* tab_qrcode_scenes
*
* @ClassName: QrcodeScenesDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:27
*/
public class QrcodeScenesDTO implements Serializable {
/**
......@@ -120,4 +124,19 @@ public class QrcodeScenesDTO implements Serializable {
public void setScenesClassifyName(String 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;
import java.util.Date;
/**
* tab_qrcode_scenes_value
*
* @ClassName: QrcodeScenesValueDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:28
*/
public class QrcodeScenesValueDTO implements Serializable {
/**
......@@ -110,4 +114,18 @@ public class QrcodeScenesValueDTO implements Serializable {
public void setUpdateTime(Date 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 {
public void setRemark(String 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 {
/**
* 订单金额
*/
// @NotNull(message = "订单金额不能为空", groups = RefundValid.class)
private Double orderFee;
/**
* 退款金额
......@@ -137,4 +136,20 @@ public class RefundDTO implements Serializable {
public void setBuyProductType(Integer 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 {
public Date getDeductionTime() {
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;
import java.io.Serializable;
/**
*
* @ClassName: SmsPackageDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:33
*/
public class SmsPackageDTO implements Serializable {
private String smsPackageName;
private Integer itemCount;
......@@ -39,4 +45,14 @@ public class SmsPackageDTO implements Serializable {
public void setSmsPackageCode(String 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 {
public Date getEffectiveDate() {
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 {
public void setOperatorName(String 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 {
/**
* 会员ecuId
*/
// @NotNull(message = "会员ecuId不能为空", groups = SmsRecordValid.class)
private Long ecuId;
/**
......@@ -448,4 +447,43 @@ public class SmsRecordDTO implements Serializable {
public void setNoticeCode(String 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 {
public void setItemInfoUrl(String 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;
import java.io.Serializable;
import java.util.Date;
/**
*
* @ClassName: UserMessageDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:33
*/
public class UserMessageDTO implements Serializable {
private Integer messageId;
private String classify;
......@@ -67,4 +73,17 @@ public class UserMessageDTO implements Serializable {
public void setSign(Integer 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 {
public void setStoreGroupName(String 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{
public void setSubButton(List<WeChatMenuDTO> 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{
*/
private String payDetail;
// 购买数量
/**购买数量*/
private Integer serveQuantity;
private String skuId;
private String skuVersion;
......@@ -58,9 +58,7 @@ public class LicenseDTO implements Serializable{
private Integer skuPeriodDay;
private String skuInfo;
private String licenseUnit;
/**
* 已购买数量
*/
/**已购买数量*/
private Integer alreadyBuyQuantity;
private ServeLicenseDTO licenseDetail;
......@@ -212,4 +210,28 @@ public class LicenseDTO implements Serializable{
this.licenseDetail = licenseDetail;
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{
* 服务商id
*/
private String isvId;
//服务ID
/**服务ID*/
private String appServeId;
//是否可以购买 0不能购买 1购买 2续费 3升级 4扩容
/**是否可以购买 0不能购买 1购买 2续费 3升级 4扩容*/
private Integer canBuy = 1;
/**
* 优惠id
......@@ -50,7 +50,7 @@ public class MarketServiceDTO implements Serializable{
*/
private String discountDetail;
private String discountFee;
//返回页面购买的金额
/**返回页面购买的金额*/
private BigDecimal price;
/**
* 到期时间
......@@ -235,4 +235,27 @@ public class MarketServiceDTO implements Serializable{
}
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{
public void setLicenseName(String 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{
public void setOperName(String 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{
*/
private String serveImageUrl;
//购买数量
/**购买数量*/
private Integer buyQuantity;
//购买价格
/**购买价格*/
private BigDecimal buyPrice;
// 是否已购买
/**是否已购*/
private Boolean isBuy = false;
// 已购数量
/**已购数量*/
private Integer validQuantity = 0;
public Long getLicenseId() {
......
......@@ -78,4 +78,15 @@ public class SkuDTO implements Serializable{
public String getSkuDetailJson() {
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;
import java.io.Serializable;
import java.util.Date;
/**
*
* @ClassName: ConfigRuleDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:23
*/
public class ConfigRuleDTO implements Serializable{
private static final long serialVersionUID = -2992133298716031459L;
......
package com.gic.enterprise.dto.rule;
import java.io.Serializable;
/**
*
* @ClassName: EnterpriseListDTO
* @Description:
* @author taogs
* @date 2020/9/17 16:24
*/
public class EnterpriseListDTO implements Serializable{
private static final long serialVersionUID = -1472209420502006016L;
......@@ -72,4 +78,15 @@ public class EnterpriseListDTO implements Serializable{
this.ruleName = ruleName;
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{
this.enterpriseList = enterpriseList;
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{
this.updateTime = updateTime;
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{
this.ruleClassifySceneList = ruleClassifySceneList;
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{
this.marketName = marketName;
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{
this.marketName = marketName;
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{
this.updateTime = updateTime;
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{
this.enterpriseIdList = enterpriseIdList;
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{
this.updateTime = updateTime;
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{
this.ruleClassifyList = ruleClassifyList;
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{
this.updateTime = updateTime;
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 {
@NotNull(message = "审核id不能为空", groups = AuditView.class)
private Integer auditLogId;
// @NotBlank(message = "审核人openid不能为空", groups = AuditView.class)
/**@NotBlank(message = "审核人openid不能为空", groups = AuditView.class)*/
private String openid;
@NotNull(message = "审核结果不能为空", groups = AuditView.class)
private Integer auditResult;
......
......@@ -17,7 +17,7 @@ public class BuyForGicQO extends PageQO{
private Long enterpriseId;
//返回页面购买的金额
/**返回页面购买的金额*/
private BigDecimal price;
/**
......
......@@ -26,12 +26,9 @@ public class DownloadReportQO extends PageQO {
@Min(value = 0, message = "不存在该状态", groups = SelectValidView.class)
@Max(value = 5, message = "不存在该状态", groups = SelectValidView.class)
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 searchName;
private Integer auditResult;
private Date auditExpireTime;
private Date ltAuditExpireTime;
......
......@@ -37,7 +37,6 @@ public class LinkQO extends PageQO {
private Integer parentId;
@NotNull(message = "id不能为空", groups = LinkUpdateValid.class)
private Integer linkId;
// @NotNull(message = "适用对象不能为空", groups = LinkSaveValid.class)
private Integer objectType;
@NotBlank(message = "名称不能为空", groups = LinkSaveValid.class)
private String name;
......
......@@ -77,14 +77,16 @@ public interface BillingAccountApiService {
*/
ServiceResponse<Void> updateAccountAfterRecharge(double totalFee, Integer enterpriseId);
/**
* 支付完成后对余额扣费
* @Title: deductAccount
* @Description:
* @author zhiwj
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws
*/
/**
* deductAccount
* @Title: deductAccount
* @Description:
* @author taogs
* @param totalFee
* @param enterpriseId
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws
*/
ServiceResponse<Integer> deductAccount(double totalFee, Integer enterpriseId);
/**
......
......@@ -16,13 +16,14 @@ import com.gic.enterprise.dto.SmsPackageOrderItemDTO;
public interface BillingOrderApiService {
/**
* 添加一个订单,立即购买功能
* @Title: addOrder
* @Description:
* @author zhiwj
* saveSmsOrderBuyNow
* @Title: saveSmsOrderBuyNow
* @Description:
* @author taogs
* @param billingOrderDTO
* @param smsPackageOrderItemDTO
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Integer>
* @throws
* @throws
*/
ServiceResponse<Integer> saveSmsOrderBuyNow(BillingOrderDTO billingOrderDTO, SmsPackageOrderItemDTO smsPackageOrderItemDTO);
/**
......@@ -42,14 +43,17 @@ public interface BillingOrderApiService {
ServiceResponse<BillingPayInfoDTO> paySmsPackageOrder(Integer enterpriseId, Integer orderId, Integer payType, String authCode, String userName, Integer userId);
/**
* 条件分页查询订单状态
* listOrder
* @Title: listOrder
* @Description:
* @author zhiwj
* @param startTime 开始时间
* @param endTime 结束时间
* @param orderStatus 订单状态
* @param search 订单信息
* @author taogs
* @param startTime
* @param endTime
* @param orderStatus
* @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>>
* @throws
*/
......
......@@ -14,33 +14,35 @@ import com.gic.enterprise.qo.RechargeRecordQO;
public interface BillingRechargeRecordApiService {
/**
* listRechargeRecord
* @Title: listRechargeRecord
* @Description:
* @author zhiwj
* @Description:
* @author taogs
* @param rechargeRecordQO
* @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.BillingRechargeRecordDTO>
* @throws
* @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.enterprise.dto.BillingRechargeRecordDTO>>
* @throws
*/
ServiceResponse<Page<BillingRechargeRecordDTO>> listRechargeRecord(RechargeRecordQO rechargeRecordQO);
/**
* @Title: getRechargeRecord
* @Description:
* @author zhiwj
* @param rechargeRecordId
* @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.BillingRechargeRecordDTO>
* @throws
*/
/**
* getRechargeRecord
* @Title: getRechargeRecord
* @Description:
* @author taogs
* @param rechargeRecordId
* @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.BillingRechargeRecordDTO>
* @throws
*/
ServiceResponse<BillingRechargeRecordDTO> getRechargeRecord(Integer rechargeRecordId);
/**
*
* getRechargeRecordForApproval
* @Title: getRechargeRecordForApproval
* @Description:
* @author zhiwj
* @param serialNumber
* @Description:
* @author taogs
* @param serialNumber
* @return com.gic.api.base.commons.ServiceResponse<com.gic.enterprise.dto.BillingRechargeRecordDTO>
* @throws
* @throws
*/
ServiceResponse<BillingRechargeRecordDTO> getRechargeRecordForApproval(String serialNumber);
......
......@@ -3,7 +3,13 @@ package com.gic.enterprise.service;
import com.gic.api.base.commons.Page;
import com.gic.api.base.commons.ServiceResponse;
import com.gic.enterprise.dto.BillingSmsRecordDTO;
/**
*
* @ClassName: BillingSmsRecordApiService
* @Description:
* @author taogs
* @date 2020/9/17 16:23
*/
public interface BillingSmsRecordApiService {
/**
* pageSmspackageRecord
......
......@@ -185,14 +185,16 @@ public interface ConfigRuleApiService {

*/
ServiceResponse<EnterpriseRuleDetailDTO> getEnterpriseRuleDetail(Integer enterpriseRuleId);
/**
* 商户列表
* @Title: getEnterpriseList

* @Description:

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


*/
/**
* getEnterpriseList
* @Title: getEnterpriseList
* @Description:
* @author taogs
* @param search
* @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);
/**
......@@ -207,13 +209,15 @@ public interface ConfigRuleApiService {
/***************对接其他组*******************/
/**
* 应用code查询下面分类列表
* @Title: listRuleClassifyByAppCode

* @Description:

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


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


 */
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);
/**
......@@ -172,20 +181,46 @@ public interface EnterpriseApiService {
* @return com.gic.api.base.commons.ServiceResponse


 */
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);
/**
* 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);
/**
* 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);
/**
* @Title: buyForGicForNew

* @Description: 服务订购

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

* @Description:

 * @author guojuxing 

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


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