19 changed files with 100 additions and 64 deletions
@ -0,0 +1,14 @@ |
|||||||
|
update dict_data set remark = 'XXWW' where "value" = 'mailbox' and type_id = 7; |
||||||
|
update dict_data set remark = 'JBTS' where "value" = '110_report_complaints' and type_id = 7; |
||||||
|
update dict_data set remark = 'SZRX' where "value" = '12345_mayor''s_hotline' and type_id = 7; |
||||||
|
update dict_data set remark = 'HWWZ' where "value" = 'red_network_politics' and type_id = 7; |
||||||
|
update dict_data set remark = 'ZJXJ' where "value" = 'create_your_own_letters' and type_id = 7; |
||||||
|
update dict_data set remark = 'XXTS' where "value" = 'petition_complaints' and type_id = 7; |
||||||
|
update dict_data set remark = 'XXYQ' where "value" = 'news_opinion' and type_id = 7; |
||||||
|
|
||||||
|
update mail m set m.contact_police_emp_no = p.emp_no from police_user p where m.contact_police_emp_no is not null and m.contact_Police_name = p.name and m.three_dept_id = p.dept_ids; |
||||||
|
|
||||||
|
ALTER TABLE "mailbox"."mail_co_handling" |
||||||
|
ADD COLUMN "dept_name" text; |
||||||
|
|
||||||
|
COMMENT ON COLUMN "mailbox"."mail_co_handling"."dept_name" IS '部门名称'; |
||||||
@ -0,0 +1,21 @@ |
|||||||
|
package com.biutag.lan.domain.bo; |
||||||
|
|
||||||
|
import lombok.Getter; |
||||||
|
import lombok.Setter; |
||||||
|
|
||||||
|
@Setter |
||||||
|
@Getter |
||||||
|
public class MailHandleDetailReq { |
||||||
|
|
||||||
|
private String mailId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 接访情况 |
||||||
|
*/ |
||||||
|
private String interviewDetails; |
||||||
|
|
||||||
|
/** |
||||||
|
* 核办情况 |
||||||
|
*/ |
||||||
|
private String verifyDetails; |
||||||
|
} |
||||||
@ -1,11 +1,18 @@ |
|||||||
package com.biutag.lan.service; |
package com.biutag.lan.service; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||||
import com.biutag.lan.domain.MailCoHandling; |
import com.biutag.lan.domain.MailCoHandling; |
||||||
import com.biutag.lan.mapper.MailCoHandlingMapper; |
import com.biutag.lan.mapper.MailCoHandlingMapper; |
||||||
import org.springframework.stereotype.Service; |
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
@Service |
@Service |
||||||
public class MailCoHandlingService extends ServiceImpl<MailCoHandlingMapper, MailCoHandling> { |
public class MailCoHandlingService extends ServiceImpl<MailCoHandlingMapper, MailCoHandling> { |
||||||
|
|
||||||
|
public List<MailCoHandling> list(String mailId) { |
||||||
|
return list(new LambdaQueryWrapper<MailCoHandling>().eq(MailCoHandling::getMailId, mailId)); |
||||||
|
} |
||||||
|
|
||||||
} |
} |
||||||
|
|||||||
Loading…
Reference in new issue