Commit 8063bb7ce858b714a2f4a2553a6b294297a6b94b

Authored by yiming
1 parent baf726ea

bf

bsthLineProfiles/src/main/java/com/ruoyi/project/system/line/domain/BsthTLineKFK.java
... ... @@ -19,6 +19,7 @@ import java.util.Map;
19 19 */
20 20 public class BsthTLineKFK
21 21 {
  22 + private Long id;
22 23 /** 线路名称 */
23 24 private String lineName;
24 25  
... ... @@ -661,4 +662,12 @@ public class BsthTLineKFK
661 662 public void setOperationType(String operationType) {
662 663 this.operationType = operationType;
663 664 }
  665 +
  666 + public Long getId() {
  667 + return id;
  668 + }
  669 +
  670 + public void setId(Long id) {
  671 + this.id = id;
  672 + }
664 673 }
... ...