package com.moral.api.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.moral.api.pojo.bean.BaseInvalidEntity;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
/**
|
* <p>
|
* 交办单延期
|
* </p>
|
* deyt template generate
|
* @author JI
|
* @since 2023-09-25
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
public class AllocationExtension extends BaseInvalidEntity<AllocationExtension> {
|
|
|
/**
|
* 主键id
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 交办单id
|
*/
|
private Integer allocationId;
|
|
/**
|
* 延期天数
|
*/
|
private Integer extensionNum;
|
|
/**
|
* 延期前天数
|
*/
|
private Integer extensionOldNum;
|
|
/**
|
* 延期理由
|
*/
|
private String remake;
|
|
/**
|
* 状态
|
*/
|
private Integer state;
|
|
|
/**
|
* 作废理由
|
*/
|
private String invalidReason;
|
|
}
|