parent
bff99a6b82
commit
4a160c1b67
@ -0,0 +1,29 @@
|
|||||||
|
package com.ruoyi.web.controller.carrier.issued;
|
||||||
|
|
||||||
|
import com.ruoyi.common.core.controller.BaseController;
|
||||||
|
import com.ruoyi.web.controller.manager.CarrierIssuedManager;
|
||||||
|
import org.springframework.stereotype.Controller;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ClassName: CarrierIssuedController
|
||||||
|
* Package: com.ruoyi.web.controller.carrier.Issued
|
||||||
|
* Description:上级下发载体登记
|
||||||
|
*
|
||||||
|
* @Author wangxy
|
||||||
|
* @Create 2024/9/24 10:23
|
||||||
|
* @Version 1.0
|
||||||
|
*/
|
||||||
|
@Controller
|
||||||
|
@RequestMapping("/system/carrierIssued")
|
||||||
|
public class CarrierIssuedController extends BaseController {
|
||||||
|
|
||||||
|
private String prefix = "system/carrierIssued";
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
private CarrierIssuedManager carrierIssuedManager;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
package com.ruoyi.web.controller.manager;
|
||||||
|
|
||||||
|
import com.ruoyi.system.service.carrier.TdCarrierIssuedService;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ClassName: TdCarrierIssuedManager
|
||||||
|
* Package: com.ruoyi.web.controller.manager
|
||||||
|
* Description: 上级下发载体
|
||||||
|
*
|
||||||
|
* @Author wangxy
|
||||||
|
* @Create 2024/9/24 10:21
|
||||||
|
* @Version 1.0
|
||||||
|
*/
|
||||||
|
@Component
|
||||||
|
public class CarrierIssuedManager {
|
||||||
|
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
private TdCarrierIssuedService carrierIssuedService;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,175 @@
|
|||||||
|
package com.ruoyi.system.domain.carrier;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
import com.ruoyi.common.core.domain.BaseEntity;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.EqualsAndHashCode;
|
||||||
|
import lombok.experimental.Accessors;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 载体下发
|
||||||
|
* @TableName td_carrier_issued
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@EqualsAndHashCode(callSuper = false)
|
||||||
|
@Accessors(chain = true)
|
||||||
|
public class TdCarrierIssued extends BaseEntity {
|
||||||
|
/**
|
||||||
|
* id
|
||||||
|
*/
|
||||||
|
@TableId
|
||||||
|
private String id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 载体数量
|
||||||
|
*/
|
||||||
|
private String carrierCount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 载体类型
|
||||||
|
*/
|
||||||
|
private String carrierLevel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 紧急程度
|
||||||
|
*/
|
||||||
|
private String carrierExtent;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 密级
|
||||||
|
*/
|
||||||
|
private String carrierSecret;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 编号
|
||||||
|
*/
|
||||||
|
private String carrierNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 保密期限
|
||||||
|
*/
|
||||||
|
private String carrierTerm;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 发放范围
|
||||||
|
*/
|
||||||
|
private String carrierContent;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 使用要求
|
||||||
|
*/
|
||||||
|
private String mentsUse;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 使用开始时间
|
||||||
|
*/
|
||||||
|
private Date mentsTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 使用结束时间
|
||||||
|
*/
|
||||||
|
private Date mentsendTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 使用期限
|
||||||
|
*/
|
||||||
|
private String expirationTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 使用人员
|
||||||
|
*/
|
||||||
|
private String usageUser;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 回收时间
|
||||||
|
*/
|
||||||
|
private Date reclaimTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 保存地点
|
||||||
|
*/
|
||||||
|
private String saveLocation;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 地点要求
|
||||||
|
*/
|
||||||
|
private String locationRequire;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 维护部门
|
||||||
|
*/
|
||||||
|
private String maintainDepart;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 维护人员
|
||||||
|
*/
|
||||||
|
private String maintainUser;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 维护日期
|
||||||
|
*/
|
||||||
|
private Date maintainDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 销毁部门
|
||||||
|
*/
|
||||||
|
private String destoryDepart;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 销毁人员
|
||||||
|
*/
|
||||||
|
private String destoryUser;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 销毁日期
|
||||||
|
*/
|
||||||
|
private Date destoryDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 销毁方式
|
||||||
|
*/
|
||||||
|
private String destoryManner;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 状态
|
||||||
|
*/
|
||||||
|
private String status;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 载体名称
|
||||||
|
*/
|
||||||
|
private String carrierName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 市州
|
||||||
|
*/
|
||||||
|
private String areaCity;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 区县
|
||||||
|
*/
|
||||||
|
private String areaDistrict;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 维护旁站人员
|
||||||
|
*/
|
||||||
|
private String maintainStand;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 销毁旁站人员
|
||||||
|
*/
|
||||||
|
private String destoryStand;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 下发单位
|
||||||
|
*/
|
||||||
|
private String issuedDept;
|
||||||
|
|
||||||
|
|
||||||
|
@TableField(exist = false)
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
}
|
@ -0,0 +1,19 @@
|
|||||||
|
package com.ruoyi.system.mapper.carrier;
|
||||||
|
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
|
import com.ruoyi.system.domain.carrier.TdCarrierIssued;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Administrator
|
||||||
|
* @description 针对表【td_carrier_issued(载体下发)】的数据库操作Mapper
|
||||||
|
* @createDate 2024-09-24 10:14:48
|
||||||
|
* @Entity generator.domain.TdCarrierIssued
|
||||||
|
*/
|
||||||
|
public interface TdCarrierIssuedMapper extends BaseMapper<TdCarrierIssued> {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -0,0 +1,14 @@
|
|||||||
|
package com.ruoyi.system.service.carrier;
|
||||||
|
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||||||
|
import com.ruoyi.system.domain.carrier.TdCarrierIssued;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Administrator
|
||||||
|
* @description 针对表【td_carrier_issued(载体下发)】的数据库操作Service
|
||||||
|
* @createDate 2024-09-24 10:14:48
|
||||||
|
*/
|
||||||
|
public interface TdCarrierIssuedService extends IService<TdCarrierIssued> {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,22 @@
|
|||||||
|
package com.ruoyi.system.service.carrier.impl;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
|
import com.ruoyi.system.domain.carrier.TdCarrierIssued;
|
||||||
|
import com.ruoyi.system.mapper.carrier.TdCarrierIssuedMapper;
|
||||||
|
import com.ruoyi.system.service.carrier.TdCarrierIssuedService;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Administrator
|
||||||
|
* @description 针对表【td_carrier_issued(载体下发)】的数据库操作Service实现
|
||||||
|
* @createDate 2024-09-24 10:14:48
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
public class TdCarrierIssuedServiceImpl extends ServiceImpl<TdCarrierIssuedMapper, TdCarrierIssued>
|
||||||
|
implements TdCarrierIssuedService {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -0,0 +1,59 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE mapper
|
||||||
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
|
<mapper namespace="com.ruoyi.system.mapper.carrier.TdCarrierIssuedMapper">
|
||||||
|
|
||||||
|
<resultMap id="BaseResultMap" type="com.ruoyi.system.domain.carrier.TdCarrierIssued">
|
||||||
|
<id property="id" column="id" jdbcType="VARCHAR"/>
|
||||||
|
<result property="carrierCount" column="carrier_count" jdbcType="VARCHAR"/>
|
||||||
|
<result property="carrierLevel" column="carrier_level" jdbcType="VARCHAR"/>
|
||||||
|
<result property="carrierExtent" column="carrier_extent" jdbcType="VARCHAR"/>
|
||||||
|
<result property="carrierSecret" column="carrier_secret" jdbcType="VARCHAR"/>
|
||||||
|
<result property="carrierNumber" column="carrier_number" jdbcType="VARCHAR"/>
|
||||||
|
<result property="carrierTerm" column="carrier_term" jdbcType="VARCHAR"/>
|
||||||
|
<result property="carrierContent" column="carrier_content" jdbcType="VARCHAR"/>
|
||||||
|
<result property="mentsUse" column="ments_use" jdbcType="VARCHAR"/>
|
||||||
|
<result property="mentsTime" column="ments_time" jdbcType="TIMESTAMP"/>
|
||||||
|
<result property="usageUser" column="usage_user" jdbcType="VARCHAR"/>
|
||||||
|
<result property="saveLocation" column="save_location" jdbcType="VARCHAR"/>
|
||||||
|
<result property="locationRequire" column="location_require" jdbcType="VARCHAR"/>
|
||||||
|
<result property="maintainDepart" column="maintain_depart" jdbcType="VARCHAR"/>
|
||||||
|
<result property="maintainUser" column="maintain_user" jdbcType="VARCHAR"/>
|
||||||
|
<result property="maintainDate" column="maintain_date" jdbcType="TIMESTAMP"/>
|
||||||
|
<result property="destoryDepart" column="destory_depart" jdbcType="VARCHAR"/>
|
||||||
|
<result property="destoryUser" column="destory_user" jdbcType="VARCHAR"/>
|
||||||
|
<result property="destoryDate" column="destory_date" jdbcType="TIMESTAMP"/>
|
||||||
|
<result property="destoryManner" column="destory_manner" jdbcType="VARCHAR"/>
|
||||||
|
<result property="status" column="status" jdbcType="CHAR"/>
|
||||||
|
<result property="createBy" column="create_by" jdbcType="VARCHAR"/>
|
||||||
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
||||||
|
<result property="updateBy" column="update_by" jdbcType="VARCHAR"/>
|
||||||
|
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
||||||
|
<result property="remark" column="remark" jdbcType="VARCHAR"/>
|
||||||
|
<result property="carrierName" column="carrier_name" jdbcType="VARCHAR"/>
|
||||||
|
<result property="areaCity" column="area_city" jdbcType="VARCHAR"/>
|
||||||
|
<result property="areaDistrict" column="area_district" jdbcType="VARCHAR"/>
|
||||||
|
<result property="maintainStand" column="maintain_stand" jdbcType="VARCHAR"/>
|
||||||
|
<result property="destoryStand" column="destory_stand" jdbcType="VARCHAR"/>
|
||||||
|
<result property="issuedDept" column="issued_dept" jdbcType="VARCHAR"/>
|
||||||
|
<result property="expirationTime" column="expiration_time" jdbcType="VARCHAR"/>
|
||||||
|
<result property="mentsendTime" column="mentSend_time" jdbcType="TIMESTAMP"/>
|
||||||
|
<result property="reclaimTime" column="reclaim_time" jdbcType="TIMESTAMP"/>
|
||||||
|
</resultMap>
|
||||||
|
|
||||||
|
<sql id="Base_Column_List">
|
||||||
|
id,carrier_count,carrier_level,
|
||||||
|
carrier_extent,carrier_secret,carrier_number,
|
||||||
|
carrier_term,carrier_content,ments_use,
|
||||||
|
ments_time,usage_user,save_location,
|
||||||
|
location_require,maintain_depart,maintain_user,
|
||||||
|
maintain_date,destory_depart,destory_user,
|
||||||
|
destory_date,destory_manner,status,
|
||||||
|
create_by,create_time,update_by,
|
||||||
|
update_time,remark,carrier_name,
|
||||||
|
area_city,area_district,maintain_stand,
|
||||||
|
destory_stand,issued_dept,expiration_time,
|
||||||
|
mentSend_time,reclaim_time
|
||||||
|
</sql>
|
||||||
|
</mapper>
|
Loading…
Reference in new issue