@Target(value=FIELD) @Retention(value=RUNTIME) @Documented public @interface DictDesc
This annotation is typically used in Web return objects, for example:
{@code
public class OrderInfo {
private String orderStatus;public abstract String field
For example, if the field name is "orderStatusDesc", it corresponds to "orderStatus" by default. If the actual corresponding field name is different, you need to specify this attribute explicitly, otherwise the corresponding translation will not be found
Copyright © 2025. All rights reserved.