You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
1.8 KiB
Java
87 lines
1.8 KiB
Java
package com.glxp.api.entity.dev;
|
|
|
|
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_ma_order")
|
|
public class DeviceMAOrderEntity {
|
|
|
|
@TableId(value = "id", type = IdType.INPUT)
|
|
private Integer id;
|
|
|
|
/**
|
|
* 设备养护记录号
|
|
*/
|
|
@TableField(value = "orderId")
|
|
private String orderId;
|
|
|
|
/**
|
|
* 设备领用单据号
|
|
*/
|
|
@TableField(value = "receiveOrderId")
|
|
private String receiveOrderId;
|
|
|
|
/**
|
|
* 状态
|
|
*/
|
|
@TableField(value = "`status`")
|
|
private Integer status;
|
|
|
|
/**
|
|
* 养护时间
|
|
*/
|
|
@TableField(value = "createTime")
|
|
private Date createTime;
|
|
|
|
/**
|
|
* 更新时间
|
|
*/
|
|
@TableField(value = "updateTime")
|
|
private Date updateTime;
|
|
|
|
/**
|
|
* 养护人
|
|
*/
|
|
@TableField(value = "`createUser`")
|
|
private String createUser;
|
|
|
|
/**
|
|
* 审核人
|
|
*/
|
|
@TableField(value = "auditUser")
|
|
private String auditUser;
|
|
|
|
/**
|
|
* 养护说明
|
|
*/
|
|
@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_RECEIVEORDERID = "receiveOrderId";
|
|
|
|
public static final String COL_STATUS = "status";
|
|
|
|
public static final String COL_CREATETIME = "createTime";
|
|
|
|
public static final String COL_UPDATETIME = "updateTime";
|
|
|
|
public static final String COL_CREATEUSER = "createUser";
|
|
|
|
public static final String COL_AUDITUSER = "auditUser";
|
|
|
|
public static final String COL_REMARK = "remark";
|
|
}
|