All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.mengwang0211.entity.Sheet Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package io.github.mengwang0211.entity;

import lombok.Data;

import java.util.ArrayList;
import java.util.List;

/**
 * sheet
 */
@Data
public class Sheet {

    /**
    *  排序
    */
    private int order;

    /**
    *  名称
    */
    private String name;

    /**
     * 表头
     */
    List heads = new ArrayList();

    private Body body;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy