package com.dy.pmsGlobal.pojoTst;
|
|
import com.alibaba.fastjson2.annotation.JSONField;
|
import com.alibaba.fastjson2.writer.ObjectWriterImplToString;
|
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.io.Serializable;
|
import java.util.Date;
|
|
import com.dy.common.po.BaseEntity;
|
import lombok.*;
|
|
/**
|
*
|
* @TableName tst_command
|
*/
|
@TableName(value ="tst_command", autoResultMap = true)
|
@Data
|
@Builder
|
@ToString
|
@NoArgsConstructor
|
@AllArgsConstructor
|
public class TstCommand implements BaseEntity {
|
/**
|
*
|
*/
|
@JSONField(serializeUsing= ObjectWriterImplToString.class)
|
@TableId(type = IdType.AUTO)
|
public Long id;
|
|
/**
|
* 产品实体编号
|
*/
|
@JSONField(serializeUsing= ObjectWriterImplToString.class)
|
public Long proId;
|
@TableField(exist = false)
|
public String proName;
|
@TableField(exist = false)
|
public String proType;
|
|
/**
|
* 指令类型:测试指令(1)、设置指令(2)
|
*/
|
public Integer type;
|
|
/**
|
* 指令名称
|
*/
|
public String name;
|
|
/**
|
* 指令值
|
*/
|
public String value;
|
|
/**
|
* 是否删除,1是,0否
|
*/
|
@JSONField(serialize = false)
|
public Boolean deleted;
|
|
/**
|
* 备注
|
*/
|
public String remark;
|
|
/**
|
* 是否删除,1是,0否
|
*/
|
@JSONField(serialize = false)
|
public Boolean disabled;
|
|
/**
|
* 创建人
|
*/
|
@JSONField(serializeUsing= ObjectWriterImplToString.class)
|
public Long creator;
|
@TableField(exist = false)
|
public String creatorName;
|
|
/**
|
* 创建时间
|
*/
|
public Date dt;
|
|
/**
|
* 更新人
|
*/
|
@JSONField(serializeUsing= ObjectWriterImplToString.class)
|
public Long updatedBy;
|
|
/**
|
* 更新时间
|
*/
|
public Date updatedDate;
|
}
|