| | |
| | | @TableField("remark") |
| | | private String remark; |
| | | |
| | | /** 是否是临时合同 */ |
| | | @Excel(name = "是否是临时合同") |
| | | @TableField("is_temp_contract") |
| | | private Integer isTempContract; |
| | | |
| | | |
| | | /** 结算周期类型 */ |
| | | @Excel(name = "结算周期类型") |
| | | @TableField("cycle_type") |
| | | private Integer cycleType; |
| | | |
| | | |
| | | /** 账单周期上月日(1-31) */ |
| | | @Excel(name = "账单周期上月日", readConverterExp = "1=-31") |
| | | @TableField("billing_cycle_last_month_day") |
| | | private Integer billingCycleLastMonthDay; |
| | | |
| | | |
| | | /** 账单周期当月日(1-31) */ |
| | | @Excel(name = "账单周期当月日", readConverterExp = "1=-31") |
| | | @TableField("billing_cycle_current_month_day") |
| | | private Integer billingCycleCurrentMonthDay; |
| | | |
| | | |
| | | /** 对账账期日(0-31) */ |
| | | @Excel(name = "对账账期日", readConverterExp = "0=-31") |
| | | @TableField("reconciliation_day") |
| | | private Integer reconciliationDay; |
| | | |
| | | |
| | | /** 开票账期日(0-31) */ |
| | | @Excel(name = "开票账期日", readConverterExp = "0=-31") |
| | | @TableField("invoice_day") |
| | | private Integer invoiceDay; |
| | | |
| | | |
| | | /** 付款账期日(1-31) */ |
| | | @Excel(name = "付款账期日", readConverterExp = "1=-31") |
| | | @TableField("payment_day") |
| | | private Integer paymentDay; |
| | | |
| | | |
| | | /** 总账期日(1-31) */ |
| | | @Excel(name = "总账期日", readConverterExp = "1=-31") |
| | | @TableField("total_account_day") |
| | | private Integer totalAccountDay; |
| | | } |