Browse Source

添加审核时间字段

lutong 1 week ago
parent
commit
f93f7ebaab

+ 4 - 0
alien-entity/src/main/java/shop/alien/entity/store/vo/StoreLicenseInfoVo.java

@@ -47,6 +47,10 @@ public class StoreLicenseInfoVo {
     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
     private Date submitDate;
     private Date submitDate;
 
 
+    @ApiModelProperty("审核时间(门店 store_info.review_date)")
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
+    private Date reviewDate;
+
     @ApiModelProperty("证照到期时间")
     @ApiModelProperty("证照到期时间")
     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
     private Date expirationTime;
     private Date expirationTime;

+ 1 - 0
alien-entity/src/main/resources/mapper/StoreInfoMapper.xml

@@ -33,6 +33,7 @@
             s.business_types_name,
             s.business_types_name,
             slh.license_execute_status AS states,
             slh.license_execute_status AS states,
             slh.created_time AS submit_date,
             slh.created_time AS submit_date,
+            s.review_date AS review_date,
             CASE
             CASE
                 WHEN slh.license_status = 1 THEN s.business_license_expiration_time
                 WHEN slh.license_status = 1 THEN s.business_license_expiration_time
                 ELSE NULL
                 ELSE NULL

+ 6 - 6
alien-store/docs/short-link.md

@@ -49,10 +49,10 @@ short-link:
 
 
 ```yaml
 ```yaml
 short-link:
 short-link:
-  public-base-url: https://test-api.example.com
+  public-base-url: https://test.ailien.shop
   https-only: true
   https-only: true
   allow-local-network-target: false
   allow-local-network-target: false
-  allowed-hosts: m.test.example.com,www.test.example.com
+  allowed-hosts: test.ailien.shop,www.test.ailien.shop,m.test.ailien.shop
   ttl-days: 30
   ttl-days: 30
 ```
 ```
 
 
@@ -64,10 +64,10 @@ short-link:
 
 
 ```yaml
 ```yaml
 short-link:
 short-link:
-  public-base-url: https://uat-api.example.com
+  public-base-url: https://uat.ailien.shop
   https-only: true
   https-only: true
   allow-local-network-target: false
   allow-local-network-target: false
-  allowed-hosts: m.uat.example.com,www.uat.example.com
+  allowed-hosts: uat.ailien.shop,www.uat.ailien.shop,m.uat.ailien.shop
   ttl-days: 30
   ttl-days: 30
 ```
 ```
 
 
@@ -75,10 +75,10 @@ short-link:
 
 
 ```yaml
 ```yaml
 short-link:
 short-link:
-  public-base-url: https://api.example.com
+  public-base-url: https://prod.ailien.shop
   https-only: true
   https-only: true
   allow-local-network-target: false
   allow-local-network-target: false
-  allowed-hosts: m.example.com,www.example.com
+  allowed-hosts: prod.ailien.shop,www.prod.ailien.shop,m.prod.ailien.shop
   ttl-days: 30
   ttl-days: 30
 ```
 ```