| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import java.io.Serializable;
- /**
- * entity:BisInspProSourceProtect
- *
- * @author zhengdafei
- * @date 2019-2-22
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspProSourceProtectDto extends BaseBean implements Serializable {
- private Double lgtd;
- private Double lttd;
- private Double lgtdpc;
- private Double lttdpc;
- private String wsCd;
- private String wsNm;
- private String status;
- private String type;
- private String id;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public Double getLgtd() {
- return lgtd;
- }
- public void setLgtd(Double lgtd) {
- this.lgtd = lgtd;
- }
- public Double getLttd() {
- return lttd;
- }
- public void setLttd(Double lttd) {
- this.lttd = lttd;
- }
- public Double getLgtdpc() {
- return lgtdpc;
- }
- public void setLgtdpc(Double lgtdpc) {
- this.lgtdpc = lgtdpc;
- }
- public Double getLttdpc() {
- return lttdpc;
- }
- public void setLttdpc(Double lttdpc) {
- this.lttdpc = lttdpc;
- }
- public String getWsCd() {
- return wsCd;
- }
- public void setWsCd(String wsCd) {
- this.wsCd = wsCd;
- }
- public String getWsNm() {
- return wsNm;
- }
- public void setWsNm(String wsNm) {
- this.wsNm = wsNm;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public BisInspProSourceProtectDto() {
- }
- public String getStatus() {
- return status;
- }
- public void setStatus(String status) {
- this.status = status;
- }
- }
|