完善Excel模板文本格式与资产状态下拉
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package com.ruoyi.common.annotation;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
/**
|
||||
* Excel文本格式注解
|
||||
* 用于在生成Excel模板时将列设置为文本格式,避免证件号等内容被自动转成数值。
|
||||
*
|
||||
* @author ruoyi
|
||||
*/
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Target(ElementType.FIELD)
|
||||
public @interface TextFormat {
|
||||
}
|
||||
Reference in New Issue
Block a user