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.
130 lines
2.9 KiB
Java
130 lines
2.9 KiB
Java
package com.glxp.api.entity.basic;
|
|
|
|
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 org.apache.xpath.operations.Bool;
|
|
|
|
import java.util.Date;
|
|
|
|
@Data
|
|
@TableName(value = "basic_entrust_accept")
|
|
public class EntrustReceEntity {
|
|
|
|
@TableId(value = "id", type = IdType.INPUT)
|
|
private Long id;
|
|
|
|
/**
|
|
* 当前单据类型
|
|
*/
|
|
@TableField(value = "`action`")
|
|
private String action;
|
|
|
|
/**
|
|
* 当前部门
|
|
*/
|
|
@TableField(value = "curDept")
|
|
private String curDept;
|
|
|
|
/**
|
|
* 当前仓库
|
|
*/
|
|
@TableField(value = "curInv")
|
|
private String curInv;
|
|
|
|
/**
|
|
* 当前用户
|
|
*/
|
|
@TableField(value = "userId")
|
|
private Long userId;
|
|
|
|
/**
|
|
* 委托分库
|
|
*/
|
|
@TableField(value = "entrustDept")
|
|
private String entrustDept;
|
|
|
|
/**
|
|
* 委托人仓库
|
|
*/
|
|
@TableField(value = "entrustInv")
|
|
private String entrustInv;
|
|
|
|
/**
|
|
* 委托验收后生成单据类型
|
|
*/
|
|
@TableField(value = "entrustAction")
|
|
private String entrustAction;
|
|
|
|
/**
|
|
* 委托人用户
|
|
*/
|
|
@TableField(value = "entrustUser")
|
|
private Long entrustUser;
|
|
|
|
/**
|
|
* 是否完成验收
|
|
*/
|
|
@TableField(value = "finishRece")
|
|
private Boolean finishRece;
|
|
|
|
/**
|
|
* 更新时间
|
|
*/
|
|
@TableField(value = "updateTime")
|
|
private Date updateTime;
|
|
|
|
/**
|
|
* 备注
|
|
*/
|
|
@TableField(value = "remark")
|
|
private String remark;
|
|
|
|
/**
|
|
* 是否委托验收完成
|
|
*/
|
|
@TableField(value = "entrustEnd")
|
|
private Integer entrustEnd;
|
|
|
|
@TableField(exist = false)
|
|
public static final String COL_ID = "id";
|
|
|
|
@TableField(exist = false)
|
|
public static final String COL_ACTION = "action";
|
|
|
|
@TableField(exist = false)
|
|
public static final String COL_CURDEPT = "curDept";
|
|
|
|
@TableField(exist = false)
|
|
public static final String COL_CURINV = "curInv";
|
|
|
|
@TableField(exist = false)
|
|
public static final String COL_USERID = "userId";
|
|
|
|
@TableField(exist = false)
|
|
public static final String COL_ENTRUSTDEPT = "entrustDept";
|
|
|
|
@TableField(exist = false)
|
|
public static final String COL_ENTRUSTINV = "entrustInv";
|
|
|
|
@TableField(exist = false)
|
|
public static final String COL_ENTRUSTACTION = "entrustAction";
|
|
|
|
@TableField(exist = false)
|
|
public static final String COL_ENTRUSTUSER = "entrustUser";
|
|
|
|
@TableField(exist = false)
|
|
public static final String COL_FINISHRECE = "finishRece";
|
|
|
|
@TableField(exist = false)
|
|
public static final String COL_UPDATETIME = "updateTime";
|
|
|
|
@TableField(exist = false)
|
|
public static final String COL_REMARK = "remark";
|
|
|
|
@TableField(exist = false)
|
|
public static final String COL_ENTRUSTEND = "entrustEnd";
|
|
}
|