package com.example.xiaoshiweixinback.entity.vo; import lombok.Data; import java.util.Date; import java.util.List; @Data public class TicketVO { /** * ID */ private Integer id; /** * */ private String name; /** * */ private String contentText; /** * 工单类型 */ private Integer ticketType; /** * 唯一工单号 */ private String num; /** * 工单进度 */ private Integer ticketProgress; /** * 创建人 */ private String createId; /** * 创建时间 */ private Date createTime; /** * 价格 */ private Double price; /** * */ private String description; private TicketFillInVO ticketFillInVO; private TicketPatentApplyVO ticketPatentApplyVO; private TicketLitigationRespondingVO ticketLitigationRespondingVO; private TicketRightsProtectionVO ticketRightsProtectionVO; private List fileGuids; }