wujianwei
2025-12-23 3dbaccac83e648d4b87da72a243848ad1926f7bb
tms/src/main/java/com/ruoyi/tms/domain/TmsContract.java
@@ -102,6 +102,10 @@
    /**
     * 甲方名称
     */
    @TableField("party_a_id")
    private Integer partyAId;
    @Excel(name = "甲方名称")
    @TableField("party_a_name")
    private String partyAName;
@@ -120,7 +124,11 @@
    @TableField("party_a_contact_info")
    private String partyAContactInfo;
    /**
     * 乙方Id
     */
    @TableField("party_b_id")
    private Integer partyBId;
    /**
     * 乙方名称
     */
@@ -286,5 +294,50 @@
    @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;
}