Compare commits

..

No commits in common. "6a540f9254c2dcf9f7dc847679e8a7f8972c7c8a" and "5a3b9be923d26953c9897bfd029cdf943a01a511" have entirely different histories.

3 changed files with 2 additions and 11 deletions

View File

@ -1,18 +1,12 @@
package com.nflg.qms.admin.service;
import com.nflg.wms.repository.entity.QmsTodoItem;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public interface ISendMessageService {
Logger log = LoggerFactory.getLogger(ISendMessageService.class);
/**
* 发送待办消息
* @param item 待办事项
*/
default void sendSystemMessage(QmsTodoItem item){
log.warn("方法未实现");
}
void sendSystemMessage(QmsTodoItem item);
}

View File

@ -1,7 +1,5 @@
package com.nflg.wms.common.pojo.qo;
import jakarta.validation.constraints.Max;
import jakarta.validation.constraints.Min;
import jakarta.validation.constraints.NotNull;
import lombok.Data;
@ -35,7 +33,5 @@ public class QmsFileMemberAddQO {
* 权限类型1-只读2-读写
*/
@NotNull(message = "权限类型不能为空")
@Min(value = 1, message = "权限类型仅支持1(只读)或2(读写)")
@Max(value = 2, message = "权限类型仅支持1(只读)或2(读写)")
private Short permissionType;
}

View File

@ -116,6 +116,7 @@ public class QmsInspectionStandardSaveQO {
/**
* 检测项名称
*/
@NotBlank(message = "检测项内容不能为空")
private String name;
/**