/*
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
|
*
|
* Redistribution and use in source and binary forms, with or without
|
* modification, are permitted provided that the following conditions are met:
|
*
|
* Redistributions of source code must retain the above copyright notice,
|
* this list of conditions and the following disclaimer.
|
* Redistributions in binary form must reproduce the above copyright
|
* notice, this list of conditions and the following disclaimer in the
|
* documentation and/or other materials provided with the distribution.
|
* Neither the name of the dreamlu.net developer nor the names of its
|
* contributors may be used to endorse or promote products derived from
|
* this software without specific prior written permission.
|
* Author: Chill 庄骞 (smallchill@163.com)
|
*/
|
package com.vci.ubcs.code.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 模板扩展池 实体类
|
*
|
* @author yuxc
|
* @since 2023-03-29
|
*/
|
@Data
|
@TableName("PL_CODE_BUTTON")
|
@ApiModel(value = "codebutton对象", description = "模板扩展池")
|
//@EqualsAndHashCode(callSuper = false)
|
public class CodeButton implements Serializable {
|
@JsonSerialize(
|
using = ToStringSerializer.class
|
)
|
@ApiModelProperty("主键id")
|
@TableId(
|
value = "oid",
|
type = IdType.ASSIGN_ID
|
)
|
private Long oid;
|
@ApiModelProperty("按钮编码")
|
private String id;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String revisionoid;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String nameoid;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String btmname;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String lastr;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String firstr;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String lastv;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String firstv;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String creator;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private Date createtime;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String lastmodifier;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private Date lastmodifytime;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String revisionrule;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String versionrule;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private Short revisionseq;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String revisionvalue;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private Short versionseq;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String versionvalue;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String lctid;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String lcstatus;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private Date ts;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String name;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String description;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String owner;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String copyfromversion;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String iconcls;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String executejs;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String usedpositiontype;
|
|
}
|