| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * TacWorkerTypeParam
- *
- * @author lune
- * @date 2020-4-2
- */
- public class TacWorkerTypeParam extends PageParam implements Serializable {
- @ApiModelProperty("主键id")
- private String id;
- @ApiModelProperty("人员id")
- private String workerid;
- @ApiModelProperty("类型(1:角色,2:组别 其他待定)")
- private String type;
- @ApiModelProperty("值")
- private String value;
- public TacWorkerTypeParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getWorkerid() {
- return workerid;
- }
- public void setWorkerid(String workerid) {
- this.workerid = workerid;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getValue() {
- return value;
- }
- public void setValue(String value) {
- this.value = value;
- }
- }
|