123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- package com.example.xiaoshiweixinback.entity.vo;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.example.xiaoshiweixinback.domain.BaseEntity;
- import lombok.Data;
- /**
- * 知识产权维权工单
- * @Author xiexiang
- * @Date 2024/4/7
- */
- @Data
- public class TicketRightsProtectionVO {
- /**
- * 知识产权维权工单id
- */
- private Integer id;
- /**
- * 工单id
- */
- private Integer ticketId;
- /**
- * 侵权店铺ADIN号
- */
- private String tortStoreAdin;
- /**
- * 侵权类型
- */
- private String tortType;
- /**
- * 侵权分类
- */
- private String tortClassify;
- /**
- * 是否拥有专利
- */
- private Boolean ifHavePatent;
- /**
- * 专利号
- */
- private String patentNo;
- /**
- * 描述问题
- */
- private String problemDescription;
- /**
- * 侵权店铺链接
- */
- private String tortStoreLink;
- /**
- * 提供更多信息
- */
- private String description;
- }
|