mirror of
https://gitee.com/elegant_wings/dbd-meeting.git
synced 2025-06-22 05:59:37 +08:00
38 lines
773 B
Java
38 lines
773 B
Java
![]() |
package com.ics.admin.domain;
|
||
|
|
||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||
|
import lombok.Data;
|
||
|
|
||
|
import javax.persistence.GeneratedValue;
|
||
|
import javax.persistence.GenerationType;
|
||
|
import javax.persistence.Id;
|
||
|
import java.io.Serializable;
|
||
|
|
||
|
/**
|
||
|
* 入园申请相关文件对象 ics_apply_park_files
|
||
|
*
|
||
|
* @author zzm
|
||
|
* @date 2021-04-12
|
||
|
*/
|
||
|
@Data
|
||
|
@TableName("ics_apply_park_file")
|
||
|
public class ApplyParkFile implements Serializable {
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/**
|
||
|
* ID
|
||
|
*/
|
||
|
@Id
|
||
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||
|
private Long id;
|
||
|
|
||
|
/** 申请入园id */
|
||
|
private Long applyParkId;
|
||
|
|
||
|
/** 文件名称 */
|
||
|
private String fileName;
|
||
|
|
||
|
/** 文件路径 */
|
||
|
private String filePath;
|
||
|
|
||
|
}
|