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.
56 lines
885 B
Java
56 lines
885 B
Java
6 months ago
|
package weaver.interfaces.fssecond.action;
|
||
|
|
||
|
import lombok.AllArgsConstructor;
|
||
|
import lombok.Builder;
|
||
|
import lombok.Data;
|
||
|
import lombok.NoArgsConstructor;
|
||
|
|
||
|
/**
|
||
|
* @Author liang.cheng
|
||
|
* @Date 2024/12/18 1:47 PM
|
||
|
* @Description: TODO
|
||
|
* @Version 1.0
|
||
|
*/
|
||
|
@Data
|
||
|
@AllArgsConstructor
|
||
|
@NoArgsConstructor
|
||
|
@Builder
|
||
|
public class FnabudgetinfoPo {
|
||
|
|
||
|
/**
|
||
|
* 预算状态 默认值已审批 1
|
||
|
*/
|
||
|
private Integer budgetStatus;
|
||
|
|
||
|
private Integer createrId;
|
||
|
|
||
|
private Integer budgetOrganizationId;
|
||
|
|
||
|
/**
|
||
|
* 流程维度 默认部门 2
|
||
|
*/
|
||
|
private Integer organizationType;
|
||
|
|
||
|
private Integer budgetperiods;
|
||
|
|
||
|
/**
|
||
|
* 版本默认 0
|
||
|
*/
|
||
|
private Integer revision;
|
||
|
|
||
|
/**
|
||
|
* 默认生效 1
|
||
|
*/
|
||
|
private Integer status;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 创建日期 yy-MM-dd HH:mm:ss
|
||
|
*/
|
||
|
private String createDate;
|
||
|
|
||
|
private String remark;
|
||
|
|
||
|
|
||
|
}
|