You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
609 B
Java
27 lines
609 B
Java
package com.ruoyi.asset.constant;
|
|
|
|
/**
|
|
* 资产状态
|
|
*
|
|
* @author Yangk
|
|
*/
|
|
public final class AssetStatus
|
|
{
|
|
/** 待入库 */
|
|
public static final String PENDING_INBOUND = "PENDING_INBOUND";
|
|
/** 在库 */
|
|
public static final String IN_STOCK = "IN_STOCK";
|
|
/** 在用 */
|
|
public static final String IN_USE = "IN_USE";
|
|
/** 借用中 */
|
|
public static final String BORROWED = "BORROWED";
|
|
/** 维修中 */
|
|
public static final String REPAIRING = "REPAIRING";
|
|
/** 已报废 */
|
|
public static final String DISPOSED = "DISPOSED";
|
|
|
|
private AssetStatus()
|
|
{
|
|
}
|
|
}
|