5 changed files with 73 additions and 3 deletions
@ -0,0 +1,23 @@ |
|||
package com.qs.serve.modules.tbs.entity.bo; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotNull; |
|||
|
|||
/** |
|||
* @author YenHex |
|||
* @since 2022/11/16 |
|||
*/ |
|||
@Data |
|||
public class TbsBudgetStateBo { |
|||
|
|||
/** id */ |
|||
@NotNull |
|||
private Long id; |
|||
|
|||
|
|||
/** 费用启用状态 */ |
|||
@NotNull |
|||
private Integer budgetState; |
|||
|
|||
} |
Loading…
Reference in new issue