123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- package com.miniframe.generate.business.ac.model;
- import java.util.Map;
- import java.io.IOException;
- import java.util.LinkedHashMap;
- import com.miniframe.core.BaseMapModel;
- import com.miniframe.core.ext.UtilTools;
- import com.miniframe.core.ext.HttpMapFormater;
- import java.time.ZonedDateTime;
- import java.time.format.DateTimeFormatter;
- import com.miniframe.generate.global.AppGlobalVariableSysconfig;
- import com.miniframe.generate.comm.ac.A_ACHEAD;
- import com.miniframe.generate.comm.ac.D_ACHEAD;
- import com.miniframe.generate.comm.ac.A_BES001;
- import com.miniframe.generate.comm.ac.D_BES001;
- /**
- * 气动设计,“基础字典查询”模型类(不要维护,重新生成将覆盖)。
- */
- @SuppressWarnings({ "rawtypes", "unchecked" })
- public class BES001BaseModel extends BaseMapModel {
- private static final long serialVersionUID = -1326184831746814093L;
- A_ACHEAD a_achead;//上行头
- D_ACHEAD d_achead;//下行头
- A_BES001 a_bes001;//上行体
- D_BES001 d_bes001;//下行体
- public BES001BaseModel(){
- a_achead=new A_ACHEAD();
- d_achead=new D_ACHEAD();
- a_bes001=new A_BES001();
- d_bes001=new D_BES001();
- }
- public void validater() throws Exception {
- this.a_achead.validater();
- this.a_bes001.validater();
- }
- public void setTransMap(Map map) throws Exception {
- Map headMap = HttpMapFormater.format(map, A_ACHEAD.class);
- this.a_achead = UtilTools.map2Obj(headMap, A_ACHEAD.class);
- Map bodyMap = HttpMapFormater.format(map, A_BES001.class);
- this.a_bes001 = UtilTools.map2Obj(bodyMap, A_BES001.class);
- }
- public Map getTransMap() throws Exception {
- Map reMap = new LinkedHashMap();
- if(UtilTools.isNullOrBlank((this.d_achead).getTransCode())){
- (this.d_achead).setTransCode((this.a_achead).getTransCode());
- }
- if(UtilTools.isNullOrBlank((this.d_achead).getChannelNo())){
- (this.d_achead).setChannelNo((this.a_achead).getChannelNo());
- }
- if(UtilTools.isNullOrBlank((this.d_achead).getUserId())){
- (this.d_achead).setUserId((this.a_achead).getUserId());
- }
- if(UtilTools.isNullOrBlank((this.d_achead).getTransTime())){
- (this.d_achead).setTransTime(DateTimeFormatter.ofPattern(AppGlobalVariableSysconfig.DATETIMEFORMAT).format(ZonedDateTime.now()));
- }
- reMap.putAll(UtilTools.obj2Map(this.d_achead));
- reMap.putAll(UtilTools.obj2Map(this.d_bes001));
- return reMap;
- }
- public A_ACHEAD getA_achead() {
- return this.a_achead;
- }
- public void setA_achead(A_ACHEAD a_achead) {
- this.a_achead=a_achead;
- }
- public D_ACHEAD getD_achead() {
- return d_achead;
- }
- public void setD_achead(D_ACHEAD d_achead) {
- this.d_achead=d_achead;
- }
- public A_BES001 getA_bes001() {
- return a_bes001;
- }
- public void setA_bes001(A_BES001 a_bes001) {
- this.a_bes001=a_bes001;
- }
- public D_BES001 getD_bes001() {
- return this.d_bes001;
- }
- public void setD_bes001(D_BES001 d_bes001) {
- this.d_bes001=d_bes001;
- }
- @Override
- public String toString() {
- try {
- return UtilTools.obj2Json(this,true);
- } catch (IOException e) {
- return "";
- }
- }
- }
|