972d437129a7b3570975abdebba4e11bf67ef3f2.svn-base 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. package org.jeecg.common.api.vo;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableName;
  6. import com.fasterxml.jackson.annotation.JsonFormat;
  7. import io.swagger.annotations.ApiModel;
  8. import io.swagger.annotations.ApiModelProperty;
  9. import lombok.Data;
  10. import lombok.EqualsAndHashCode;
  11. import lombok.experimental.Accessors;
  12. import org.jeecgframework.poi.excel.annotation.Excel;
  13. import org.springframework.format.annotation.DateTimeFormat;
  14. import java.io.Serializable;
  15. import java.util.Date;
  16. /**
  17. * @Description: 文档
  18. * @Author: jeecg-boot
  19. * @Date: 2020-06-09
  20. * @Version: V1.0
  21. */
  22. @Data
  23. @TableName("oa_wps_file")
  24. @Accessors(chain = true)
  25. @EqualsAndHashCode(callSuper = false)
  26. @ApiModel(value = "oa_wps_file对象", description = "文档")
  27. public class OaWpsModel implements Serializable {
  28. private static final long serialVersionUID = 1L;
  29. /**
  30. * id
  31. */
  32. @TableId(type = IdType.ASSIGN_ID)
  33. @ApiModelProperty(value = "id")
  34. private String id;
  35. /**
  36. * name
  37. */
  38. @Excel(name = "name", width = 15)
  39. @ApiModelProperty(value = "name")
  40. private String name;
  41. /**
  42. * version
  43. */
  44. @Excel(name = "version", width = 15)
  45. @ApiModelProperty(value = "version")
  46. private Integer version;
  47. /**
  48. * size
  49. */
  50. @Excel(name = "size", width = 15)
  51. @ApiModelProperty(value = "size")
  52. private Integer size;
  53. /**
  54. * downloadUrl
  55. */
  56. @Excel(name = "downloadUrl", width = 15)
  57. @ApiModelProperty(value = "downloadUrl")
  58. private String downloadUrl;
  59. /**
  60. * deleted
  61. */
  62. @Excel(name = "deleted", width = 15)
  63. @ApiModelProperty(value = "deleted")
  64. private String deleted;
  65. /**
  66. * canDelete
  67. */
  68. @Excel(name = "canDelete", width = 15)
  69. @ApiModelProperty(value = "canDelete")
  70. private String canDelete;
  71. /**
  72. * 创建人
  73. */
  74. @ApiModelProperty(value = "创建人")
  75. private String createBy;
  76. /**
  77. * 创建时间
  78. */
  79. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
  80. @DateTimeFormat(pattern = "yyyy-MM-dd")
  81. @ApiModelProperty(value = "创建时间")
  82. private Date createTime;
  83. /**
  84. * 更新人
  85. */
  86. @ApiModelProperty(value = "更新人")
  87. private String updateBy;
  88. /**
  89. * 更新时间
  90. */
  91. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
  92. @DateTimeFormat(pattern = "yyyy-MM-dd")
  93. @ApiModelProperty(value = "更新时间")
  94. private Date updateTime;
  95. /**
  96. * 组织机构编码
  97. */
  98. @ApiModelProperty(value = "组织机构编码")
  99. private String sysOrgCode;
  100. @TableField(exist = false)
  101. private String userId;
  102. }