1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- package com.example.xiaoshiweixinback.domain;
- import co.elastic.clients.elasticsearch.xpack.usage.Base;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- /**
- * 知识产权维权工单
- * @Author xiexiang
- * @Date 2024/4/7
- */
- @TableName("ticket_rights_protection")
- @Data
- public class TicketRightsProtection extends BaseEntity<TicketRightsProtection> {
- /**
- * 知识产权维权工单id
- */
- private Integer id;
- /**
- * 工单id
- */
- private Integer ticketId;
- /**
- * 侵权店铺ADIN号
- */
- private String tortStoreAdin;
- /**
- * 侵权店铺站点
- */
- private String tortStoreAdinSite;
- /**
- * 侵权类型
- */
- private String tortType;
- /**
- * 侵权分类
- */
- private String tortClassify;
- /**
- * 是否拥有权利证明
- */
- private Boolean ifHaveRightProof;
- /**
- * 权利证明文件
- */
- private String rightProof;
- /**
- * 权利证明号码
- */
- private String patentNo;
- /**
- * 描述问题
- */
- private String problemDescription;
- /**
- * 侵权店铺链接
- */
- private String tortStoreLink;
- /**
- * 提供更多信息
- */
- private String description;
- }
|