Commit b27e3fe4 authored by huyuchen's avatar huyuchen

结算状态同步

parent 59a0d47e
......@@ -297,6 +297,30 @@ public class TInsuranceDetail extends BaseEntity {
@Schema(description = "订单编号")
private String orderNo;
/**
* 收入信息结算状态 0 已结算 1 结算中 2 未结算 3 无需结算
*/
@Schema(description = "收入信息结算状态")
private String incomeSettleFlag;
/**
* 收入信息结算状态 0 已收 1 未收 2 垫付
*/
@Schema(description = "收入信息收款状态")
private String incomeCollectFlag;
/**
* 支出信息结算状态 0 已结算 1 结算中 2 未结算 3 无需结算
*/
@Schema(description = "支出信息结算状态")
private String paySettleFlag;
/**
* 收入信息结算状态 0 已付 1 未付
*/
@Schema(description = "支出信息付款状态")
private String payCollectFlag;
/**
* 创建人所在部门
*/
......
......@@ -515,6 +515,30 @@ public class TSalaryAccount extends BaseEntity {
@ExcelProperty(value = "年终奖单独扣税税费")
private BigDecimal annualBonusTax;
/**
* 收入信息结算状态 0 已结算 1 结算中 2 未结算 3 已冻结
*/
@Schema(description = "收入信息结算状态")
private String incomeSettleFlag;
/**
* 收入信息结算状态 0 已收 1 未收 2 垫付
*/
@Schema(description = "收入信息收款状态")
private String incomeCollectFlag;
/**
* 支出信息结算状态 0 已结算 1 结算中 2 未结算
*/
@Schema(description = "支出信息结算状态")
private String paySettleFlag;
/**
* 收入信息结算状态 0 已付 1 未付
*/
@Schema(description = "支出信息付款状态")
private String payCollectFlag;
/**
* 工资月份-起
*/
......
......@@ -603,6 +603,38 @@ public class TForecastLibrary extends BaseEntity {
@ExcelProperty("工资公积金结算状态")
private String salaryFundFlag;
/**
* 收入信息结算状态 0 已结算 1 结算中 2 未结算 3 已冻结
*/
@ExcelAttribute(name = "收入信息结算状态", maxLength = 2)
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("收入信息结算状态")
private String incomeSettleFlag;
/**
* 收入信息结算状态 0 已收 1 未收 2 垫付
*/
@ExcelAttribute(name = "收入信息收款状态", maxLength = 2)
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("收入信息收款状态")
private String incomeCollectFlag;
/**
* 支出信息结算状态 0 已结算 1 结算中 2 未结算
*/
@ExcelAttribute(name = "支出信息结算状态", maxLength = 2)
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("支出信息结算状态")
private String paySettleFlag;
/**
* 支出信息付款状态 0 已付 1 未付
*/
@ExcelAttribute(name = "支出信息付款状态", maxLength = 2)
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("支出信息付款状态")
private String payCollectFlag;
@TableField(exist = false)
private List<String> idList;
......
......@@ -229,6 +229,18 @@ public class TIncome{
@Schema(description = "薪资申请编码")
private String applyNo;
/**
* 收入信息结算状态 0 已结算 1 结算中 2 未结算 3 已冻结
*/
@Schema(description = "收入信息结算状态")
private String incomeSettleFlag;
/**
* 收入信息结算状态 0 已收 1 未收 2 垫付
*/
@Schema(description = "收入信息收款状态")
private String incomeCollectFlag;
/**
* 菜单ID 获取查询权限使用
*/
......
......@@ -632,6 +632,38 @@ public class TPaymentInfo extends BaseEntity {
@ExcelProperty("工资公积金结算状态")
private String salaryFundFlag;
/**
* 收入信息结算状态 0 已结算 1 结算中 2 未结算 3 已冻结
*/
@ExcelAttribute(name = "收入信息结算状态", maxLength = 2)
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("收入信息结算状态")
private String incomeSettleFlag;
/**
* 收入信息结算状态 0 已收 1 未收 2 垫付
*/
@ExcelAttribute(name = "收入信息收款状态", maxLength = 2)
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("收入信息收款状态")
private String incomeCollectFlag;
/**
* 支出信息结算状态 0 已结算 1 结算中 2 未结算
*/
@ExcelAttribute(name = "支出信息结算状态", maxLength = 2)
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("支出信息结算状态")
private String paySettleFlag;
/**
* 支出信息付款状态 0 已付 1 未付
*/
@ExcelAttribute(name = "支出信息付款状态", maxLength = 2)
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("支出信息付款状态")
private String payCollectFlag;
/**
* 是否需要生成收入
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment