| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * entity:TacPawpBstocmSctn
- *
- * @author lune
- * @date 2019-6-19
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class TacPawpBstocmSctn extends BaseBean implements Serializable {
- @ApiModelProperty("标段ID")
- private String sctnId;
- @ApiModelProperty("主键ID")
- private String tacId;
- public TacPawpBstocmSctn() {
- }
- public String getSctnId() {
- return sctnId;
- }
- public void setSctnId(String sctnId) {
- this.sctnId = sctnId;
- }
- public String getTacId() {
- return tacId;
- }
- public void setTacId(String tacId) {
- this.tacId = tacId;
- }
- @Override
- public String toString() {
- return "TacPawpBstocmSctn [" + "sctnId=" + sctnId + ", tacId=" + tacId + "]";
- }
- }
|