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.
85 lines
1.3 KiB
85 lines
1.3 KiB
package com.spring.modules.request.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.FieldFill;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.spring.common.utils.QueryPage;
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
|
|
@Data
|
|
@TableName("plm_request_header")
|
|
public class PlmRequestHeaderEntity extends QueryPage implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
|
*
|
|
*/
|
|
private Integer id;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private String site;
|
|
|
|
/**
|
|
* BU
|
|
*/
|
|
private String bu;
|
|
|
|
/**
|
|
* 分类编码
|
|
*/
|
|
private String classificationNo;
|
|
|
|
/**
|
|
* 分类名称
|
|
*/
|
|
private String classificationName;
|
|
|
|
/**
|
|
* 流程ID
|
|
*/
|
|
private String workflowId;
|
|
|
|
/**
|
|
* 菜单ID
|
|
*/
|
|
private String menuId;
|
|
|
|
/**
|
|
* 状态
|
|
*/
|
|
private String status;
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
@TableField(fill = FieldFill.INSERT)
|
|
private Date createDate;
|
|
|
|
/**
|
|
* 创建人
|
|
*/
|
|
private String createBy;
|
|
|
|
/**
|
|
* 修改时间
|
|
*/
|
|
@TableField(fill = FieldFill.UPDATE)
|
|
private Date updateDate;
|
|
|
|
/**
|
|
* 修改人
|
|
*/
|
|
private String updateBy;
|
|
|
|
/**
|
|
* 备注
|
|
*/
|
|
private String remark;
|
|
|
|
|
|
}
|
|
|