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.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;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 库存养护说明表
|
|
|
|
|
*/
|
|
|
|
|
@Data
|
|
|
|
|
@TableName(value = "inv_ma_explanation")
|
|
|
|
|
public class InvMAExplanationEntity {
|
|
|
|
|
@TableId(value = "id", type = IdType.INPUT)
|
|
|
|
|
private Integer id;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 名称
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "`name`")
|
|
|
|
|
private String name;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 启用状态 0:未启用 1:启用
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "`status`")
|
|
|
|
|
private String status;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 默认内容
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "`text`")
|
|
|
|
|
private String text;
|
|
|
|
|
|
|
|
|
|
public static final String COL_ID = "id";
|
|
|
|
|
|
|
|
|
|
public static final String COL_NAME = "name";
|
|
|
|
|
|
|
|
|
|
public static final String COL_STATUS = "status";
|
|
|
|
|
|
|
|
|
|
public static final String COL_TEXT = "text";
|
|
|
|
|
}
|