Merge branch 'master' of http://git.helou.vip:8088/ly/ypc_manager
Conflicts: basepro-manager/basepro-manager-dao/src/main/resources/mybatis/mapper/TbXjxdzhxxbMapper.xmlmaster
commit
d91c8a88ba
|
|
@ -14,11 +14,18 @@ public interface TbChryxxbMapper
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* 查询检查站查获人员信息
|
* 查询检查站查获人员信息
|
||||||
*
|
*
|
||||||
* @param HCRYBH 检查站查获人员信息ID
|
* @param id 检查站查获人员信息ID
|
||||||
* @return 检查站查获人员信息
|
* @return 检查站查获人员信息
|
||||||
*/
|
*/
|
||||||
public TbChryxxb selectTbChryxxbById(String HCRYBH);
|
public TbChryxxb selectTbChryxxbById(Integer id);
|
||||||
|
/**
|
||||||
|
* 查询检查站查获人员信息
|
||||||
|
*
|
||||||
|
* @param HCRYBH 检查站查获人员信息编号
|
||||||
|
* @return 检查站查获人员信息
|
||||||
|
*/
|
||||||
|
public TbChryxxb selectTbChryxxbByHcrybh(String HCRYBH);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询检查站查获人员信息列表
|
* 查询检查站查获人员信息列表
|
||||||
|
|
@ -50,7 +57,7 @@ public interface TbChryxxbMapper
|
||||||
* @param HCRYBH 检查站查获人员信息ID
|
* @param HCRYBH 检查站查获人员信息ID
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
public int deleteTbChryxxbById(String HCRYBH);
|
public int deleteTbChryxxbByHcrybh(String HCRYBH);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 批量删除检查站查获人员信息
|
* 批量删除检查站查获人员信息
|
||||||
|
|
@ -58,5 +65,31 @@ public interface TbChryxxbMapper
|
||||||
* @param HCRYBHs 需要删除的数据ID
|
* @param HCRYBHs 需要删除的数据ID
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
public int deleteTbChryxxbByIds(String[] HCRYBHs);
|
public int deleteTbChryxxbByHcrybhs(String[] HCRYBHs);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除检查站查获人员信息
|
||||||
|
*
|
||||||
|
* @param id 检查站查获人员信息ID
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int deleteTbChryxxbById(Integer id);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除检查站查获人员信息
|
||||||
|
*
|
||||||
|
* @param ids 需要删除的数据ID
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int deleteTbChryxxbByIds(Integer[] ids);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 从人车物核查表及卡点表获取查货人员信息
|
||||||
|
*
|
||||||
|
* @param date 盘查日期
|
||||||
|
* @return 检查站查获人员信息集合
|
||||||
|
*/
|
||||||
|
public List<TbChryxxb> selectTbChryxxbListFromTbCheckPerson(String date);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<mapper namespace="basepro.manager.mapper.TbChryxxbMapper">
|
<mapper namespace="basepro.manager.mapper.TbChryxxbMapper">
|
||||||
|
|
||||||
<resultMap type="basepro.manager.pojo.TbChryxxb" id="TbChryxxbResult">
|
<resultMap type="basepro.manager.pojo.TbChryxxb" id="TbChryxxbResult">
|
||||||
|
<result property="id" column="id" />
|
||||||
<result property="HCRYBH" column="HCRYBH" />
|
<result property="HCRYBH" column="HCRYBH" />
|
||||||
<result property="XZQHDM" column="XZQHDM" />
|
<result property="XZQHDM" column="XZQHDM" />
|
||||||
<result property="XZQHMC" column="XZQHMC" />
|
<result property="XZQHMC" column="XZQHMC" />
|
||||||
|
|
@ -19,12 +20,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
<sql id="selectTbChryxxbVo">
|
<sql id="selectTbChryxxbVo">
|
||||||
select HCRYBH, XZQHDM, XZQHMC, GAJGDM, GAJGMC, JCZDM, JCZMC, jcsj, DATE_FORMAT(jcsj, '%Y-%m-%d') AS jcsjStr, ZJHM, HCRYLB from tb_chryxxb
|
select id, HCRYBH, XZQHDM, XZQHMC, GAJGDM, GAJGMC, JCZDM, JCZMC, jcsj, DATE_FORMAT(jcsj, '%Y-%m-%d %H:%i:%s') AS jcsjStr, ZJHM, HCRYLB from tb_chryxxb
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
<select id="selectTbChryxxbList" parameterType="basepro.manager.pojo.TbChryxxb" resultMap="TbChryxxbResult">
|
<select id="selectTbChryxxbList" parameterType="basepro.manager.pojo.TbChryxxb" resultMap="TbChryxxbResult">
|
||||||
<include refid="selectTbChryxxbVo"/>
|
<include refid="selectTbChryxxbVo"/>
|
||||||
<where>
|
<where>
|
||||||
|
<if test="id != null and id != 0"> and id = #{id}</if>
|
||||||
<if test="XZQHDM != null and XZQHDM != ''"> and XZQHDM = #{XZQHDM}</if>
|
<if test="XZQHDM != null and XZQHDM != ''"> and XZQHDM = #{XZQHDM}</if>
|
||||||
<if test="XZQHMC != null and XZQHMC != ''"> and XZQHMC like concat('%',#{XZQHMC},'%')</if>
|
<if test="XZQHMC != null and XZQHMC != ''"> and XZQHMC like concat('%',#{XZQHMC},'%')</if>
|
||||||
<if test="GAJGDM != null and GAJGDM != ''"> and GAJGDM = #{GAJGDM}</if>
|
<if test="GAJGDM != null and GAJGDM != ''"> and GAJGDM = #{GAJGDM}</if>
|
||||||
|
|
@ -42,10 +44,31 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
</where>
|
</where>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="selectTbChryxxbById" parameterType="String" resultMap="TbChryxxbResult">
|
<select id="selectTbChryxxbByHcrybh" parameterType="String" resultMap="TbChryxxbResult">
|
||||||
<include refid="selectTbChryxxbVo"/>
|
<include refid="selectTbChryxxbVo"/>
|
||||||
where HCRYBH = #{HCRYBH}
|
where HCRYBH = #{HCRYBH}
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|
||||||
|
<select id="selectTbChryxxbListFromTbCheckPerson" parameterType="String" resultMap="TbChryxxbResult">
|
||||||
|
SELECT HCRYBH, XZQHDM, GAJGDM, GAJGMC, JCZDM, JCZMC, JCSJ, ZJHM,HCRYLB FROM (
|
||||||
|
SELECT t.sfz as ZJHM,LEFT(s.dept_id,4) as XZQHDM,
|
||||||
|
(CASE WHEN t.people_status = '3' THEN '1'
|
||||||
|
WHEN t.people_status = '7' THEN '2'
|
||||||
|
ELSE '3'
|
||||||
|
END) as HCRYLB,t.check_time as JCSJ,t.police_id_card as HCRYBH,CONCAT('JCZ',LEFT(s.dept_id,6),(s.id+1000)) as JCZDM,
|
||||||
|
s.name as JCZMC,s.id,s.dept_id as GAJGDM,s.dept_name as GAJGMC FROM (
|
||||||
|
select p.sfz,p.people_status,p.check_time,p.police_id_card,p.point_x,p.point_y from `tb_check_person` p where p.point_x is not null and p.point_x != ''
|
||||||
|
and p.people_status != 0
|
||||||
|
and DATE_FORMAT(p.check_time, '%Y-%m-%d') = DATE_FORMAT(#{date}, '%Y-%m-%d')
|
||||||
|
) t inner join `tb_stuck` s on (s.point_x = t.point_x and s.point_y = t.point_y)
|
||||||
|
) n order by n.JCSJ asc;
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<select id="selectTbChryxxbById" parameterType="Integer" resultMap="TbChryxxbResult">
|
||||||
|
<include refid="selectTbChryxxbVo"/>
|
||||||
|
where id = #{id}
|
||||||
|
</select>
|
||||||
|
|
||||||
<insert id="insertTbChryxxb" parameterType="basepro.manager.pojo.TbChryxxb" useGeneratedKeys="true" keyProperty="HCRYBH">
|
<insert id="insertTbChryxxb" parameterType="basepro.manager.pojo.TbChryxxb" useGeneratedKeys="true" keyProperty="HCRYBH">
|
||||||
insert into tb_chryxxb
|
insert into tb_chryxxb
|
||||||
|
|
@ -78,6 +101,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<update id="updateTbChryxxb" parameterType="basepro.manager.pojo.TbChryxxb">
|
<update id="updateTbChryxxb" parameterType="basepro.manager.pojo.TbChryxxb">
|
||||||
update tb_chryxxb
|
update tb_chryxxb
|
||||||
<trim prefix="SET" suffixOverrides=",">
|
<trim prefix="SET" suffixOverrides=",">
|
||||||
|
<if test="HCRYBH != null and HCRYBH != ''">HCRYBH = #{HCRYBH},</if>
|
||||||
<if test="XZQHDM != null and XZQHDM != ''">XZQHDM = #{XZQHDM},</if>
|
<if test="XZQHDM != null and XZQHDM != ''">XZQHDM = #{XZQHDM},</if>
|
||||||
<if test="XZQHMC != null and XZQHMC != ''">XZQHMC = #{XZQHMC},</if>
|
<if test="XZQHMC != null and XZQHMC != ''">XZQHMC = #{XZQHMC},</if>
|
||||||
<if test="GAJGDM != null and GAJGDM != ''">GAJGDM = #{GAJGDM},</if>
|
<if test="GAJGDM != null and GAJGDM != ''">GAJGDM = #{GAJGDM},</if>
|
||||||
|
|
@ -88,18 +112,27 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="ZJHM != null and ZJHM != ''">ZJHM = #{ZJHM},</if>
|
<if test="ZJHM != null and ZJHM != ''">ZJHM = #{ZJHM},</if>
|
||||||
<if test="HCRYLB != null and HCRYLB != ''">HCRYLB = #{HCRYLB},</if>
|
<if test="HCRYLB != null and HCRYLB != ''">HCRYLB = #{HCRYLB},</if>
|
||||||
</trim>
|
</trim>
|
||||||
where HCRYBH = #{HCRYBH}
|
where id = #{id}
|
||||||
</update>
|
</update>
|
||||||
|
|
||||||
<delete id="deleteTbChryxxbById" parameterType="String">
|
<delete id="deleteTbChryxxbByHcrybh" parameterType="String">
|
||||||
|
delete from tb_chryxxb where HCRYBH = #{HCRYBH}
|
||||||
|
</delete>
|
||||||
|
<delete id="deleteTbChryxxbById" parameterType="Integer">
|
||||||
delete from tb_chryxxb where HCRYBH = #{HCRYBH}
|
delete from tb_chryxxb where HCRYBH = #{HCRYBH}
|
||||||
</delete>
|
</delete>
|
||||||
|
|
||||||
<delete id="deleteTbChryxxbByIds" parameterType="String">
|
<delete id="deleteTbChryxxbByHcrybhs" parameterType="String">
|
||||||
delete from tb_chryxxb where HCRYBH in
|
delete from tb_chryxxb where HCRYBH in
|
||||||
<foreach item="HCRYBH" collection="array" open="(" separator="," close=")">
|
<foreach item="HCRYBH" collection="array" open="(" separator="," close=")">
|
||||||
#{HCRYBH}
|
#{HCRYBH}
|
||||||
</foreach>
|
</foreach>
|
||||||
</delete>
|
</delete>
|
||||||
|
<delete id="deleteTbChryxxbByIds" parameterType="Integer">
|
||||||
|
delete from tb_chryxxb where id in
|
||||||
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
||||||
|
#{id}
|
||||||
|
</foreach>
|
||||||
|
</delete>
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|
@ -57,7 +57,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
and (d.ZRDWDM = #{zrdwdm} OR d.ZRDWDM IN ( SELECT t.dept_id FROM sys_dept t WHERE FIND_IN_SET (#{zrdwdm},ancestors) ))
|
and (d.ZRDWDM = #{zrdwdm} OR d.ZRDWDM IN ( SELECT t.dept_id FROM sys_dept t WHERE FIND_IN_SET (#{zrdwdm},ancestors) ))
|
||||||
</if>
|
</if>
|
||||||
<if test="zrdwmc != null and zrdwmc != ''"> and ZRDWMC = #{zrdwmc}</if>
|
<if test="zrdwmc != null and zrdwmc != ''"> and ZRDWMC = #{zrdwmc}</if>
|
||||||
<if test="tcsj != null "> and TCSJ = #{tcsj}</if>
|
<if test="params.beginTCSJ != null and params.beginTCSJ != ''"><!-- 开始时间检索 -->
|
||||||
|
AND date_format(TCSJ,'%y%m%d') >= date_format(#{params.beginTCSJ},'%y%m%d')
|
||||||
|
</if>
|
||||||
|
<if test="params.endTCSJ != null and params.endTCSJ != ''"><!-- 结束时间检索 -->
|
||||||
|
AND date_format(TCSJ,'%y%m%d') <= date_format(#{params.endTCSJ},'%y%m%d')
|
||||||
|
</if>
|
||||||
<if test="tcgcjs != null and tcgcjs != ''"> and TCGCJS = #{tcgcjs}</if>
|
<if test="tcgcjs != null and tcgcjs != ''"> and TCGCJS = #{tcgcjs}</if>
|
||||||
<if test="tcjg != null and tcjg != ''"> and TCJG = #{tcjg}</if>
|
<if test="tcjg != null and tcjg != ''"> and TCJG = #{tcjg}</if>
|
||||||
<if test="jlgxsj != null "> and JLGXSJ = #{jlgxsj}</if>
|
<if test="jlgxsj != null "> and JLGXSJ = #{jlgxsj}</if>
|
||||||
|
|
|
||||||
|
|
@ -116,27 +116,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="ChwpGzdj != null "> and CHWP_GZDJ = #{ChwpGzdj}</if>
|
<if test="ChwpGzdj != null "> and CHWP_GZDJ = #{ChwpGzdj}</if>
|
||||||
</where>
|
</where>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="selectCountBySj" parameterType="basepro.manager.pojo.TbXjxdzhxxb" resultMap="TbXjxdzhxxbResult">
|
|
||||||
select sum(TRXFJLSL) TRXFJLSL,sum(TRXFCLSL) TRXFCLSL,sum(QFQZSL) QFQZSL,sum(ZAKDSL) ZAKDSL,sum(JCCLSL) JCCLSL,sum(PCRYSL) PCRYSL,
|
|
||||||
sum(XCZDBWSL) XCZDBWSL,sum(JCFXYHCSSL) JCFXYHCSSL,sum(FXYHCS_CZWSL) FXYHCS_CZWSL,sum(FXYHCS_LGSL) FXYHCS_LGSL,sum(FXYHCS_YLCSSL) FXYHCS_YLCSSL,
|
|
||||||
sum(PCAQYHSL) PCAQYHSL,sum(XCAQYHSL) XCAQYHSL,sum(SJZDWP_QZ) SJZDWP_QZ,sum(SJZDWP_ZD) SJZDWP_ZD,sum(SJZDWP_ZY) SJZDWP_ZY,sum(SJZDWP_LG) SJZDWP_LG,
|
|
||||||
sum(SJZDWP_YZBHXP) SJZDWP_YZBHXP,sum(SJZDWP_JDHXP) SJZDWP_JDHXP,sum(SJZDWP_GZDJ) SJZDWP_GZDJ,sum(PCMDJFSL) PCMDJFSL,sum(HJMDJFSL) HJMDJFSL,
|
|
||||||
sum(HLJTJFSL) HLJTJFSL,sum(HJHLJTJFSL) HJHLJTJFSL,sum(LLJFSL) LLJFSL,sum(HJLLJFSL) HJLLJFSL,sum(JJJFSL) JJJFSL,sum(HJJJJFSL) HJJJJFSL,
|
|
||||||
sum(YLJFSL) YLJFSL,sum(HJYLJFSL) HJYLJFSL,sum(YXGAJCZSL) YXGAJCZSL,sum(SLZHKDSL) SLZHKDSL,sum(ZAPCRYSL) ZAPCRYSL,sum(ZAPCCLSL) ZAPCCLSL,
|
|
||||||
sum(ZHZTRYSL) ZHZTRYSL,sum(QFSFRYSL) QFSFRYSL,sum(CHWP_GZDJ) CHWP_GZDJ from tb_xjxdzhxxb
|
|
||||||
<where>
|
|
||||||
<if test="GAJGDM != null and GAJGDM != ''">
|
|
||||||
and (d.GAJGDM = #{GAJGDM} OR d.GAJGDM IN ( SELECT t.dept_id FROM sys_dept t WHERE FIND_IN_SET (#{GAJGDM},ancestors) ))
|
|
||||||
</if>
|
|
||||||
<if test="params.beginZAFKRQ != null and params.beginZAFKRQ != ''"><!-- 开始时间检索 -->
|
|
||||||
and date_format(ZAFKRQ,'%y%m%d') >= date_format(#{params.beginZAFKRQ},'%y%m%d')
|
|
||||||
</if>
|
|
||||||
<if test="params.endZAFKRQ != null and params.endZAFKRQ != ''"><!-- 结束时间检索 -->
|
|
||||||
and date_format(ZAFKRQ,'%y%m%d') <= date_format(#{params.endZAFKRQ},'%y%m%d')
|
|
||||||
</if>
|
|
||||||
</where>
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<select id="selectTbXjxdzhxxbById" parameterType="Long" resultMap="TbXjxdzhxxbResult">
|
<select id="selectTbXjxdzhxxbById" parameterType="Long" resultMap="TbXjxdzhxxbResult">
|
||||||
<include refid="selectTbXjxdzhxxbVo"/>
|
<include refid="selectTbXjxdzhxxbVo"/>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
package basepro.manager.service;
|
package basepro.manager.service;
|
||||||
|
|
||||||
import basepro.manager.pojo.TbChryxxb;
|
import basepro.manager.pojo.TbChryxxb;
|
||||||
|
import guo.ping.e3mall.common.page.TableDataInfo;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
|
@ -14,11 +15,18 @@ public interface ITbChryxxbService
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* 查询检查站查获人员信息
|
* 查询检查站查获人员信息
|
||||||
*
|
*
|
||||||
* @param HCRYBH 检查站查获人员信息ID
|
* @param id 检查站查获人员信息ID
|
||||||
* @return 检查站查获人员信息
|
* @return 检查站查获人员信息
|
||||||
*/
|
*/
|
||||||
public TbChryxxb selectTbChryxxbById(String HCRYBH);
|
public TbChryxxb selectTbChryxxbById(Integer id);
|
||||||
|
/**
|
||||||
|
* 查询检查站查获人员信息
|
||||||
|
*
|
||||||
|
* @param HCRYBH 检查站查获人员信息编号
|
||||||
|
* @return 检查站查获人员信息
|
||||||
|
*/
|
||||||
|
public TbChryxxb selectTbChryxxbByHcrybh(String HCRYBH);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询检查站查获人员信息列表
|
* 查询检查站查获人员信息列表
|
||||||
|
|
@ -26,6 +34,7 @@ public interface ITbChryxxbService
|
||||||
* @param tbChryxxb 检查站查获人员信息
|
* @param tbChryxxb 检查站查获人员信息
|
||||||
* @return 检查站查获人员信息集合
|
* @return 检查站查获人员信息集合
|
||||||
*/
|
*/
|
||||||
|
public TableDataInfo selectTbChryxxbList(TbChryxxb tbChryxxb, Integer pageNum, Integer pageSize);
|
||||||
public List<TbChryxxb> selectTbChryxxbList(TbChryxxb tbChryxxb);
|
public List<TbChryxxb> selectTbChryxxbList(TbChryxxb tbChryxxb);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -44,19 +53,43 @@ public interface ITbChryxxbService
|
||||||
*/
|
*/
|
||||||
public int updateTbChryxxb(TbChryxxb tbChryxxb);
|
public int updateTbChryxxb(TbChryxxb tbChryxxb);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除检查站查获人员信息
|
||||||
|
*
|
||||||
|
* @param HCRYBH 检查站查获人员信息ID
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int deleteTbChryxxbByHcrybh(String HCRYBH);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 批量删除检查站查获人员信息
|
* 批量删除检查站查获人员信息
|
||||||
*
|
*
|
||||||
|
* @param HCRYBHs 需要删除的数据ID
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int deleteTbChryxxbByHcrybhs(String HCRYBHs);
|
||||||
|
/**
|
||||||
|
* 删除检查站查获人员信息
|
||||||
|
*
|
||||||
|
* @param id 检查站查获人员信息ID
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int deleteTbChryxxbById(Integer id);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除检查站查获人员信息
|
||||||
|
*
|
||||||
* @param ids 需要删除的数据ID
|
* @param ids 需要删除的数据ID
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
public int deleteTbChryxxbByIds(String ids);
|
public int deleteTbChryxxbByIds(String ids);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 删除检查站查获人员信息信息
|
* 从人车物核查表及卡点表获取查货人员信息
|
||||||
*
|
*
|
||||||
* @param HCRYBH 检查站查获人员信息ID
|
* @param date 盘查日期
|
||||||
* @return 结果
|
* @return 检查站查获人员信息集合
|
||||||
*/
|
*/
|
||||||
public int deleteTbChryxxbById(String HCRYBH);
|
public List<TbChryxxb> selectTbChryxxbListFromTbCheckPerson(String date);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
package basepro.manager.service;
|
package basepro.manager.service;
|
||||||
|
|
||||||
import basepro.manager.pojo.TbMdjfjxxxb;
|
import basepro.manager.pojo.TbMdjfjxxxb;
|
||||||
|
import guo.ping.e3mall.common.page.TableDataInfo;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
|
@ -27,6 +28,7 @@ public interface ITbMdjfjxxxbService
|
||||||
* @return 矛盾纠纷简项信息集合
|
* @return 矛盾纠纷简项信息集合
|
||||||
*/
|
*/
|
||||||
public List<TbMdjfjxxxb> selectTbMdjfjxxxbList(TbMdjfjxxxb tbMdjfjxxxb);
|
public List<TbMdjfjxxxb> selectTbMdjfjxxxbList(TbMdjfjxxxb tbMdjfjxxxb);
|
||||||
|
public TableDataInfo selectTbMdjfjxxxbList(TbMdjfjxxxb tbMdjfjxxxb, Integer pageNum, Integer pageSize);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 新增矛盾纠纷简项信息
|
* 新增矛盾纠纷简项信息
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,9 @@ public class TbChryxxb extends BaseEntity
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
private Integer id;
|
||||||
/** 检查站核查人员编号 */
|
/** 检查站核查人员编号 */
|
||||||
|
@Excel(name = "检查站核查人员编号")
|
||||||
private String HCRYBH;
|
private String HCRYBH;
|
||||||
|
|
||||||
/** 检查站所属行政区划代码 */
|
/** 检查站所属行政区划代码 */
|
||||||
|
|
@ -46,8 +48,8 @@ public class TbChryxxb extends BaseEntity
|
||||||
private String JCZMC;
|
private String JCZMC;
|
||||||
|
|
||||||
/** 检查时间 */
|
/** 检查时间 */
|
||||||
@Excel(name = "检查时间", width = 30, dateFormat = "yyyy-MM-dd")
|
@Excel(name = "检查时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
private Date jcsj;
|
private Date jcsj;
|
||||||
|
|
||||||
public String getJcsjStr() {
|
public String getJcsjStr() {
|
||||||
|
|
@ -71,7 +73,15 @@ public class TbChryxxb extends BaseEntity
|
||||||
@Excel(name = "查获人员类别(1:抓获在逃人员,2:劝返涉访人员,3:其他)",readConverterExp = "1=抓获在逃人员,2=劝返涉访人员,3=其他")
|
@Excel(name = "查获人员类别(1:抓获在逃人员,2:劝返涉访人员,3:其他)",readConverterExp = "1=抓获在逃人员,2=劝返涉访人员,3=其他")
|
||||||
private String HCRYLB;
|
private String HCRYLB;
|
||||||
|
|
||||||
public void setHCRYBH(String HCRYBH)
|
public Integer getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(Integer id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setHCRYBH(String HCRYBH)
|
||||||
{
|
{
|
||||||
this.HCRYBH = HCRYBH;
|
this.HCRYBH = HCRYBH;
|
||||||
}
|
}
|
||||||
|
|
@ -166,6 +176,7 @@ public class TbChryxxb extends BaseEntity
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||||
|
.append("id", getId())
|
||||||
.append("HCRYBH", getHCRYBH())
|
.append("HCRYBH", getHCRYBH())
|
||||||
.append("XZQHDM", getXZQHDM())
|
.append("XZQHDM", getXZQHDM())
|
||||||
.append("XZQHMC", getXZQHMC())
|
.append("XZQHMC", getXZQHMC())
|
||||||
|
|
|
||||||
|
|
@ -5,10 +5,14 @@ import java.util.List;
|
||||||
import basepro.manager.mapper.TbChryxxbMapper;
|
import basepro.manager.mapper.TbChryxxbMapper;
|
||||||
import basepro.manager.pojo.TbChryxxb;
|
import basepro.manager.pojo.TbChryxxb;
|
||||||
import basepro.manager.service.ITbChryxxbService;
|
import basepro.manager.service.ITbChryxxbService;
|
||||||
|
import com.github.pagehelper.PageHelper;
|
||||||
|
import guo.ping.e3mall.common.page.TableDataInfo;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import com.alibaba.dubbo.config.annotation.Service;
|
import com.alibaba.dubbo.config.annotation.Service;
|
||||||
import basepro.manager.common.core.text.Convert;
|
import basepro.manager.common.core.text.Convert;
|
||||||
|
|
||||||
|
import static guo.ping.e3mall.common.page.TablePageUtils.getDataTable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 检查站查获人员信息Service业务层处理
|
* 检查站查获人员信息Service业务层处理
|
||||||
*
|
*
|
||||||
|
|
@ -23,14 +27,23 @@ public class TbChryxxbServiceImpl implements ITbChryxxbService
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询检查站查获人员信息
|
* 查询检查站查获人员信息
|
||||||
*
|
*
|
||||||
* @param HCRYBH 检查站查获人员信息ID
|
* @param id 检查站查获人员信息ID
|
||||||
|
* @return 检查站查获人员信息
|
||||||
|
*/
|
||||||
|
public TbChryxxb selectTbChryxxbById(Integer id){
|
||||||
|
return tbChryxxbMapper.selectTbChryxxbById(id);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* 查询检查站查获人员信息
|
||||||
|
*
|
||||||
|
* @param HCRYBH 检查站查获人员信息编号
|
||||||
* @return 检查站查获人员信息
|
* @return 检查站查获人员信息
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public TbChryxxb selectTbChryxxbById(String HCRYBH)
|
public TbChryxxb selectTbChryxxbByHcrybh(String HCRYBH)
|
||||||
{
|
{
|
||||||
return tbChryxxbMapper.selectTbChryxxbById(HCRYBH);
|
return tbChryxxbMapper.selectTbChryxxbByHcrybh(HCRYBH);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -42,7 +55,14 @@ public class TbChryxxbServiceImpl implements ITbChryxxbService
|
||||||
@Override
|
@Override
|
||||||
public List<TbChryxxb> selectTbChryxxbList(TbChryxxb tbChryxxb)
|
public List<TbChryxxb> selectTbChryxxbList(TbChryxxb tbChryxxb)
|
||||||
{
|
{
|
||||||
return tbChryxxbMapper.selectTbChryxxbList(tbChryxxb);
|
List<TbChryxxb> chryxxbList = tbChryxxbMapper.selectTbChryxxbList(tbChryxxb);
|
||||||
|
return chryxxbList;
|
||||||
|
}
|
||||||
|
public TableDataInfo selectTbChryxxbList(TbChryxxb tbChryxxb, Integer pageNum, Integer pageSize)
|
||||||
|
{
|
||||||
|
PageHelper.startPage(pageNum,pageSize);
|
||||||
|
List<TbChryxxb> chryxxbList = tbChryxxbMapper.selectTbChryxxbList(tbChryxxb);
|
||||||
|
return getDataTable(chryxxbList);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -72,13 +92,13 @@ public class TbChryxxbServiceImpl implements ITbChryxxbService
|
||||||
/**
|
/**
|
||||||
* 删除检查站查获人员信息对象
|
* 删除检查站查获人员信息对象
|
||||||
*
|
*
|
||||||
* @param ids 需要删除的数据ID
|
* @param HCRYBHs 需要删除的数据ID
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public int deleteTbChryxxbByIds(String ids)
|
public int deleteTbChryxxbByHcrybhs(String HCRYBHs)
|
||||||
{
|
{
|
||||||
return tbChryxxbMapper.deleteTbChryxxbByIds(Convert.toStrArray(ids));
|
return tbChryxxbMapper.deleteTbChryxxbByHcrybhs(Convert.toStrArray(HCRYBHs));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -88,8 +108,39 @@ public class TbChryxxbServiceImpl implements ITbChryxxbService
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public int deleteTbChryxxbById(String HCRYBH)
|
public int deleteTbChryxxbByHcrybh(String HCRYBH)
|
||||||
{
|
{
|
||||||
return tbChryxxbMapper.deleteTbChryxxbById(HCRYBH);
|
return tbChryxxbMapper.deleteTbChryxxbByHcrybh(HCRYBH);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除检查站查获人员信息
|
||||||
|
*
|
||||||
|
* @param id 检查站查获人员信息ID
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int deleteTbChryxxbById(Integer id){
|
||||||
|
return tbChryxxbMapper.deleteTbChryxxbById(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除检查站查获人员信息
|
||||||
|
*
|
||||||
|
* @param ids 需要删除的数据ID
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int deleteTbChryxxbByIds(String ids){
|
||||||
|
return tbChryxxbMapper.deleteTbChryxxbByIds(Convert.toIntArray(ids));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 从人车物核查表及卡点表获取查货人员信息
|
||||||
|
*
|
||||||
|
* @param date 盘查日期
|
||||||
|
* @return 检查站查获人员信息集合
|
||||||
|
*/
|
||||||
|
public List<TbChryxxb> selectTbChryxxbListFromTbCheckPerson(String date){
|
||||||
|
return tbChryxxbMapper.selectTbChryxxbListFromTbCheckPerson(date);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -6,11 +6,16 @@ import java.util.UUID;
|
||||||
import basepro.manager.common.utils.DateUtils;
|
import basepro.manager.common.utils.DateUtils;
|
||||||
import basepro.manager.mapper.TbMdjfjxxxbMapper;
|
import basepro.manager.mapper.TbMdjfjxxxbMapper;
|
||||||
import basepro.manager.pojo.TbMdjfjxxxb;
|
import basepro.manager.pojo.TbMdjfjxxxb;
|
||||||
|
import basepro.manager.pojo.TbXjxdzhxxb;
|
||||||
import basepro.manager.service.ITbMdjfjxxxbService;
|
import basepro.manager.service.ITbMdjfjxxxbService;
|
||||||
import com.alibaba.dubbo.config.annotation.Service;
|
import com.alibaba.dubbo.config.annotation.Service;
|
||||||
|
import com.github.pagehelper.PageHelper;
|
||||||
|
import guo.ping.e3mall.common.page.TableDataInfo;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import basepro.manager.common.core.text.Convert;
|
import basepro.manager.common.core.text.Convert;
|
||||||
|
|
||||||
|
import static guo.ping.e3mall.common.page.TablePageUtils.getDataTable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 矛盾纠纷简项信息Service业务层处理
|
* 矛盾纠纷简项信息Service业务层处理
|
||||||
*
|
*
|
||||||
|
|
@ -47,6 +52,13 @@ public class TbMdjfjxxxbServiceImpl implements ITbMdjfjxxxbService
|
||||||
return tbMdjfjxxxbMapper.selectTbMdjfjxxxbList(tbMdjfjxxxb);
|
return tbMdjfjxxxbMapper.selectTbMdjfjxxxbList(tbMdjfjxxxb);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public TableDataInfo selectTbMdjfjxxxbList(TbMdjfjxxxb tbMdjfjxxxb, Integer pageNum, Integer pageSize) {
|
||||||
|
PageHelper.startPage(pageNum,pageSize);
|
||||||
|
List<TbMdjfjxxxb> list = tbMdjfjxxxbMapper.selectTbMdjfjxxxbList(tbMdjfjxxxb);
|
||||||
|
return getDataTable(list);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 新增矛盾纠纷简项信息
|
* 新增矛盾纠纷简项信息
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -7,9 +7,11 @@ import org.springframework.boot.builder.SpringApplicationBuilder;
|
||||||
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
|
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
|
||||||
import org.springframework.context.annotation.ComponentScan;
|
import org.springframework.context.annotation.ComponentScan;
|
||||||
import org.springframework.scheduling.annotation.EnableAsync;
|
import org.springframework.scheduling.annotation.EnableAsync;
|
||||||
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
||||||
|
|
||||||
@SpringBootApplication(exclude = { DataSourceAutoConfiguration.class })
|
@SpringBootApplication(exclude = { DataSourceAutoConfiguration.class })
|
||||||
@EnableAsync
|
@EnableAsync
|
||||||
|
@EnableScheduling
|
||||||
public class BaseProWebApplicationStarter extends SpringBootServletInitializer {
|
public class BaseProWebApplicationStarter extends SpringBootServletInitializer {
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,44 @@
|
||||||
|
package basepro.manager.controller;
|
||||||
|
|
||||||
|
import basepro.manager.pojo.TbChryxxb;
|
||||||
|
import basepro.manager.service.ISysDictDataService;
|
||||||
|
import basepro.manager.service.ITbChryxxbService;
|
||||||
|
import com.alibaba.dubbo.config.annotation.Reference;
|
||||||
|
import org.springframework.scheduling.annotation.Scheduled;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
|
import java.text.SimpleDateFormat;
|
||||||
|
import java.time.LocalDate;
|
||||||
|
import java.time.Month;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Component
|
||||||
|
public class InsertChryTask {
|
||||||
|
|
||||||
|
@Reference
|
||||||
|
private ITbChryxxbService tbChryxxbService;
|
||||||
|
@Reference
|
||||||
|
private ISysDictDataService sysDictDataService;
|
||||||
|
|
||||||
|
// @Scheduled(cron = "0 * * * * *") // 每分钟执行一次
|
||||||
|
@Scheduled(cron = "0 0 1 * * ?") // 每天凌晨1点执行异一次
|
||||||
|
public void executeEveryMinute() {
|
||||||
|
/**
|
||||||
|
* 获取前一天的日期 LocalDate.now()——今天 minusDays(1)——减1天 默认格式:yyyy-MM-dd
|
||||||
|
*/
|
||||||
|
LocalDate yesterday = LocalDate.now().minusDays(1);
|
||||||
|
// 2021-03-07
|
||||||
|
// LocalDate specificDate = LocalDate.of(2021, Month.MARCH, 7);
|
||||||
|
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
||||||
|
String now = formatter.format(new Date());
|
||||||
|
System.out.println("抽取查获人员信息任务执行:"+now);
|
||||||
|
|
||||||
|
List<TbChryxxb> chryxxbList = tbChryxxbService.selectTbChryxxbListFromTbCheckPerson(yesterday.toString());
|
||||||
|
for (TbChryxxb tbChryxxb : chryxxbList) {
|
||||||
|
String xzqhmc = sysDictDataService.selectDictLabel("anhui_code", tbChryxxb.getXZQHDM());
|
||||||
|
tbChryxxb.setXZQHMC(xzqhmc);
|
||||||
|
tbChryxxbService.insertTbChryxxb(tbChryxxb);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -13,7 +13,9 @@ import com.alibaba.dubbo.config.annotation.Reference;
|
||||||
import guo.ping.e3mall.common.annotation.Log;
|
import guo.ping.e3mall.common.annotation.Log;
|
||||||
import guo.ping.e3mall.common.controller.BaseController;
|
import guo.ping.e3mall.common.controller.BaseController;
|
||||||
import guo.ping.e3mall.common.enums.BusinessType;
|
import guo.ping.e3mall.common.enums.BusinessType;
|
||||||
|
import guo.ping.e3mall.common.page.PageDomain;
|
||||||
import guo.ping.e3mall.common.page.TableDataInfo;
|
import guo.ping.e3mall.common.page.TableDataInfo;
|
||||||
|
import guo.ping.e3mall.common.page.TableSupport;
|
||||||
import guo.ping.e3mall.common.pojo.AjaxResult;
|
import guo.ping.e3mall.common.pojo.AjaxResult;
|
||||||
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
||||||
import org.springframework.stereotype.Controller;
|
import org.springframework.stereotype.Controller;
|
||||||
|
|
@ -38,7 +40,6 @@ public class TbChryxxbController extends BaseController
|
||||||
|
|
||||||
@Reference
|
@Reference
|
||||||
private ITbChryxxbService tbChryxxbService;
|
private ITbChryxxbService tbChryxxbService;
|
||||||
|
|
||||||
@RequiresPermissions("system:chryxxb:view")
|
@RequiresPermissions("system:chryxxb:view")
|
||||||
@GetMapping()
|
@GetMapping()
|
||||||
public String chryxxb()
|
public String chryxxb()
|
||||||
|
|
@ -55,8 +56,11 @@ public class TbChryxxbController extends BaseController
|
||||||
public TableDataInfo list(TbChryxxb tbChryxxb)
|
public TableDataInfo list(TbChryxxb tbChryxxb)
|
||||||
{
|
{
|
||||||
startPage();
|
startPage();
|
||||||
List<TbChryxxb> list = tbChryxxbService.selectTbChryxxbList(tbChryxxb);
|
PageDomain pageDomain = TableSupport.buildPageRequest();
|
||||||
return getDataTable(list);
|
Integer pageNum = pageDomain.getPageNum();
|
||||||
|
Integer pageSize = pageDomain.getPageSize();
|
||||||
|
TableDataInfo list = tbChryxxbService.selectTbChryxxbList(tbChryxxb,pageNum,pageSize);
|
||||||
|
return list;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -90,7 +94,7 @@ public class TbChryxxbController extends BaseController
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
public AjaxResult addSave(TbChryxxb tbChryxxb)
|
public AjaxResult addSave(TbChryxxb tbChryxxb)
|
||||||
{
|
{
|
||||||
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
|
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
||||||
Calendar today = Calendar.getInstance();
|
Calendar today = Calendar.getInstance();
|
||||||
today.add(Calendar.DATE,-1);
|
today.add(Calendar.DATE,-1);
|
||||||
Date jcsj = today.getTime();
|
Date jcsj = today.getTime();
|
||||||
|
|
@ -107,10 +111,21 @@ public class TbChryxxbController extends BaseController
|
||||||
/**
|
/**
|
||||||
* 修改检查站查获人员信息
|
* 修改检查站查获人员信息
|
||||||
*/
|
*/
|
||||||
@GetMapping("/edit/{HCRYBH}")
|
/*@GetMapping("/edit/{HCRYBH}")
|
||||||
public String edit(@PathVariable("HCRYBH") String HCRYBH, ModelMap mmap)
|
public String edit(@PathVariable("HCRYBH") String HCRYBH, ModelMap mmap)
|
||||||
{
|
{
|
||||||
TbChryxxb tbChryxxb = tbChryxxbService.selectTbChryxxbById(HCRYBH);
|
TbChryxxb tbChryxxb = tbChryxxbService.selectTbChryxxbByHcrybh(HCRYBH);
|
||||||
|
mmap.put("tbChryxxb", tbChryxxb);
|
||||||
|
return prefix + "/edit";
|
||||||
|
}*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改检查站查获人员信息
|
||||||
|
*/
|
||||||
|
@GetMapping("/edit/{id}")
|
||||||
|
public String edit(@PathVariable("id") Integer id, ModelMap mmap)
|
||||||
|
{
|
||||||
|
TbChryxxb tbChryxxb = tbChryxxbService.selectTbChryxxbById(id);
|
||||||
mmap.put("tbChryxxb", tbChryxxb);
|
mmap.put("tbChryxxb", tbChryxxb);
|
||||||
return prefix + "/edit";
|
return prefix + "/edit";
|
||||||
}
|
}
|
||||||
|
|
@ -124,7 +139,7 @@ public class TbChryxxbController extends BaseController
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
public AjaxResult editSave(TbChryxxb tbChryxxb)
|
public AjaxResult editSave(TbChryxxb tbChryxxb)
|
||||||
{
|
{
|
||||||
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
|
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
||||||
Calendar today = Calendar.getInstance();
|
Calendar today = Calendar.getInstance();
|
||||||
today.add(Calendar.DATE,-1);
|
today.add(Calendar.DATE,-1);
|
||||||
Date jcsj = today.getTime();
|
Date jcsj = today.getTime();
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,8 @@ import basepro.manager.pojo.TbMdjfjxxxb;
|
||||||
import basepro.manager.service.ITbMdjfjxxxbService;
|
import basepro.manager.service.ITbMdjfjxxxbService;
|
||||||
import com.alibaba.dubbo.config.annotation.Reference;
|
import com.alibaba.dubbo.config.annotation.Reference;
|
||||||
import guo.ping.e3mall.common.annotation.Log;
|
import guo.ping.e3mall.common.annotation.Log;
|
||||||
|
import guo.ping.e3mall.common.page.PageDomain;
|
||||||
|
import guo.ping.e3mall.common.page.TableSupport;
|
||||||
import guo.ping.e3mall.common.pojo.AjaxResult;
|
import guo.ping.e3mall.common.pojo.AjaxResult;
|
||||||
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
||||||
import org.springframework.stereotype.Controller;
|
import org.springframework.stereotype.Controller;
|
||||||
|
|
@ -53,8 +55,11 @@ public class TbMdjfjxxxbController extends BaseController
|
||||||
public TableDataInfo list(TbMdjfjxxxb tbMdjfjxxxb)
|
public TableDataInfo list(TbMdjfjxxxb tbMdjfjxxxb)
|
||||||
{
|
{
|
||||||
startPage();
|
startPage();
|
||||||
List<TbMdjfjxxxb> list = tbMdjfjxxxbService.selectTbMdjfjxxxbList(tbMdjfjxxxb);
|
PageDomain pageDomain = TableSupport.buildPageRequest();
|
||||||
return getDataTable(list);
|
Integer pageNum = pageDomain.getPageNum();
|
||||||
|
Integer pageSize = pageDomain.getPageSize();
|
||||||
|
TableDataInfo list = tbMdjfjxxxbService.selectTbMdjfjxxxbList(tbMdjfjxxxb,pageNum,pageSize);
|
||||||
|
return list;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -71,7 +71,7 @@
|
||||||
<div class="col-sm-7">
|
<div class="col-sm-7">
|
||||||
<div class="input-group date">
|
<div class="input-group date">
|
||||||
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
|
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
|
||||||
<input name="jcsjStr" class="form-control" placeholder="yyyy-MM-dd" type="text" required>
|
<input name="jcsjStr" class="form-control" placeholder="检查时间" type="text" required>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -95,8 +95,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
$("input[name='jcsjStr']").datetimepicker({
|
$("input[name='jcsjStr']").datetimepicker({
|
||||||
format: "yyyy-mm-dd",
|
format: "yyyy-mm-dd hh:ii:ss",
|
||||||
minView: "month",
|
minView: 0,
|
||||||
autoclose: true
|
autoclose: true
|
||||||
});
|
});
|
||||||
function selectDeptTree() {
|
function selectDeptTree() {
|
||||||
|
|
|
||||||
|
|
@ -110,10 +110,14 @@
|
||||||
checkbox: true
|
checkbox: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
field : 'hcrybh',
|
field : 'id',
|
||||||
title : '检查站核查人员编号',
|
title : '主键',
|
||||||
visible: false
|
visible: false
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
field : 'hcrybh',
|
||||||
|
title : '检查站核查人员编号',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
field : 'xzqhdm',
|
field : 'xzqhdm',
|
||||||
title : '检查站所属行政区划代码',
|
title : '检查站所属行政区划代码',
|
||||||
|
|
@ -161,8 +165,8 @@
|
||||||
align: 'center',
|
align: 'center',
|
||||||
formatter: function(value, row, index) {
|
formatter: function(value, row, index) {
|
||||||
var actions = [];
|
var actions = [];
|
||||||
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.hcrybh + '\')"><i class="fa fa-edit"></i>编辑</a> ');
|
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.id + '\')"><i class="fa fa-edit"></i>编辑</a> ');
|
||||||
actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.hcrybh + '\')"><i class="fa fa-remove"></i>删除</a>');
|
actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.id + '\')"><i class="fa fa-remove"></i>删除</a>');
|
||||||
return actions.join('');
|
return actions.join('');
|
||||||
}
|
}
|
||||||
}]
|
}]
|
||||||
|
|
|
||||||
|
|
@ -7,10 +7,11 @@
|
||||||
<body class="white-bg">
|
<body class="white-bg">
|
||||||
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
||||||
<form class="form-horizontal m" id="form-chryxxb-edit" th:object="${tbChryxxb}">
|
<form class="form-horizontal m" id="form-chryxxb-edit" th:object="${tbChryxxb}">
|
||||||
|
<input name="id" class="form-control" type="text" th:field="*{id}">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="col-sm-4 control-label is-required">核查人员编号:</label>
|
<label class="col-sm-4 control-label is-required">核查人员编号:</label>
|
||||||
<div class="col-sm-7">
|
<div class="col-sm-7">
|
||||||
<input name="HCRYBH" disabled class="form-control" type="text" th:field="*{HCRYBH}" required>
|
<input name="HCRYBH" class="form-control" type="text" th:field="*{HCRYBH}" required>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -73,7 +74,7 @@
|
||||||
<div class="col-sm-7">
|
<div class="col-sm-7">
|
||||||
<div class="input-group date">
|
<div class="input-group date">
|
||||||
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
|
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
|
||||||
<input name="jcsjStr" th:value="${#dates.format(tbChryxxb.jcsj, 'yyyy-MM-dd')}" class="form-control" placeholder="yyyy-MM-dd" type="text" required>
|
<input name="jcsjStr" th:value="${#dates.format(tbChryxxb.jcsj, 'yyyy-MM-dd hh:mm:ss')}" class="form-control" placeholder="检查时间" type="text" required>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -94,8 +95,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
$("input[name='jcsjStr']").datetimepicker({
|
$("input[name='jcsjStr']").datetimepicker({
|
||||||
format: "yyyy-mm-dd",
|
format: "yyyy-mm-dd hh:ii:ss HH:mm:ss",
|
||||||
minView: "month",
|
minView: 0,
|
||||||
autoclose: true
|
autoclose: true
|
||||||
});
|
});
|
||||||
function selectDeptTree() {
|
function selectDeptTree() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue