| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | /** |
| | | * 程序名 |
| | | */ |
| | | @Excel(name = "程序名") |
| | | private String programName; |
| | | /** |
| | | * 程序描述 |
| | | */ |
| | | @Excel(name = "程序描述") |
| | | private String description; |
| | | /** |
| | | * 状态 |
| | | */ |
| | | @Excel(name = "状态") |
| | | private String status; |
| | | /** |
| | | * 创建时间 |
| | |
| | | */ |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long tenantId; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | } |