3 changed files with 47 additions and 1 deletions
@ -0,0 +1,21 @@ |
|||
package com.qs.serve.common.model.consts; |
|||
|
|||
/** |
|||
* @author YenHex |
|||
* @since 2023/1/30 |
|||
*/ |
|||
public interface BudgetLogOptFlag { |
|||
|
|||
/** 正常(标记为最新记录) */ |
|||
Integer State_0 = 0; |
|||
|
|||
/** 回退 */ |
|||
Integer State_1 = 1; |
|||
|
|||
/** 回退已处理 */ |
|||
Integer State_2 = 2; |
|||
|
|||
/** 删除已处理 */ |
|||
Integer State_3 = 3; |
|||
|
|||
} |
Loading…
Reference in new issue