仪表盘
版本库
文件存储
活动
搜索
登录
main
/
product-inventory-management-after
产品供销存-后端
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
feat(production): 重构生产计划模块,新增和优化生产计划功能
zss
2026-04-24
99ac94a7cf412d9f0081c1d84b520eab051bb0fd
[product-inventory-management-after.git]
/
src
/
main
/
java
/
com
/
ruoyi
/
basic
/
enums
/
ApplicationTypeEnum.java
1
2
3
4
5
6
7
8
9
10
package com.ruoyi.basic.enums;
public enum ApplicationTypeEnum {
IMAGE("image"),
FILE("file");
private final String type;
ApplicationTypeEnum(String type) { this.type = type; }
public String getType() { return type; }
}