| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- public class TacObjPblmstbLawParam extends PageParam implements Serializable {
- @ApiModelProperty("*主键")
- private String id;
- @ApiModelProperty("*法规ID")
- private String lawId;
- @ApiModelProperty("*法规章节")
- private String note;
- @ApiModelProperty("问题清单id")
- private String pblmstbId;
- @ApiModelProperty("法规内容")
- private String lawContent;
- public String getId() {
- return id;
- }
- public String getLawContent() {
- return lawContent;
- }
- public void setLawContent(String lawContent) {
- this.lawContent = lawContent;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getLawId() {
- return lawId;
- }
- public void setLawId(String lawId) {
- this.lawId = lawId;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public String getPblmstbId() {
- return pblmstbId;
- }
- public void setPblmstbId(String pblmstbId) {
- this.pblmstbId = pblmstbId;
- }
- }
|