|
|
package com.glxp.api.entity.inv;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* 设备领用记录表
|
|
|
*/
|
|
|
@Data
|
|
|
@TableName(value = "device_receive_order")
|
|
|
public class DeviceReceiveOrderEntity {
|
|
|
/**
|
|
|
* id
|
|
|
*/
|
|
|
@TableId(value = "id", type = IdType.INPUT)
|
|
|
private Integer id;
|
|
|
|
|
|
/**
|
|
|
* 领用记录号
|
|
|
*/
|
|
|
@TableField(value = "orderId")
|
|
|
private String orderId;
|
|
|
|
|
|
/**
|
|
|
* 领用部门
|
|
|
*/
|
|
|
@TableField(value = "deptCode")
|
|
|
private String deptCode;
|
|
|
|
|
|
/**
|
|
|
* 状态 0:草稿 1:未审核 2:已审核
|
|
|
*/
|
|
|
@TableField(value = "`status`")
|
|
|
private Integer status;
|
|
|
|
|
|
/**
|
|
|
* 创建人
|
|
|
*/
|
|
|
@TableField(value = "`createUser`")
|
|
|
private String createUser;
|
|
|
|
|
|
/**
|
|
|
* 审核人
|
|
|
*/
|
|
|
@TableField(value = "auditUser")
|
|
|
private String auditUser;
|
|
|
|
|
|
/**
|
|
|
* 领用时间
|
|
|
*/
|
|
|
@TableField(value = "createTime")
|
|
|
private Date createTime;
|
|
|
|
|
|
/**
|
|
|
* 更新时间
|
|
|
*/
|
|
|
@TableField(value = "updateTime")
|
|
|
private Date updateTime;
|
|
|
|
|
|
/**
|
|
|
* 领用人
|
|
|
*/
|
|
|
@TableField(value = "receiveUser")
|
|
|
private String receiveUser;
|
|
|
|
|
|
/**
|
|
|
* 备注
|
|
|
*/
|
|
|
@TableField(value = "remark")
|
|
|
private String remark;
|
|
|
|
|
|
public static final String COL_ID = "id";
|
|
|
|
|
|
public static final String COL_ORDERID = "orderId";
|
|
|
|
|
|
public static final String COL_DEPTCODE = "deptCode";
|
|
|
|
|
|
public static final String COL_STATUS = "status";
|
|
|
|
|
|
public static final String COL_CREATEUSER = "createUser";
|
|
|
|
|
|
public static final String COL_AUDITUSER = "auditUser";
|
|
|
|
|
|
public static final String COL_CREATETIME = "createTime";
|
|
|
|
|
|
public static final String COL_UPDATETIME = "updateTime";
|
|
|
|
|
|
public static final String COL_RECEIVEUSER = "receiveUser";
|
|
|
|
|
|
public static final String COL_REMARK = "remark";
|
|
|
} |