| | |
| | | package com.whyc.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import org.apache.ibatis.type.Alias; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | @TableName(schema = "db_doc",value = "tb_software") |
| | | @Alias("Software") |
| | |
| | | private String fileName; |
| | | private String fileUrl; |
| | | private String excelUrl; |
| | | |
| | | @ApiModelProperty("版号") |
| | | private String boardNumber; |
| | | @ApiModelProperty("软件类型") |
| | | private String type; |
| | | |
| | |
| | | this.excelUrl = excelUrl; |
| | | } |
| | | |
| | | public String getBoardNumber() { |
| | | return boardNumber; |
| | | } |
| | | |
| | | public void setBoardNumber(String boardNumber) { |
| | | this.boardNumber = boardNumber; |
| | | } |
| | | } |