123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- 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<String> fileGuids;
- }
|