Commit d5739485 by yangyang

同步(重庆)

parent d35d7530
...@@ -56,6 +56,11 @@ public class SkService extends Model<SkService> { ...@@ -56,6 +56,11 @@ public class SkService extends Model<SkService> {
private String content; private String content;
/** /**
* 服务来源
*/
private String fwly;
/**
* 服务类型 * 服务类型
*/ */
private String servicetypename; private String servicetypename;
......
...@@ -2,10 +2,14 @@ package com.founder.commonutils.model.vo.response; ...@@ -2,10 +2,14 @@ package com.founder.commonutils.model.vo.response;
import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.founder.commonutils.model.newPublicEntity.SkServiceApply; import com.founder.commonutils.model.newPublicEntity.SkServiceApply;
import com.founder.commonutils.util.StringUtil; import com.founder.commonutils.util.StringUtil;
import lombok.Data; import lombok.Data;
import org.springframework.beans.BeanUtils; import org.springframework.beans.BeanUtils;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
/** /**
* @author jlt * @author jlt
...@@ -46,6 +50,15 @@ public class SkServiceApplyVO { ...@@ -46,6 +50,15 @@ public class SkServiceApplyVO {
*/ */
private String content; private String content;
/**
* 申请时间
*/
private String sqsj;
/**
* 授权时间
*/
private String ssqsj;
public SkServiceApplyVO(){} public SkServiceApplyVO(){}
public SkServiceApplyVO(SkServiceApply skServiceApply, String name,String ms){ public SkServiceApplyVO(SkServiceApply skServiceApply, String name,String ms){
BeanUtils.copyProperties(skServiceApply,this); BeanUtils.copyProperties(skServiceApply,this);
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
<select id="findAll" resultType="com.founder.commonutils.model.vo.response.SkServiceApplyVO"> <select id="findAll" resultType="com.founder.commonutils.model.vo.response.SkServiceApplyVO">
select a.xxzjbh, serviceMs,serviceName,serviceId, applyGs, applyRy, applyUrl, time, token, a.content, select a.xxzjbh, serviceMs,serviceName,serviceId, applyGs, applyRy, applyUrl, time, token, a.content,
a.isDeleted, sqsj, a.status a.isDeleted, sqsj,ssqsj, a.status
from sk_service_apply a left join sk_service b on a.serviceId=b.xxzjbh from sk_service_apply a left join sk_service b on a.serviceId=b.xxzjbh
where a.isDeleted='0' where a.isDeleted='0'
<if test="servicename!= null and servicename!=''"> <if test="servicename!= null and servicename!=''">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment