| New file |
| | |
| | | package com.example.erp.entity.sd; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Data |
| | | @TableName("sd.`order_file`") |
| | | public class OrderFile { |
| | | @TableId(type = IdType.AUTO) |
| | | private Integer id; |
| | | private String orderId; |
| | | private String orderNumber; |
| | | private String fileName; |
| | | private String fileData; |
| | | private String fileJson; |
| | | private String imageBase64; |
| | | private LocalDateTime createTime; |
| | | |
| | | } |