| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * TacPawpBstocmSctnParam
- *
- * @author lune
- * @date 2019-6-19
- */
- public class TacPawpBstocmSctnParam extends PageParam implements Serializable {
- @ApiModelProperty("主键ID")
- private String sctnId;
- @ApiModelProperty("主键ID")
- private String tacId;
- public TacPawpBstocmSctnParam() {
- }
- 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;
- }
- }
|