-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Controller 与 Service 层方法框架
- Loading branch information
SmacUL
committed
Apr 18, 2020
1 parent
636418b
commit 3d179be
Showing
20 changed files
with
881 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
129 changes: 129 additions & 0 deletions
129
back/src/main/java/com/smacul/demo/model/ArtFullMod.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
package com.smacul.demo.model; | ||
|
||
import com.smacul.demo.bean.ArtFeatureCount; | ||
import com.smacul.demo.bean.Customer; | ||
|
||
import java.sql.Timestamp; | ||
|
||
public class ArtFullMod { | ||
private Integer artId; | ||
private String artTitle; | ||
private String artContent; | ||
private String artSpider; | ||
|
||
private String artType; | ||
private String artTags; | ||
private String artImageUrl; | ||
private Timestamp artTime; | ||
|
||
private Integer artLegal; | ||
private Integer artCusId; | ||
|
||
private Customer customer; | ||
private ArtFeatureCount artFeature; | ||
private CusArtBehaviorMod cusArtBehavior; | ||
|
||
public Integer getArtId() { | ||
return artId; | ||
} | ||
|
||
public void setArtId(Integer artId) { | ||
this.artId = artId; | ||
} | ||
|
||
public String getArtTitle() { | ||
return artTitle; | ||
} | ||
|
||
public void setArtTitle(String artTitle) { | ||
this.artTitle = artTitle; | ||
} | ||
|
||
public String getArtContent() { | ||
return artContent; | ||
} | ||
|
||
public void setArtContent(String artContent) { | ||
this.artContent = artContent; | ||
} | ||
|
||
public String getArtSpider() { | ||
return artSpider; | ||
} | ||
|
||
public void setArtSpider(String artSpider) { | ||
this.artSpider = artSpider; | ||
} | ||
|
||
public String getArtType() { | ||
return artType; | ||
} | ||
|
||
public void setArtType(String artType) { | ||
this.artType = artType; | ||
} | ||
|
||
public String getArtTags() { | ||
return artTags; | ||
} | ||
|
||
public void setArtTags(String artTags) { | ||
this.artTags = artTags; | ||
} | ||
|
||
public String getArtImageUrl() { | ||
return artImageUrl; | ||
} | ||
|
||
public void setArtImageUrl(String artImageUrl) { | ||
this.artImageUrl = artImageUrl; | ||
} | ||
|
||
public Timestamp getArtTime() { | ||
return artTime; | ||
} | ||
|
||
public void setArtTime(Timestamp artTime) { | ||
this.artTime = artTime; | ||
} | ||
|
||
public Integer getArtLegal() { | ||
return artLegal; | ||
} | ||
|
||
public void setArtLegal(Integer artLegal) { | ||
this.artLegal = artLegal; | ||
} | ||
|
||
public Integer getArtCusId() { | ||
return artCusId; | ||
} | ||
|
||
public void setArtCusId(Integer artCusId) { | ||
this.artCusId = artCusId; | ||
} | ||
|
||
public Customer getCustomer() { | ||
return customer; | ||
} | ||
|
||
public void setCustomer(Customer customer) { | ||
this.customer = customer; | ||
} | ||
|
||
public ArtFeatureCount getArtFeature() { | ||
return artFeature; | ||
} | ||
|
||
public void setArtFeature(ArtFeatureCount artFeature) { | ||
this.artFeature = artFeature; | ||
} | ||
|
||
public CusArtBehaviorMod getCusArtBehavior() { | ||
return cusArtBehavior; | ||
} | ||
|
||
public void setCusArtBehavior(CusArtBehaviorMod cusArtBehavior) { | ||
this.cusArtBehavior = cusArtBehavior; | ||
} | ||
} |
Oops, something went wrong.