You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
288 B
Java

package com.docus.bgts.entity;
import lombok.Data;
/**
* @author 曾文和
* @description: 根据jzh分组后的任务完成情况明细
* @createTime 2022/5/2 11:49
*/
@Data
public class TaskDetail {
private Long id;
private String fileTitle;
private String state;
}