material screen
This commit is contained in:
parent
574142b4cc
commit
b9b25acad6
|
|
@ -168,6 +168,10 @@
|
||||||
<groupId>org.apache.commons</groupId>
|
<groupId>org.apache.commons</groupId>
|
||||||
<artifactId>commons-lang3</artifactId>
|
<artifactId>commons-lang3</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.bonus</groupId>
|
||||||
|
<artifactId>bonus-common-core</artifactId>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
package com.bonus.common.biz.constant;
|
||||||
|
|
||||||
|
public class BmConfigItems {
|
||||||
|
public final String LEASE_AUDIT_ROLE_KEYS = "LeaseAuditRoleKeys";
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -1,22 +0,0 @@
|
||||||
package com.bonus.common.biz.constant;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通用常量信息
|
|
||||||
*
|
|
||||||
* @author bonus
|
|
||||||
*/
|
|
||||||
public class Constants
|
|
||||||
{
|
|
||||||
private Constants(){}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 成功标记
|
|
||||||
*/
|
|
||||||
public static final Integer SUCCESS = 200;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 失败标记
|
|
||||||
*/
|
|
||||||
public static final Integer FAIL = 500;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
package com.bonus.material.common.constant;
|
package com.bonus.common.biz.constant;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 仓储通用常量信息
|
* 仓储通用常量信息
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
package com.bonus.common.biz.domain;
|
package com.bonus.common.biz.domain;
|
||||||
|
|
||||||
import com.bonus.common.biz.constant.Constants;
|
import com.bonus.common.core.constant.Constants;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,10 @@
|
||||||
package com.bonus.material.screen.domain;
|
package com.bonus.material.screen.domain;
|
||||||
|
|
||||||
import cn.hutool.core.annotation.Alias;
|
|
||||||
import com.bonus.common.core.annotation.Excel;
|
import com.bonus.common.core.annotation.Excel;
|
||||||
import com.bonus.common.core.annotation.Excel.ColumnType;
|
import com.bonus.common.core.annotation.Excel.ColumnType;
|
||||||
import com.bonus.common.core.web.domain.BaseEntity;
|
import com.bonus.common.core.web.domain.BaseEntity;
|
||||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||||
|
|
||||||
import javax.validation.constraints.NotBlank;
|
import javax.validation.constraints.NotBlank;
|
||||||
import javax.validation.constraints.Size;
|
import javax.validation.constraints.Size;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue