package com.ruoyi.procurementrecord.pojo;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import lombok.Builder;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
@TableName("procurement_exception_record")
|
@Data
|
@Builder
|
public class ProcurementExceptionRecord {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 采购台账id
|
*/
|
private Integer purchaseLedgerId;
|
/**
|
* 异常描述
|
*/
|
private String exceptionReason;
|
|
/**
|
* 异常数量
|
*/
|
private BigDecimal exceptionNum;
|
|
/**
|
* 创建时间
|
*/
|
private LocalDateTime createTime;
|
|
/**
|
* 修改者
|
*/
|
private Long updateUser;
|
|
/**
|
* 修改时间
|
*/
|
private LocalDateTime updateTime;
|
|
/**
|
* 租户ID
|
*/
|
@TableField(fill = FieldFill.INSERT)
|
private Long tenantId;
|
}
|