|
@@ -4,6 +4,8 @@ import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.extension.activerecord.Model;
|
|
import com.baomidou.mybatisplus.extension.activerecord.Model;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
|
+import lombok.Data;
|
|
|
|
|
+
|
|
|
import java.time.LocalDateTime;
|
|
import java.time.LocalDateTime;
|
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
|
|
|
|
|
@@ -15,6 +17,7 @@ import java.io.Serializable;
|
|
|
* @author leon
|
|
* @author leon
|
|
|
* @since 2021-07-19
|
|
* @since 2021-07-19
|
|
|
*/
|
|
*/
|
|
|
|
|
+@Data
|
|
|
@TableName("pan_fosterwx_station")
|
|
@TableName("pan_fosterwx_station")
|
|
|
public class FosterwxStation extends Model<FosterwxStation> {
|
|
public class FosterwxStation extends Model<FosterwxStation> {
|
|
|
|
|
|
|
@@ -23,7 +26,7 @@ public class FosterwxStation extends Model<FosterwxStation> {
|
|
|
/**
|
|
/**
|
|
|
* id
|
|
* id
|
|
|
*/
|
|
*/
|
|
|
- @TableId(value = "id", type = IdType.AUTO)
|
|
|
|
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
private Integer id;
|
|
private Integer id;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -42,6 +45,16 @@ public class FosterwxStation extends Model<FosterwxStation> {
|
|
|
private String boxShareUrl;
|
|
private String boxShareUrl;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
|
|
+ * 登录账号
|
|
|
|
|
+ */
|
|
|
|
|
+ private String loginUsername;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 登录密码
|
|
|
|
|
+ */
|
|
|
|
|
+ private String loginPassword;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
* 创建人
|
|
* 创建人
|
|
|
*/
|
|
*/
|
|
|
private Integer uploadUid;
|
|
private Integer uploadUid;
|
|
@@ -121,13 +134,13 @@ public class FosterwxStation extends Model<FosterwxStation> {
|
|
|
@Override
|
|
@Override
|
|
|
public String toString() {
|
|
public String toString() {
|
|
|
return "FosterwxStation{" +
|
|
return "FosterwxStation{" +
|
|
|
- "id=" + id +
|
|
|
|
|
- ", stationName=" + stationName +
|
|
|
|
|
- ", stationUid=" + stationUid +
|
|
|
|
|
- ", boxShareUrl=" + boxShareUrl +
|
|
|
|
|
- ", uploadUid=" + uploadUid +
|
|
|
|
|
- ", createAt=" + createAt +
|
|
|
|
|
- ", uploadAt=" + uploadAt +
|
|
|
|
|
- "}";
|
|
|
|
|
|
|
+ "id=" + id +
|
|
|
|
|
+ ", stationName=" + stationName +
|
|
|
|
|
+ ", stationUid=" + stationUid +
|
|
|
|
|
+ ", boxShareUrl=" + boxShareUrl +
|
|
|
|
|
+ ", uploadUid=" + uploadUid +
|
|
|
|
|
+ ", createAt=" + createAt +
|
|
|
|
|
+ ", uploadAt=" + uploadAt +
|
|
|
|
|
+ "}";
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|