| | |
| | | package com.ycl.jxkg.domain.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.FieldFill; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.ycl.jxkg.domain.base.AbsEntity; |
| | |
| | | @TableField("image_path") |
| | | private String imagePath; |
| | | |
| | | @TableField("create_time") |
| | | @TableField(value = "create_time", fill = FieldFill.INSERT) |
| | | private Date createTime; |
| | | |
| | | @TableField("modify_time") |
| | | @TableField(value = "modify_time", fill = FieldFill.INSERT_UPDATE) |
| | | private Date modifyTime; |
| | | |
| | | @TableField("last_active_time") |