You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
350 B
21 lines
350 B
package {{ package.Entity }};
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* <p>
|
|
* 枚举自增
|
|
* </p>
|
|
*
|
|
* @author zmm
|
|
* @since 2026-03-12
|
|
*/
|
|
@Data
|
|
public class CommonVueEnumsEntity {
|
|
private static final long serialVersionUID = 1L;
|
|
private String fieldName;
|
|
private String fieldLabel;
|
|
private List<AdminEnums> options;
|
|
}
|
|
|