| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- 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:TacPawpLaws
- *
- * @author lune
- * @date 2019-6-24
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class TacPawpLaws extends BaseBean implements Serializable {
- @ApiModelProperty("主键id")
- private String id;
- @ApiModelProperty("1前期与设计,2建设管理,3计划下达与执行,4资金使用与管理,5工程质量,6工程安全")
- private String tacType;
- @ApiModelProperty("类别")
- private String class1Name;
- @ApiModelProperty("专业")
- private String class2Name;
- @ApiModelProperty("法规序号")
- private String sn;
- @ApiModelProperty("法规名称")
- private String lawName;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public TacPawpLaws() {
- }
- public String getTacType() {
- return tacType;
- }
- public void setTacType(String tacType) {
- this.tacType = tacType;
- }
- public String getClass1Name() {
- return class1Name;
- }
- public void setClass1Name(String class1Name) {
- this.class1Name = class1Name;
- }
- public String getClass2Name() {
- return class2Name;
- }
- public void setClass2Name(String class2Name) {
- this.class2Name = class2Name;
- }
- public String getSn() {
- return sn;
- }
- public void setSn(String sn) {
- this.sn = sn;
- }
- public String getLawName() {
- return lawName;
- }
- public void setLawName(String lawName) {
- this.lawName = lawName;
- }
- @Override
- public String toString() {
- return "TacPawpLaws [" + "tacType=" + tacType + ", class1Name=" + class1Name + ", class2Name=" + class2Name + ", sn=" + sn + ", lawName=" + lawName + "]";
- }
- }
|