package com.moral.api.pojo.query.allocationextension;
|
|
import com.moral.api.entity.AllocationExtension;
|
import com.moral.api.utils.BeanConverts;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* <p>
|
* 交办单延期
|
* </p>
|
* deyt template generate
|
* @author JI
|
* @since 2023-09-25
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@ApiModel(value="AllocationExtension - 更新对象", description="AllocationExtension - 更新对象")
|
public class AllocationExtensionUpdateCond implements Serializable {
|
|
@ApiModelProperty(value = "主键id")
|
private Integer id;
|
|
@ApiModelProperty(value = "交办单id")
|
private Integer allocationId;
|
|
@ApiModelProperty(value = "延期天数")
|
private Integer extensionNum;
|
|
@ApiModelProperty(value = "延期理由")
|
private String remake;
|
|
@ApiModelProperty(value = "状态")
|
private Integer state;
|
|
@ApiModelProperty(value = "是否删除")
|
private Integer isDel;
|
|
@ApiModelProperty(value = "是否作废")
|
private Integer isInvalid;
|
|
@ApiModelProperty(value = "作废理由")
|
private String invalidReason;
|
|
@ApiModelProperty(value = "创建人id")
|
private Integer createId;
|
|
@ApiModelProperty(value = "创建人姓名")
|
private String createName;
|
|
@ApiModelProperty(value = "创建时间")
|
private Date createTime;
|
|
@ApiModelProperty(value = "更新人id")
|
private Integer updateId;
|
|
@ApiModelProperty(value = "更新人姓名")
|
private String updateName;
|
|
@ApiModelProperty(value = "更新时间")
|
private Date updateTime;
|
|
|
|
public AllocationExtension convert() {
|
AllocationExtension allocationExtension = BeanConverts.convert(this, AllocationExtension.class);
|
return allocationExtension;
|
}
|
}
|