田源
2025-04-03 9b4433fddf5b401edb0aace8a404ac733b122702
Source/BladeX-Tool/blade-starter-http/src/test/java/org/springblade/core/http/test/VBlog.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,30 @@
package org.springblade.core.http.test;
import lombok.Getter;
import lombok.Setter;
import org.springblade.core.http.CssQuery;
/**
 * çƒ­é—¨åšå®¢
 */
@Getter
@Setter
public class VBlog {
   @CssQuery(value = "a", attr = "title")
   private String title;
   @CssQuery(value = "a", attr = "href")
   private String href;
   //1341阅/9评/4赞
   @CssQuery(value = "span", attr = "text", regex = "^\\d+")
   private Integer read;
   @CssQuery(value = "span", attr = "text", regex = "(\\d*).*/(\\d*).*/(\\d*).*", regexGroup = 2)
   private Integer ping;
   @CssQuery(value = "span", attr = "text", regex = "(\\d*).*/(\\d*).*/(\\d*).*", regexGroup = 3)
   private Integer zhan;
}