Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 20.96 KB | None | 0 0
  1. //
  2. // Source code recreated from a .class file by IntelliJ IDEA
  3. // (powered by Fernflower decompiler)
  4. //
  5.  
  6. package hu.tracon.common.model.entity;
  7.  
  8. import java.io.Serializable;
  9. import java.util.Date;
  10. import java.util.HashSet;
  11. import java.util.Set;
  12. import javax.persistence.Column;
  13. import javax.persistence.Entity;
  14. import javax.persistence.FetchType;
  15. import javax.persistence.Id;
  16. import javax.persistence.JoinColumn;
  17. import javax.persistence.ManyToOne;
  18. import javax.persistence.OneToMany;
  19. import javax.persistence.OneToOne;
  20. import javax.persistence.Table;
  21. import javax.persistence.Temporal;
  22. import javax.persistence.TemporalType;
  23.  
  24. @Entity
  25. @Table(
  26.     name = "CUSTOMER"
  27. )
  28. public class Customer implements Serializable {
  29.     private static final long serialVersionUID = 1L;
  30.     private String customerId;
  31.     private CustomerAddress customerAddressByDefaultInvoiceIssuerAddress;
  32.     private Account account;
  33.     private CustomerAddress customerAddressByDefaultPostAddress;
  34.     private ApplicationSession applicationSessionByXInssession;
  35.     private MobileLanguage mobileLanguage;
  36.     private ApplicationSession applicationSessionByXModsession;
  37.     private Users usersByXInsuser;
  38.     private CustomerAddress customerAddressByDefaultBillingAddress;
  39.     private CustomerUser customerUser;
  40.     private Users usersByXModuser;
  41.     private String customerNamePrefix;
  42.     private String customerName;
  43.     private String phoneNumber;
  44.     private char corporation;
  45.     private String email;
  46.     private char XState;
  47.     private Date XModdate;
  48.     private Date XInsdate;
  49.     private String XComment;
  50.     private String businessPartnerType;
  51.     private String passwordHash;
  52.     private String idOrRegnum;
  53.     private char validated;
  54.     private char otpLogin;
  55.     private String mothersName;
  56.     private String birthName;
  57.     private String birthPlace;
  58.     private Date birthDate;
  59.     private String bankAccountNumber;
  60.     private Set<TradeCard> tradeCardsForCustomer = new HashSet(0);
  61.     private Set<CustomerAddress> customerAddresses = new HashSet(0);
  62.     private Set<CustomerLetter> customerLetters = new HashSet(0);
  63.     private ServiceDealer serviceDealer;
  64.     private Set<TargetLocationParams> targetLocationParamses = new HashSet(0);
  65.     private Set<TradeCard> tradeCardsForCarrier = new HashSet(0);
  66.     private Set<DataExchangePackage> dataExchangePackages = new HashSet(0);
  67.     private ServiceOwner serviceOwner;
  68.     private BusinessPartner businessPartner;
  69.     private Set<ComputerCustomer> computerCustomers = new HashSet(0);
  70.     private Set<AccountLetter> accountLetters = new HashSet(0);
  71.     private Set<Account> accounts = new HashSet(0);
  72.     private Set<CustomerBankAccount> customerBankAccounts = new HashSet(0);
  73.     private Set<CustomerComplaint> customerComplaints = new HashSet(0);
  74.     private Set<IncomingAccountRequest> incomingAccountRequests = new HashSet(0);
  75.     private Set<CustomerUserRelation> customerUserRelations = new HashSet(0);
  76.     private ServiceOperator serviceOperator;
  77.     private Set<OutputJob> outputJobs = new HashSet(0);
  78.     private String vatNumber;
  79.     private String taxIdentificationNumber;
  80.     private String enableSimpleTradeCard;
  81.     private Character isClassifiedTaxpayer;
  82.     private char isStatementEnabled;
  83.     private Character enablePredecessor;
  84.     private Date hibernationStart;
  85.     private Date hibernationEnd;
  86.  
  87.     public Customer() {
  88.     }
  89.  
  90.     @Id
  91.     @Column(
  92.         name = "CUSTOMER_ID",
  93.         unique = true,
  94.         nullable = false,
  95.         length = 15
  96.     )
  97.     public String getCustomerId() {
  98.         return this.customerId;
  99.     }
  100.  
  101.     public void setCustomerId(String customerId) {
  102.         this.customerId = customerId;
  103.     }
  104.  
  105.     @ManyToOne(
  106.         fetch = FetchType.LAZY
  107.     )
  108.     @JoinColumn(
  109.         name = "DEFAULT_INVOICE_ISSUER_ADDRESS"
  110.     )
  111.     public CustomerAddress getCustomerAddressByDefaultInvoiceIssuerAddress() {
  112.         return this.customerAddressByDefaultInvoiceIssuerAddress;
  113.     }
  114.  
  115.     public void setCustomerAddressByDefaultInvoiceIssuerAddress(CustomerAddress customerAddressByDefaultInvoiceIssuerAddress) {
  116.         this.customerAddressByDefaultInvoiceIssuerAddress = customerAddressByDefaultInvoiceIssuerAddress;
  117.     }
  118.  
  119.     @ManyToOne(
  120.         fetch = FetchType.LAZY
  121.     )
  122.     @JoinColumn(
  123.         name = "OTP_ACCOUNT"
  124.     )
  125.     public Account getAccount() {
  126.         return this.account;
  127.     }
  128.  
  129.     public void setAccount(Account account) {
  130.         this.account = account;
  131.     }
  132.  
  133.     @ManyToOne(
  134.         fetch = FetchType.LAZY
  135.     )
  136.     @JoinColumn(
  137.         name = "DEFAULT_POST_ADDRESS"
  138.     )
  139.     public CustomerAddress getCustomerAddressByDefaultPostAddress() {
  140.         return this.customerAddressByDefaultPostAddress;
  141.     }
  142.  
  143.     public void setCustomerAddressByDefaultPostAddress(CustomerAddress customerAddressByDefaultPostAddress) {
  144.         this.customerAddressByDefaultPostAddress = customerAddressByDefaultPostAddress;
  145.     }
  146.  
  147.     @ManyToOne(
  148.         fetch = FetchType.LAZY
  149.     )
  150.     @JoinColumn(
  151.         name = "X__INSSESSION"
  152.     )
  153.     public ApplicationSession getApplicationSessionByXInssession() {
  154.         return this.applicationSessionByXInssession;
  155.     }
  156.  
  157.     public void setApplicationSessionByXInssession(ApplicationSession applicationSessionByXInssession) {
  158.         this.applicationSessionByXInssession = applicationSessionByXInssession;
  159.     }
  160.  
  161.     @ManyToOne(
  162.         fetch = FetchType.LAZY
  163.     )
  164.     @JoinColumn(
  165.         name = "LANGUAGE",
  166.         nullable = false
  167.     )
  168.     public MobileLanguage getMobileLanguage() {
  169.         return this.mobileLanguage;
  170.     }
  171.  
  172.     public void setMobileLanguage(MobileLanguage mobileLanguage) {
  173.         this.mobileLanguage = mobileLanguage;
  174.     }
  175.  
  176.     @ManyToOne(
  177.         fetch = FetchType.LAZY
  178.     )
  179.     @JoinColumn(
  180.         name = "X__MODSESSION"
  181.     )
  182.     public ApplicationSession getApplicationSessionByXModsession() {
  183.         return this.applicationSessionByXModsession;
  184.     }
  185.  
  186.     public void setApplicationSessionByXModsession(ApplicationSession applicationSessionByXModsession) {
  187.         this.applicationSessionByXModsession = applicationSessionByXModsession;
  188.     }
  189.  
  190.     @ManyToOne(
  191.         fetch = FetchType.LAZY
  192.     )
  193.     @JoinColumn(
  194.         name = "X__INSUSER",
  195.         nullable = false
  196.     )
  197.     public Users getUsersByXInsuser() {
  198.         return this.usersByXInsuser;
  199.     }
  200.  
  201.     public void setUsersByXInsuser(Users usersByXInsuser) {
  202.         this.usersByXInsuser = usersByXInsuser;
  203.     }
  204.  
  205.     @ManyToOne(
  206.         fetch = FetchType.LAZY
  207.     )
  208.     @JoinColumn(
  209.         name = "DEFAULT_BILLING_ADDRESS"
  210.     )
  211.     public CustomerAddress getCustomerAddressByDefaultBillingAddress() {
  212.         return this.customerAddressByDefaultBillingAddress;
  213.     }
  214.  
  215.     public void setCustomerAddressByDefaultBillingAddress(CustomerAddress customerAddressByDefaultBillingAddress) {
  216.         this.customerAddressByDefaultBillingAddress = customerAddressByDefaultBillingAddress;
  217.     }
  218.  
  219.     @ManyToOne(
  220.         fetch = FetchType.LAZY
  221.     )
  222.     @JoinColumn(
  223.         name = "DEFAULT_CONTACT"
  224.     )
  225.     public CustomerUser getCustomerUser() {
  226.         return this.customerUser;
  227.     }
  228.  
  229.     public void setCustomerUser(CustomerUser customerUser) {
  230.         this.customerUser = customerUser;
  231.     }
  232.  
  233.     @ManyToOne(
  234.         fetch = FetchType.LAZY
  235.     )
  236.     @JoinColumn(
  237.         name = "X__MODUSER",
  238.         nullable = false
  239.     )
  240.     public Users getUsersByXModuser() {
  241.         return this.usersByXModuser;
  242.     }
  243.  
  244.     public void setUsersByXModuser(Users usersByXModuser) {
  245.         this.usersByXModuser = usersByXModuser;
  246.     }
  247.  
  248.     @Column(
  249.         name = "CUSTOMER_NAME_PREFIX",
  250.         length = 7
  251.     )
  252.     public String getCustomerNamePrefix() {
  253.         return this.customerNamePrefix;
  254.     }
  255.  
  256.     public void setCustomerNamePrefix(String customerNamePrefix) {
  257.         this.customerNamePrefix = customerNamePrefix;
  258.     }
  259.  
  260.     @Column(
  261.         name = "CUSTOMER_NAME",
  262.         nullable = false,
  263.         length = 150
  264.     )
  265.     public String getCustomerName() {
  266.         return this.customerName;
  267.     }
  268.  
  269.     public void setCustomerName(String customerName) {
  270.         this.customerName = customerName;
  271.     }
  272.  
  273.     @Column(
  274.         name = "PHONE_NUMBER",
  275.         length = 15
  276.     )
  277.     public String getPhoneNumber() {
  278.         return this.phoneNumber;
  279.     }
  280.  
  281.     public void setPhoneNumber(String phoneNumber) {
  282.         this.phoneNumber = phoneNumber;
  283.     }
  284.  
  285.     @Column(
  286.         name = "CORPORATION",
  287.         nullable = false,
  288.         length = 1
  289.     )
  290.     public char getCorporation() {
  291.         return this.corporation;
  292.     }
  293.  
  294.     public void setCorporation(char corporation) {
  295.         this.corporation = corporation;
  296.     }
  297.  
  298.     @Column(
  299.         name = "EMAIL",
  300.         length = 128
  301.     )
  302.     public String getEmail() {
  303.         return this.email;
  304.     }
  305.  
  306.     public void setEmail(String email) {
  307.         this.email = email;
  308.     }
  309.  
  310.     @Column(
  311.         name = "X__STATE",
  312.         nullable = false,
  313.         length = 1
  314.     )
  315.     public char getXState() {
  316.         return this.XState;
  317.     }
  318.  
  319.     public void setXState(char XState) {
  320.         this.XState = XState;
  321.     }
  322.  
  323.     @Temporal(TemporalType.TIMESTAMP)
  324.     @Column(
  325.         name = "X__MODDATE",
  326.         nullable = false,
  327.         length = 7
  328.     )
  329.     public Date getXModdate() {
  330.         return this.XModdate;
  331.     }
  332.  
  333.     public void setXModdate(Date XModdate) {
  334.         this.XModdate = XModdate;
  335.     }
  336.  
  337.     @Temporal(TemporalType.TIMESTAMP)
  338.     @Column(
  339.         name = "X__INSDATE",
  340.         nullable = false,
  341.         length = 7
  342.     )
  343.     public Date getXInsdate() {
  344.         return this.XInsdate;
  345.     }
  346.  
  347.     public void setXInsdate(Date XInsdate) {
  348.         this.XInsdate = XInsdate;
  349.     }
  350.  
  351.     @Column(
  352.         name = "X__COMMENT"
  353.     )
  354.     public String getXComment() {
  355.         return this.XComment;
  356.     }
  357.  
  358.     public void setXComment(String XComment) {
  359.         this.XComment = XComment;
  360.     }
  361.  
  362.     @Column(
  363.         name = "BUSINESS_PARTNER_TYPE",
  364.         nullable = false,
  365.         length = 15
  366.     )
  367.     public String getBusinessPartnerType() {
  368.         return this.businessPartnerType;
  369.     }
  370.  
  371.     public void setBusinessPartnerType(String businessPartnerType) {
  372.         this.businessPartnerType = businessPartnerType;
  373.     }
  374.  
  375.     @Column(
  376.         name = "PASSWORD_HASH",
  377.         length = 40
  378.     )
  379.     public String getPasswordHash() {
  380.         return this.passwordHash;
  381.     }
  382.  
  383.     public void setPasswordHash(String passwordHash) {
  384.         this.passwordHash = passwordHash;
  385.     }
  386.  
  387.     @Column(
  388.         name = "ID_OR_REGNUM",
  389.         length = 20
  390.     )
  391.     public String getIdOrRegnum() {
  392.         return this.idOrRegnum;
  393.     }
  394.  
  395.     public void setIdOrRegnum(String idOrRegnum) {
  396.         this.idOrRegnum = idOrRegnum;
  397.     }
  398.  
  399.     @Column(
  400.         name = "VALIDATED",
  401.         nullable = false,
  402.         length = 1
  403.     )
  404.     public char getValidated() {
  405.         return this.validated;
  406.     }
  407.  
  408.     public void setValidated(char validated) {
  409.         this.validated = validated;
  410.     }
  411.  
  412.     @Column(
  413.         name = "OTP_LOGIN",
  414.         nullable = false,
  415.         length = 1
  416.     )
  417.     public char getOtpLogin() {
  418.         return this.otpLogin;
  419.     }
  420.  
  421.     public void setOtpLogin(char otpLogin) {
  422.         this.otpLogin = otpLogin;
  423.     }
  424.  
  425.     @Column(
  426.         name = "MOTHERS_NAME",
  427.         length = 150
  428.     )
  429.     public String getMothersName() {
  430.         return this.mothersName;
  431.     }
  432.  
  433.     public void setMothersName(String mothersName) {
  434.         this.mothersName = mothersName;
  435.     }
  436.  
  437.     @Column(
  438.         name = "BIRTH_NAME",
  439.         length = 150
  440.     )
  441.     public String getBirthName() {
  442.         return this.birthName;
  443.     }
  444.  
  445.     public void setBirthName(String birthName) {
  446.         this.birthName = birthName;
  447.     }
  448.  
  449.     @Column(
  450.         name = "BIRTH_PLACE",
  451.         length = 50
  452.     )
  453.     public String getBirthPlace() {
  454.         return this.birthPlace;
  455.     }
  456.  
  457.     public void setBirthPlace(String birthPlace) {
  458.         this.birthPlace = birthPlace;
  459.     }
  460.  
  461.     @Temporal(TemporalType.TIMESTAMP)
  462.     @Column(
  463.         name = "BIRTH_DATE",
  464.         length = 7
  465.     )
  466.     public Date getBirthDate() {
  467.         return this.birthDate;
  468.     }
  469.  
  470.     public void setBirthDate(Date birthDate) {
  471.         this.birthDate = birthDate;
  472.     }
  473.  
  474.     @Column(
  475.         name = "BANK_ACCOUNT_NUMBER",
  476.         length = 40
  477.     )
  478.     public String getBankAccountNumber() {
  479.         return this.bankAccountNumber;
  480.     }
  481.  
  482.     public void setBankAccountNumber(String bankAccountNumber) {
  483.         this.bankAccountNumber = bankAccountNumber;
  484.     }
  485.  
  486.     @OneToMany(
  487.         fetch = FetchType.LAZY,
  488.         mappedBy = "customerByCustomer"
  489.     )
  490.     public Set<TradeCard> getTradeCardsForCustomer() {
  491.         return this.tradeCardsForCustomer;
  492.     }
  493.  
  494.     public void setTradeCardsForCustomer(Set<TradeCard> tradeCardsForCustomer) {
  495.         this.tradeCardsForCustomer = tradeCardsForCustomer;
  496.     }
  497.  
  498.     @OneToMany(
  499.         fetch = FetchType.LAZY,
  500.         mappedBy = "customer"
  501.     )
  502.     public Set<CustomerAddress> getCustomerAddresses() {
  503.         return this.customerAddresses;
  504.     }
  505.  
  506.     public void setCustomerAddresses(Set<CustomerAddress> customerAddresses) {
  507.         this.customerAddresses = customerAddresses;
  508.     }
  509.  
  510.     @OneToMany(
  511.         fetch = FetchType.LAZY,
  512.         mappedBy = "customer"
  513.     )
  514.     public Set<CustomerLetter> getCustomerLetters() {
  515.         return this.customerLetters;
  516.     }
  517.  
  518.     public void setCustomerLetters(Set<CustomerLetter> customerLetters) {
  519.         this.customerLetters = customerLetters;
  520.     }
  521.  
  522.     @OneToOne(
  523.         fetch = FetchType.LAZY,
  524.         mappedBy = "customer"
  525.     )
  526.     public ServiceDealer getServiceDealer() {
  527.         return this.serviceDealer;
  528.     }
  529.  
  530.     public void setServiceDealer(ServiceDealer serviceDealer) {
  531.         this.serviceDealer = serviceDealer;
  532.     }
  533.  
  534.     @OneToMany(
  535.         fetch = FetchType.LAZY,
  536.         mappedBy = "customer"
  537.     )
  538.     public Set<TargetLocationParams> getTargetLocationParamses() {
  539.         return this.targetLocationParamses;
  540.     }
  541.  
  542.     public void setTargetLocationParamses(Set<TargetLocationParams> targetLocationParamses) {
  543.         this.targetLocationParamses = targetLocationParamses;
  544.     }
  545.  
  546.     @OneToMany(
  547.         fetch = FetchType.LAZY,
  548.         mappedBy = "customerByCarrier"
  549.     )
  550.     public Set<TradeCard> getTradeCardsForCarrier() {
  551.         return this.tradeCardsForCarrier;
  552.     }
  553.  
  554.     public void setTradeCardsForCarrier(Set<TradeCard> tradeCardsForCarrier) {
  555.         this.tradeCardsForCarrier = tradeCardsForCarrier;
  556.     }
  557.  
  558.     @OneToMany(
  559.         fetch = FetchType.LAZY,
  560.         mappedBy = "customer"
  561.     )
  562.     public Set<DataExchangePackage> getDataExchangePackages() {
  563.         return this.dataExchangePackages;
  564.     }
  565.  
  566.     public void setDataExchangePackages(Set<DataExchangePackage> dataExchangePackages) {
  567.         this.dataExchangePackages = dataExchangePackages;
  568.     }
  569.  
  570.     @OneToOne(
  571.         fetch = FetchType.LAZY,
  572.         mappedBy = "customer"
  573.     )
  574.     public ServiceOwner getServiceOwner() {
  575.         return this.serviceOwner;
  576.     }
  577.  
  578.     public void setServiceOwner(ServiceOwner serviceOwner) {
  579.         this.serviceOwner = serviceOwner;
  580.     }
  581.  
  582.     @OneToOne(
  583.         fetch = FetchType.LAZY,
  584.         mappedBy = "customer"
  585.     )
  586.     public BusinessPartner getBusinessPartner() {
  587.         return this.businessPartner;
  588.     }
  589.  
  590.     public void setBusinessPartner(BusinessPartner businessPartner) {
  591.         this.businessPartner = businessPartner;
  592.     }
  593.  
  594.     @OneToMany(
  595.         fetch = FetchType.LAZY,
  596.         mappedBy = "customer"
  597.     )
  598.     public Set<ComputerCustomer> getComputerCustomers() {
  599.         return this.computerCustomers;
  600.     }
  601.  
  602.     public void setComputerCustomers(Set<ComputerCustomer> computerCustomers) {
  603.         this.computerCustomers = computerCustomers;
  604.     }
  605.  
  606.     @OneToMany(
  607.         fetch = FetchType.LAZY,
  608.         mappedBy = "customer"
  609.     )
  610.     public Set<AccountLetter> getAccountLetters() {
  611.         return this.accountLetters;
  612.     }
  613.  
  614.     public void setAccountLetters(Set<AccountLetter> accountLetters) {
  615.         this.accountLetters = accountLetters;
  616.     }
  617.  
  618.     @OneToMany(
  619.         fetch = FetchType.LAZY,
  620.         mappedBy = "customer"
  621.     )
  622.     public Set<Account> getAccounts() {
  623.         return this.accounts;
  624.     }
  625.  
  626.     public void setAccounts(Set<Account> accounts) {
  627.         this.accounts = accounts;
  628.     }
  629.  
  630.     @OneToMany(
  631.         fetch = FetchType.LAZY,
  632.         mappedBy = "customer"
  633.     )
  634.     public Set<CustomerBankAccount> getCustomerBankAccounts() {
  635.         return this.customerBankAccounts;
  636.     }
  637.  
  638.     public void setCustomerBankAccounts(Set<CustomerBankAccount> customerBankAccounts) {
  639.         this.customerBankAccounts = customerBankAccounts;
  640.     }
  641.  
  642.     @OneToMany(
  643.         fetch = FetchType.LAZY,
  644.         mappedBy = "customer"
  645.     )
  646.     public Set<CustomerComplaint> getCustomerComplaints() {
  647.         return this.customerComplaints;
  648.     }
  649.  
  650.     public void setCustomerComplaints(Set<CustomerComplaint> customerComplaints) {
  651.         this.customerComplaints = customerComplaints;
  652.     }
  653.  
  654.     @OneToMany(
  655.         fetch = FetchType.LAZY,
  656.         mappedBy = "customer"
  657.     )
  658.     public Set<IncomingAccountRequest> getIncomingAccountRequests() {
  659.         return this.incomingAccountRequests;
  660.     }
  661.  
  662.     public void setIncomingAccountRequests(Set<IncomingAccountRequest> incomingAccountRequests) {
  663.         this.incomingAccountRequests = incomingAccountRequests;
  664.     }
  665.  
  666.     @OneToMany(
  667.         fetch = FetchType.LAZY,
  668.         mappedBy = "customer"
  669.     )
  670.     public Set<CustomerUserRelation> getCustomerUserRelations() {
  671.         return this.customerUserRelations;
  672.     }
  673.  
  674.     public void setCustomerUserRelations(Set<CustomerUserRelation> customerUserRelations) {
  675.         this.customerUserRelations = customerUserRelations;
  676.     }
  677.  
  678.     @OneToOne(
  679.         fetch = FetchType.LAZY,
  680.         mappedBy = "customer"
  681.     )
  682.     public ServiceOperator getServiceOperator() {
  683.         return this.serviceOperator;
  684.     }
  685.  
  686.     public void setServiceOperator(ServiceOperator serviceOperator) {
  687.         this.serviceOperator = serviceOperator;
  688.     }
  689.  
  690.     @OneToMany(
  691.         fetch = FetchType.LAZY,
  692.         mappedBy = "customer"
  693.     )
  694.     public Set<OutputJob> getOutputJobs() {
  695.         return this.outputJobs;
  696.     }
  697.  
  698.     public void setOutputJobs(Set<OutputJob> outputJobs) {
  699.         this.outputJobs = outputJobs;
  700.     }
  701.  
  702.     @Column(
  703.         name = "VAT_NUMBER",
  704.         length = 15
  705.     )
  706.     public String getVatNumber() {
  707.         return this.vatNumber;
  708.     }
  709.  
  710.     public void setVatNumber(String vatNumber) {
  711.         this.vatNumber = vatNumber;
  712.     }
  713.  
  714.     @Column(
  715.         name = "TAX_IDENTIFICATION_NUMBER",
  716.         length = 15
  717.     )
  718.     public String getTaxIdentificationNumber() {
  719.         return this.taxIdentificationNumber;
  720.     }
  721.  
  722.     public void setTaxIdentificationNumber(String taxIdentificationNumber) {
  723.         this.taxIdentificationNumber = taxIdentificationNumber;
  724.     }
  725.  
  726.     @Column(
  727.         name = "ENABLE_SIMPLE_TRADE_CARD",
  728.         length = 4,
  729.         nullable = false
  730.     )
  731.     public String getEnableSimpleTradeCard() {
  732.         return this.enableSimpleTradeCard;
  733.     }
  734.  
  735.     public void setEnableSimpleTradeCard(String enableSimpleTradeCard) {
  736.         this.enableSimpleTradeCard = enableSimpleTradeCard;
  737.     }
  738.  
  739.     @Column(
  740.         name = "IS_CLASSIFIED_TAXPAYER",
  741.         length = 1
  742.     )
  743.     public Character getIsClassifiedTaxpayer() {
  744.         return this.isClassifiedTaxpayer;
  745.     }
  746.  
  747.     public void setIsClassifiedTaxpayer(Character isClassifiedTaxpayer) {
  748.         this.isClassifiedTaxpayer = isClassifiedTaxpayer;
  749.     }
  750.  
  751.     @Column(
  752.         name = "IS_STATEMENT_ENABLED",
  753.         length = 1
  754.     )
  755.     public char getIsStatementEnabled() {
  756.         return this.isStatementEnabled;
  757.     }
  758.  
  759.     public void setIsStatementEnabled(char isStatementEnabled) {
  760.         this.isStatementEnabled = isStatementEnabled;
  761.     }
  762.  
  763.     @Column(
  764.         name = "ENABLE_PREDECESSOR",
  765.         length = 1
  766.     )
  767.     public Character getEnablePredecessor() {
  768.         return this.enablePredecessor;
  769.     }
  770.  
  771.     public void setEnablePredecessor(Character enablePredecessor) {
  772.         this.enablePredecessor = enablePredecessor;
  773.     }
  774.  
  775.     @Temporal(TemporalType.TIMESTAMP)
  776.     @Column(
  777.         name = "HIBERNATION_START",
  778.         length = 7
  779.     )
  780.     public Date getHibernationStart() {
  781.         return this.hibernationStart;
  782.     }
  783.  
  784.     public void setHibernationStart(Date hibernationStart) {
  785.         this.hibernationStart = hibernationStart;
  786.     }
  787.  
  788.     @Temporal(TemporalType.TIMESTAMP)
  789.     @Column(
  790.         name = "HIBERNATION_END",
  791.         length = 7
  792.     )
  793.     public Date getHibernationEnd() {
  794.         return this.hibernationEnd;
  795.     }
  796.  
  797.     public void setHibernationEnd(Date hibernationEnd) {
  798.         this.hibernationEnd = hibernationEnd;
  799.     }
  800. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement