You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
442 B
Java
22 lines
442 B
Java
3 years ago
|
package com.glxp.api.res.system;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.util.Date;
|
||
|
|
||
|
@Data
|
||
|
public class SystemPDFTemplateResponse {
|
||
|
|
||
|
private int id;
|
||
|
private String name;
|
||
|
private int type;
|
||
|
private int module;
|
||
|
private String param;
|
||
|
private String path;
|
||
|
private int rowCount;
|
||
|
private int qrcodeCount;
|
||
|
private String remark;
|
||
|
private Date create_time;
|
||
|
private Date update_time;
|
||
|
private String jrxmlPath;
|
||
|
}
|