This commit is contained in:
2025-12-18 16:48:45 +08:00
parent b97f0da746
commit 41cbe2bd54
80 changed files with 5434 additions and 351 deletions

View File

@@ -0,0 +1,27 @@
package org.xyzh.common.dto.sys;
import org.xyzh.common.dto.BaseDTO;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@Data
@Schema(description = "来客信息")
public class TbGuestDTO extends BaseDTO{
private static final long serialVersionUID = 1L;
@Schema(description = "来客ID")
private String userId;
@Schema(description = "姓名")
private String name;
@Schema(description = "电话")
private String phone;
@Schema(description = "邮箱")
private String email;
@Schema(description = "微信ID")
private String wechatId;
}

View File

@@ -24,9 +24,15 @@ public class BaseVO implements Serializable {
@Schema(description = "创建人")
private String creator;
@Schema(description = "创建人名称")
private String creatorName;
@Schema(description = "更新人")
private String updater;
@Schema(description = "更新人名称")
private String updaterName;
@Schema(description = "部门路径")
private String deptPath;