| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- package com.goafanti.order.bo;
- public class OrderProcessName {
- private String orderNo;
- private Integer approval;
- private Integer processStatus;
- private String yxy;
- private String yxjl;
- private String yxgly;
- private String cwzy;
- private String zc;
- private String fzc;
- private String zxsgly;
- private String dsz;
- public String getFzc() {
- return fzc;
- }
- public void setFzc(String fzc) {
- this.fzc = fzc;
- }
- public String getYxjl() {
- return yxjl;
- }
- public void setYxjl(String yxjl) {
- this.yxjl = yxjl;
- }
- public Integer getProcessStatus() {
- return processStatus;
- }
- public void setProcessStatus(Integer processStatus) {
- this.processStatus = processStatus;
- }
- public String getOrderNo() {
- return orderNo;
- }
- public void setOrderNo(String orderNo) {
- this.orderNo = orderNo;
- }
- public Integer getApproval() {
- return approval;
- }
- public void setApproval(Integer approval) {
- this.approval = approval;
- }
- public String getYxy() {
- return yxy;
- }
- public void setYxy(String yxy) {
- this.yxy = yxy;
- }
- public String getYxgly() {
- return yxgly;
- }
- public void setYxgly(String yxgly) {
- this.yxgly = yxgly;
- }
- public String getCwzy() {
- return cwzy;
- }
- public void setCwzy(String cwzy) {
- this.cwzy = cwzy;
- }
- public String getZc() {
- return zc;
- }
- public void setZc(String zc) {
- this.zc = zc;
- }
- public String getZxsgly() {
- return zxsgly;
- }
- public void setZxsgly(String zxsgly) {
- this.zxsgly = zxsgly;
- }
- public String getDsz() {
- return dsz;
- }
- public void setDsz(String dsz) {
- this.dsz = dsz;
- }
- }
|