mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-23 23:45:08 +08:00
[feat] 1.项目信息管理增加序号自增
[fix] 1.修改附件存储数据格式
This commit is contained in:
@ -0,0 +1,32 @@
|
||||
package cn.iocoder.yudao.framework.common.enums;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* @author hhyykk
|
||||
* @description 流程状态枚举
|
||||
* @date 2024/7/8
|
||||
*/
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
public enum ProcessStatusEnum {
|
||||
|
||||
// 审批中
|
||||
APPROVAL_IN_PROGRESS(1, "审批中"),
|
||||
// 审批通过
|
||||
APPROVAL_PASS(2, "审批通过"),
|
||||
// 审批不通过
|
||||
APPROVAL_NOT_PASS(3, "审批不通过"),
|
||||
// 已取消
|
||||
CANCELLED(4, "已取消");
|
||||
|
||||
/**
|
||||
* 类型
|
||||
*/
|
||||
private final Integer interval;
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
private final String name;
|
||||
}
|
@ -0,0 +1,27 @@
|
||||
package cn.iocoder.yudao.framework.common.pojo;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author hhyykk
|
||||
* @description
|
||||
* @date 2024/7/8
|
||||
*/
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class FileDTO implements Serializable {
|
||||
|
||||
/**
|
||||
* 文件名
|
||||
*/
|
||||
private String name;
|
||||
/**
|
||||
* 文件地址
|
||||
*/
|
||||
private String url;
|
||||
}
|
Reference in New Issue
Block a user