![JAR search and dependency download from the Maven repository](/logo.png)
com.quhaodian.data.entity.BaseStateEntity Maven / Gradle / Ivy
package com.quhaodian.data.entity;
import javax.persistence.MappedSuperclass;
/**
* 带有状态的实体
*
* @author ada
*
*/
@MappedSuperclass
public class BaseStateEntity extends BaseEntity {
/**
* 0为正常1为删除
*/
private Integer state;
public Integer getState() {
return state;
}
public void setState(Integer state) {
this.state = state;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy