parent
1762b676b6
commit
dcd9c68117
@ -0,0 +1,59 @@
|
||||
package com.bs.ct.domain;
|
||||
|
||||
import com.bs.common.annotation.Excel;
|
||||
import com.bs.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* 图库目录对象 ct_gallery_cata
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Accessors(chain = true)
|
||||
@TableName("ct_gallery_cata")
|
||||
@Data
|
||||
public class CtGalleryCata extends BaseEntity{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
@ApiModelProperty(value = "id")
|
||||
private Long id;
|
||||
|
||||
/** 目录名称 */
|
||||
|
||||
@Excel(name = "目录名称")
|
||||
@ApiModelProperty(value = "目录名称")
|
||||
private String cataName;
|
||||
|
||||
/** 父级id */
|
||||
|
||||
@Excel(name = "父级id")
|
||||
@ApiModelProperty(value = "父级id")
|
||||
private Long parentId;
|
||||
|
||||
/** 类型 */
|
||||
|
||||
@Excel(name = "类型")
|
||||
@ApiModelProperty(value = "类型")
|
||||
private String type;
|
||||
|
||||
/** 备注 */
|
||||
|
||||
@Excel(name = "备注")
|
||||
@ApiModelProperty(value = "备注")
|
||||
private String remarks;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,75 @@
|
||||
package com.bs.ct.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.bs.common.annotation.Excel;
|
||||
import com.bs.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* 图库目录共享对象 ct_gallery_cata_share
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Accessors(chain = true)
|
||||
@TableName("ct_gallery_cata_share")
|
||||
@Data
|
||||
public class CtGalleryCataShare extends BaseEntity{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
@ApiModelProperty(value = "id")
|
||||
private Long id;
|
||||
|
||||
/** 共享类型目录共享、图片共享 */
|
||||
|
||||
@Excel(name = "共享类型目录共享、图片共享")
|
||||
@ApiModelProperty(value = "共享类型目录共享、图片共享")
|
||||
private String type;
|
||||
|
||||
/** 目录id */
|
||||
|
||||
@Excel(name = "目录id")
|
||||
@ApiModelProperty(value = "目录id")
|
||||
private Long cataId;
|
||||
|
||||
/** 共享用户 */
|
||||
|
||||
@Excel(name = "共享用户")
|
||||
@ApiModelProperty(value = "共享用户")
|
||||
private Long userId;
|
||||
|
||||
/** 开始时间 */
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "开始时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
@ApiModelProperty(value = "开始时间")
|
||||
private Date beginDate;
|
||||
|
||||
/** 结束时间 */
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "结束时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
@ApiModelProperty(value = "结束时间")
|
||||
private Date endDate;
|
||||
|
||||
/** 备注 */
|
||||
|
||||
@Excel(name = "备注")
|
||||
@ApiModelProperty(value = "备注")
|
||||
private String remarks;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,106 @@
|
||||
package com.bs.ct.domain;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.bs.common.annotation.Excel;
|
||||
import com.bs.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* 图库图片对象 ct_gallery_images
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Accessors(chain = true)
|
||||
@TableName("ct_gallery_images")
|
||||
@Data
|
||||
public class CtGalleryImages extends BaseEntity{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
@ApiModelProperty(value = "id")
|
||||
private Long id;
|
||||
|
||||
/** 目录id */
|
||||
|
||||
@Excel(name = "目录id")
|
||||
@ApiModelProperty(value = "目录id")
|
||||
private Long cataId;
|
||||
|
||||
/** 图片名称 */
|
||||
|
||||
@Excel(name = "图片名称")
|
||||
@ApiModelProperty(value = "图片名称")
|
||||
private String imageName;
|
||||
|
||||
/** 图片标题 */
|
||||
|
||||
@Excel(name = "图片标题")
|
||||
@ApiModelProperty(value = "图片标题")
|
||||
private String imageTitle;
|
||||
|
||||
/** 图片路径 */
|
||||
|
||||
@Excel(name = "图片路径")
|
||||
@ApiModelProperty(value = "图片路径")
|
||||
private String imagePath;
|
||||
|
||||
/** 图片大小 */
|
||||
|
||||
@Excel(name = "图片大小")
|
||||
@ApiModelProperty(value = "图片大小")
|
||||
private BigDecimal imageSize;
|
||||
|
||||
/** 图片拍摄时间 */
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "图片拍摄时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
@ApiModelProperty(value = "图片拍摄时间")
|
||||
private Date photoTime;
|
||||
|
||||
/** 图片上传时间 */
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "图片上传时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
@ApiModelProperty(value = "图片上传时间")
|
||||
private Date uploadTime;
|
||||
|
||||
/** 是否公开 */
|
||||
|
||||
@Excel(name = "是否公开")
|
||||
@ApiModelProperty(value = "是否公开")
|
||||
private String isOpen;
|
||||
|
||||
/** 图片关键字 */
|
||||
|
||||
@Excel(name = "图片关键字")
|
||||
@ApiModelProperty(value = "图片关键字")
|
||||
private String keyWords;
|
||||
|
||||
/** 附件id */
|
||||
|
||||
@Excel(name = "附件id")
|
||||
@ApiModelProperty(value = "附件id")
|
||||
private Long fileId;
|
||||
|
||||
/** 备注 */
|
||||
|
||||
@Excel(name = "备注")
|
||||
@ApiModelProperty(value = "备注")
|
||||
private String remarks;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,53 @@
|
||||
package com.bs.ct.domain;
|
||||
|
||||
import com.bs.common.annotation.Excel;
|
||||
import com.bs.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* 图库图片标签对象 ct_gallery_images_tag
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Accessors(chain = true)
|
||||
@TableName("ct_gallery_images_tag")
|
||||
@Data
|
||||
public class CtGalleryImagesTag extends BaseEntity{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
@ApiModelProperty(value = "id")
|
||||
private Long id;
|
||||
|
||||
/** 图片id */
|
||||
|
||||
@Excel(name = "图片id")
|
||||
@ApiModelProperty(value = "图片id")
|
||||
private Long imageId;
|
||||
|
||||
/** 标签名称 */
|
||||
|
||||
@Excel(name = "标签名称")
|
||||
@ApiModelProperty(value = "标签名称")
|
||||
private String tagName;
|
||||
|
||||
/** 备注 */
|
||||
|
||||
@Excel(name = "备注")
|
||||
@ApiModelProperty(value = "备注")
|
||||
private String remarks;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,77 @@
|
||||
package com.bs.ct.domain;
|
||||
|
||||
import com.bs.common.annotation.Excel;
|
||||
import com.bs.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* 标签信息对象 ct_tag
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Accessors(chain = true)
|
||||
@TableName("ct_tag")
|
||||
@Data
|
||||
public class CtTag extends BaseEntity{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
@ApiModelProperty(value = "id")
|
||||
private Long id;
|
||||
|
||||
/** 标签名称 */
|
||||
|
||||
@Excel(name = "标签名称")
|
||||
@ApiModelProperty(value = "标签名称")
|
||||
private String tagName;
|
||||
|
||||
/** 标签说明 */
|
||||
|
||||
@Excel(name = "标签说明")
|
||||
@ApiModelProperty(value = "标签说明")
|
||||
private String tagDesc;
|
||||
|
||||
/** 是否需要拍照 */
|
||||
|
||||
@Excel(name = "是否需要拍照")
|
||||
@ApiModelProperty(value = "是否需要拍照")
|
||||
private String isPhoto;
|
||||
|
||||
/** 拍照数量要求 */
|
||||
|
||||
@Excel(name = "拍照数量要求")
|
||||
@ApiModelProperty(value = "拍照数量要求")
|
||||
private Long photoNum;
|
||||
|
||||
/** 照片存放目录 */
|
||||
|
||||
@Excel(name = "照片存放目录")
|
||||
@ApiModelProperty(value = "照片存放目录")
|
||||
private Long saveDir;
|
||||
|
||||
/** 附件id */
|
||||
|
||||
@Excel(name = "附件id")
|
||||
@ApiModelProperty(value = "附件id")
|
||||
private Long fileId;
|
||||
|
||||
/** 备注 */
|
||||
|
||||
@Excel(name = "备注")
|
||||
@ApiModelProperty(value = "备注")
|
||||
private String remarks;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,71 @@
|
||||
package com.bs.ct.domain;
|
||||
|
||||
import com.bs.common.annotation.Excel;
|
||||
import com.bs.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* 任务机构信息对象 ct_task_branch
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Accessors(chain = true)
|
||||
@TableName("ct_task_branch")
|
||||
@Data
|
||||
public class CtTaskBranch extends BaseEntity{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
@ApiModelProperty(value = "id")
|
||||
private Long id;
|
||||
|
||||
/** 任务id */
|
||||
|
||||
@Excel(name = "任务id")
|
||||
@ApiModelProperty(value = "任务id")
|
||||
private Long taskId;
|
||||
|
||||
/** 类型人员、机构 */
|
||||
|
||||
@Excel(name = "类型人员、机构")
|
||||
@ApiModelProperty(value = "类型人员、机构")
|
||||
private String type;
|
||||
|
||||
/** 机构代码 */
|
||||
|
||||
@Excel(name = "机构代码")
|
||||
@ApiModelProperty(value = "机构代码")
|
||||
private String branchCode;
|
||||
|
||||
/** 机构名称 */
|
||||
|
||||
@Excel(name = "机构名称")
|
||||
@ApiModelProperty(value = "机构名称")
|
||||
private String branchName;
|
||||
|
||||
/** 任务状态 */
|
||||
|
||||
@Excel(name = "任务状态")
|
||||
@ApiModelProperty(value = "任务状态")
|
||||
private String taskStatus;
|
||||
|
||||
/** 备注 */
|
||||
|
||||
@Excel(name = "备注")
|
||||
@ApiModelProperty(value = "备注")
|
||||
private String remarks;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,141 @@
|
||||
package com.bs.ct.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.bs.common.annotation.Excel;
|
||||
import com.bs.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* 任务反馈对象 ct_task_feedback
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Accessors(chain = true)
|
||||
@TableName("ct_task_feedback")
|
||||
@Data
|
||||
public class CtTaskFeedback extends BaseEntity{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
@ApiModelProperty(value = "id")
|
||||
private Long id;
|
||||
|
||||
/** 任务id */
|
||||
|
||||
@Excel(name = "任务id")
|
||||
@ApiModelProperty(value = "任务id")
|
||||
private Long taskId;
|
||||
|
||||
/** 机构任务id */
|
||||
|
||||
@Excel(name = "机构任务id")
|
||||
@ApiModelProperty(value = "机构任务id")
|
||||
private Long taskBranchId;
|
||||
|
||||
/** 机构代码 */
|
||||
|
||||
@Excel(name = "机构代码")
|
||||
@ApiModelProperty(value = "机构代码")
|
||||
private String branchCode;
|
||||
|
||||
/** 任务反馈时间 */
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "任务反馈时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
@ApiModelProperty(value = "任务反馈时间")
|
||||
private Date feedbackTime;
|
||||
|
||||
/** 任务完成情况 */
|
||||
|
||||
@Excel(name = "任务完成情况")
|
||||
@ApiModelProperty(value = "任务完成情况")
|
||||
private String taskDesc;
|
||||
|
||||
/** 操作人员工号 */
|
||||
|
||||
@Excel(name = "操作人员工号")
|
||||
@ApiModelProperty(value = "操作人员工号")
|
||||
private String userId;
|
||||
|
||||
/** 操作人员姓名 */
|
||||
|
||||
@Excel(name = "操作人员姓名")
|
||||
@ApiModelProperty(value = "操作人员姓名")
|
||||
private String userName;
|
||||
|
||||
/** 操作人员部门 */
|
||||
|
||||
@Excel(name = "操作人员部门")
|
||||
@ApiModelProperty(value = "操作人员部门")
|
||||
private String userDept;
|
||||
|
||||
/** 是否已拍照留存 */
|
||||
|
||||
@Excel(name = "是否已拍照留存")
|
||||
@ApiModelProperty(value = "是否已拍照留存")
|
||||
private String isPhoto;
|
||||
|
||||
/** 附件id */
|
||||
|
||||
@Excel(name = "附件id")
|
||||
@ApiModelProperty(value = "附件id")
|
||||
private Long fileId;
|
||||
|
||||
/** 审核人员id */
|
||||
|
||||
@Excel(name = "审核人员id")
|
||||
@ApiModelProperty(value = "审核人员id")
|
||||
private String checkUserId;
|
||||
|
||||
/** 审核人员姓名 */
|
||||
|
||||
@Excel(name = "审核人员姓名")
|
||||
@ApiModelProperty(value = "审核人员姓名")
|
||||
private String checkUserName;
|
||||
|
||||
/** 审核人员部门 */
|
||||
|
||||
@Excel(name = "审核人员部门")
|
||||
@ApiModelProperty(value = "审核人员部门")
|
||||
private String checkUserDept;
|
||||
|
||||
/** 审核时间 */
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "审核时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
@ApiModelProperty(value = "审核时间")
|
||||
private Date checkDate;
|
||||
|
||||
/** 审核状态 */
|
||||
|
||||
@Excel(name = "审核状态")
|
||||
@ApiModelProperty(value = "审核状态")
|
||||
private String status;
|
||||
|
||||
/** 审核信息 */
|
||||
|
||||
@Excel(name = "审核信息")
|
||||
@ApiModelProperty(value = "审核信息")
|
||||
private String checkInfo;
|
||||
|
||||
/** 备注 */
|
||||
|
||||
@Excel(name = "备注")
|
||||
@ApiModelProperty(value = "备注")
|
||||
private String remarks;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,53 @@
|
||||
package com.bs.ct.domain;
|
||||
|
||||
import com.bs.common.annotation.Excel;
|
||||
import com.bs.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* 任务图片信息对象 ct_task_images
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Accessors(chain = true)
|
||||
@TableName("ct_task_images")
|
||||
@Data
|
||||
public class CtTaskImages extends BaseEntity{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
@ApiModelProperty(value = "id")
|
||||
private Long id;
|
||||
|
||||
/** 任务id */
|
||||
|
||||
@Excel(name = "任务id")
|
||||
@ApiModelProperty(value = "任务id")
|
||||
private Long taskId;
|
||||
|
||||
/** 图片id */
|
||||
|
||||
@Excel(name = "图片id")
|
||||
@ApiModelProperty(value = "图片id")
|
||||
private Long imageId;
|
||||
|
||||
/** 备注 */
|
||||
|
||||
@Excel(name = "备注")
|
||||
@ApiModelProperty(value = "备注")
|
||||
private String remarks;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,124 @@
|
||||
package com.bs.ct.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.bs.common.annotation.Excel;
|
||||
import com.bs.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* 任务信息对象 ct_task_info
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Accessors(chain = true)
|
||||
@TableName("ct_task_info")
|
||||
@Data
|
||||
public class CtTaskInfo extends BaseEntity{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
@ApiModelProperty(value = "id")
|
||||
private Long id;
|
||||
|
||||
/** 任务类型 */
|
||||
|
||||
@Excel(name = "任务类型")
|
||||
@ApiModelProperty(value = "任务类型")
|
||||
private String taskType;
|
||||
|
||||
/** 任务标题 */
|
||||
|
||||
@Excel(name = "任务标题")
|
||||
@ApiModelProperty(value = "任务标题")
|
||||
private String taskTitle;
|
||||
|
||||
/** 任务编号 */
|
||||
|
||||
@Excel(name = "任务编号")
|
||||
@ApiModelProperty(value = "任务编号")
|
||||
private String taskCode;
|
||||
|
||||
/** 开始时间 */
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "开始时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
@ApiModelProperty(value = "开始时间")
|
||||
private Date startDate;
|
||||
|
||||
/** 结束时间 */
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "结束时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
@ApiModelProperty(value = "结束时间")
|
||||
private Date endDate;
|
||||
|
||||
/** 任务要求 */
|
||||
|
||||
@Excel(name = "任务要求")
|
||||
@ApiModelProperty(value = "任务要求")
|
||||
private String taskContent;
|
||||
|
||||
/** 完成状态 */
|
||||
|
||||
@Excel(name = "完成状态")
|
||||
@ApiModelProperty(value = "完成状态")
|
||||
private String status;
|
||||
|
||||
/** 附件id */
|
||||
|
||||
@Excel(name = "附件id")
|
||||
@ApiModelProperty(value = "附件id")
|
||||
private Long fileId;
|
||||
|
||||
/** 任务发起人 */
|
||||
|
||||
@Excel(name = "任务发起人")
|
||||
@ApiModelProperty(value = "任务发起人")
|
||||
private String taskInitiator;
|
||||
|
||||
/** 任务发起单位机构代码 */
|
||||
|
||||
@Excel(name = "任务发起单位机构代码")
|
||||
@ApiModelProperty(value = "任务发起单位机构代码")
|
||||
private String branchCode;
|
||||
|
||||
/** 任务发起单位 */
|
||||
|
||||
@Excel(name = "任务发起单位")
|
||||
@ApiModelProperty(value = "任务发起单位")
|
||||
private String branchName;
|
||||
|
||||
/** 任务发起部门 */
|
||||
|
||||
@Excel(name = "任务发起部门")
|
||||
@ApiModelProperty(value = "任务发起部门")
|
||||
private Long deptId;
|
||||
|
||||
/** 任务发布日期 */
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "任务发布日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
@ApiModelProperty(value = "任务发布日期")
|
||||
private Date taskDate;
|
||||
|
||||
/** 备注 */
|
||||
|
||||
@Excel(name = "备注")
|
||||
@ApiModelProperty(value = "备注")
|
||||
private String remarks;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,83 @@
|
||||
package com.bs.ct.domain;
|
||||
|
||||
import com.bs.common.annotation.Excel;
|
||||
import com.bs.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* 任务标签对象 ct_task_tag
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Accessors(chain = true)
|
||||
@TableName("ct_task_tag")
|
||||
@Data
|
||||
public class CtTaskTag extends BaseEntity{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
@ApiModelProperty(value = "id")
|
||||
private Long id;
|
||||
|
||||
/** 任务模板id */
|
||||
|
||||
@Excel(name = "任务模板id")
|
||||
@ApiModelProperty(value = "任务模板id")
|
||||
private Long taskId;
|
||||
|
||||
/** 标签名称 */
|
||||
|
||||
@Excel(name = "标签名称")
|
||||
@ApiModelProperty(value = "标签名称")
|
||||
private String tagName;
|
||||
|
||||
/** 标签说明 */
|
||||
|
||||
@Excel(name = "标签说明")
|
||||
@ApiModelProperty(value = "标签说明")
|
||||
private String tagDesc;
|
||||
|
||||
/** 是否需要拍照 */
|
||||
|
||||
@Excel(name = "是否需要拍照")
|
||||
@ApiModelProperty(value = "是否需要拍照")
|
||||
private String isPhoto;
|
||||
|
||||
/** 拍照数量要求 */
|
||||
|
||||
@Excel(name = "拍照数量要求")
|
||||
@ApiModelProperty(value = "拍照数量要求")
|
||||
private Long photoNum;
|
||||
|
||||
/** 照片存放目录 */
|
||||
|
||||
@Excel(name = "照片存放目录")
|
||||
@ApiModelProperty(value = "照片存放目录")
|
||||
private Long saveDir;
|
||||
|
||||
/** 附件id */
|
||||
|
||||
@Excel(name = "附件id")
|
||||
@ApiModelProperty(value = "附件id")
|
||||
private Long fileId;
|
||||
|
||||
/** 备注 */
|
||||
|
||||
@Excel(name = "备注")
|
||||
@ApiModelProperty(value = "备注")
|
||||
private String remarks;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,65 @@
|
||||
package com.bs.ct.domain;
|
||||
|
||||
import com.bs.common.annotation.Excel;
|
||||
import com.bs.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* 任务模板对象 ct_task_template
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Accessors(chain = true)
|
||||
@TableName("ct_task_template")
|
||||
@Data
|
||||
public class CtTaskTemplate extends BaseEntity{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
@ApiModelProperty(value = "id")
|
||||
private Long id;
|
||||
|
||||
/** 任务类型 */
|
||||
|
||||
@Excel(name = "任务类型")
|
||||
@ApiModelProperty(value = "任务类型")
|
||||
private String taskType;
|
||||
|
||||
/** 模板名称 */
|
||||
|
||||
@Excel(name = "模板名称")
|
||||
@ApiModelProperty(value = "模板名称")
|
||||
private String templateName;
|
||||
|
||||
/** 任务标题 */
|
||||
|
||||
@Excel(name = "任务标题")
|
||||
@ApiModelProperty(value = "任务标题")
|
||||
private String taskTitle;
|
||||
|
||||
/** 任务要求 */
|
||||
|
||||
@Excel(name = "任务要求")
|
||||
@ApiModelProperty(value = "任务要求")
|
||||
private String taskContent;
|
||||
|
||||
/** 备注 */
|
||||
|
||||
@Excel(name = "备注")
|
||||
@ApiModelProperty(value = "备注")
|
||||
private String remarks;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,83 @@
|
||||
package com.bs.ct.domain;
|
||||
|
||||
import com.bs.common.annotation.Excel;
|
||||
import com.bs.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* 任务模板标签对象 ct_task_template_tag
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Accessors(chain = true)
|
||||
@TableName("ct_task_template_tag")
|
||||
@Data
|
||||
public class CtTaskTemplateTag extends BaseEntity{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
@TableId(value = "id",type = IdType.AUTO)
|
||||
@ApiModelProperty(value = "id")
|
||||
private Long id;
|
||||
|
||||
/** 任务模板id */
|
||||
|
||||
@Excel(name = "任务模板id")
|
||||
@ApiModelProperty(value = "任务模板id")
|
||||
private Long templateId;
|
||||
|
||||
/** 标签名称 */
|
||||
|
||||
@Excel(name = "标签名称")
|
||||
@ApiModelProperty(value = "标签名称")
|
||||
private String tagName;
|
||||
|
||||
/** 标签说明 */
|
||||
|
||||
@Excel(name = "标签说明")
|
||||
@ApiModelProperty(value = "标签说明")
|
||||
private String tagDesc;
|
||||
|
||||
/** 是否需要拍照 */
|
||||
|
||||
@Excel(name = "是否需要拍照")
|
||||
@ApiModelProperty(value = "是否需要拍照")
|
||||
private String isPhoto;
|
||||
|
||||
/** 拍照数量要求 */
|
||||
|
||||
@Excel(name = "拍照数量要求")
|
||||
@ApiModelProperty(value = "拍照数量要求")
|
||||
private Long photoNum;
|
||||
|
||||
/** 照片存放目录 */
|
||||
|
||||
@Excel(name = "照片存放目录")
|
||||
@ApiModelProperty(value = "照片存放目录")
|
||||
private Long saveDir;
|
||||
|
||||
/** 附件id */
|
||||
|
||||
@Excel(name = "附件id")
|
||||
@ApiModelProperty(value = "附件id")
|
||||
private Long fileId;
|
||||
|
||||
/** 备注 */
|
||||
|
||||
@Excel(name = "备注")
|
||||
@ApiModelProperty(value = "备注")
|
||||
private String remarks;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.mapper;
|
||||
|
||||
import com.bs.common.mybatis.mapper.BaseMapperX;
|
||||
import com.bs.ct.domain.CtGalleryCata;
|
||||
|
||||
/**
|
||||
* 图库目录Mapper接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface CtGalleryCataMapper extends BaseMapperX<CtGalleryCata> {
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.mapper;
|
||||
|
||||
import com.bs.common.mybatis.mapper.BaseMapperX;
|
||||
import com.bs.ct.domain.CtGalleryCataShare;
|
||||
|
||||
/**
|
||||
* 图库目录共享Mapper接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface CtGalleryCataShareMapper extends BaseMapperX<CtGalleryCataShare> {
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.mapper;
|
||||
|
||||
import com.bs.common.mybatis.mapper.BaseMapperX;
|
||||
import com.bs.ct.domain.CtGalleryImages;
|
||||
|
||||
/**
|
||||
* 图库图片Mapper接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface CtGalleryImagesMapper extends BaseMapperX<CtGalleryImages> {
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.mapper;
|
||||
|
||||
import com.bs.common.mybatis.mapper.BaseMapperX;
|
||||
import com.bs.ct.domain.CtGalleryImagesTag;
|
||||
|
||||
/**
|
||||
* 图库图片标签Mapper接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface CtGalleryImagesTagMapper extends BaseMapperX<CtGalleryImagesTag> {
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.mapper;
|
||||
|
||||
import com.bs.common.mybatis.mapper.BaseMapperX;
|
||||
import com.bs.ct.domain.CtTag;
|
||||
|
||||
/**
|
||||
* 标签信息Mapper接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface CtTagMapper extends BaseMapperX<CtTag> {
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.mapper;
|
||||
|
||||
import com.bs.common.mybatis.mapper.BaseMapperX;
|
||||
import com.bs.ct.domain.CtTaskBranch;
|
||||
|
||||
/**
|
||||
* 任务机构信息Mapper接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface CtTaskBranchMapper extends BaseMapperX<CtTaskBranch> {
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.mapper;
|
||||
|
||||
import com.bs.common.mybatis.mapper.BaseMapperX;
|
||||
import com.bs.ct.domain.CtTaskFeedback;
|
||||
|
||||
/**
|
||||
* 任务反馈Mapper接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface CtTaskFeedbackMapper extends BaseMapperX<CtTaskFeedback> {
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.mapper;
|
||||
|
||||
import com.bs.common.mybatis.mapper.BaseMapperX;
|
||||
import com.bs.ct.domain.CtTaskImages;
|
||||
|
||||
/**
|
||||
* 任务图片信息Mapper接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface CtTaskImagesMapper extends BaseMapperX<CtTaskImages> {
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.mapper;
|
||||
|
||||
import com.bs.common.mybatis.mapper.BaseMapperX;
|
||||
import com.bs.ct.domain.CtTaskInfo;
|
||||
|
||||
/**
|
||||
* 任务信息Mapper接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface CtTaskInfoMapper extends BaseMapperX<CtTaskInfo> {
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.mapper;
|
||||
|
||||
import com.bs.common.mybatis.mapper.BaseMapperX;
|
||||
import com.bs.ct.domain.CtTaskTag;
|
||||
|
||||
/**
|
||||
* 任务标签Mapper接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface CtTaskTagMapper extends BaseMapperX<CtTaskTag> {
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.mapper;
|
||||
|
||||
import com.bs.common.mybatis.mapper.BaseMapperX;
|
||||
import com.bs.ct.domain.CtTaskTemplate;
|
||||
|
||||
/**
|
||||
* 任务模板Mapper接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface CtTaskTemplateMapper extends BaseMapperX<CtTaskTemplate> {
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.mapper;
|
||||
|
||||
import com.bs.common.mybatis.mapper.BaseMapperX;
|
||||
import com.bs.ct.domain.CtTaskTemplateTag;
|
||||
|
||||
/**
|
||||
* 任务模板标签Mapper接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface CtTaskTemplateTagMapper extends BaseMapperX<CtTaskTemplateTag> {
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.service;
|
||||
|
||||
import com.github.yulichang.base.MPJBaseService;
|
||||
import com.bs.ct.domain.CtGalleryCata;
|
||||
|
||||
/**
|
||||
* 图库目录Service接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface ICtGalleryCataService extends MPJBaseService<CtGalleryCata>{
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.service;
|
||||
|
||||
import com.github.yulichang.base.MPJBaseService;
|
||||
import com.bs.ct.domain.CtGalleryCataShare;
|
||||
|
||||
/**
|
||||
* 图库目录共享Service接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface ICtGalleryCataShareService extends MPJBaseService<CtGalleryCataShare>{
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.service;
|
||||
|
||||
import com.github.yulichang.base.MPJBaseService;
|
||||
import com.bs.ct.domain.CtGalleryImages;
|
||||
|
||||
/**
|
||||
* 图库图片Service接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface ICtGalleryImagesService extends MPJBaseService<CtGalleryImages>{
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.service;
|
||||
|
||||
import com.github.yulichang.base.MPJBaseService;
|
||||
import com.bs.ct.domain.CtGalleryImagesTag;
|
||||
|
||||
/**
|
||||
* 图库图片标签Service接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface ICtGalleryImagesTagService extends MPJBaseService<CtGalleryImagesTag>{
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.service;
|
||||
|
||||
import com.github.yulichang.base.MPJBaseService;
|
||||
import com.bs.ct.domain.CtTag;
|
||||
|
||||
/**
|
||||
* 标签信息Service接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface ICtTagService extends MPJBaseService<CtTag>{
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.service;
|
||||
|
||||
import com.github.yulichang.base.MPJBaseService;
|
||||
import com.bs.ct.domain.CtTaskBranch;
|
||||
|
||||
/**
|
||||
* 任务机构信息Service接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface ICtTaskBranchService extends MPJBaseService<CtTaskBranch>{
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.service;
|
||||
|
||||
import com.github.yulichang.base.MPJBaseService;
|
||||
import com.bs.ct.domain.CtTaskFeedback;
|
||||
|
||||
/**
|
||||
* 任务反馈Service接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface ICtTaskFeedbackService extends MPJBaseService<CtTaskFeedback>{
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.service;
|
||||
|
||||
import com.github.yulichang.base.MPJBaseService;
|
||||
import com.bs.ct.domain.CtTaskImages;
|
||||
|
||||
/**
|
||||
* 任务图片信息Service接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface ICtTaskImagesService extends MPJBaseService<CtTaskImages>{
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.service;
|
||||
|
||||
import com.github.yulichang.base.MPJBaseService;
|
||||
import com.bs.ct.domain.CtTaskInfo;
|
||||
|
||||
/**
|
||||
* 任务信息Service接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface ICtTaskInfoService extends MPJBaseService<CtTaskInfo>{
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.service;
|
||||
|
||||
import com.github.yulichang.base.MPJBaseService;
|
||||
import com.bs.ct.domain.CtTaskTag;
|
||||
|
||||
/**
|
||||
* 任务标签Service接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface ICtTaskTagService extends MPJBaseService<CtTaskTag>{
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.service;
|
||||
|
||||
import com.github.yulichang.base.MPJBaseService;
|
||||
import com.bs.ct.domain.CtTaskTemplate;
|
||||
|
||||
/**
|
||||
* 任务模板Service接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface ICtTaskTemplateService extends MPJBaseService<CtTaskTemplate>{
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.bs.ct.service;
|
||||
|
||||
import com.github.yulichang.base.MPJBaseService;
|
||||
import com.bs.ct.domain.CtTaskTemplateTag;
|
||||
|
||||
/**
|
||||
* 任务模板标签Service接口
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
public interface ICtTaskTemplateTagService extends MPJBaseService<CtTaskTemplateTag>{
|
||||
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package com.bs.ct.service.impl;
|
||||
|
||||
import com.bs.ct.mapper.CtGalleryCataMapper;
|
||||
import com.bs.ct.domain.CtGalleryCata;
|
||||
import com.bs.ct.service.ICtGalleryCataService;
|
||||
import com.github.yulichang.base.MPJBaseServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
/**
|
||||
* 图库目录Service业务层处理
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@Service
|
||||
@Transactional(rollbackFor = Exception.class)
|
||||
public class CtGalleryCataServiceImpl extends MPJBaseServiceImpl<CtGalleryCataMapper, CtGalleryCata> implements ICtGalleryCataService {
|
||||
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package com.bs.ct.service.impl;
|
||||
|
||||
import com.bs.ct.mapper.CtGalleryCataShareMapper;
|
||||
import com.bs.ct.domain.CtGalleryCataShare;
|
||||
import com.bs.ct.service.ICtGalleryCataShareService;
|
||||
import com.github.yulichang.base.MPJBaseServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
/**
|
||||
* 图库目录共享Service业务层处理
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@Service
|
||||
@Transactional(rollbackFor = Exception.class)
|
||||
public class CtGalleryCataShareServiceImpl extends MPJBaseServiceImpl<CtGalleryCataShareMapper, CtGalleryCataShare> implements ICtGalleryCataShareService {
|
||||
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package com.bs.ct.service.impl;
|
||||
|
||||
import com.bs.ct.mapper.CtGalleryImagesMapper;
|
||||
import com.bs.ct.domain.CtGalleryImages;
|
||||
import com.bs.ct.service.ICtGalleryImagesService;
|
||||
import com.github.yulichang.base.MPJBaseServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
/**
|
||||
* 图库图片Service业务层处理
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@Service
|
||||
@Transactional(rollbackFor = Exception.class)
|
||||
public class CtGalleryImagesServiceImpl extends MPJBaseServiceImpl<CtGalleryImagesMapper, CtGalleryImages> implements ICtGalleryImagesService {
|
||||
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package com.bs.ct.service.impl;
|
||||
|
||||
import com.bs.ct.mapper.CtGalleryImagesTagMapper;
|
||||
import com.bs.ct.domain.CtGalleryImagesTag;
|
||||
import com.bs.ct.service.ICtGalleryImagesTagService;
|
||||
import com.github.yulichang.base.MPJBaseServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
/**
|
||||
* 图库图片标签Service业务层处理
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@Service
|
||||
@Transactional(rollbackFor = Exception.class)
|
||||
public class CtGalleryImagesTagServiceImpl extends MPJBaseServiceImpl<CtGalleryImagesTagMapper, CtGalleryImagesTag> implements ICtGalleryImagesTagService {
|
||||
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package com.bs.ct.service.impl;
|
||||
|
||||
import com.bs.ct.mapper.CtTagMapper;
|
||||
import com.bs.ct.domain.CtTag;
|
||||
import com.bs.ct.service.ICtTagService;
|
||||
import com.github.yulichang.base.MPJBaseServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
/**
|
||||
* 标签信息Service业务层处理
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@Service
|
||||
@Transactional(rollbackFor = Exception.class)
|
||||
public class CtTagServiceImpl extends MPJBaseServiceImpl<CtTagMapper, CtTag> implements ICtTagService {
|
||||
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package com.bs.ct.service.impl;
|
||||
|
||||
import com.bs.ct.mapper.CtTaskBranchMapper;
|
||||
import com.bs.ct.domain.CtTaskBranch;
|
||||
import com.bs.ct.service.ICtTaskBranchService;
|
||||
import com.github.yulichang.base.MPJBaseServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
/**
|
||||
* 任务机构信息Service业务层处理
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@Service
|
||||
@Transactional(rollbackFor = Exception.class)
|
||||
public class CtTaskBranchServiceImpl extends MPJBaseServiceImpl<CtTaskBranchMapper, CtTaskBranch> implements ICtTaskBranchService {
|
||||
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package com.bs.ct.service.impl;
|
||||
|
||||
import com.bs.ct.mapper.CtTaskFeedbackMapper;
|
||||
import com.bs.ct.domain.CtTaskFeedback;
|
||||
import com.bs.ct.service.ICtTaskFeedbackService;
|
||||
import com.github.yulichang.base.MPJBaseServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
/**
|
||||
* 任务反馈Service业务层处理
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@Service
|
||||
@Transactional(rollbackFor = Exception.class)
|
||||
public class CtTaskFeedbackServiceImpl extends MPJBaseServiceImpl<CtTaskFeedbackMapper, CtTaskFeedback> implements ICtTaskFeedbackService {
|
||||
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package com.bs.ct.service.impl;
|
||||
|
||||
import com.bs.ct.mapper.CtTaskImagesMapper;
|
||||
import com.bs.ct.domain.CtTaskImages;
|
||||
import com.bs.ct.service.ICtTaskImagesService;
|
||||
import com.github.yulichang.base.MPJBaseServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
/**
|
||||
* 任务图片信息Service业务层处理
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@Service
|
||||
@Transactional(rollbackFor = Exception.class)
|
||||
public class CtTaskImagesServiceImpl extends MPJBaseServiceImpl<CtTaskImagesMapper, CtTaskImages> implements ICtTaskImagesService {
|
||||
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package com.bs.ct.service.impl;
|
||||
|
||||
import com.bs.ct.mapper.CtTaskInfoMapper;
|
||||
import com.bs.ct.domain.CtTaskInfo;
|
||||
import com.bs.ct.service.ICtTaskInfoService;
|
||||
import com.github.yulichang.base.MPJBaseServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
/**
|
||||
* 任务信息Service业务层处理
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@Service
|
||||
@Transactional(rollbackFor = Exception.class)
|
||||
public class CtTaskInfoServiceImpl extends MPJBaseServiceImpl<CtTaskInfoMapper, CtTaskInfo> implements ICtTaskInfoService {
|
||||
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package com.bs.ct.service.impl;
|
||||
|
||||
import com.bs.ct.mapper.CtTaskTagMapper;
|
||||
import com.bs.ct.domain.CtTaskTag;
|
||||
import com.bs.ct.service.ICtTaskTagService;
|
||||
import com.github.yulichang.base.MPJBaseServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
/**
|
||||
* 任务标签Service业务层处理
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@Service
|
||||
@Transactional(rollbackFor = Exception.class)
|
||||
public class CtTaskTagServiceImpl extends MPJBaseServiceImpl<CtTaskTagMapper, CtTaskTag> implements ICtTaskTagService {
|
||||
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package com.bs.ct.service.impl;
|
||||
|
||||
import com.bs.ct.mapper.CtTaskTemplateMapper;
|
||||
import com.bs.ct.domain.CtTaskTemplate;
|
||||
import com.bs.ct.service.ICtTaskTemplateService;
|
||||
import com.github.yulichang.base.MPJBaseServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
/**
|
||||
* 任务模板Service业务层处理
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@Service
|
||||
@Transactional(rollbackFor = Exception.class)
|
||||
public class CtTaskTemplateServiceImpl extends MPJBaseServiceImpl<CtTaskTemplateMapper, CtTaskTemplate> implements ICtTaskTemplateService {
|
||||
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package com.bs.ct.service.impl;
|
||||
|
||||
import com.bs.ct.mapper.CtTaskTemplateTagMapper;
|
||||
import com.bs.ct.domain.CtTaskTemplateTag;
|
||||
import com.bs.ct.service.ICtTaskTemplateTagService;
|
||||
import com.github.yulichang.base.MPJBaseServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
/**
|
||||
* 任务模板标签Service业务层处理
|
||||
*
|
||||
* @author bs
|
||||
* @date 2025-02-22
|
||||
*/
|
||||
@Service
|
||||
@Transactional(rollbackFor = Exception.class)
|
||||
public class CtTaskTemplateTagServiceImpl extends MPJBaseServiceImpl<CtTaskTemplateTagMapper, CtTaskTemplateTag> implements ICtTaskTemplateTagService {
|
||||
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
<?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.bs.ct.mapper.CtGalleryCataMapper">
|
||||
|
||||
</mapper>
|
@ -0,0 +1,7 @@
|
||||
<?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.bs.ct.mapper.CtGalleryImagesMapper">
|
||||
|
||||
</mapper>
|
@ -0,0 +1,7 @@
|
||||
<?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.bs.ct.mapper.CtGalleryCataShareMapper">
|
||||
|
||||
</mapper>
|
@ -0,0 +1,7 @@
|
||||
<?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.bs.ct.mapper.CtGalleryImagesTagMapper">
|
||||
|
||||
</mapper>
|
@ -0,0 +1,7 @@
|
||||
<?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.bs.ct.mapper.CtTagMapper">
|
||||
|
||||
</mapper>
|
@ -0,0 +1,7 @@
|
||||
<?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.bs.ct.mapper.CtTaskBranchMapper">
|
||||
|
||||
</mapper>
|
@ -0,0 +1,7 @@
|
||||
<?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.bs.ct.mapper.CtTaskFeedbackMapper">
|
||||
|
||||
</mapper>
|
@ -0,0 +1,7 @@
|
||||
<?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.bs.ct.mapper.CtTaskImagesMapper">
|
||||
|
||||
</mapper>
|
@ -0,0 +1,7 @@
|
||||
<?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.bs.ct.mapper.CtTaskInfoMapper">
|
||||
|
||||
</mapper>
|
@ -0,0 +1,7 @@
|
||||
<?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.bs.ct.mapper.CtTaskTagMapper">
|
||||
|
||||
</mapper>
|
@ -0,0 +1,7 @@
|
||||
<?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.bs.ct.mapper.CtTaskTemplateMapper">
|
||||
|
||||
</mapper>
|
@ -0,0 +1,7 @@
|
||||
<?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.bs.ct.mapper.CtTaskTemplateTagMapper">
|
||||
|
||||
</mapper>
|
@ -0,0 +1,62 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 分页查询图库目录列表
|
||||
export function pageListCata(query) {
|
||||
return request({
|
||||
url: '/gallery/cata/pageList',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询图库目录列表
|
||||
export function listCata(query) {
|
||||
return request({
|
||||
url: '/gallery/cata/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询图库目录详细
|
||||
export function getCata(id) {
|
||||
return request({
|
||||
url: '/gallery/cata/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增图库目录
|
||||
export function addCata(data) {
|
||||
return request({
|
||||
url: '/gallery/cata',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改图库目录
|
||||
export function updateCata(data) {
|
||||
return request({
|
||||
url: '/gallery/cata',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除图库目录
|
||||
export function delCata(id) {
|
||||
return request({
|
||||
url: '/gallery/cata/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
// 导出图库目录
|
||||
export function exportCata(query) {
|
||||
return request({
|
||||
url: '/gallery/cata/' + 'export',
|
||||
method: 'post',
|
||||
params: query
|
||||
})
|
||||
}
|
@ -0,0 +1,62 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 分页查询图库目录共享列表
|
||||
export function pageListShare(query) {
|
||||
return request({
|
||||
url: '/gallery/cata/share/pageList',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询图库目录共享列表
|
||||
export function listShare(query) {
|
||||
return request({
|
||||
url: '/gallery/cata/share/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询图库目录共享详细
|
||||
export function getShare(id) {
|
||||
return request({
|
||||
url: '/gallery/cata/share/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增图库目录共享
|
||||
export function addShare(data) {
|
||||
return request({
|
||||
url: '/gallery/cata/share',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改图库目录共享
|
||||
export function updateShare(data) {
|
||||
return request({
|
||||
url: '/gallery/cata/share',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除图库目录共享
|
||||
export function delShare(id) {
|
||||
return request({
|
||||
url: '/gallery/cata/share/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
// 导出图库目录共享
|
||||
export function exportShare(query) {
|
||||
return request({
|
||||
url: '/gallery/cata/share/' + 'export',
|
||||
method: 'post',
|
||||
params: query
|
||||
})
|
||||
}
|
@ -0,0 +1,62 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 分页查询图库图片列表
|
||||
export function pageListImages(query) {
|
||||
return request({
|
||||
url: '/gallery/images/pageList',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询图库图片列表
|
||||
export function listImages(query) {
|
||||
return request({
|
||||
url: '/gallery/images/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询图库图片详细
|
||||
export function getImages(id) {
|
||||
return request({
|
||||
url: '/gallery/images/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增图库图片
|
||||
export function addImages(data) {
|
||||
return request({
|
||||
url: '/gallery/images',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改图库图片
|
||||
export function updateImages(data) {
|
||||
return request({
|
||||
url: '/gallery/images',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除图库图片
|
||||
export function delImages(id) {
|
||||
return request({
|
||||
url: '/gallery/images/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
// 导出图库图片
|
||||
export function exportImages(query) {
|
||||
return request({
|
||||
url: '/gallery/images/' + 'export',
|
||||
method: 'post',
|
||||
params: query
|
||||
})
|
||||
}
|
@ -0,0 +1,62 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 分页查询图库图片标签列表
|
||||
export function pageListTag(query) {
|
||||
return request({
|
||||
url: '/gallery/images/tag/pageList',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询图库图片标签列表
|
||||
export function listTag(query) {
|
||||
return request({
|
||||
url: '/gallery/images/tag/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询图库图片标签详细
|
||||
export function getTag(id) {
|
||||
return request({
|
||||
url: '/gallery/images/tag/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增图库图片标签
|
||||
export function addTag(data) {
|
||||
return request({
|
||||
url: '/gallery/images/tag',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改图库图片标签
|
||||
export function updateTag(data) {
|
||||
return request({
|
||||
url: '/gallery/images/tag',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除图库图片标签
|
||||
export function delTag(id) {
|
||||
return request({
|
||||
url: '/gallery/images/tag/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
// 导出图库图片标签
|
||||
export function exportTag(query) {
|
||||
return request({
|
||||
url: '/gallery/images/tag/' + 'export',
|
||||
method: 'post',
|
||||
params: query
|
||||
})
|
||||
}
|
@ -0,0 +1,62 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 分页查询标签信息列表
|
||||
export function pageListTag(query) {
|
||||
return request({
|
||||
url: '/system/tag/pageList',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询标签信息列表
|
||||
export function listTag(query) {
|
||||
return request({
|
||||
url: '/system/tag/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询标签信息详细
|
||||
export function getTag(id) {
|
||||
return request({
|
||||
url: '/system/tag/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增标签信息
|
||||
export function addTag(data) {
|
||||
return request({
|
||||
url: '/system/tag',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改标签信息
|
||||
export function updateTag(data) {
|
||||
return request({
|
||||
url: '/system/tag',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除标签信息
|
||||
export function delTag(id) {
|
||||
return request({
|
||||
url: '/system/tag/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
// 导出标签信息
|
||||
export function exportTag(query) {
|
||||
return request({
|
||||
url: '/system/tag/' + 'export',
|
||||
method: 'post',
|
||||
params: query
|
||||
})
|
||||
}
|
@ -0,0 +1,62 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 分页查询任务机构信息列表
|
||||
export function pageListBranch(query) {
|
||||
return request({
|
||||
url: '/task/branch/pageList',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询任务机构信息列表
|
||||
export function listBranch(query) {
|
||||
return request({
|
||||
url: '/task/branch/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询任务机构信息详细
|
||||
export function getBranch(id) {
|
||||
return request({
|
||||
url: '/task/branch/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增任务机构信息
|
||||
export function addBranch(data) {
|
||||
return request({
|
||||
url: '/task/branch',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改任务机构信息
|
||||
export function updateBranch(data) {
|
||||
return request({
|
||||
url: '/task/branch',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除任务机构信息
|
||||
export function delBranch(id) {
|
||||
return request({
|
||||
url: '/task/branch/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
// 导出任务机构信息
|
||||
export function exportBranch(query) {
|
||||
return request({
|
||||
url: '/task/branch/' + 'export',
|
||||
method: 'post',
|
||||
params: query
|
||||
})
|
||||
}
|
@ -0,0 +1,62 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 分页查询任务反馈列表
|
||||
export function pageListFeedback(query) {
|
||||
return request({
|
||||
url: '/task/feedback/pageList',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询任务反馈列表
|
||||
export function listFeedback(query) {
|
||||
return request({
|
||||
url: '/task/feedback/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询任务反馈详细
|
||||
export function getFeedback(id) {
|
||||
return request({
|
||||
url: '/task/feedback/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增任务反馈
|
||||
export function addFeedback(data) {
|
||||
return request({
|
||||
url: '/task/feedback',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改任务反馈
|
||||
export function updateFeedback(data) {
|
||||
return request({
|
||||
url: '/task/feedback',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除任务反馈
|
||||
export function delFeedback(id) {
|
||||
return request({
|
||||
url: '/task/feedback/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
// 导出任务反馈
|
||||
export function exportFeedback(query) {
|
||||
return request({
|
||||
url: '/task/feedback/' + 'export',
|
||||
method: 'post',
|
||||
params: query
|
||||
})
|
||||
}
|
@ -0,0 +1,62 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 分页查询任务图片信息列表
|
||||
export function pageListImages(query) {
|
||||
return request({
|
||||
url: '/task/images/pageList',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询任务图片信息列表
|
||||
export function listImages(query) {
|
||||
return request({
|
||||
url: '/task/images/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询任务图片信息详细
|
||||
export function getImages(id) {
|
||||
return request({
|
||||
url: '/task/images/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增任务图片信息
|
||||
export function addImages(data) {
|
||||
return request({
|
||||
url: '/task/images',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改任务图片信息
|
||||
export function updateImages(data) {
|
||||
return request({
|
||||
url: '/task/images',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除任务图片信息
|
||||
export function delImages(id) {
|
||||
return request({
|
||||
url: '/task/images/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
// 导出任务图片信息
|
||||
export function exportImages(query) {
|
||||
return request({
|
||||
url: '/task/images/' + 'export',
|
||||
method: 'post',
|
||||
params: query
|
||||
})
|
||||
}
|
@ -0,0 +1,62 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 分页查询任务信息列表
|
||||
export function pageListInfo(query) {
|
||||
return request({
|
||||
url: '/task/info/pageList',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询任务信息列表
|
||||
export function listInfo(query) {
|
||||
return request({
|
||||
url: '/task/info/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询任务信息详细
|
||||
export function getInfo(id) {
|
||||
return request({
|
||||
url: '/task/info/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增任务信息
|
||||
export function addInfo(data) {
|
||||
return request({
|
||||
url: '/task/info',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改任务信息
|
||||
export function updateInfo(data) {
|
||||
return request({
|
||||
url: '/task/info',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除任务信息
|
||||
export function delInfo(id) {
|
||||
return request({
|
||||
url: '/task/info/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
// 导出任务信息
|
||||
export function exportInfo(query) {
|
||||
return request({
|
||||
url: '/task/info/' + 'export',
|
||||
method: 'post',
|
||||
params: query
|
||||
})
|
||||
}
|
@ -0,0 +1,62 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 分页查询任务标签列表
|
||||
export function pageListTag(query) {
|
||||
return request({
|
||||
url: '/task/tag/pageList',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询任务标签列表
|
||||
export function listTag(query) {
|
||||
return request({
|
||||
url: '/task/tag/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询任务标签详细
|
||||
export function getTag(id) {
|
||||
return request({
|
||||
url: '/task/tag/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增任务标签
|
||||
export function addTag(data) {
|
||||
return request({
|
||||
url: '/task/tag',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改任务标签
|
||||
export function updateTag(data) {
|
||||
return request({
|
||||
url: '/task/tag',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除任务标签
|
||||
export function delTag(id) {
|
||||
return request({
|
||||
url: '/task/tag/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
// 导出任务标签
|
||||
export function exportTag(query) {
|
||||
return request({
|
||||
url: '/task/tag/' + 'export',
|
||||
method: 'post',
|
||||
params: query
|
||||
})
|
||||
}
|
@ -0,0 +1,62 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 分页查询任务模板列表
|
||||
export function pageListTemplate(query) {
|
||||
return request({
|
||||
url: '/task/template/pageList',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询任务模板列表
|
||||
export function listTemplate(query) {
|
||||
return request({
|
||||
url: '/task/template/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询任务模板详细
|
||||
export function getTemplate(id) {
|
||||
return request({
|
||||
url: '/task/template/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增任务模板
|
||||
export function addTemplate(data) {
|
||||
return request({
|
||||
url: '/task/template',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改任务模板
|
||||
export function updateTemplate(data) {
|
||||
return request({
|
||||
url: '/task/template',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除任务模板
|
||||
export function delTemplate(id) {
|
||||
return request({
|
||||
url: '/task/template/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
// 导出任务模板
|
||||
export function exportTemplate(query) {
|
||||
return request({
|
||||
url: '/task/template/' + 'export',
|
||||
method: 'post',
|
||||
params: query
|
||||
})
|
||||
}
|
@ -0,0 +1,62 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 分页查询任务模板标签列表
|
||||
export function pageListTag(query) {
|
||||
return request({
|
||||
url: '/task/template/tag/pageList',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询任务模板标签列表
|
||||
export function listTag(query) {
|
||||
return request({
|
||||
url: '/task/template/tag/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询任务模板标签详细
|
||||
export function getTag(id) {
|
||||
return request({
|
||||
url: '/task/template/tag/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增任务模板标签
|
||||
export function addTag(data) {
|
||||
return request({
|
||||
url: '/task/template/tag',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改任务模板标签
|
||||
export function updateTag(data) {
|
||||
return request({
|
||||
url: '/task/template/tag',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除任务模板标签
|
||||
export function delTag(id) {
|
||||
return request({
|
||||
url: '/task/template/tag/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
// 导出任务模板标签
|
||||
export function exportTag(query) {
|
||||
return request({
|
||||
url: '/task/template/tag/' + 'export',
|
||||
method: 'post',
|
||||
params: query
|
||||
})
|
||||
}
|
Loading…
Reference in new issue