forked from rongchao/epmet-cloud-rizhao
12 changed files with 381 additions and 3 deletions
@ -0,0 +1,24 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/12/10 上午9:31 |
|||
*/ |
|||
@Data |
|||
public class IssueTagFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -8678756265520573631L; |
|||
|
|||
private String id; |
|||
|
|||
private String tagName; |
|||
|
|||
private String categoryId; |
|||
|
|||
private String tagId; |
|||
|
|||
} |
|||
@ -0,0 +1,72 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/12/10 上午9:31 |
|||
*/ |
|||
@Data |
|||
public class IssueTagsFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -8678756265520570931L; |
|||
|
|||
/** |
|||
* 主键ID |
|||
*/ |
|||
private String id; |
|||
|
|||
/** |
|||
* 客户ID |
|||
*/ |
|||
private String customerId; |
|||
|
|||
/** |
|||
* 议题所属网格id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 议题ID |
|||
*/ |
|||
private String issueId; |
|||
|
|||
/** |
|||
* 标签ID |
|||
*/ |
|||
private String tagId; |
|||
|
|||
/** |
|||
* 标签名称 |
|||
*/ |
|||
private String tagName; |
|||
|
|||
/** |
|||
* 删除标识 0.未删除 1.已删除 |
|||
*/ |
|||
private Integer delFlag; |
|||
|
|||
/** |
|||
* 乐观锁 |
|||
*/ |
|||
private Integer revision; |
|||
|
|||
/** |
|||
* 创建人 |
|||
*/ |
|||
private String createdBy; |
|||
|
|||
/** |
|||
* 更新人 |
|||
*/ |
|||
private String updatedBy; |
|||
|
|||
public IssueTagsFormDTO() { |
|||
this.delFlag = 0; |
|||
this.revision = 0; |
|||
this.createdBy = "APP_USER"; |
|||
this.updatedBy = "APP_USER"; |
|||
} |
|||
} |
|||
@ -0,0 +1,28 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/12/10 上午9:29 |
|||
*/ |
|||
@Data |
|||
public class IssueTagsSaveFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 4122102633306198151L; |
|||
|
|||
public interface IssueTagsSaveForm{} |
|||
|
|||
@NotBlank(message = "议题ID不能为空",groups = {IssueTagsSaveForm.class}) |
|||
private String issueId; |
|||
|
|||
/** |
|||
* 标签集合 为空,清除此议题标签 |
|||
*/ |
|||
private List<IssueTagFormDTO> tagList; |
|||
|
|||
} |
|||
@ -0,0 +1,21 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/12/10 下午2:13 |
|||
*/ |
|||
@Data |
|||
public class IssueProjectTagsResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -5035269596436047038L; |
|||
|
|||
private String tagId; |
|||
|
|||
private String tagName; |
|||
|
|||
private String categoryId; |
|||
} |
|||
Loading…
Reference in new issue