Go to Nanjing administrative service center to get the license
seller
1, enterprise business license (resident ID card)
2, house certificate or land use certificate
3, commercial housing sales license and sales contract text
buyer
1. ID card
2. Household register or legal person qualification certificate
in addition, the notary office needs to know more about the specific situation of the house sold. For example, the property rights, location, quantity, quality, ancillary facilities and use area of the house in the contract; The amount of house purchase and sale price, payment date and payment method; The delivery time of the sold house; Deal with the agreement of house property right transfer and relevant proceres; Liability for breach of contract by both parties
other contents that both parties think should be agreed upon; Both parties to the contract sign, seal and signing time, including whether the house to be purchased has bank mortgage burden, are the contents of the review
types of real estate notarization:
first, real estate inheritance notarization, that is, inheritance notarization
the notarization of the right of inheritance is a notarial certificate issued by the notary organ according to the legal right of inheritance, the right of testamentary inheritance, the right of agreement inheritance and other national laws, after a series of work such as identity determination, material verification and so on< Second, notarization of will
notarization of a will is a legal act in which a citizen makes arrangements for his own property before he dies, which is notarized by the state notary organ and takes legal effect immediately upon his death
3. Notarization of donated real estate
when donating real estate, the "Notarization of donation" of the donor and the "Notarization of acceptance of donation" of the donee should be handled, or the "Notarization of donation contract" should be jointly handled by both parties< (4) notarization is required for the transfer of real estate property rights in foreign-related and Hong Kong, Macao and Taiwan legal affairs
incorporating notarization into the system of real estate management activities makes notarization a necessary procere for real estate transactions, which can promote and guarantee the cultivation of the real estate market, the healthy development of real estate transactions and the protection of the legitimate rights and interests of traders.
Administrative service center on the first floor of the "one window" integrated business service area window for ID card
sincerely answer your question, if it is helpful, please take it, thank you!
decimal
decimal
For game token, it is feasible to store int type. The problem is that the int type is 11 bits long
when the amount related to RMB is stored, it can only be stored to 9-length RMB, that is to say, the maximum value can only be stored to 9999999, less than 1 billion. If the business grows rapidly, it will leave hidden trouble for itself
decimal: decimal is a data type specially designed for financial related issues
decimal is introced from MySQL 5.1, and the column declaration syntax is decimal (m, d). In MySQL 5.1, the range of parameters is as follows: m is the maximum number of numbers (precision). It ranges from 1 to 65 (in older versions of MySQL, the allowed range is 1 to 254), and the default value of M is 10
D is the number of digits to the right of the decimal point (scale). The range is 0-30, but not more than m. Note: float 4 bytes, double 8 bytes, decimail (m, d) m + 2 bytes
For example, the maximum value of decimal (5,2) is 9.9 because there are 7 bytes available. It can solve the problem of data range and precision
extended data
MySQL data type decimal usage:
MySQL data type is used to store accurate values in the database. We often use the decimal data type for columns that retain accuracy, such as currency data in an accounting system
to define a column of data type decimal, use the following syntax: column_ nameDECIMAL(P,D);
in the above syntax:
P is the precision of significant number. The range of P was 1-12316; 65
D is the number of digits after the decimal point. The range of D is 0-30. MySQL requires d to be less than or equal to (& lt; =) P
decimal (P, d) indicates that the column can store P digits of D decimal places. The actual range of decimal columns depends on precision and scale
like the int data type, the decimal type also has the attributes unseigned and zerofill. If the unsigned property is used, the columns of digital unsigned will not accept negative values
if you use zerofill, MySQL fills the display value to 0 to display the width specified by the column definition. In addition, if we use zero fill for a decimal column, MySQL will automatically add the unseigned attribute to the column
however, when creating a table, you need to specify the format of decimal, such as decimal (5,2) or decimal (4,1), etc. Decimal (5,2) means there are 5 digits in total, and 2 digits can be saved after the decimal point.
