Sfoglia il codice sorgente

Merge branch 'refs/heads/develop-zhou' into develop

Ethan 4 mesi fa
parent
commit
b1dbeb0761

+ 1 - 1
app/schedule/auto_task_review.go

@@ -13,7 +13,7 @@ import (
 func AutoTaskReview() error {
 	// 新建一个定时任务对象
 	crontab := cron.New(cron.WithSeconds()) // 精确到秒
-	spec := "0 */5 * * * ?"                 //cron表达式,每5分钟一次
+	spec := "0 */1 * * * ?"                 //cron表达式,每5分钟一次
 	// "0 0 12 * * ?" 每天中午12点执行
 
 	// 添加定时任务

+ 1 - 0
app/vo/re_local_detail.go

@@ -12,6 +12,7 @@ type ReLocalDetail struct {
 	CreatedAt         string  `json:"createdAt"`         // 创建时间
 	CreatorName       string  `json:"creatorName"`       // 创建者
 	Phone             string  `json:"phone"`             // 联系方式
+	WX                string  `json:"wx"`                // 微信
 	EstimatedCost     float64 `json:"estimatedCost"`     // 成本预估
 	ServiceChargeRate float64 `json:"serviceChargeRate"` // 公开服务费率
 	// 支付方式参数待定

+ 1 - 0
app/vo/re_project_detail.go

@@ -12,6 +12,7 @@ type ReProjectDetail struct {
 	CreatedAt         string  `json:"createdAt"`         // 创建时间
 	CreatorName       string  `json:"creatorName"`       // 创建者
 	Phone             string  `json:"phone"`             // 联系方式
+	WX                string  `json:"wx"`                // 微信
 	EstimatedCost     float64 `json:"estimatedCost"`     // 成本预估
 	ServiceChargeRate float64 `json:"serviceChargeRate"` // 公开服务费率
 	// 支付方式参数待定

+ 1 - 0
app/vo/re_selection_detail.go

@@ -13,6 +13,7 @@ type ReSelectionDetail struct {
 	CreatedAt         string  `json:"createdAt"`         // 创建时间
 	CreatorName       string  `json:"creatorName"`       // 创建者
 	Phone             string  `json:"phone"`             // 联系方式
+	WX                string  `json:"wx"`                // 微信
 	RewardSum         float64 `json:"rewardSum"`         // 悬赏池总金额
 	SubmitAt          string  `json:"submitAt"`          // 提交审核时间
 	// 支付方式参数待定