package com.gkhy.sign.entity;
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
import io.swagger.annotations.ApiModel;
|
|
import javax.validation.constraints.NotNull;
|
|
|
@TableName(value = "signature_type")
|
@ApiModel(value = "签署类型",description = "签署类型对象")
|
public class SignatureType extends BaseEntity {
|
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
@NotNull(message = "类型名成不能为空")
|
private String typeName;
|
|
private Integer delFlag;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getTypeName() {
|
return typeName;
|
}
|
|
public void setTypeName(String typeName) {
|
this.typeName = typeName;
|
}
|
|
public Integer getDelFlag() {
|
return delFlag;
|
}
|
|
public void setDelFlag(Integer delFlag) {
|
this.delFlag = delFlag;
|
}
|
}
|