dashboard
repositories
filestore
activity
search
login
main
/
xc-mall
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
20221219 1、生成物流单号 2、支付后订单状态自动成为待收货状态 3、新增编辑商品后,会自动计算补贴金额和商品星级,并显示在后台商品列表中
xiaoyong931011
2022-12-19
1a3cb3d15f1c159d12f7569c9058e6fbc114969a
[xc-mall.git]
/
src
/
main
/
java
/
cc
/
mrbird
/
febs
/
common
/
entity
/
ImageType.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package cc.mrbird.febs.common.entity;
/**
* 图片类型常量类
*
* @author MrBird
*/
public interface ImageType {
/**
* gif类型
*/
String GIF = "gif";
/**
* png类型
*/
String PNG = "png";
}