15 changed files with 184 additions and 36 deletions
@ -1,17 +1,20 @@ |
|||
package com.boge.modules.tickets.dao; |
|||
|
|||
import com.boge.modules.tickets.dto.TicketsDTO; |
|||
import com.boge.modules.tickets.entity.TicketsEntity; |
|||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* |
|||
* |
|||
* |
|||
* |
|||
* @author ls |
|||
* @email dengpbs@163.com |
|||
* @date 2025-03-05 14:29:12 |
|||
*/ |
|||
@Mapper |
|||
public interface TicketsDao extends BaseMapper<TicketsEntity> { |
|||
|
|||
|
|||
|
|||
TicketsDTO getTicketsDTOById(String ticketsId); |
|||
} |
|||
|
@ -0,0 +1,78 @@ |
|||
package com.boge.modules.tickets.dto; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.util.Date; |
|||
|
|||
@Data |
|||
public class TicketsDTO { |
|||
/** |
|||
* 工单id |
|||
*/ |
|||
private Long ticketsId; |
|||
/** |
|||
* 小车类型 |
|||
*/ |
|||
private Integer carType; |
|||
|
|||
/** |
|||
* 小车类型 |
|||
*/ |
|||
private String carName; |
|||
|
|||
/** |
|||
* 异常类型 |
|||
*/ |
|||
private String errorType; |
|||
|
|||
/** |
|||
* 合同编号 |
|||
*/ |
|||
private String contractNumber; |
|||
/** |
|||
* 客户id |
|||
*/ |
|||
private Long clientId; |
|||
|
|||
/** |
|||
* 客户名称 |
|||
*/ |
|||
private String clientName; |
|||
/** |
|||
* 故障描述 |
|||
*/ |
|||
private String description; |
|||
/** |
|||
* 部门对接人 |
|||
*/ |
|||
private String deptPeople; |
|||
/** |
|||
* 客户联系电话 |
|||
*/ |
|||
private String deptPhone; |
|||
/** |
|||
* 创建者ID |
|||
*/ |
|||
private Long createUserId; |
|||
/** |
|||
* 创建时间 |
|||
*/ |
|||
private Date createTime; |
|||
/** |
|||
* 是否验收 |
|||
*/ |
|||
private Integer isCheck; |
|||
/** |
|||
* 工单状态 |
|||
*/ |
|||
private Integer status; |
|||
/** |
|||
* 工单关闭时间 |
|||
*/ |
|||
private Date updateTime; |
|||
|
|||
/** |
|||
* 审批流id |
|||
*/ |
|||
private String processInstance; |
|||
} |
Loading…
Reference in new issue