首页>代码>java web开发无纸化办公管理系统>/Colin/src/wjb/bean/CheckInfo.java
001/**
002 * @新建类文件:CheckInfo.java
003 * @说明:暂无
004 */
005package wjb.bean;
006 
007/**
008 * @描述:审批相关信息
009 * @说明:暂无
010 * @版权:Copyright © 2017 colin. All Rights Reserved.
011 * @作者:吴江波
012 * @版本:1.0
013 * @创建日期:2017-10-19
014 * @创建时间:下午4:16:11
015 * @所属包名:wjb.bean
016 * @类的名称:CheckInfo.java
017 */
018public class CheckInfo {
019    private String request_goods_id;// yw_request_goods表的主键ID
020    private String goods_no;// 请购单编号
021    private String create_time;// 提交请购申请时间
022    private String create_user;// 提交请购申请人员ID
023    private String create_user_name;// 提交请购申请人员姓名
024    private String goods_name;// 品名
025    private String goods_desc;// 规格
026    private String goods_unit;// 单位
027    private double goods_count;// 请购量
028    private double goods_order;// 订购量
029    private double goods_total_price;// 总价
030    private String need_time;// 需要日期
031    private String applicant_dep;// 请购人所属部门ID
032    private String applicant_dep_name;// 请购人所属部门名称
033    private String back_date;// 回厂日期
034    private double xzkcl;// 现在库存量
035    private double mysyl;// 每月使用量
036    private String scqgrq;// 上次请购日期
037    private double scqgsl;// 上次请购数量
038    private double scqgdj;// 上次请购单价
039    private String scqgcs;// 上次请购厂商
040    private String purpose_desc;// 用途
041    private String cgyj;// 采购意见
042    private String fkfspq;// 付款方式票期
043    private String dycrq;// 分批交货第一次日期
044    private double dycsl;// 分批交货第一次数量
045    private String decrq;// 分批交货第二次日期
046    private double decsl;// 分批交货第二次数量
047    private String dscrq;// 分批交货第三次日期
048    private double dscsl;// 分批交货第三次数量
049 
050    private String check_id;// yw_check表的主键ID
051    private String record_id;// 被审核记录ID
052    private String auditor_id;// 请购人主管ID
053    private String auditor_id_name;// 请购人主管ID姓名
054    private String audit_opinion;// 请购人主管审核意见
055    private String audit_state;// 请购人主管审核状态(1:审核中;2:审核通过;3:审核不通过)
056    private String audit_time;// 请购人主管审核时间
057 
058    private double goods_price;// 物料单价
059    private String undertaker_id;// 采购承办人ID
060    private String undertaker_id_name;// 采购承办人ID姓名
061    private String undertaker_opinion;// 采购承办人审核意见
062    private String undertaker_state;// 采购承办人审核状态(1:审核中;2:审核通过;3:审核不通过)
063    private String undertaker_time;// 采购承办人审核时间
064 
065    private String buyer_id;// 采购主管ID
066    private String buyer_id_name;// 采购主管ID姓名
067    private String buyer_opinion;// 采购主管审核意见
068    private String buyer_state;// 采购主管审核状态(1:审核中;2:审核通过;3:审核不通过)
069    private String buyer_time;// 采购主管审核时间
070 
071    /**
072     * @描述:构造方法
073     * @说明:暂无
074     */
075    public CheckInfo() {
076        super();
077        // TODO Auto-generated constructor stub
078    }
079 
080    /**
081     * @return the request_goods_id
082     */
083    public String getRequest_goods_id() {
084        return request_goods_id;
085    }
086 
087    /**
088     * @param request_goods_id
089     *            the request_goods_id to set
090     */
091    public void setRequest_goods_id(String request_goods_id) {
092        this.request_goods_id = request_goods_id;
093    }
094 
095    /**
096     * @return the goods_no
097     */
098    public String getGoods_no() {
099        return goods_no;
100    }
101 
102    /**
103     * @param goods_no
104     *            the goods_no to set
105     */
106    public void setGoods_no(String goods_no) {
107        this.goods_no = goods_no;
108    }
109 
110    /**
111     * @return the create_time
112     */
113    public String getCreate_time() {
114        return create_time;
115    }
116 
117    /**
118     * @param create_time
119     *            the create_time to set
120     */
121    public void setCreate_time(String create_time) {
122        this.create_time = create_time;
123    }
124 
125    /**
126     * @return the create_user
127     */
128    public String getCreate_user() {
129        return create_user;
130    }
131 
132    /**
133     * @param create_user
134     *            the create_user to set
135     */
136    public void setCreate_user(String create_user) {
137        this.create_user = create_user;
138    }
139 
140    /**
141     * @return the create_user_name
142     */
143    public String getCreate_user_name() {
144        return create_user_name;
145    }
146 
147    /**
148     * @param create_user_name
149     *            the create_user_name to set
150     */
151    public void setCreate_user_name(String create_user_name) {
152        this.create_user_name = create_user_name;
153    }
154 
155    /**
156     * @return the goods_name
157     */
158    public String getGoods_name() {
159        return goods_name;
160    }
161 
162    /**
163     * @param goods_name
164     *            the goods_name to set
165     */
166    public void setGoods_name(String goods_name) {
167        this.goods_name = goods_name;
168    }
169 
170    /**
171     * @return the goods_desc
172     */
173    public String getGoods_desc() {
174        return goods_desc;
175    }
176 
177    /**
178     * @param goods_desc
179     *            the goods_desc to set
180     */
181    public void setGoods_desc(String goods_desc) {
182        this.goods_desc = goods_desc;
183    }
184 
185    /**
186     * @return the goods_unit
187     */
188    public String getGoods_unit() {
189        return goods_unit;
190    }
191 
192    /**
193     * @param goods_unit
194     *            the goods_unit to set
195     */
196    public void setGoods_unit(String goods_unit) {
197        this.goods_unit = goods_unit;
198    }
199 
200    /**
201     * @return the goods_count
202     */
203    public double getGoods_count() {
204        return goods_count;
205    }
206 
207    /**
208     * @param goods_count
209     *            the goods_count to set
210     */
211    public void setGoods_count(double goods_count) {
212        this.goods_count = goods_count;
213    }
214 
215    /**
216     * @return the goods_order
217     */
218    public double getGoods_order() {
219        return goods_order;
220    }
221 
222    /**
223     * @param goods_order
224     *            the goods_order to set
225     */
226    public void setGoods_order(double goods_order) {
227        this.goods_order = goods_order;
228    }
229 
230    /**
231     * @return the goods_total_price
232     */
233    public double getGoods_total_price() {
234        return goods_total_price;
235    }
236 
237    /**
238     * @param goods_total_price
239     *            the goods_total_price to set
240     */
241    public void setGoods_total_price(double goods_total_price) {
242        this.goods_total_price = goods_total_price;
243    }
244 
245    /**
246     * @return the need_time
247     */
248    public String getNeed_time() {
249        return need_time;
250    }
251 
252    /**
253     * @param need_time
254     *            the need_time to set
255     */
256    public void setNeed_time(String need_time) {
257        this.need_time = need_time;
258    }
259 
260    /**
261     * @return the applicant_dep
262     */
263    public String getApplicant_dep() {
264        return applicant_dep;
265    }
266 
267    /**
268     * @param applicant_dep
269     *            the applicant_dep to set
270     */
271    public void setApplicant_dep(String applicant_dep) {
272        this.applicant_dep = applicant_dep;
273    }
274 
275    /**
276     * @return the applicant_dep_name
277     */
278    public String getApplicant_dep_name() {
279        return applicant_dep_name;
280    }
281 
282    /**
283     * @param applicant_dep_name
284     *            the applicant_dep_name to set
285     */
286    public void setApplicant_dep_name(String applicant_dep_name) {
287        this.applicant_dep_name = applicant_dep_name;
288    }
289 
290    /**
291     * @return the back_date
292     */
293    public String getBack_date() {
294        return back_date;
295    }
296 
297    /**
298     * @param back_date
299     *            the back_date to set
300     */
301    public void setBack_date(String back_date) {
302        this.back_date = back_date;
303    }
304 
305    /**
306     * @return the xzkcl
307     */
308    public double getXzkcl() {
309        return xzkcl;
310    }
311 
312    /**
313     * @param xzkcl
314     *            the xzkcl to set
315     */
316    public void setXzkcl(double xzkcl) {
317        this.xzkcl = xzkcl;
318    }
319 
320    /**
321     * @return the mysyl
322     */
323    public double getMysyl() {
324        return mysyl;
325    }
326 
327    /**
328     * @param mysyl
329     *            the mysyl to set
330     */
331    public void setMysyl(double mysyl) {
332        this.mysyl = mysyl;
333    }
334 
335    /**
336     * @return the scqgrq
337     */
338    public String getScqgrq() {
339        return scqgrq;
340    }
341 
342    /**
343     * @param scqgrq
344     *            the scqgrq to set
345     */
346    public void setScqgrq(String scqgrq) {
347        this.scqgrq = scqgrq;
348    }
349 
350    /**
351     * @return the scqgsl
352     */
353    public double getScqgsl() {
354        return scqgsl;
355    }
356 
357    /**
358     * @param scqgsl
359     *            the scqgsl to set
360     */
361    public void setScqgsl(double scqgsl) {
362        this.scqgsl = scqgsl;
363    }
364 
365    /**
366     * @return the scqgdj
367     */
368    public double getScqgdj() {
369        return scqgdj;
370    }
371 
372    /**
373     * @param scqgdj
374     *            the scqgdj to set
375     */
376    public void setScqgdj(double scqgdj) {
377        this.scqgdj = scqgdj;
378    }
379 
380    /**
381     * @return the scqgcs
382     */
383    public String getScqgcs() {
384        return scqgcs;
385    }
386 
387    /**
388     * @param scqgcs
389     *            the scqgcs to set
390     */
391    public void setScqgcs(String scqgcs) {
392        this.scqgcs = scqgcs;
393    }
394 
395    /**
396     * @return the purpose_desc
397     */
398    public String getPurpose_desc() {
399        return purpose_desc;
400    }
401 
402    /**
403     * @param purpose_desc
404     *            the purpose_desc to set
405     */
406    public void setPurpose_desc(String purpose_desc) {
407        this.purpose_desc = purpose_desc;
408    }
409 
410    /**
411     * @return the cgyj
412     */
413    public String getCgyj() {
414        return cgyj;
415    }
416 
417    /**
418     * @param cgyj
419     *            the cgyj to set
420     */
421    public void setCgyj(String cgyj) {
422        this.cgyj = cgyj;
423    }
424 
425    /**
426     * @return the fkfspq
427     */
428    public String getFkfspq() {
429        return fkfspq;
430    }
431 
432    /**
433     * @param fkfspq
434     *            the fkfspq to set
435     */
436    public void setFkfspq(String fkfspq) {
437        this.fkfspq = fkfspq;
438    }
439 
440    /**
441     * @return the dycrq
442     */
443    public String getDycrq() {
444        return dycrq;
445    }
446 
447    /**
448     * @param dycrq
449     *            the dycrq to set
450     */
451    public void setDycrq(String dycrq) {
452        this.dycrq = dycrq;
453    }
454 
455    /**
456     * @return the dycsl
457     */
458    public double getDycsl() {
459        return dycsl;
460    }
461 
462    /**
463     * @param dycsl
464     *            the dycsl to set
465     */
466    public void setDycsl(double dycsl) {
467        this.dycsl = dycsl;
468    }
469 
470    /**
471     * @return the decrq
472     */
473    public String getDecrq() {
474        return decrq;
475    }
476 
477    /**
478     * @param decrq
479     *            the decrq to set
480     */
481    public void setDecrq(String decrq) {
482        this.decrq = decrq;
483    }
484 
485    /**
486     * @return the decsl
487     */
488    public double getDecsl() {
489        return decsl;
490    }
491 
492    /**
493     * @param decsl
494     *            the decsl to set
495     */
496    public void setDecsl(double decsl) {
497        this.decsl = decsl;
498    }
499 
500    /**
501     * @return the dscrq
502     */
503    public String getDscrq() {
504        return dscrq;
505    }
506 
507    /**
508     * @param dscrq
509     *            the dscrq to set
510     */
511    public void setDscrq(String dscrq) {
512        this.dscrq = dscrq;
513    }
514 
515    /**
516     * @return the dscsl
517     */
518    public double getDscsl() {
519        return dscsl;
520    }
521 
522    /**
523     * @param dscsl
524     *            the dscsl to set
525     */
526    public void setDscsl(double dscsl) {
527        this.dscsl = dscsl;
528    }
529 
530    /**
531     * @return the check_id
532     */
533    public String getCheck_id() {
534        return check_id;
535    }
536 
537    /**
538     * @param check_id
539     *            the check_id to set
540     */
541    public void setCheck_id(String check_id) {
542        this.check_id = check_id;
543    }
544 
545    /**
546     * @return the record_id
547     */
548    public String getRecord_id() {
549        return record_id;
550    }
551 
552    /**
553     * @param record_id
554     *            the record_id to set
555     */
556    public void setRecord_id(String record_id) {
557        this.record_id = record_id;
558    }
559 
560    /**
561     * @return the auditor_id
562     */
563    public String getAuditor_id() {
564        return auditor_id;
565    }
566 
567    /**
568     * @param auditor_id
569     *            the auditor_id to set
570     */
571    public void setAuditor_id(String auditor_id) {
572        this.auditor_id = auditor_id;
573    }
574 
575    /**
576     * @return the auditor_id_name
577     */
578    public String getAuditor_id_name() {
579        return auditor_id_name;
580    }
581 
582    /**
583     * @param auditor_id_name
584     *            the auditor_id_name to set
585     */
586    public void setAuditor_id_name(String auditor_id_name) {
587        this.auditor_id_name = auditor_id_name;
588    }
589 
590    /**
591     * @return the audit_opinion
592     */
593    public String getAudit_opinion() {
594        return audit_opinion;
595    }
596 
597    /**
598     * @param audit_opinion
599     *            the audit_opinion to set
600     */
601    public void setAudit_opinion(String audit_opinion) {
602        this.audit_opinion = audit_opinion;
603    }
604 
605    /**
606     * @return the audit_state
607     */
608    public String getAudit_state() {
609        return audit_state;
610    }
611 
612    /**
613     * @param audit_state
614     *            the audit_state to set
615     */
616    public void setAudit_state(String audit_state) {
617        this.audit_state = audit_state;
618    }
619 
620    /**
621     * @return the audit_time
622     */
623    public String getAudit_time() {
624        return audit_time;
625    }
626 
627    /**
628     * @param audit_time
629     *            the audit_time to set
630     */
631    public void setAudit_time(String audit_time) {
632        this.audit_time = audit_time;
633    }
634 
635    /**
636     * @return the goods_price
637     */
638    public double getGoods_price() {
639        return goods_price;
640    }
641 
642    /**
643     * @param goods_price
644     *            the goods_price to set
645     */
646    public void setGoods_price(double goods_price) {
647        this.goods_price = goods_price;
648    }
649 
650    /**
651     * @return the undertaker_id
652     */
653    public String getUndertaker_id() {
654        return undertaker_id;
655    }
656 
657    /**
658     * @param undertaker_id
659     *            the undertaker_id to set
660     */
661    public void setUndertaker_id(String undertaker_id) {
662        this.undertaker_id = undertaker_id;
663    }
664 
665    /**
666     * @return the undertaker_id_name
667     */
668    public String getUndertaker_id_name() {
669        return undertaker_id_name;
670    }
671 
672    /**
673     * @param undertaker_id_name
674     *            the undertaker_id_name to set
675     */
676    public void setUndertaker_id_name(String undertaker_id_name) {
677        this.undertaker_id_name = undertaker_id_name;
678    }
679 
680    /**
681     * @return the undertaker_opinion
682     */
683    public String getUndertaker_opinion() {
684        return undertaker_opinion;
685    }
686 
687    /**
688     * @param undertaker_opinion
689     *            the undertaker_opinion to set
690     */
691    public void setUndertaker_opinion(String undertaker_opinion) {
692        this.undertaker_opinion = undertaker_opinion;
693    }
694 
695    /**
696     * @return the undertaker_state
697     */
698    public String getUndertaker_state() {
699        return undertaker_state;
700    }
701 
702    /**
703     * @param undertaker_state
704     *            the undertaker_state to set
705     */
706    public void setUndertaker_state(String undertaker_state) {
707        this.undertaker_state = undertaker_state;
708    }
709 
710    /**
711     * @return the undertaker_time
712     */
713    public String getUndertaker_time() {
714        return undertaker_time;
715    }
716 
717    /**
718     * @param undertaker_time
719     *            the undertaker_time to set
720     */
721    public void setUndertaker_time(String undertaker_time) {
722        this.undertaker_time = undertaker_time;
723    }
724 
725    /**
726     * @return the buyer_id
727     */
728    public String getBuyer_id() {
729        return buyer_id;
730    }
731 
732    /**
733     * @param buyer_id
734     *            the buyer_id to set
735     */
736    public void setBuyer_id(String buyer_id) {
737        this.buyer_id = buyer_id;
738    }
739 
740    /**
741     * @return the buyer_id_name
742     */
743    public String getBuyer_id_name() {
744        return buyer_id_name;
745    }
746 
747    /**
748     * @param buyer_id_name
749     *            the buyer_id_name to set
750     */
751    public void setBuyer_id_name(String buyer_id_name) {
752        this.buyer_id_name = buyer_id_name;
753    }
754 
755    /**
756     * @return the buyer_opinion
757     */
758    public String getBuyer_opinion() {
759        return buyer_opinion;
760    }
761 
762    /**
763     * @param buyer_opinion
764     *            the buyer_opinion to set
765     */
766    public void setBuyer_opinion(String buyer_opinion) {
767        this.buyer_opinion = buyer_opinion;
768    }
769 
770    /**
771     * @return the buyer_state
772     */
773    public String getBuyer_state() {
774        return buyer_state;
775    }
776 
777    /**
778     * @param buyer_state
779     *            the buyer_state to set
780     */
781    public void setBuyer_state(String buyer_state) {
782        this.buyer_state = buyer_state;
783    }
784 
785    /**
786     * @return the buyer_time
787     */
788    public String getBuyer_time() {
789        return buyer_time;
790    }
791 
792    /**
793     * @param buyer_time
794     *            the buyer_time to set
795     */
796    public void setBuyer_time(String buyer_time) {
797        this.buyer_time = buyer_time;
798    }
799}
最近下载更多
随便取个名字_哈哈  LV27 2024年11月24日
张泽帅  LV6 2024年10月28日
akbar2020  LV9 2022年9月4日
cx123123  LV7 2022年5月16日
邬松桥  LV11 2022年4月11日
liuzejuncn  LV6 2022年3月11日
wanglinddad  LV55 2022年2月24日
xuyongff  LV24 2021年11月25日
涵涵吖  LV6 2021年4月26日
dangdangdangj  LV4 2021年3月19日
最近浏览更多
新哥新奇士橙  LV4 1月26日
2194192290li  LV1 2024年12月2日
张泽帅  LV6 2024年10月17日
唐唐丶  LV34 2024年9月12日
OLDMANDING  LV1 2024年8月21日
柳咪华沙  LV7 2024年6月28日
yunsgui  LV1 2024年6月26日
微信网友_7000012089643008  LV4 2024年5月26日
微信网友_6906962132258816  LV7 2024年5月15日
m5433661  LV2 2024年3月28日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友