You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
548 B
25 lines
548 B
package cn.teammodel.model.dto.weekDuty;
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
/**
|
|
* @author winter
|
|
* @create 2024-01-03 10:59
|
|
*/
|
|
@Data
|
|
@ApiModel("覆盖原节点")
|
|
public class UpdateDutyNodeDto {
|
|
@ApiModelProperty(value = "待修改的节点 id")
|
|
@NotNull
|
|
private String id;
|
|
private String name;
|
|
private String desc;
|
|
private Integer order = 0;
|
|
private Integer score = 0;
|
|
// boolean positive;
|
|
}
|