| | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDateTime; |
| | |
| | | */ |
| | | @Data |
| | | @TableName("after_sales_service_file") |
| | | @ApiModel("售后服务附件表") |
| | | @Schema(name = "售后服务附件表") |
| | | public class AfterSalesServiceFile { |
| | | |
| | | @TableId(type = IdType.AUTO) |
| | | @ApiModelProperty("主键") |
| | | @Schema(description = "主键") |
| | | private Long id; |
| | | |
| | | @ApiModelProperty("售后服务记录ID") |
| | | @Schema(description = "售后服务记录ID") |
| | | private Long serviceId; |
| | | |
| | | @ApiModelProperty("文件名称") |
| | | @Schema(description = "文件名称") |
| | | private String fileName; |
| | | |
| | | @ApiModelProperty("文件访问地址") |
| | | @Schema(description = "文件访问地址") |
| | | private String fileUrl; |
| | | |
| | | @ApiModelProperty("文件大小") |
| | | @Schema(description = "文件大小") |
| | | private Long fileSize; |
| | | |
| | | @ApiModelProperty("文件后缀") |
| | | @Schema(description = "文件后缀") |
| | | private String fileSuffix; |
| | | |
| | | @ApiModelProperty("删除标志(0代表存在 1代表删除)") |
| | | @Schema(description = "删除标志(0代表存在 1代表删除)") |
| | | private String delFlag; |
| | | |
| | | @ApiModelProperty("上传者") |
| | | @Schema(description = "上传者") |
| | | private Long createUser; |
| | | |
| | | @ApiModelProperty("创建时间") |
| | | @Schema(description = "创建时间") |
| | | private LocalDateTime createTime; |
| | | |
| | | @ApiModelProperty("修改者") |
| | | @Schema(description = "修改者") |
| | | private Long updateUser; |
| | | |
| | | @ApiModelProperty("修改时间") |
| | | @Schema(description = "修改时间") |
| | | private LocalDateTime updateTime; |
| | | |
| | | @ApiModelProperty("租户id") |
| | | @Schema(description = "租户id") |
| | | private Long tenantId; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |