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.
68 lines
1.3 KiB
Java
68 lines
1.3 KiB
Java
package com.glxp.api.entity.inout;
|
|
|
|
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 java.util.Date;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
@TableName(value = "io_order_muti_use")
|
|
public class IoOrderMutiUseEntity {
|
|
@TableId(value = "id", type = IdType.INPUT)
|
|
private Long id;
|
|
|
|
@TableField(value = "mutiIdFk")
|
|
private Long mutiIdFk;
|
|
|
|
/**
|
|
* 当前第几次使用
|
|
*/
|
|
@TableField(value = "curIndex")
|
|
private Integer curIndex;
|
|
|
|
/**
|
|
* 使用人
|
|
*/
|
|
@TableField(value = "useUser")
|
|
private String useUser;
|
|
|
|
/**
|
|
* 使用时间
|
|
*/
|
|
@TableField(value = "useTime")
|
|
private Date useTime;
|
|
|
|
/**
|
|
* 审核人
|
|
*/
|
|
@TableField(value = "auditUser")
|
|
private String auditUser;
|
|
|
|
/**
|
|
* 审核时间
|
|
*/
|
|
@TableField(value = "auditTime")
|
|
private Date auditTime;
|
|
|
|
/**
|
|
* 往来单位
|
|
*/
|
|
@TableField(value = "fromCorp")
|
|
private String fromCorp;
|
|
|
|
/**
|
|
* 备注
|
|
*/
|
|
@TableField(value = "remark")
|
|
private String remark;
|
|
|
|
|
|
@TableField(value = "status")
|
|
private Integer status;
|
|
|
|
@TableField(exist=false)
|
|
private String createUserName;
|
|
}
|