feat(property): 新增入驻员工登录功能

This commit is contained in:
2025-09-05 17:55:47 +08:00
parent 7cef50cc19
commit 87f5ee97fa
43 changed files with 618 additions and 117 deletions

View File

@@ -0,0 +1,19 @@
package org.dromara.common.core.exception.residentPerson;
import org.dromara.common.core.exception.base.BaseException;
import java.io.Serial;
/**
* @author lsm
* @apiNote ResidentPersonException
* @since 2025/9/5
*/
public class ResidentPersonException extends BaseException {
@Serial
private static final long serialVersionUID = 1L;
public ResidentPersonException(String message) {
super("residentPerson", null, null, message);
}
}