123456789101112131415161718192021222324252627282930313233 |
- package com.example.xiaoshiweixinback.entity.vo;
- import lombok.Data;
- /**
- * 填写表单VO
- * @Author xiexiang
- * @Date 2024/4/8
- */
- @Data
- public class TicketFillInVO {
- /**
- * 填写工单id
- */
- private Integer id;
- /**
- * 工单id
- */
- private Integer ticketId;
- /**
- * 公司名称
- */
- private String companyName;
- /**
- * 专利无法导出?
- */
- private Boolean patentExport;
- private String description;
- }
|