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.
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 盘点单据码表
|
|
|
|
|
*/
|
|
|
|
|
@Data
|
|
|
|
|
@TableName(value = "inv_count_codes")
|
|
|
|
|
public class InvCountCodesEntity {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* id
|
|
|
|
|
*/
|
|
|
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
|
|
|
private Integer id;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 盘点单ID
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "orderIdFk")
|
|
|
|
|
private String orderIdFk;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 产品ID
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "relId")
|
|
|
|
|
private Long relId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 码
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "code")
|
|
|
|
|
private String code;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 条码状态(多码或少码) 0:少 1:多
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "`status`")
|
|
|
|
|
private Integer status;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 批次号
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "batchNo")
|
|
|
|
|
private String batchNo;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 扫码数量
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "`count`")
|
|
|
|
|
private Integer count;
|
|
|
|
|
|
|
|
|
|
public static final String COL_ID = "id";
|
|
|
|
|
|
|
|
|
|
public static final String COL_ORDERIDFK = "orderIdFk";
|
|
|
|
|
|
|
|
|
|
public static final String COL_RELID = "relId";
|
|
|
|
|
|
|
|
|
|
public static final String COL_CODE = "code";
|
|
|
|
|
|
|
|
|
|
public static final String COL_STATUS = "status";
|
|
|
|
|
|
|
|
|
|
public static final String COL_BATCHNO = "batchNo";
|
|
|
|
|
|
|
|
|
|
public static final String COL_COUNT = "count";
|
|
|
|
|
}
|