shiyunteng
2025-03-28 4ad9053cc576b74f74985f22fa5af25cca282a28
platformx-device-api/src/main/java/com/by4cloud/platformx/device/entity/ReceivingNote.java
@@ -11,7 +11,9 @@
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Transient;
import java.util.Date;
import java.util.List;
/**
 * @author kdq
@@ -27,16 +29,16 @@
@Table(appliesTo = "receiving_note", comment = "验收表")
public class ReceivingNote extends BaseModel<ReceivingNote> {
   /**
    * 承租合同Id
    * 合同Id
    */
   @Column(columnDefinition="long comment '承租合同Id'")
   private Long lesseeContractId;
   @Column(columnDefinition="long comment '合同Id'")
   private Long contractId;
   /**
    * 租用合同Id
    */
   @Column(columnDefinition="long comment '租用合同Id'")
   private Long rentContractId;
//   /**
//    * 租用合同Id
//    */
//   @Column(columnDefinition="long comment '租用合同Id'")
//   private Long rentContractId;
   @Schema(description = "验收公司")
   @Column(columnDefinition="VARCHAR(64) comment '验收公司'")
@@ -127,4 +129,8 @@
   @Schema(description = "使用公司")
   @Column(columnDefinition="long comment '使用公司'")
   private Long deptId;
   @Transient
   @TableField(exist = false)
   private List<ReceivingNoteItem> noteItemList;
}