package com.ruoyi.tms.domain;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import java.math.BigDecimal;
|
import com.ruoyi.common.annotation.Excel;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import java.util.Date;
|
import lombok.Data;
|
/**
|
* 应付结算单对象 tms_ap_settlement
|
*
|
* @author ruoyi
|
* @date 2026-01-12
|
*/
|
@Data
|
public class TmsApSettlement{
|
|
|
/** */
|
@TableId(value="id",type = IdType.AUTO)
|
private Integer id;
|
|
|
/** 系统编号 */
|
@Excel(name = "系统编号")
|
@TableField("system_no")
|
private String systemNo;
|
|
|
/** 账单ID */
|
@Excel(name = "账单ID")
|
@TableField("bill_id")
|
private Integer billId;
|
|
|
/** 结算金额 */
|
@Excel(name = "结算金额")
|
@TableField("settle_amount")
|
private BigDecimal settleAmount;
|
|
|
/** 备注 */
|
@Excel(name = "备注")
|
@TableField("remark")
|
private String remark;
|
|
|
/** 附件 */
|
@Excel(name = "附件")
|
@TableField("attachment")
|
private String attachment;
|
|
|
/** 创建人 */
|
@TableField("create_by")
|
private String createBy;
|
|
|
/** 创建时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@TableField("create_time")
|
private Date createTime;
|
|
|
/** 修改人 */
|
@TableField("update_by")
|
private String updateBy;
|
|
|
/** 修改时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@TableField("update_time")
|
private Date updateTime;
|
|
|
}
|