PostDischargePatientManage/postdischarge-common/src/main/java/com/xinelu/common/constant/FileUploadPathConstants.java

30 lines
632 B
Java
Raw Normal View History

2024-03-05 17:30:49 +08:00
package com.xinelu.common.constant;
/**
* @description: 文件上传路径常量
* @author: haown
* @create: 2024-03-01 10:39
**/
public class FileUploadPathConstants {
/**
* 签约知情书上传路径
*/
public static final String SIGN_INFORMED_TYPE = "signInformedFileUrl";
/**
* 宣教封面上传路径
*/
public static final String PROPAGANDA_COVER_TYPE = "propagandaCoverUrl";
/**
* 素材封面上传路径
*/
public static final String MATERIALS_COVER_TYPE = "materialsCoverUrl";
/**
* 素材库视频上传路径
*/
public static final String MATERIALS_VIDEO_TYPE = "materialsVideoUrl";
}