| | |
| | | List<Integer> FileTypeList = new ArrayList(5) {{ |
| | | add(FileType.fileTypeMarkDown_1); |
| | | add(FileType.fileTypeHtml_2); |
| | | add(fileTypeVideo_3); |
| | | add(FileType.fileTypeVideo_3); |
| | | add(FileType.fileTypeMp3_4); |
| | | add(FileType.fileTypePictures_5); |
| | | add(FileType.fileTypeTalking_9); |
| | |
| | | */ |
| | | private Long coverFileId; |
| | | |
| | | private String pictureIds; |
| | | |
| | | private String videoIds; |
| | | |
| | | /** |
| | | * 发布时间 |
| | | */ |
| | |
| | | ( |
| | | SELECT |
| | | t.id, |
| | | count(t.id) count |
| | | count(t.id) `count` |
| | | FROM |
| | | blog_article a, |
| | | blog_article_type t |
| | |
| | | ) t2 |
| | | on |
| | | t1.id = t2.id |
| | | where t1.is_show_face = 1 |
| | | ORDER BY |
| | | t1.top_value ASC, |
| | | t1.create_date DESC |
| | |
| | | /** |
| | | * url地址 |
| | | */ |
| | | @Size(max = 50, groups = {add.class, edit.class}) |
| | | @Size(max = 200, groups = {add.class, edit.class}) |
| | | @NotBlank(message = "url地址不能为空,请检查url参数", groups = {add.class, edit.class}) |
| | | @Pattern(regexp = "^$|^((https|http)?:\\/\\/)[^\\s]+", message = "url格式错误", groups = {add.class}) |
| | | private String url; |
| | |
| | | /** |
| | | * 头像地址 |
| | | */ |
| | | @Size(max = 50, groups = {add.class, edit.class}) |
| | | @Size(max = 200, groups = {add.class, edit.class}) |
| | | @Pattern(regexp = "^$|^((https|http)?:\\/\\/)[^\\s]+", message = "头像格式错误", groups = {add.class}) |
| | | private String avatar; |
| | | |